From 3a4fcd3f93d15ee1a9938168e506ee8615a707e3 Mon Sep 17 00:00:00 2001 From: rchan Date: Wed, 12 Jun 2024 22:05:40 +0100 Subject: [PATCH 01/11] fix docs for cli commands --- ENVIRONMENT_VARIABLES.md | 20 ++++++++++---------- MODELS.md | 16 ++++++++-------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/ENVIRONMENT_VARIABLES.md b/ENVIRONMENT_VARIABLES.md index f5128ea1..b7abceeb 100644 --- a/ENVIRONMENT_VARIABLES.md +++ b/ENVIRONMENT_VARIABLES.md @@ -1,9 +1,9 @@ ## Environment variables for running Reginald -To set up the Reginald app (which consists of _both_ the full response engine along with the Slack bot), you can use the `reginald_run` on the terminal. To see the CLI arguments, you can simply run: +To set up the Reginald app (which consists of _both_ the full response engine along with the Slack bot), you can use the `reginald run_all` on the terminal. To see the CLI arguments, you can simply run: ```bash -reginald_run --help +reginald run_all --help ``` **Note**: specifying CLI arguments will override any environment variables set. @@ -33,7 +33,7 @@ For creating a data index, you must set the GitHub token environment variable `G ### Model environment variables -Lastly, to avoid using CLI variables and be able to simply use `reginald_run`, you can also set the following variables too: +Lastly, to avoid using CLI variables and be able to simply use `reginald run_all`, you can also set the following variables too: - `REGINALD_MODEL`: name of model to use (see the [models README](MODELS.md)) for the list of models available - `REGINALD_MODEL_NAME`: name of sub-model to use with the one requested if not using `hello` model. @@ -59,24 +59,24 @@ source .env ## Environment variables for running _only_ the response engine -To set up the Reginald response engine (without the Slack bot), you can use the `reginald_run_engine` on the terminal. To see the CLI arguments, you can simply run: +To set up the Reginald response engine (without the Slack bot), you can use the `reginald run_all_engine` on the terminal. To see the CLI arguments, you can simply run: ```bash -reginald_run_api_llm --help +reginald run_all_api_llm --help ``` -The CLI arguments are largely the same as `reginald_run` except that the Slack bot tokens are not required (as they will be used to set up the Slack bot which will call the response engine via an API that is set up using `reginald_run_api_llm`). You can also use the same environment variables as `reginald_run` except for the Slack bot tokens. +The CLI arguments are largely the same as `reginald run_all` except that the Slack bot tokens are not required (as they will be used to set up the Slack bot which will call the response engine via an API that is set up using `reginald run_all_api_llm`). You can also use the same environment variables as `reginald run_all` except for the Slack bot tokens. -You can still use the same `.env` file that you used for `reginald_run` to set up the environment variables or choose to have a separate `.response_engine_env` file to store the environment variables required for the response engine set up. +You can still use the same `.env` file that you used for `reginald run_all` to set up the environment variables or choose to have a separate `.response_engine_env` file to store the environment variables required for the response engine set up. ## Environment variables for running _only_ the Slack-bot -To set up the Reginald Slack bot (without the response engine), you can use the `reginald_run_api_bot` on the terminal. To see the CLI arguments, you can simply run: +To set up the Reginald Slack bot (without the response engine), you can use the `reginald run_all_api_bot` on the terminal. To see the CLI arguments, you can simply run: ```bash -reginald_run_api_bot --help +reginald run_all_api_bot --help ``` This command takes in an emoji to respond with and will set up a Slack bot that responds with the specified emoji (by default, this is the :rocket: emoji if no emoji is specified). You can also set an environment variable for the emoji to respond with using `REGINALD_EMOJI`. -You can use the same `.env` file that you used for `reginald_run` to set up the environment variables or choose to have a separate `.slack_bot_env` file to store the environment variables required for the Slack bot set up. This must include the Slack bot tokens. +You can use the same `.env` file that you used for `reginald run_all` to set up the environment variables or choose to have a separate `.slack_bot_env` file to store the environment variables required for the Slack bot set up. This must include the Slack bot tokens. diff --git a/MODELS.md b/MODELS.md index c7557e87..6f4bfd84 100644 --- a/MODELS.md +++ b/MODELS.md @@ -32,7 +32,7 @@ When running the Reginald Slack bot, you can specify which data index to use usi - `public`: builds an index with the all the public data listed above - `all_data`: builds an index with all the data listed above including data from our private repo -Once a data index has been built, it will be saved in the `data` directory specified in the `reginald_run` (or `reginald_run_api_llm`) CLI arguments or the `LLAMA_INDEX_DATA_DIR` environment variable. If you want to force a new index to be built, you can use the `--force-new-index` or `-f` flag, or you can set the `LLAMA_INDEX_FORCE_NEW_INDEX` environment variable to `True`. +Once a data index has been built, it will be saved in the `data` directory specified in the `reginald run_all` (or `reginald run_all_api_llm`) CLI arguments or the `LLAMA_INDEX_DATA_DIR` environment variable. If you want to force a new index to be built, you can use the `--force-new-index` or `-f` flag, or you can set the `LLAMA_INDEX_FORCE_NEW_INDEX` environment variable to `True`. There are several options of the LLM to use with the `llama-index` models, some of which we have implemented in this library and which we discuss below. @@ -45,7 +45,7 @@ We have two models which involve hosting the LLM ourselves and using the `llama- This model uses the [`llama-cpp-python`](https://github.com/abetlen/llama-cpp-python) library to host a quantised LLM. In our case, we have been using quantised versions of Meta's Llama-2 model uploaded by [TheBloke](https://huggingface.co/TheBloke) on Huggingface's model hub. An example of running this model locally is: ```bash -reginald_run \ +reginald run_all \ --model llama-index-llama-cpp \ --model-name https://huggingface.co/TheBloke/Llama-2-7b-Chat-GGUF/resolve/main/llama-2-7b-chat.Q4_K_M.gguf \ --mode chat \ @@ -64,7 +64,7 @@ Running this command requires about 7GB of RAM. We were able to run this on our If you wish to download the quantised model (as a `.gguf` file) and host it yourself, you can do so by passing the file name to the `--model-name` argument and using the `--is-path` flag (alternatively, you can re-run the above but first set the environment variable `LLAMA_INDEX_IS_PATH` to `True`): ```bash -reginald_run \ +reginald run_all \ --model llama-index-llama-cpp \ --model-name gguf_models/llama-2-7b-chat.Q4_K_M.gguf \ --is-path \ @@ -82,7 +82,7 @@ given that the `llama-2-7b-chat.Q4_K_M.gguf` file is in a `gguf_models` director This model uses an LLM from [Huggingface](https://huggingface.co/models) to generate a response. An example of running this model locally is: ```bash -reginald_run \ +reginald run_all \ --model llama-index-hf \ --model-name microsoft/phi-1_5 \ --mode chat \ @@ -107,7 +107,7 @@ To use this model, you must set the following environment variables: An example of running this model locally is: ```bash -reginald_run \ +reginald run_all \ --model llama-index-gpt-azure \ --model-name "reginald-gpt35-turbo" \ --mode chat \ @@ -124,7 +124,7 @@ To use this model, you must set the `OPENAI_API_KEY` environment variable and se An example of running this model locally is: ```bash -reginald_run \ +reginald run_all \ --model llama-index-gpt-openai \ --model-name "gpt-3.5-turbo" \ --mode chat \ @@ -145,7 +145,7 @@ To use this model, you must set the following environment variables: An example of running this model locally is: ```bash -reginald_run \ +reginald run_all \ --model chat-completion-azure \ --model-name "reginald-curie" ``` @@ -160,7 +160,7 @@ To use this model, you must set the `OPENAI_API_KEY` environment variable and se An example of running this model locally is: ```bash -reginald_run \ +reginald run_all \ --model chat-completion-openai \ --model-name "gpt-3.5-turbo" ``` From dc9a7fe3aebd9ee68168e118c77f6c15734c0be6 Mon Sep 17 00:00:00 2001 From: rchan Date: Wed, 12 Jun 2024 22:06:07 +0100 Subject: [PATCH 02/11] remove any unused dependencies even for notebooks --- poetry.lock | 1723 +----------------------------------------------- pyproject.toml | 29 +- 2 files changed, 32 insertions(+), 1720 deletions(-) diff --git a/poetry.lock b/poetry.lock index 92a9f6fb..a5c2ccf1 100644 --- a/poetry.lock +++ b/poetry.lock @@ -31,17 +31,6 @@ test-prod = ["parameterized", "pytest (>=7.2.0,<=8.0.0)", "pytest-subtests", "py test-trackers = ["comet-ml", "dvclive", "tensorboard", "wandb"] testing = ["bitsandbytes", "datasets", "diffusers", "evaluate", "parameterized", "pytest (>=7.2.0,<=8.0.0)", "pytest-subtests", "pytest-xdist", "scikit-learn", "scipy", "timm", "torchpippy (>=0.2.0)", "tqdm", "transformers"] -[[package]] -name = "aiofiles" -version = "23.2.1" -description = "File support for asyncio." -optional = true -python-versions = ">=3.7" -files = [ - {file = "aiofiles-23.2.1-py3-none-any.whl", hash = "sha256:19297512c647d4b27a2cf7c34caa7e405c0d60b5560618a29a9fe027b18b0107"}, - {file = "aiofiles-23.2.1.tar.gz", hash = "sha256:84ec2218d8419404abcb9f0c02df3f34c6e0a68ed41072acfb1cef5cbc29051a"}, -] - [[package]] name = "aiohttp" version = "3.9.5" @@ -151,30 +140,6 @@ files = [ [package.dependencies] frozenlist = ">=1.1.0" -[[package]] -name = "altair" -version = "5.3.0" -description = "Vega-Altair: A declarative statistical visualization library for Python." -optional = true -python-versions = ">=3.8" -files = [ - {file = "altair-5.3.0-py3-none-any.whl", hash = "sha256:7084a1dab4d83c5e7e5246b92dc1b4451a6c68fd057f3716ee9d315c8980e59a"}, - {file = "altair-5.3.0.tar.gz", hash = "sha256:5a268b1a0983b23d8f9129f819f956174aa7aea2719ed55a52eba9979b9f6675"}, -] - -[package.dependencies] -jinja2 = "*" -jsonschema = ">=3.0" -numpy = "*" -packaging = "*" -pandas = ">=0.25" -toolz = "*" - -[package.extras] -all = ["altair-tiles (>=0.3.0)", "anywidget (>=0.9.0)", "pyarrow (>=11)", "vega-datasets (>=0.9.0)", "vegafusion[embed] (>=1.6.6)", "vl-convert-python (>=1.3.0)"] -dev = ["geopandas", "hatch", "ipython", "m2r", "mypy", "pandas-stubs", "pytest", "pytest-cov", "ruff (>=0.3.0)", "types-jsonschema", "types-setuptools"] -doc = ["docutils", "jinja2", "myst-parser", "numpydoc", "pillow (>=9,<10)", "pydata-sphinx-theme (>=0.14.1)", "scipy", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinxext-altair"] - [[package]] name = "annotated-types" version = "0.7.0" @@ -206,17 +171,6 @@ doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphin test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] trio = ["trio (>=0.23)"] -[[package]] -name = "appnope" -version = "0.1.4" -description = "Disable App Nap on macOS >= 10.9" -optional = true -python-versions = ">=3.6" -files = [ - {file = "appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c"}, - {file = "appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee"}, -] - [[package]] name = "arpeggio" version = "2.0.2" @@ -309,7 +263,7 @@ msal-extensions = ">=0.3.0" name = "azure-storage-file-share" version = "12.16.0" description = "Microsoft Azure Azure File Share Storage Client Library for Python" -optional = false +optional = true python-versions = ">=3.8" files = [ {file = "azure-storage-file-share-12.16.0.tar.gz", hash = "sha256:412fb7e6c3c28f6f722af98195aa59407aaa32323afa13a4a01f62d0b8774eb3"}, @@ -346,17 +300,6 @@ charset-normalizer = ["charset-normalizer"] html5lib = ["html5lib"] lxml = ["lxml"] -[[package]] -name = "bitsandbytes" -version = "0.41.3.post2" -description = "k-bit optimizers and matrix multiplication routines." -optional = true -python-versions = "*" -files = [ - {file = "bitsandbytes-0.41.3.post2-py3-none-any.whl", hash = "sha256:ceb301a3d4e6bf52bdad8d09f3064ac194bdfdeae535994c0315bd2ef7639cca"}, - {file = "bitsandbytes-0.41.3.post2.tar.gz", hash = "sha256:7d25a51fb3b74b58e569473f8b70a5239124c0593dc053479c41cf2cd6730502"}, -] - [[package]] name = "black" version = "24.4.2" @@ -401,24 +344,6 @@ d = ["aiohttp (>=3.7.4)", "aiohttp (>=3.7.4,!=3.9.0)"] jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] uvloop = ["uvloop (>=0.15.2)"] -[[package]] -name = "bleach" -version = "6.1.0" -description = "An easy safelist-based HTML-sanitizing tool." -optional = true -python-versions = ">=3.8" -files = [ - {file = "bleach-6.1.0-py3-none-any.whl", hash = "sha256:3225f354cfc436b9789c66c4ee030194bee0568fbf9cbdad3bc8b5c26c5f12b6"}, - {file = "bleach-6.1.0.tar.gz", hash = "sha256:0a31f1837963c41d46bbf1331b8778e1308ea0791db03cc4e7357b97cf42a8fe"}, -] - -[package.dependencies] -six = ">=1.9.0" -webencodings = "*" - -[package.extras] -css = ["tinycss2 (>=1.1.0,<1.3)"] - [[package]] name = "build" version = "1.2.1" @@ -688,86 +613,6 @@ files = [ {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, ] -[[package]] -name = "comm" -version = "0.2.2" -description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." -optional = true -python-versions = ">=3.8" -files = [ - {file = "comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3"}, - {file = "comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e"}, -] - -[package.dependencies] -traitlets = ">=4" - -[package.extras] -test = ["pytest"] - -[[package]] -name = "contourpy" -version = "1.2.1" -description = "Python library for calculating contours of 2D quadrilateral grids" -optional = true -python-versions = ">=3.9" -files = [ - {file = "contourpy-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bd7c23df857d488f418439686d3b10ae2fbf9bc256cd045b37a8c16575ea1040"}, - {file = "contourpy-1.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5b9eb0ca724a241683c9685a484da9d35c872fd42756574a7cfbf58af26677fd"}, - {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c75507d0a55378240f781599c30e7776674dbaf883a46d1c90f37e563453480"}, - {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11959f0ce4a6f7b76ec578576a0b61a28bdc0696194b6347ba3f1c53827178b9"}, - {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb3315a8a236ee19b6df481fc5f997436e8ade24a9f03dfdc6bd490fea20c6da"}, - {file = "contourpy-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39f3ecaf76cd98e802f094e0d4fbc6dc9c45a8d0c4d185f0f6c2234e14e5f75b"}, - {file = "contourpy-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:94b34f32646ca0414237168d68a9157cb3889f06b096612afdd296003fdd32fd"}, - {file = "contourpy-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:457499c79fa84593f22454bbd27670227874cd2ff5d6c84e60575c8b50a69619"}, - {file = "contourpy-1.2.1-cp310-cp310-win32.whl", hash = "sha256:ac58bdee53cbeba2ecad824fa8159493f0bf3b8ea4e93feb06c9a465d6c87da8"}, - {file = "contourpy-1.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:9cffe0f850e89d7c0012a1fb8730f75edd4320a0a731ed0c183904fe6ecfc3a9"}, - {file = "contourpy-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6022cecf8f44e36af10bd9118ca71f371078b4c168b6e0fab43d4a889985dbb5"}, - {file = "contourpy-1.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef5adb9a3b1d0c645ff694f9bca7702ec2c70f4d734f9922ea34de02294fdf72"}, - {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6150ffa5c767bc6332df27157d95442c379b7dce3a38dff89c0f39b63275696f"}, - {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4c863140fafc615c14a4bf4efd0f4425c02230eb8ef02784c9a156461e62c965"}, - {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:00e5388f71c1a0610e6fe56b5c44ab7ba14165cdd6d695429c5cd94021e390b2"}, - {file = "contourpy-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d4492d82b3bc7fbb7e3610747b159869468079fe149ec5c4d771fa1f614a14df"}, - {file = "contourpy-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:49e70d111fee47284d9dd867c9bb9a7058a3c617274900780c43e38d90fe1205"}, - {file = "contourpy-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b59c0ffceff8d4d3996a45f2bb6f4c207f94684a96bf3d9728dbb77428dd8cb8"}, - {file = "contourpy-1.2.1-cp311-cp311-win32.whl", hash = "sha256:7b4182299f251060996af5249c286bae9361fa8c6a9cda5efc29fe8bfd6062ec"}, - {file = "contourpy-1.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2855c8b0b55958265e8b5888d6a615ba02883b225f2227461aa9127c578a4922"}, - {file = "contourpy-1.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:62828cada4a2b850dbef89c81f5a33741898b305db244904de418cc957ff05dc"}, - {file = "contourpy-1.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:309be79c0a354afff9ff7da4aaed7c3257e77edf6c1b448a779329431ee79d7e"}, - {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e785e0f2ef0d567099b9ff92cbfb958d71c2d5b9259981cd9bee81bd194c9a4"}, - {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cac0a8f71a041aa587410424ad46dfa6a11f6149ceb219ce7dd48f6b02b87a7"}, - {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af3f4485884750dddd9c25cb7e3915d83c2db92488b38ccb77dd594eac84c4a0"}, - {file = "contourpy-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ce6889abac9a42afd07a562c2d6d4b2b7134f83f18571d859b25624a331c90b"}, - {file = "contourpy-1.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a1eea9aecf761c661d096d39ed9026574de8adb2ae1c5bd7b33558af884fb2ce"}, - {file = "contourpy-1.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:187fa1d4c6acc06adb0fae5544c59898ad781409e61a926ac7e84b8f276dcef4"}, - {file = "contourpy-1.2.1-cp312-cp312-win32.whl", hash = "sha256:c2528d60e398c7c4c799d56f907664673a807635b857df18f7ae64d3e6ce2d9f"}, - {file = "contourpy-1.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:1a07fc092a4088ee952ddae19a2b2a85757b923217b7eed584fdf25f53a6e7ce"}, - {file = "contourpy-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bb6834cbd983b19f06908b45bfc2dad6ac9479ae04abe923a275b5f48f1a186b"}, - {file = "contourpy-1.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1d59e739ab0e3520e62a26c60707cc3ab0365d2f8fecea74bfe4de72dc56388f"}, - {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd3db01f59fdcbce5b22afad19e390260d6d0222f35a1023d9adc5690a889364"}, - {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a12a813949e5066148712a0626895c26b2578874e4cc63160bb007e6df3436fe"}, - {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe0ccca550bb8e5abc22f530ec0466136379c01321fd94f30a22231e8a48d985"}, - {file = "contourpy-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1d59258c3c67c865435d8fbeb35f8c59b8bef3d6f46c1f29f6123556af28445"}, - {file = "contourpy-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f32c38afb74bd98ce26de7cc74a67b40afb7b05aae7b42924ea990d51e4dac02"}, - {file = "contourpy-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d31a63bc6e6d87f77d71e1abbd7387ab817a66733734883d1fc0021ed9bfa083"}, - {file = "contourpy-1.2.1-cp39-cp39-win32.whl", hash = "sha256:ddcb8581510311e13421b1f544403c16e901c4e8f09083c881fab2be80ee31ba"}, - {file = "contourpy-1.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:10a37ae557aabf2509c79715cd20b62e4c7c28b8cd62dd7d99e5ed3ce28c3fd9"}, - {file = "contourpy-1.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a31f94983fecbac95e58388210427d68cd30fe8a36927980fab9c20062645609"}, - {file = "contourpy-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef2b055471c0eb466033760a521efb9d8a32b99ab907fc8358481a1dd29e3bd3"}, - {file = "contourpy-1.2.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:b33d2bc4f69caedcd0a275329eb2198f560b325605810895627be5d4b876bf7f"}, - {file = "contourpy-1.2.1.tar.gz", hash = "sha256:4d8908b3bee1c889e547867ca4cdc54e5ab6be6d3e078556814a22457f49423c"}, -] - -[package.dependencies] -numpy = ">=1.20" - -[package.extras] -bokeh = ["bokeh", "selenium"] -docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"] -mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.8.0)", "types-Pillow"] -test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] -test-no-images = ["pytest", "pytest-cov", "pytest-xdist", "wurlitzer"] - [[package]] name = "coverage" version = "7.5.3" @@ -897,21 +742,6 @@ ssh = ["bcrypt (>=3.1.5)"] test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] test-randomorder = ["pytest-randomly"] -[[package]] -name = "cycler" -version = "0.12.1" -description = "Composable style cycles" -optional = true -python-versions = ">=3.8" -files = [ - {file = "cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30"}, - {file = "cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c"}, -] - -[package.extras] -docs = ["ipython", "matplotlib", "numpydoc", "sphinx"] -tests = ["pytest", "pytest-cov", "pytest-xdist"] - [[package]] name = "dataclasses-json" version = "0.6.7" @@ -927,81 +757,6 @@ files = [ marshmallow = ">=3.18.0,<4.0.0" typing-inspect = ">=0.4.0,<1" -[[package]] -name = "datasets" -version = "2.19.2" -description = "HuggingFace community-driven open-source library of datasets" -optional = true -python-versions = ">=3.8.0" -files = [ - {file = "datasets-2.19.2-py3-none-any.whl", hash = "sha256:e07ff15d75b1af75c87dd96323ba2a361128d495136652f37fd62f918d17bb4e"}, - {file = "datasets-2.19.2.tar.gz", hash = "sha256:eccb82fb3bb5ee26ccc6d7a15b7f1f834e2cc4e59b7cff7733a003552bad51ef"}, -] - -[package.dependencies] -aiohttp = "*" -dill = ">=0.3.0,<0.3.9" -filelock = "*" -fsspec = {version = ">=2023.1.0,<=2024.3.1", extras = ["http"]} -huggingface-hub = ">=0.21.2" -multiprocess = "*" -numpy = ">=1.17" -packaging = "*" -pandas = "*" -pyarrow = ">=12.0.0" -pyarrow-hotfix = "*" -pyyaml = ">=5.1" -requests = ">=2.32.1" -tqdm = ">=4.62.1" -xxhash = "*" - -[package.extras] -apache-beam = ["apache-beam (>=2.26.0)"] -audio = ["librosa", "soundfile (>=0.12.1)"] -benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"] -dev = ["Pillow (>=9.4.0)", "absl-py", "apache-beam (>=2.26.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "jax (>=0.3.14)", "jaxlib (>=0.3.14)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "polars[timezone] (>=0.20.0)", "protobuf (<4.0.0)", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "ruff (>=0.3.0)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy", "tensorflow (>=2.6.0)", "tiktoken", "torch", "torch (>=2.0.0)", "transformers", "typing-extensions (>=4.6.1)", "zstandard"] -docs = ["s3fs", "tensorflow (>=2.6.0)", "torch", "transformers"] -jax = ["jax (>=0.3.14)", "jaxlib (>=0.3.14)"] -metrics-tests = ["Werkzeug (>=1.0.1)", "accelerate", "bert-score (>=0.3.6)", "jiwer", "langdetect", "mauve-text", "nltk", "requests-file (>=1.5.1)", "rouge-score", "sacrebleu", "sacremoses", "scikit-learn", "scipy", "sentencepiece", "seqeval", "six (>=1.15.0,<1.16.0)", "spacy (>=3.0.0)", "texttable (>=1.6.3)", "tldextract", "tldextract (>=3.1.0)", "toml (>=0.10.1)", "typer (<0.5.0)"] -quality = ["ruff (>=0.3.0)"] -s3 = ["s3fs"] -tensorflow = ["tensorflow (>=2.6.0)"] -tensorflow-gpu = ["tensorflow (>=2.6.0)"] -tests = ["Pillow (>=9.4.0)", "absl-py", "apache-beam (>=2.26.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "jax (>=0.3.14)", "jaxlib (>=0.3.14)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "polars[timezone] (>=0.20.0)", "protobuf (<4.0.0)", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy", "tensorflow (>=2.6.0)", "tiktoken", "torch (>=2.0.0)", "transformers", "typing-extensions (>=4.6.1)", "zstandard"] -torch = ["torch"] -vision = ["Pillow (>=9.4.0)"] - -[[package]] -name = "debugpy" -version = "1.8.1" -description = "An implementation of the Debug Adapter Protocol for Python" -optional = true -python-versions = ">=3.8" -files = [ - {file = "debugpy-1.8.1-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:3bda0f1e943d386cc7a0e71bfa59f4137909e2ed947fb3946c506e113000f741"}, - {file = "debugpy-1.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dda73bf69ea479c8577a0448f8c707691152e6c4de7f0c4dec5a4bc11dee516e"}, - {file = "debugpy-1.8.1-cp310-cp310-win32.whl", hash = "sha256:3a79c6f62adef994b2dbe9fc2cc9cc3864a23575b6e387339ab739873bea53d0"}, - {file = "debugpy-1.8.1-cp310-cp310-win_amd64.whl", hash = "sha256:7eb7bd2b56ea3bedb009616d9e2f64aab8fc7000d481faec3cd26c98a964bcdd"}, - {file = "debugpy-1.8.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:016a9fcfc2c6b57f939673c874310d8581d51a0fe0858e7fac4e240c5eb743cb"}, - {file = "debugpy-1.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd97ed11a4c7f6d042d320ce03d83b20c3fb40da892f994bc041bbc415d7a099"}, - {file = "debugpy-1.8.1-cp311-cp311-win32.whl", hash = "sha256:0de56aba8249c28a300bdb0672a9b94785074eb82eb672db66c8144fff673146"}, - {file = "debugpy-1.8.1-cp311-cp311-win_amd64.whl", hash = "sha256:1a9fe0829c2b854757b4fd0a338d93bc17249a3bf69ecf765c61d4c522bb92a8"}, - {file = "debugpy-1.8.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:3ebb70ba1a6524d19fa7bb122f44b74170c447d5746a503e36adc244a20ac539"}, - {file = "debugpy-1.8.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2e658a9630f27534e63922ebf655a6ab60c370f4d2fc5c02a5b19baf4410ace"}, - {file = "debugpy-1.8.1-cp312-cp312-win32.whl", hash = "sha256:caad2846e21188797a1f17fc09c31b84c7c3c23baf2516fed5b40b378515bbf0"}, - {file = "debugpy-1.8.1-cp312-cp312-win_amd64.whl", hash = "sha256:edcc9f58ec0fd121a25bc950d4578df47428d72e1a0d66c07403b04eb93bcf98"}, - {file = "debugpy-1.8.1-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:7a3afa222f6fd3d9dfecd52729bc2e12c93e22a7491405a0ecbf9e1d32d45b39"}, - {file = "debugpy-1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d915a18f0597ef685e88bb35e5d7ab968964b7befefe1aaea1eb5b2640b586c7"}, - {file = "debugpy-1.8.1-cp38-cp38-win32.whl", hash = "sha256:92116039b5500633cc8d44ecc187abe2dfa9b90f7a82bbf81d079fcdd506bae9"}, - {file = "debugpy-1.8.1-cp38-cp38-win_amd64.whl", hash = "sha256:e38beb7992b5afd9d5244e96ad5fa9135e94993b0c551ceebf3fe1a5d9beb234"}, - {file = "debugpy-1.8.1-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:bfb20cb57486c8e4793d41996652e5a6a885b4d9175dd369045dad59eaacea42"}, - {file = "debugpy-1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efd3fdd3f67a7e576dd869c184c5dd71d9aaa36ded271939da352880c012e703"}, - {file = "debugpy-1.8.1-cp39-cp39-win32.whl", hash = "sha256:58911e8521ca0c785ac7a0539f1e77e0ce2df753f786188f382229278b4cdf23"}, - {file = "debugpy-1.8.1-cp39-cp39-win_amd64.whl", hash = "sha256:6df9aa9599eb05ca179fb0b810282255202a66835c6efb1d112d21ecb830ddd3"}, - {file = "debugpy-1.8.1-py2.py3-none-any.whl", hash = "sha256:28acbe2241222b87e255260c76741e1fbf04fdc3b6d094fcf57b6c6f75ce1242"}, - {file = "debugpy-1.8.1.zip", hash = "sha256:f696d6be15be87aef621917585f9bb94b1dc9e8aced570db1b8a6fc14e8f9b42"}, -] - [[package]] name = "decorator" version = "5.1.1" @@ -1013,17 +768,6 @@ files = [ {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, ] -[[package]] -name = "defusedxml" -version = "0.7.1" -description = "XML bomb protection for Python stdlib modules" -optional = true -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"}, - {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"}, -] - [[package]] name = "deprecated" version = "1.2.14" @@ -1201,44 +945,6 @@ files = [ [package.extras] tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"] -[[package]] -name = "faiss-cpu" -version = "1.8.0" -description = "A library for efficient similarity search and clustering of dense vectors." -optional = true -python-versions = ">=3.8" -files = [ - {file = "faiss-cpu-1.8.0.tar.gz", hash = "sha256:3ee1549491728f37b65267c192a94661a907154a8ae0546ad50a564b8be0d82e"}, - {file = "faiss_cpu-1.8.0-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:134a064c7411acf7d1d863173a9d2605c5a59bd573639ab39a5ded5ca983b1b2"}, - {file = "faiss_cpu-1.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ba8e6202d561ac57394c9d691ff17f8fa6eb9a077913a993fce0a154ec0176f1"}, - {file = "faiss_cpu-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a66e9fa7b70556a39681f06e0652f4124c8ddb0a1924afe4f0e40b6924dc845b"}, - {file = "faiss_cpu-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51aaef5a1255d0ea88ea7e52a2415f98c5dd2dd9cec10348d55136541eeec99f"}, - {file = "faiss_cpu-1.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:38152761242870ec7019e0397cbd0ed0b0716562029ce41a71bb38448bd6d5bc"}, - {file = "faiss_cpu-1.8.0-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:c9e6ad94b86626be1a0faff3e53c4ca169eba88aa156d7e90c5a2e9ba30558fb"}, - {file = "faiss_cpu-1.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4601dbd81733bf1bc3bff690aac981289fb386dc8e60d0c4eec8a37ba6856d20"}, - {file = "faiss_cpu-1.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa943d3b5e8c5c77cdd629d9c3c6f78d7da616e586fdd1b94aecbf2e5fa9ba06"}, - {file = "faiss_cpu-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b644b366c3b239b34fa3e08bf65bfc78a24eda1e1ea5b2b6d9be3e8fc73d8179"}, - {file = "faiss_cpu-1.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:f85ecf3514850f93985be238351f5a70736133cfae784b372640aa17c6343a1b"}, - {file = "faiss_cpu-1.8.0-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:61abc0129a357ac00f17f5167f14dff41480de2cc852f306c3d4cd36b893ccbd"}, - {file = "faiss_cpu-1.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b788186d6eb94e6333e1aa8bb6c84b66e967458ecdd1cee22e16f04c43ee674c"}, - {file = "faiss_cpu-1.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5658d90a202c62e4a69c5b065785e9ddcaf6986cb395c16afed8dbe4c58c31a2"}, - {file = "faiss_cpu-1.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d460a372efce547e53d3c47d2c2a8a90b186ad245969048c10c1d7a1e5cf21b"}, - {file = "faiss_cpu-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:9e6520324f0a6764dd267b3c32c76958bf2b1ec36752950f6fab31a7295980a0"}, - {file = "faiss_cpu-1.8.0-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:fc44be179d5b7f690484ef0d0caf817fea2698a5275a0c7fb6cbf406e5b2e4d1"}, - {file = "faiss_cpu-1.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:bbd6f0bc2e1424a12dc7e19d2cc95b53124867966b21110d26f909227e7ed1f1"}, - {file = "faiss_cpu-1.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:06e7add0c8a06ce8fb0443c38fcaf49c45fb74527ea633b819e56452608e64f5"}, - {file = "faiss_cpu-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b864e23c1817fa6cfe9bbec096fd7140d596002934f71aa89b196ffb1b9cd846"}, - {file = "faiss_cpu-1.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:655433755845adbb6f0961e2f8980703640cb9faa96f1cd1ea190252149e0d0a"}, - {file = "faiss_cpu-1.8.0-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:e81fc376a3bcda213ffb395dda1018c953ce927c587731ad582f4e6c2b225363"}, - {file = "faiss_cpu-1.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8c6fa6b7eaf558307b4ab118a236e8d1da79a8685222928e4dd52e277dba144a"}, - {file = "faiss_cpu-1.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:652f6812ef2e8b0f9b18209828c590bc618aca82e7f1c1b1888f52928258e406"}, - {file = "faiss_cpu-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:304da4e0d19044374b63a5b6467028572eac4bd3f32bc9e8783d800a03fb1f02"}, - {file = "faiss_cpu-1.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:cb475d3f25f08c97ac64dfe026f113e2aeb9829b206b3b046256c3b40dd7eb62"}, -] - -[package.dependencies] -numpy = "*" - [[package]] name = "fastapi" version = "0.110.3" @@ -1272,97 +978,22 @@ files = [ [package.extras] devel = ["colorama", "json-spec", "jsonschema", "pylint", "pytest", "pytest-benchmark", "pytest-cache", "validictory"] -[[package]] -name = "ffmpy" -version = "0.3.2" -description = "A simple Python wrapper for ffmpeg" -optional = true -python-versions = "*" -files = [ - {file = "ffmpy-0.3.2.tar.gz", hash = "sha256:475ebfff1044661b8d969349dbcd2db9bf56d3ee78c0627e324769b49a27a78f"}, -] - [[package]] name = "filelock" -version = "3.15.0" +version = "3.14.0" description = "A platform independent file lock." optional = false python-versions = ">=3.8" files = [ - {file = "filelock-3.15.0-py3-none-any.whl", hash = "sha256:a44ed538e517cc4c9534da2a0bf8a4911cac9a78e30adfafc344c0df56a9f1ed"}, - {file = "filelock-3.15.0.tar.gz", hash = "sha256:261e8674273052f1bb97e4e381fdef93163610e56607f6953a5087b418a88886"}, + {file = "filelock-3.14.0-py3-none-any.whl", hash = "sha256:43339835842f110ca7ae60f1e1c160714c5a6afd15a2873419ab185334975c0f"}, + {file = "filelock-3.14.0.tar.gz", hash = "sha256:6ea72da3be9b8c82afd3edcf99f2fffbb5076335a5ae4d03248bb5b6c3eae78a"}, ] [package.extras] docs = ["furo (>=2023.9.10)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] -testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8.0.1)", "pytest (>=7.4.3)", "pytest-asyncio (>=0.21)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8.0.1)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)"] typing = ["typing-extensions (>=4.8)"] -[[package]] -name = "fonttools" -version = "4.53.0" -description = "Tools to manipulate font files" -optional = true -python-versions = ">=3.8" -files = [ - {file = "fonttools-4.53.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:52a6e0a7a0bf611c19bc8ec8f7592bdae79c8296c70eb05917fd831354699b20"}, - {file = "fonttools-4.53.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:099634631b9dd271d4a835d2b2a9e042ccc94ecdf7e2dd9f7f34f7daf333358d"}, - {file = "fonttools-4.53.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e40013572bfb843d6794a3ce076c29ef4efd15937ab833f520117f8eccc84fd6"}, - {file = "fonttools-4.53.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:715b41c3e231f7334cbe79dfc698213dcb7211520ec7a3bc2ba20c8515e8a3b5"}, - {file = "fonttools-4.53.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:74ae2441731a05b44d5988d3ac2cf784d3ee0a535dbed257cbfff4be8bb49eb9"}, - {file = "fonttools-4.53.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:95db0c6581a54b47c30860d013977b8a14febc206c8b5ff562f9fe32738a8aca"}, - {file = "fonttools-4.53.0-cp310-cp310-win32.whl", hash = "sha256:9cd7a6beec6495d1dffb1033d50a3f82dfece23e9eb3c20cd3c2444d27514068"}, - {file = "fonttools-4.53.0-cp310-cp310-win_amd64.whl", hash = "sha256:daaef7390e632283051e3cf3e16aff2b68b247e99aea916f64e578c0449c9c68"}, - {file = "fonttools-4.53.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a209d2e624ba492df4f3bfad5996d1f76f03069c6133c60cd04f9a9e715595ec"}, - {file = "fonttools-4.53.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4f520d9ac5b938e6494f58a25c77564beca7d0199ecf726e1bd3d56872c59749"}, - {file = "fonttools-4.53.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eceef49f457253000e6a2d0f7bd08ff4e9fe96ec4ffce2dbcb32e34d9c1b8161"}, - {file = "fonttools-4.53.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa1f3e34373aa16045484b4d9d352d4c6b5f9f77ac77a178252ccbc851e8b2ee"}, - {file = "fonttools-4.53.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:28d072169fe8275fb1a0d35e3233f6df36a7e8474e56cb790a7258ad822b6fd6"}, - {file = "fonttools-4.53.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4a2a6ba400d386e904fd05db81f73bee0008af37799a7586deaa4aef8cd5971e"}, - {file = "fonttools-4.53.0-cp311-cp311-win32.whl", hash = "sha256:bb7273789f69b565d88e97e9e1da602b4ee7ba733caf35a6c2affd4334d4f005"}, - {file = "fonttools-4.53.0-cp311-cp311-win_amd64.whl", hash = "sha256:9fe9096a60113e1d755e9e6bda15ef7e03391ee0554d22829aa506cdf946f796"}, - {file = "fonttools-4.53.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d8f191a17369bd53a5557a5ee4bab91d5330ca3aefcdf17fab9a497b0e7cff7a"}, - {file = "fonttools-4.53.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:93156dd7f90ae0a1b0e8871032a07ef3178f553f0c70c386025a808f3a63b1f4"}, - {file = "fonttools-4.53.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bff98816cb144fb7b85e4b5ba3888a33b56ecef075b0e95b95bcd0a5fbf20f06"}, - {file = "fonttools-4.53.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:973d030180eca8255b1bce6ffc09ef38a05dcec0e8320cc9b7bcaa65346f341d"}, - {file = "fonttools-4.53.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c4ee5a24e281fbd8261c6ab29faa7fd9a87a12e8c0eed485b705236c65999109"}, - {file = "fonttools-4.53.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bd5bc124fae781a4422f61b98d1d7faa47985f663a64770b78f13d2c072410c2"}, - {file = "fonttools-4.53.0-cp312-cp312-win32.whl", hash = "sha256:a239afa1126b6a619130909c8404070e2b473dd2b7fc4aacacd2e763f8597fea"}, - {file = "fonttools-4.53.0-cp312-cp312-win_amd64.whl", hash = "sha256:45b4afb069039f0366a43a5d454bc54eea942bfb66b3fc3e9a2c07ef4d617380"}, - {file = "fonttools-4.53.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:93bc9e5aaa06ff928d751dc6be889ff3e7d2aa393ab873bc7f6396a99f6fbb12"}, - {file = "fonttools-4.53.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2367d47816cc9783a28645bc1dac07f8ffc93e0f015e8c9fc674a5b76a6da6e4"}, - {file = "fonttools-4.53.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:907fa0b662dd8fc1d7c661b90782ce81afb510fc4b7aa6ae7304d6c094b27bce"}, - {file = "fonttools-4.53.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e0ad3c6ea4bd6a289d958a1eb922767233f00982cf0fe42b177657c86c80a8f"}, - {file = "fonttools-4.53.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:73121a9b7ff93ada888aaee3985a88495489cc027894458cb1a736660bdfb206"}, - {file = "fonttools-4.53.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:ee595d7ba9bba130b2bec555a40aafa60c26ce68ed0cf509983e0f12d88674fd"}, - {file = "fonttools-4.53.0-cp38-cp38-win32.whl", hash = "sha256:fca66d9ff2ac89b03f5aa17e0b21a97c21f3491c46b583bb131eb32c7bab33af"}, - {file = "fonttools-4.53.0-cp38-cp38-win_amd64.whl", hash = "sha256:31f0e3147375002aae30696dd1dc596636abbd22fca09d2e730ecde0baad1d6b"}, - {file = "fonttools-4.53.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7d6166192dcd925c78a91d599b48960e0a46fe565391c79fe6de481ac44d20ac"}, - {file = "fonttools-4.53.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ef50ec31649fbc3acf6afd261ed89d09eb909b97cc289d80476166df8438524d"}, - {file = "fonttools-4.53.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f193f060391a455920d61684a70017ef5284ccbe6023bb056e15e5ac3de11d1"}, - {file = "fonttools-4.53.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba9f09ff17f947392a855e3455a846f9855f6cf6bec33e9a427d3c1d254c712f"}, - {file = "fonttools-4.53.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0c555e039d268445172b909b1b6bdcba42ada1cf4a60e367d68702e3f87e5f64"}, - {file = "fonttools-4.53.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a4788036201c908079e89ae3f5399b33bf45b9ea4514913f4dbbe4fac08efe0"}, - {file = "fonttools-4.53.0-cp39-cp39-win32.whl", hash = "sha256:d1a24f51a3305362b94681120c508758a88f207fa0a681c16b5a4172e9e6c7a9"}, - {file = "fonttools-4.53.0-cp39-cp39-win_amd64.whl", hash = "sha256:1e677bfb2b4bd0e5e99e0f7283e65e47a9814b0486cb64a41adf9ef110e078f2"}, - {file = "fonttools-4.53.0-py3-none-any.whl", hash = "sha256:6b4f04b1fbc01a3569d63359f2227c89ab294550de277fd09d8fca6185669fa4"}, - {file = "fonttools-4.53.0.tar.gz", hash = "sha256:c93ed66d32de1559b6fc348838c7572d5c0ac1e4a258e76763a5caddd8944002"}, -] - -[package.extras] -all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "pycairo", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0)", "xattr", "zopfli (>=0.1.4)"] -graphite = ["lz4 (>=1.7.4.2)"] -interpolatable = ["munkres", "pycairo", "scipy"] -lxml = ["lxml (>=4.0)"] -pathops = ["skia-pathops (>=0.5.0)"] -plot = ["matplotlib"] -repacker = ["uharfbuzz (>=0.23.0)"] -symfont = ["sympy"] -type1 = ["xattr"] -ufo = ["fs (>=2.2.0,<3)"] -unicode = ["unicodedata2 (>=15.1.0)"] -woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] - [[package]] name = "frozenlist" version = "1.4.1" @@ -1451,24 +1082,22 @@ files = [ [[package]] name = "fsspec" -version = "2024.3.1" +version = "2024.6.0" description = "File-system specification" optional = false python-versions = ">=3.8" files = [ - {file = "fsspec-2024.3.1-py3-none-any.whl", hash = "sha256:918d18d41bf73f0e2b261824baeb1b124bcf771767e3a26425cd7dec3332f512"}, - {file = "fsspec-2024.3.1.tar.gz", hash = "sha256:f39780e282d7d117ffb42bb96992f8a90795e4d0fb0f661a70ca39fe9c43ded9"}, + {file = "fsspec-2024.6.0-py3-none-any.whl", hash = "sha256:58d7122eb8a1a46f7f13453187bfea4972d66bf01618d37366521b1998034cee"}, + {file = "fsspec-2024.6.0.tar.gz", hash = "sha256:f579960a56e6d8038a9efc8f9c77279ec12e6299aa86b0769a7e9c46b94527c2"}, ] -[package.dependencies] -aiohttp = {version = "<4.0.0a0 || >4.0.0a0,<4.0.0a1 || >4.0.0a1", optional = true, markers = "extra == \"http\""} - [package.extras] abfs = ["adlfs"] adl = ["adlfs"] arrow = ["pyarrow (>=1)"] dask = ["dask", "distributed"] -devel = ["pytest", "pytest-cov"] +dev = ["pre-commit", "ruff"] +doc = ["numpydoc", "sphinx", "sphinx-design", "sphinx-rtd-theme", "yarl"] dropbox = ["dropbox", "dropboxdrivefs", "requests"] full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "dask", "distributed", "dropbox", "dropboxdrivefs", "fusepy", "gcsfs", "libarchive-c", "ocifs", "panel", "paramiko", "pyarrow (>=1)", "pygit2", "requests", "s3fs", "smbprotocol", "tqdm"] fuse = ["fusepy"] @@ -1485,6 +1114,9 @@ s3 = ["s3fs"] sftp = ["paramiko"] smb = ["smbprotocol"] ssh = ["paramiko"] +test = ["aiohttp (!=4.0.0a0,!=4.0.0a1)", "numpy", "pytest", "pytest-asyncio (!=0.22.0)", "pytest-benchmark", "pytest-cov", "pytest-mock", "pytest-recording", "pytest-rerunfailures", "requests"] +test-downstream = ["aiobotocore (>=2.5.4,<3.0.0)", "dask-expr", "dask[dataframe,test]", "moto[server] (>4,<5)", "pytest-timeout", "xarray"] +test-full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "cloudpickle", "dask", "distributed", "dropbox", "dropboxdrivefs", "fastparquet", "fusepy", "gcsfs", "jinja2", "kerchunk", "libarchive-c", "lz4", "notebook", "numpy", "ocifs", "pandas", "panel", "paramiko", "pyarrow", "pyarrow (>=1)", "pyftpdlib", "pygit2", "pytest", "pytest-asyncio (!=0.22.0)", "pytest-benchmark", "pytest-cov", "pytest-mock", "pytest-recording", "pytest-rerunfailures", "python-snappy", "requests", "smbprotocol", "tqdm", "urllib3", "zarr", "zstandard"] tqdm = ["tqdm"] [[package]] @@ -1519,68 +1151,6 @@ gitdb = ">=4.0.1,<5" doc = ["sphinx (==4.3.2)", "sphinx-autodoc-typehints", "sphinx-rtd-theme", "sphinxcontrib-applehelp (>=1.0.2,<=1.0.4)", "sphinxcontrib-devhelp (==1.0.2)", "sphinxcontrib-htmlhelp (>=2.0.0,<=2.0.1)", "sphinxcontrib-qthelp (==1.0.3)", "sphinxcontrib-serializinghtml (==1.1.5)"] test = ["coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mock", "mypy", "pre-commit", "pytest (>=7.3.1)", "pytest-cov", "pytest-instafail", "pytest-mock", "pytest-sugar", "typing-extensions"] -[[package]] -name = "gradio" -version = "4.36.1" -description = "Python library for easily interacting with trained machine learning models" -optional = true -python-versions = ">=3.8" -files = [ - {file = "gradio-4.36.1-py3-none-any.whl", hash = "sha256:31edb504c88c1db06c08daf750dcdaa072087ada59aa4ff83c1a3f4c2075912d"}, - {file = "gradio-4.36.1.tar.gz", hash = "sha256:72b2d21156d3467123bae6f30f463f002ef06e272766274308f5ed3cac37563b"}, -] - -[package.dependencies] -aiofiles = ">=22.0,<24.0" -altair = ">=4.2.0,<6.0" -fastapi = "*" -ffmpy = "*" -gradio-client = "1.0.1" -httpx = ">=0.24.1" -huggingface-hub = ">=0.19.3" -importlib-resources = ">=1.3,<7.0" -jinja2 = "<4.0" -markupsafe = ">=2.0,<3.0" -matplotlib = ">=3.0,<4.0" -numpy = ">=1.0,<3.0" -orjson = ">=3.0,<4.0" -packaging = "*" -pandas = ">=1.0,<3.0" -pillow = ">=8.0,<11.0" -pydantic = ">=2.0" -pydub = "*" -python-multipart = ">=0.0.9" -pyyaml = ">=5.0,<7.0" -ruff = {version = ">=0.2.2", markers = "sys_platform != \"emscripten\""} -semantic-version = ">=2.0,<3.0" -tomlkit = "0.12.0" -typer = {version = ">=0.12,<1.0", markers = "sys_platform != \"emscripten\""} -typing-extensions = ">=4.0,<5.0" -urllib3 = ">=2.0,<3.0" -uvicorn = {version = ">=0.14.0", markers = "sys_platform != \"emscripten\""} - -[package.extras] -oauth = ["authlib", "itsdangerous"] - -[[package]] -name = "gradio-client" -version = "1.0.1" -description = "Python library for easily interacting with trained machine learning models" -optional = true -python-versions = ">=3.8" -files = [ - {file = "gradio_client-1.0.1-py3-none-any.whl", hash = "sha256:fe3f527349ac38cbc5deb6d629a15c06fa3b4a68d1e04dc5ca9fbb1896318629"}, - {file = "gradio_client-1.0.1.tar.gz", hash = "sha256:b3fa4d1c626067cc866d6172caa75d373e114bacfba650e49e293646d786646a"}, -] - -[package.dependencies] -fsspec = "*" -httpx = ">=0.24.1" -huggingface-hub = ">=0.19.3" -packaging = "*" -typing-extensions = ">=4.0,<5.0" -websockets = ">=10.0,<12.0" - [[package]] name = "greenlet" version = "3.0.3" @@ -1854,21 +1424,6 @@ docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.link perf = ["ipython"] testing = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-perf (>=0.9.2)", "pytest-ruff (>=0.2.1)"] -[[package]] -name = "importlib-resources" -version = "6.4.0" -description = "Read resources from Python packages" -optional = true -python-versions = ">=3.8" -files = [ - {file = "importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c"}, - {file = "importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145"}, -] - -[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 = ["jaraco.test (>=5.4)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "zipp (>=3.17)"] - [[package]] name = "iniconfig" version = "2.0.0" @@ -1905,39 +1460,6 @@ files = [ {file = "intel_openmp-2021.4.0-py2.py3-none-win_amd64.whl", hash = "sha256:eef4c8bcc8acefd7f5cd3b9384dbf73d59e2c99fc56545712ded913f43c4a94f"}, ] -[[package]] -name = "ipykernel" -version = "6.29.4" -description = "IPython Kernel for Jupyter" -optional = true -python-versions = ">=3.8" -files = [ - {file = "ipykernel-6.29.4-py3-none-any.whl", hash = "sha256:1181e653d95c6808039c509ef8e67c4126b3b3af7781496c7cbfb5ed938a27da"}, - {file = "ipykernel-6.29.4.tar.gz", hash = "sha256:3d44070060f9475ac2092b760123fadf105d2e2493c24848b6691a7c4f42af5c"}, -] - -[package.dependencies] -appnope = {version = "*", markers = "platform_system == \"Darwin\""} -comm = ">=0.1.1" -debugpy = ">=1.6.5" -ipython = ">=7.23.1" -jupyter-client = ">=6.1.12" -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" -matplotlib-inline = ">=0.1" -nest-asyncio = "*" -packaging = "*" -psutil = "*" -pyzmq = ">=24" -tornado = ">=6.1" -traitlets = ">=5.4.0" - -[package.extras] -cov = ["coverage[toml]", "curio", "matplotlib", "pytest-cov", "trio"] -docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"] -pyqt5 = ["pyqt5"] -pyside6 = ["pyside6"] -test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.23.5)", "pytest-cov", "pytest-timeout"] - [[package]] name = "ipython" version = "8.25.0" @@ -1979,7 +1501,7 @@ test-extra = ["curio", "ipython[test]", "matplotlib (!=3.2.0)", "nbformat", "num name = "isodate" version = "0.6.1" description = "An ISO 8601 date/time/duration parser and formatter" -optional = false +optional = true python-versions = "*" files = [ {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, @@ -2083,119 +1605,6 @@ files = [ {file = "joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e"}, ] -[[package]] -name = "jsonpatch" -version = "1.33" -description = "Apply JSON-Patches (RFC 6902)" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" -files = [ - {file = "jsonpatch-1.33-py2.py3-none-any.whl", hash = "sha256:0ae28c0cd062bbd8b8ecc26d7d164fbbea9652a1a3693f3b956c1eae5145dade"}, - {file = "jsonpatch-1.33.tar.gz", hash = "sha256:9fcd4009c41e6d12348b4a0ff2563ba56a2923a7dfee731d004e212e1ee5030c"}, -] - -[package.dependencies] -jsonpointer = ">=1.9" - -[[package]] -name = "jsonpointer" -version = "3.0.0" -description = "Identify specific nodes in a JSON document (RFC 6901)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, - {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, -] - -[[package]] -name = "jsonschema" -version = "4.22.0" -description = "An implementation of JSON Schema validation for Python" -optional = true -python-versions = ">=3.8" -files = [ - {file = "jsonschema-4.22.0-py3-none-any.whl", hash = "sha256:ff4cfd6b1367a40e7bc6411caec72effadd3db0bbe5017de188f2d6108335802"}, - {file = "jsonschema-4.22.0.tar.gz", hash = "sha256:5b22d434a45935119af990552c862e5d6d564e8f6601206b305a61fdf661a2b7"}, -] - -[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.12.1" -description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" -optional = true -python-versions = ">=3.8" -files = [ - {file = "jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c"}, - {file = "jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc"}, -] - -[package.dependencies] -referencing = ">=0.31.0" - -[[package]] -name = "jupyter-client" -version = "8.6.2" -description = "Jupyter protocol implementation and client libraries" -optional = true -python-versions = ">=3.8" -files = [ - {file = "jupyter_client-8.6.2-py3-none-any.whl", hash = "sha256:50cbc5c66fd1b8f65ecb66bc490ab73217993632809b6e505687de18e9dea39f"}, - {file = "jupyter_client-8.6.2.tar.gz", hash = "sha256:2bda14d55ee5ba58552a8c53ae43d215ad9868853489213f37da060ced54d8df"}, -] - -[package.dependencies] -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" -python-dateutil = ">=2.8.2" -pyzmq = ">=23.0" -tornado = ">=6.2" -traitlets = ">=5.3" - -[package.extras] -docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] -test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest (<8.2.0)", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] - -[[package]] -name = "jupyter-core" -version = "5.7.2" -description = "Jupyter core package. A base package on which Jupyter projects rely." -optional = true -python-versions = ">=3.8" -files = [ - {file = "jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409"}, - {file = "jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9"}, -] - -[package.dependencies] -platformdirs = ">=2.5" -pywin32 = {version = ">=300", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} -traitlets = ">=5.3" - -[package.extras] -docs = ["myst-parser", "pydata-sphinx-theme", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"] -test = ["ipykernel", "pre-commit", "pytest (<8)", "pytest-cov", "pytest-timeout"] - -[[package]] -name = "jupyterlab-pygments" -version = "0.3.0" -description = "Pygments theme using JupyterLab CSS variables" -optional = true -python-versions = ">=3.8" -files = [ - {file = "jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780"}, - {file = "jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d"}, -] - [[package]] name = "keyring" version = "24.3.1" @@ -2219,217 +1628,6 @@ completion = ["shtab (>=1.1.0)"] docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)"] -[[package]] -name = "kiwisolver" -version = "1.4.5" -description = "A fast implementation of the Cassowary constraint solver" -optional = true -python-versions = ">=3.7" -files = [ - {file = "kiwisolver-1.4.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:05703cf211d585109fcd72207a31bb170a0f22144d68298dc5e61b3c946518af"}, - {file = "kiwisolver-1.4.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:146d14bebb7f1dc4d5fbf74f8a6cb15ac42baadee8912eb84ac0b3b2a3dc6ac3"}, - {file = "kiwisolver-1.4.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6ef7afcd2d281494c0a9101d5c571970708ad911d028137cd558f02b851c08b4"}, - {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9eaa8b117dc8337728e834b9c6e2611f10c79e38f65157c4c38e9400286f5cb1"}, - {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ec20916e7b4cbfb1f12380e46486ec4bcbaa91a9c448b97023fde0d5bbf9e4ff"}, - {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39b42c68602539407884cf70d6a480a469b93b81b7701378ba5e2328660c847a"}, - {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa12042de0171fad672b6c59df69106d20d5596e4f87b5e8f76df757a7c399aa"}, - {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a40773c71d7ccdd3798f6489aaac9eee213d566850a9533f8d26332d626b82c"}, - {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:19df6e621f6d8b4b9c4d45f40a66839294ff2bb235e64d2178f7522d9170ac5b"}, - {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:83d78376d0d4fd884e2c114d0621624b73d2aba4e2788182d286309ebdeed770"}, - {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e391b1f0a8a5a10ab3b9bb6afcfd74f2175f24f8975fb87ecae700d1503cdee0"}, - {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:852542f9481f4a62dbb5dd99e8ab7aedfeb8fb6342349a181d4036877410f525"}, - {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59edc41b24031bc25108e210c0def6f6c2191210492a972d585a06ff246bb79b"}, - {file = "kiwisolver-1.4.5-cp310-cp310-win32.whl", hash = "sha256:a6aa6315319a052b4ee378aa171959c898a6183f15c1e541821c5c59beaa0238"}, - {file = "kiwisolver-1.4.5-cp310-cp310-win_amd64.whl", hash = "sha256:d0ef46024e6a3d79c01ff13801cb19d0cad7fd859b15037aec74315540acc276"}, - {file = "kiwisolver-1.4.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:11863aa14a51fd6ec28688d76f1735f8f69ab1fabf388851a595d0721af042f5"}, - {file = "kiwisolver-1.4.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8ab3919a9997ab7ef2fbbed0cc99bb28d3c13e6d4b1ad36e97e482558a91be90"}, - {file = "kiwisolver-1.4.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fcc700eadbbccbf6bc1bcb9dbe0786b4b1cb91ca0dcda336eef5c2beed37b797"}, - {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dfdd7c0b105af050eb3d64997809dc21da247cf44e63dc73ff0fd20b96be55a9"}, - {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76c6a5964640638cdeaa0c359382e5703e9293030fe730018ca06bc2010c4437"}, - {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbea0db94288e29afcc4c28afbf3a7ccaf2d7e027489c449cf7e8f83c6346eb9"}, - {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ceec1a6bc6cab1d6ff5d06592a91a692f90ec7505d6463a88a52cc0eb58545da"}, - {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:040c1aebeda72197ef477a906782b5ab0d387642e93bda547336b8957c61022e"}, - {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f91de7223d4c7b793867797bacd1ee53bfe7359bd70d27b7b58a04efbb9436c8"}, - {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:faae4860798c31530dd184046a900e652c95513796ef51a12bc086710c2eec4d"}, - {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0157420efcb803e71d1b28e2c287518b8808b7cf1ab8af36718fd0a2c453eb0"}, - {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:06f54715b7737c2fecdbf140d1afb11a33d59508a47bf11bb38ecf21dc9ab79f"}, - {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fdb7adb641a0d13bdcd4ef48e062363d8a9ad4a182ac7647ec88f695e719ae9f"}, - {file = "kiwisolver-1.4.5-cp311-cp311-win32.whl", hash = "sha256:bb86433b1cfe686da83ce32a9d3a8dd308e85c76b60896d58f082136f10bffac"}, - {file = "kiwisolver-1.4.5-cp311-cp311-win_amd64.whl", hash = "sha256:6c08e1312a9cf1074d17b17728d3dfce2a5125b2d791527f33ffbe805200a355"}, - {file = "kiwisolver-1.4.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:32d5cf40c4f7c7b3ca500f8985eb3fb3a7dfc023215e876f207956b5ea26632a"}, - {file = "kiwisolver-1.4.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f846c260f483d1fd217fe5ed7c173fb109efa6b1fc8381c8b7552c5781756192"}, - {file = "kiwisolver-1.4.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5ff5cf3571589b6d13bfbfd6bcd7a3f659e42f96b5fd1c4830c4cf21d4f5ef45"}, - {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7269d9e5f1084a653d575c7ec012ff57f0c042258bf5db0954bf551c158466e7"}, - {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da802a19d6e15dffe4b0c24b38b3af68e6c1a68e6e1d8f30148c83864f3881db"}, - {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3aba7311af82e335dd1e36ffff68aaca609ca6290c2cb6d821a39aa075d8e3ff"}, - {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:763773d53f07244148ccac5b084da5adb90bfaee39c197554f01b286cf869228"}, - {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2270953c0d8cdab5d422bee7d2007f043473f9d2999631c86a223c9db56cbd16"}, - {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d099e745a512f7e3bbe7249ca835f4d357c586d78d79ae8f1dcd4d8adeb9bda9"}, - {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:74db36e14a7d1ce0986fa104f7d5637aea5c82ca6326ed0ec5694280942d1162"}, - {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7e5bab140c309cb3a6ce373a9e71eb7e4873c70c2dda01df6820474f9889d6d4"}, - {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:0f114aa76dc1b8f636d077979c0ac22e7cd8f3493abbab152f20eb8d3cda71f3"}, - {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:88a2df29d4724b9237fc0c6eaf2a1adae0cdc0b3e9f4d8e7dc54b16812d2d81a"}, - {file = "kiwisolver-1.4.5-cp312-cp312-win32.whl", hash = "sha256:72d40b33e834371fd330fb1472ca19d9b8327acb79a5821d4008391db8e29f20"}, - {file = "kiwisolver-1.4.5-cp312-cp312-win_amd64.whl", hash = "sha256:2c5674c4e74d939b9d91dda0fae10597ac7521768fec9e399c70a1f27e2ea2d9"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3a2b053a0ab7a3960c98725cfb0bf5b48ba82f64ec95fe06f1d06c99b552e130"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3cd32d6c13807e5c66a7cbb79f90b553642f296ae4518a60d8d76243b0ad2898"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:59ec7b7c7e1a61061850d53aaf8e93db63dce0c936db1fda2658b70e4a1be709"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:da4cfb373035def307905d05041c1d06d8936452fe89d464743ae7fb8371078b"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2400873bccc260b6ae184b2b8a4fec0e4082d30648eadb7c3d9a13405d861e89"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1b04139c4236a0f3aff534479b58f6f849a8b351e1314826c2d230849ed48985"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:4e66e81a5779b65ac21764c295087de82235597a2293d18d943f8e9e32746265"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:7931d8f1f67c4be9ba1dd9c451fb0eeca1a25b89e4d3f89e828fe12a519b782a"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:b3f7e75f3015df442238cca659f8baa5f42ce2a8582727981cbfa15fee0ee205"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:bbf1d63eef84b2e8c89011b7f2235b1e0bf7dacc11cac9431fc6468e99ac77fb"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4c380469bd3f970ef677bf2bcba2b6b0b4d5c75e7a020fb863ef75084efad66f"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-win32.whl", hash = "sha256:9408acf3270c4b6baad483865191e3e582b638b1654a007c62e3efe96f09a9a3"}, - {file = "kiwisolver-1.4.5-cp37-cp37m-win_amd64.whl", hash = "sha256:5b94529f9b2591b7af5f3e0e730a4e0a41ea174af35a4fd067775f9bdfeee01a"}, - {file = "kiwisolver-1.4.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:11c7de8f692fc99816e8ac50d1d1aef4f75126eefc33ac79aac02c099fd3db71"}, - {file = "kiwisolver-1.4.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:53abb58632235cd154176ced1ae8f0d29a6657aa1aa9decf50b899b755bc2b93"}, - {file = "kiwisolver-1.4.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:88b9f257ca61b838b6f8094a62418421f87ac2a1069f7e896c36a7d86b5d4c29"}, - {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3195782b26fc03aa9c6913d5bad5aeb864bdc372924c093b0f1cebad603dd712"}, - {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc579bf0f502e54926519451b920e875f433aceb4624a3646b3252b5caa9e0b6"}, - {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a580c91d686376f0f7c295357595c5a026e6cbc3d77b7c36e290201e7c11ecb"}, - {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cfe6ab8da05c01ba6fbea630377b5da2cd9bcbc6338510116b01c1bc939a2c18"}, - {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:d2e5a98f0ec99beb3c10e13b387f8db39106d53993f498b295f0c914328b1333"}, - {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a51a263952b1429e429ff236d2f5a21c5125437861baeed77f5e1cc2d2c7c6da"}, - {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3edd2fa14e68c9be82c5b16689e8d63d89fe927e56debd6e1dbce7a26a17f81b"}, - {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:74d1b44c6cfc897df648cc9fdaa09bc3e7679926e6f96df05775d4fb3946571c"}, - {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:76d9289ed3f7501012e05abb8358bbb129149dbd173f1f57a1bf1c22d19ab7cc"}, - {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:92dea1ffe3714fa8eb6a314d2b3c773208d865a0e0d35e713ec54eea08a66250"}, - {file = "kiwisolver-1.4.5-cp38-cp38-win32.whl", hash = "sha256:5c90ae8c8d32e472be041e76f9d2f2dbff4d0b0be8bd4041770eddb18cf49a4e"}, - {file = "kiwisolver-1.4.5-cp38-cp38-win_amd64.whl", hash = "sha256:c7940c1dc63eb37a67721b10d703247552416f719c4188c54e04334321351ced"}, - {file = "kiwisolver-1.4.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9407b6a5f0d675e8a827ad8742e1d6b49d9c1a1da5d952a67d50ef5f4170b18d"}, - {file = "kiwisolver-1.4.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:15568384086b6df3c65353820a4473575dbad192e35010f622c6ce3eebd57af9"}, - {file = "kiwisolver-1.4.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0dc9db8e79f0036e8173c466d21ef18e1befc02de8bf8aa8dc0813a6dc8a7046"}, - {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:cdc8a402aaee9a798b50d8b827d7ecf75edc5fb35ea0f91f213ff927c15f4ff0"}, - {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6c3bd3cde54cafb87d74d8db50b909705c62b17c2099b8f2e25b461882e544ff"}, - {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:955e8513d07a283056b1396e9a57ceddbd272d9252c14f154d450d227606eb54"}, - {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:346f5343b9e3f00b8db8ba359350eb124b98c99efd0b408728ac6ebf38173958"}, - {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b9098e0049e88c6a24ff64545cdfc50807818ba6c1b739cae221bbbcbc58aad3"}, - {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:00bd361b903dc4bbf4eb165f24d1acbee754fce22ded24c3d56eec268658a5cf"}, - {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7b8b454bac16428b22560d0a1cf0a09875339cab69df61d7805bf48919415901"}, - {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f1d072c2eb0ad60d4c183f3fb44ac6f73fb7a8f16a2694a91f988275cbf352f9"}, - {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:31a82d498054cac9f6d0b53d02bb85811185bcb477d4b60144f915f3b3126342"}, - {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6512cb89e334e4700febbffaaa52761b65b4f5a3cf33f960213d5656cea36a77"}, - {file = "kiwisolver-1.4.5-cp39-cp39-win32.whl", hash = "sha256:9db8ea4c388fdb0f780fe91346fd438657ea602d58348753d9fb265ce1bca67f"}, - {file = "kiwisolver-1.4.5-cp39-cp39-win_amd64.whl", hash = "sha256:59415f46a37f7f2efeec758353dd2eae1b07640d8ca0f0c42548ec4125492635"}, - {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:5c7b3b3a728dc6faf3fc372ef24f21d1e3cee2ac3e9596691d746e5a536de920"}, - {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:620ced262a86244e2be10a676b646f29c34537d0d9cc8eb26c08f53d98013390"}, - {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:378a214a1e3bbf5ac4a8708304318b4f890da88c9e6a07699c4ae7174c09a68d"}, - {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf7be1207676ac608a50cd08f102f6742dbfc70e8d60c4db1c6897f62f71523"}, - {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:ba55dce0a9b8ff59495ddd050a0225d58bd0983d09f87cfe2b6aec4f2c1234e4"}, - {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:fd32ea360bcbb92d28933fc05ed09bffcb1704ba3fc7942e81db0fd4f81a7892"}, - {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5e7139af55d1688f8b960ee9ad5adafc4ac17c1c473fe07133ac092310d76544"}, - {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dced8146011d2bc2e883f9bd68618b8247387f4bbec46d7392b3c3b032640126"}, - {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9bf3325c47b11b2e51bca0824ea217c7cd84491d8ac4eefd1e409705ef092bd"}, - {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:5794cf59533bc3f1b1c821f7206a3617999db9fbefc345360aafe2e067514929"}, - {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e368f200bbc2e4f905b8e71eb38b3c04333bddaa6a2464a6355487b02bb7fb09"}, - {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5d706eba36b4c4d5bc6c6377bb6568098765e990cfc21ee16d13963fab7b3e7"}, - {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85267bd1aa8880a9c88a8cb71e18d3d64d2751a790e6ca6c27b8ccc724bcd5ad"}, - {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:210ef2c3a1f03272649aff1ef992df2e724748918c4bc2d5a90352849eb40bea"}, - {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:11d011a7574eb3b82bcc9c1a1d35c1d7075677fdd15de527d91b46bd35e935ee"}, - {file = "kiwisolver-1.4.5.tar.gz", hash = "sha256:e57e563a57fb22a142da34f38acc2fc1a5c864bc29ca1517a88abc963e60d6ec"}, -] - -[[package]] -name = "langchain" -version = "0.2.3" -description = "Building applications with LLMs through composability" -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langchain-0.2.3-py3-none-any.whl", hash = "sha256:5dc33cd9c8008693d328b7cb698df69073acecc89ad9c2a95f243b3314f8d834"}, - {file = "langchain-0.2.3.tar.gz", hash = "sha256:81962cc72cce6515f7bd71e01542727870789bf8b666c6913d85559080c1a201"}, -] - -[package.dependencies] -aiohttp = ">=3.8.3,<4.0.0" -langchain-core = ">=0.2.0,<0.3.0" -langchain-text-splitters = ">=0.2.0,<0.3.0" -langsmith = ">=0.1.17,<0.2.0" -numpy = ">=1,<2" -pydantic = ">=1,<3" -PyYAML = ">=5.3" -requests = ">=2,<3" -SQLAlchemy = ">=1.4,<3" -tenacity = ">=8.1.0,<9.0.0" - -[[package]] -name = "langchain-community" -version = "0.2.4" -description = "Community contributed LangChain integrations." -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langchain_community-0.2.4-py3-none-any.whl", hash = "sha256:8582e9800f4837660dc297cccd2ee1ddc1d8c440d0fe8b64edb07620f0373b0e"}, - {file = "langchain_community-0.2.4.tar.gz", hash = "sha256:2bb6a1a36b8500a564d25d76469c02457b1a7c3afea6d4a609a47c06b993e3e4"}, -] - -[package.dependencies] -aiohttp = ">=3.8.3,<4.0.0" -dataclasses-json = ">=0.5.7,<0.7" -langchain = ">=0.2.0,<0.3.0" -langchain-core = ">=0.2.0,<0.3.0" -langsmith = ">=0.1.0,<0.2.0" -numpy = ">=1,<2" -PyYAML = ">=5.3" -requests = ">=2,<3" -SQLAlchemy = ">=1.4,<3" -tenacity = ">=8.1.0,<9.0.0" - -[[package]] -name = "langchain-core" -version = "0.2.5" -description = "Building applications with LLMs through composability" -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langchain_core-0.2.5-py3-none-any.whl", hash = "sha256:abe5138f22acff23a079ec538be5268bbf97cf023d51987a0dd474d2a16cae3e"}, - {file = "langchain_core-0.2.5.tar.gz", hash = "sha256:4a5c2f56b22396a63ef4790043660e393adbfa6832b978f023ca996a04b8e752"}, -] - -[package.dependencies] -jsonpatch = ">=1.33,<2.0" -langsmith = ">=0.1.66,<0.2.0" -packaging = ">=23.2,<24.0" -pydantic = ">=1,<3" -PyYAML = ">=5.3" -tenacity = ">=8.1.0,<9.0.0" - -[[package]] -name = "langchain-text-splitters" -version = "0.2.1" -description = "LangChain text splitting utilities" -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langchain_text_splitters-0.2.1-py3-none-any.whl", hash = "sha256:c2774a85f17189eaca50339629d2316d13130d4a8d9f1a1a96f3a03670c4a138"}, - {file = "langchain_text_splitters-0.2.1.tar.gz", hash = "sha256:06853d17d7241ecf5c97c7b6ef01f600f9b0fb953dd997838142a527a4f32ea4"}, -] - -[package.dependencies] -langchain-core = ">=0.2.0,<0.3.0" - -[package.extras] -extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] - -[[package]] -name = "langsmith" -version = "0.1.77" -description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." -optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langsmith-0.1.77-py3-none-any.whl", hash = "sha256:2202cc21b1ed7e7b9e5d2af2694be28898afa048c09fdf09f620cbd9301755ae"}, - {file = "langsmith-0.1.77.tar.gz", hash = "sha256:4ace09077a9a4e412afeb4b517ca68e7de7b07f36e4792dc8236ac5207c0c0c7"}, -] - -[package.dependencies] -orjson = ">=3.9.14,<4.0.0" -pydantic = ">=1,<3" -requests = ">=2,<3" - [[package]] name = "llama-cpp-python" version = "0.2.78" @@ -2561,20 +1759,6 @@ huggingface-hub = {version = ">=0.19.0", extras = ["inference"]} llama-index-core = ">=0.10.1,<0.11.0" sentence-transformers = ">=2.6.1,<3.0.0" -[[package]] -name = "llama-index-embeddings-langchain" -version = "0.1.2" -description = "llama-index embeddings langchain integration" -optional = false -python-versions = ">=3.8.1,<4.0" -files = [ - {file = "llama_index_embeddings_langchain-0.1.2-py3-none-any.whl", hash = "sha256:4c771cc4cee3b21d63054663c56b1b0d1b00f5d109b38da7c19d8e7505ab7ee3"}, - {file = "llama_index_embeddings_langchain-0.1.2.tar.gz", hash = "sha256:baf6e20649fa984bc1858a16ba90ba38e8a874611cfaf99015b3d77ef7e1ba69"}, -] - -[package.dependencies] -llama-index-core = ">=0.10.1,<0.11.0" - [[package]] name = "llama-index-embeddings-openai" version = "0.1.10" @@ -2960,58 +2144,6 @@ dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"] docs = ["alabaster (==0.7.16)", "autodocsumm (==0.2.12)", "sphinx (==7.3.7)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] tests = ["pytest", "pytz", "simplejson"] -[[package]] -name = "matplotlib" -version = "3.9.0" -description = "Python plotting package" -optional = true -python-versions = ">=3.9" -files = [ - {file = "matplotlib-3.9.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:2bcee1dffaf60fe7656183ac2190bd630842ff87b3153afb3e384d966b57fe56"}, - {file = "matplotlib-3.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3f988bafb0fa39d1074ddd5bacd958c853e11def40800c5824556eb630f94d3b"}, - {file = "matplotlib-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fe428e191ea016bb278758c8ee82a8129c51d81d8c4bc0846c09e7e8e9057241"}, - {file = "matplotlib-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eaf3978060a106fab40c328778b148f590e27f6fa3cd15a19d6892575bce387d"}, - {file = "matplotlib-3.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2e7f03e5cbbfacdd48c8ea394d365d91ee8f3cae7e6ec611409927b5ed997ee4"}, - {file = "matplotlib-3.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:13beb4840317d45ffd4183a778685e215939be7b08616f431c7795276e067463"}, - {file = "matplotlib-3.9.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:063af8587fceeac13b0936c42a2b6c732c2ab1c98d38abc3337e430e1ff75e38"}, - {file = "matplotlib-3.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9a2fa6d899e17ddca6d6526cf6e7ba677738bf2a6a9590d702c277204a7c6152"}, - {file = "matplotlib-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:550cdda3adbd596078cca7d13ed50b77879104e2e46392dcd7c75259d8f00e85"}, - {file = "matplotlib-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76cce0f31b351e3551d1f3779420cf8f6ec0d4a8cf9c0237a3b549fd28eb4abb"}, - {file = "matplotlib-3.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c53aeb514ccbbcbab55a27f912d79ea30ab21ee0531ee2c09f13800efb272674"}, - {file = "matplotlib-3.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:a5be985db2596d761cdf0c2eaf52396f26e6a64ab46bd8cd810c48972349d1be"}, - {file = "matplotlib-3.9.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:c79f3a585f1368da6049318bdf1f85568d8d04b2e89fc24b7e02cc9b62017382"}, - {file = "matplotlib-3.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bdd1ecbe268eb3e7653e04f451635f0fb0f77f07fd070242b44c076c9106da84"}, - {file = "matplotlib-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d38e85a1a6d732f645f1403ce5e6727fd9418cd4574521d5803d3d94911038e5"}, - {file = "matplotlib-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a490715b3b9984fa609116481b22178348c1a220a4499cda79132000a79b4db"}, - {file = "matplotlib-3.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8146ce83cbc5dc71c223a74a1996d446cd35cfb6a04b683e1446b7e6c73603b7"}, - {file = "matplotlib-3.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:d91a4ffc587bacf5c4ce4ecfe4bcd23a4b675e76315f2866e588686cc97fccdf"}, - {file = "matplotlib-3.9.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:616fabf4981a3b3c5a15cd95eba359c8489c4e20e03717aea42866d8d0465956"}, - {file = "matplotlib-3.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cd53c79fd02f1c1808d2cfc87dd3cf4dbc63c5244a58ee7944497107469c8d8a"}, - {file = "matplotlib-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:06a478f0d67636554fa78558cfbcd7b9dba85b51f5c3b5a0c9be49010cf5f321"}, - {file = "matplotlib-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81c40af649d19c85f8073e25e5806926986806fa6d54be506fbf02aef47d5a89"}, - {file = "matplotlib-3.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52146fc3bd7813cc784562cb93a15788be0b2875c4655e2cc6ea646bfa30344b"}, - {file = "matplotlib-3.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:0fc51eaa5262553868461c083d9adadb11a6017315f3a757fc45ec6ec5f02888"}, - {file = "matplotlib-3.9.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bd4f2831168afac55b881db82a7730992aa41c4f007f1913465fb182d6fb20c0"}, - {file = "matplotlib-3.9.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:290d304e59be2b33ef5c2d768d0237f5bd132986bdcc66f80bc9bcc300066a03"}, - {file = "matplotlib-3.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ff2e239c26be4f24bfa45860c20ffccd118d270c5b5d081fa4ea409b5469fcd"}, - {file = "matplotlib-3.9.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:af4001b7cae70f7eaacfb063db605280058246de590fa7874f00f62259f2df7e"}, - {file = "matplotlib-3.9.0.tar.gz", hash = "sha256:e6d29ea6c19e34b30fb7d88b7081f869a03014f66fe06d62cc77d5a6ea88ed7a"}, -] - -[package.dependencies] -contourpy = ">=1.0.1" -cycler = ">=0.10" -fonttools = ">=4.22.0" -kiwisolver = ">=1.3.1" -numpy = ">=1.23" -packaging = ">=20.0" -pillow = ">=8" -pyparsing = ">=2.3.1" -python-dateutil = ">=2.7" - -[package.extras] -dev = ["meson-python (>=0.13.1)", "numpy (>=1.25)", "pybind11 (>=2.6)", "setuptools (>=64)", "setuptools_scm (>=7)"] - [[package]] name = "matplotlib-inline" version = "0.1.7" @@ -3054,17 +2186,6 @@ files = [ {file = "minijinja-2.0.1.tar.gz", hash = "sha256:e774beffebfb8a1ad17e638ef70917cf5e94593f79acb8a8fff7d983169f3a4e"}, ] -[[package]] -name = "mistune" -version = "3.0.2" -description = "A sane and fast Markdown parser with useful plugins and renderers" -optional = true -python-versions = ">=3.7" -files = [ - {file = "mistune-3.0.2-py3-none-any.whl", hash = "sha256:71481854c30fdbc938963d3605b72501f5c10a9320ecd412c121c163a1c7d205"}, - {file = "mistune-3.0.2.tar.gz", hash = "sha256:fc7f93ded930c92394ef2cb6f04a8aabab4117a91449e72dcc8dfa646a508be8"}, -] - [[package]] name = "mkl" version = "2021.4.0" @@ -3313,30 +2434,6 @@ files = [ {file = "multidict-6.0.5.tar.gz", hash = "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da"}, ] -[[package]] -name = "multiprocess" -version = "0.70.16" -description = "better multiprocessing and multithreading in Python" -optional = true -python-versions = ">=3.8" -files = [ - {file = "multiprocess-0.70.16-pp310-pypy310_pp73-macosx_10_13_x86_64.whl", hash = "sha256:476887be10e2f59ff183c006af746cb6f1fd0eadcfd4ef49e605cbe2659920ee"}, - {file = "multiprocess-0.70.16-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d951bed82c8f73929ac82c61f01a7b5ce8f3e5ef40f5b52553b4f547ce2b08ec"}, - {file = "multiprocess-0.70.16-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:37b55f71c07e2d741374998c043b9520b626a8dddc8b3129222ca4f1a06ef67a"}, - {file = "multiprocess-0.70.16-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:ba8c31889abf4511c7308a8c52bb4a30b9d590e7f58523302ba00237702ca054"}, - {file = "multiprocess-0.70.16-pp39-pypy39_pp73-macosx_10_13_x86_64.whl", hash = "sha256:0dfd078c306e08d46d7a8d06fb120313d87aa43af60d66da43ffff40b44d2f41"}, - {file = "multiprocess-0.70.16-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e7b9d0f307cd9bd50851afaac0dba2cb6c44449efff697df7c7645f7d3f2be3a"}, - {file = "multiprocess-0.70.16-py310-none-any.whl", hash = "sha256:c4a9944c67bd49f823687463660a2d6daae94c289adff97e0f9d696ba6371d02"}, - {file = "multiprocess-0.70.16-py311-none-any.whl", hash = "sha256:af4cabb0dac72abfb1e794fa7855c325fd2b55a10a44628a3c1ad3311c04127a"}, - {file = "multiprocess-0.70.16-py312-none-any.whl", hash = "sha256:fc0544c531920dde3b00c29863377f87e1632601092ea2daca74e4beb40faa2e"}, - {file = "multiprocess-0.70.16-py38-none-any.whl", hash = "sha256:a71d82033454891091a226dfc319d0cfa8019a4e888ef9ca910372a446de4435"}, - {file = "multiprocess-0.70.16-py39-none-any.whl", hash = "sha256:a0bafd3ae1b732eac64be2e72038231c1ba97724b60b09400d68f229fcc2fbf3"}, - {file = "multiprocess-0.70.16.tar.gz", hash = "sha256:161af703d4652a0e1410be6abccecde4a7ddffd19341be0a7011b94aeb171ac1"}, -] - -[package.dependencies] -dill = ">=0.3.8" - [[package]] name = "mypy-extensions" version = "1.0.0" @@ -3348,86 +2445,6 @@ files = [ {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, ] -[[package]] -name = "nbclient" -version = "0.10.0" -description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor." -optional = true -python-versions = ">=3.8.0" -files = [ - {file = "nbclient-0.10.0-py3-none-any.whl", hash = "sha256:f13e3529332a1f1f81d82a53210322476a168bb7090a0289c795fe9cc11c9d3f"}, - {file = "nbclient-0.10.0.tar.gz", hash = "sha256:4b3f1b7dba531e498449c4db4f53da339c91d449dc11e9af3a43b4eb5c5abb09"}, -] - -[package.dependencies] -jupyter-client = ">=6.1.12" -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" -nbformat = ">=5.1" -traitlets = ">=5.4" - -[package.extras] -dev = ["pre-commit"] -docs = ["autodoc-traits", "mock", "moto", "myst-parser", "nbclient[test]", "sphinx (>=1.7)", "sphinx-book-theme", "sphinxcontrib-spelling"] -test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>=7.0.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "testpath", "xmltodict"] - -[[package]] -name = "nbconvert" -version = "7.16.4" -description = "Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (`import nbconvert`) or as a command line tool (invoked as `jupyter nbconvert ...`)." -optional = true -python-versions = ">=3.8" -files = [ - {file = "nbconvert-7.16.4-py3-none-any.whl", hash = "sha256:05873c620fe520b6322bf8a5ad562692343fe3452abda5765c7a34b7d1aa3eb3"}, - {file = "nbconvert-7.16.4.tar.gz", hash = "sha256:86ca91ba266b0a448dc96fa6c5b9d98affabde2867b363258703536807f9f7f4"}, -] - -[package.dependencies] -beautifulsoup4 = "*" -bleach = "!=5.0.0" -defusedxml = "*" -jinja2 = ">=3.0" -jupyter-core = ">=4.7" -jupyterlab-pygments = "*" -markupsafe = ">=2.0" -mistune = ">=2.0.3,<4" -nbclient = ">=0.5.0" -nbformat = ">=5.7" -packaging = "*" -pandocfilters = ">=1.4.1" -pygments = ">=2.4.1" -tinycss2 = "*" -traitlets = ">=5.1" - -[package.extras] -all = ["flaky", "ipykernel", "ipython", "ipywidgets (>=7.5)", "myst-parser", "nbsphinx (>=0.2.12)", "playwright", "pydata-sphinx-theme", "pyqtwebengine (>=5.15)", "pytest (>=7)", "sphinx (==5.0.2)", "sphinxcontrib-spelling", "tornado (>=6.1)"] -docs = ["ipykernel", "ipython", "myst-parser", "nbsphinx (>=0.2.12)", "pydata-sphinx-theme", "sphinx (==5.0.2)", "sphinxcontrib-spelling"] -qtpdf = ["pyqtwebengine (>=5.15)"] -qtpng = ["pyqtwebengine (>=5.15)"] -serve = ["tornado (>=6.1)"] -test = ["flaky", "ipykernel", "ipywidgets (>=7.5)", "pytest (>=7)"] -webpdf = ["playwright"] - -[[package]] -name = "nbformat" -version = "5.10.4" -description = "The Jupyter Notebook format" -optional = true -python-versions = ">=3.8" -files = [ - {file = "nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b"}, - {file = "nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a"}, -] - -[package.dependencies] -fastjsonschema = ">=2.15" -jsonschema = ">=2.6" -jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" -traitlets = ">=5.1" - -[package.extras] -docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] -test = ["pep440", "pre-commit", "pytest", "testpath"] - [[package]] name = "nest-asyncio" version = "1.6.0" @@ -3682,13 +2699,13 @@ files = [ [[package]] name = "openai" -version = "1.33.0" +version = "1.34.0" description = "The official Python library for the openai API" optional = false python-versions = ">=3.7.1" files = [ - {file = "openai-1.33.0-py3-none-any.whl", hash = "sha256:621163b56570897ab8389d187f686a53d4771fd6ce95d481c0a9611fe8bc4229"}, - {file = "openai-1.33.0.tar.gz", hash = "sha256:1169211a7b326ecbc821cafb427c29bfd0871f9a3e0947dd9e51acb3b0f1df78"}, + {file = "openai-1.34.0-py3-none-any.whl", hash = "sha256:018623c2f795424044675c6230fa3bfbf98d9e0aab45d8fd116f2efb2cfb6b7e"}, + {file = "openai-1.34.0.tar.gz", hash = "sha256:95c8e2da4acd6958e626186957d656597613587195abd0fb2527566a93e76770"}, ] [package.dependencies] @@ -3703,70 +2720,15 @@ typing-extensions = ">=4.7,<5" [package.extras] datalib = ["numpy (>=1)", "pandas (>=1.2.3)", "pandas-stubs (>=1.1.0.11)"] -[[package]] -name = "orjson" -version = "3.10.4" -description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -optional = false -python-versions = ">=3.8" -files = [ - {file = "orjson-3.10.4-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:afca963f19ca60c7aedadea9979f769139127288dd58ccf3f7c5e8e6dc62cabf"}, - {file = "orjson-3.10.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42b112eff36ba7ccc7a9d6b87e17b9d6bde4312d05e3ddf66bf5662481dee846"}, - {file = "orjson-3.10.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02b192eaba048b1039eca9a0cef67863bd5623042f5c441889a9957121d97e14"}, - {file = "orjson-3.10.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:827c3d0e4fc44242c82bfdb1a773235b8c0575afee99a9fa9a8ce920c14e440f"}, - {file = "orjson-3.10.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca8ec09724f10ec209244caeb1f9f428b6bb03f2eda9ed5e2c4dd7f2b7fabd44"}, - {file = "orjson-3.10.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8eaa5d531a8fde11993cbcb27e9acf7d9c457ba301adccb7fa3a021bfecab46c"}, - {file = "orjson-3.10.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e112aa7fc4ea67367ec5e86c39a6bb6c5719eddc8f999087b1759e765ddaf2d4"}, - {file = "orjson-3.10.4-cp310-none-win32.whl", hash = "sha256:1538844fb88446c42da3889f8c4ecce95a630b5a5ba18ecdfe5aea596f4dff21"}, - {file = "orjson-3.10.4-cp310-none-win_amd64.whl", hash = "sha256:de02811903a2e434127fba5389c3cc90f689542339a6e52e691ab7f693407b5a"}, - {file = "orjson-3.10.4-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:358afaec75de7237dfea08e6b1b25d226e33a1e3b6dc154fc99eb697f24a1ffa"}, - {file = "orjson-3.10.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb4e292c3198ab3d93e5f877301d2746be4ca0ba2d9c513da5e10eb90e19ff52"}, - {file = "orjson-3.10.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5c39e57cf6323a39238490092985d5d198a7da4a3be013cc891a33fef13a536e"}, - {file = "orjson-3.10.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f86df433fc01361ff9270ad27455ce1ad43cd05e46de7152ca6adb405a16b2f6"}, - {file = "orjson-3.10.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c9966276a2c97e93e6cbe8286537f88b2a071827514f0d9d47a0aefa77db458"}, - {file = "orjson-3.10.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c499a14155a1f5a1e16e0cd31f6cf6f93965ac60a0822bc8340e7e2d3dac1108"}, - {file = "orjson-3.10.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3087023ce904a327c29487eb7e1f2c060070e8dbb9a3991b8e7952a9c6e62f38"}, - {file = "orjson-3.10.4-cp311-none-win32.whl", hash = "sha256:f965893244fe348b59e5ce560693e6dd03368d577ce26849b5d261ce31c70101"}, - {file = "orjson-3.10.4-cp311-none-win_amd64.whl", hash = "sha256:c212f06fad6aa6ce85d5665e91a83b866579f29441a47d3865c57329c0857357"}, - {file = "orjson-3.10.4-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:d0965a8b0131959833ca8a65af60285995d57ced0de2fd8f16fc03235975d238"}, - {file = "orjson-3.10.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27b64695d9f2aef3ae15a0522e370ec95c946aaea7f2c97a1582a62b3bdd9169"}, - {file = "orjson-3.10.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:867d882ddee6a20be4c8b03ae3d2b0333894d53ad632d32bd9b8123649577171"}, - {file = "orjson-3.10.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a0667458f8a8ceb6dee5c08fec0b46195f92c474cbbec71dca2a6b7fd5b67b8d"}, - {file = "orjson-3.10.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3eac9befc4eaec1d1ff3bba6210576be4945332dde194525601c5ddb5c060d3"}, - {file = "orjson-3.10.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4343245443552eae240a33047a6d1bcac7a754ad4b1c57318173c54d7efb9aea"}, - {file = "orjson-3.10.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:30153e269eea43e98918d4d462a36a7065031d9246407dfff2579a4e457515c1"}, - {file = "orjson-3.10.4-cp312-none-win32.whl", hash = "sha256:1a7d092ee043abf3db19c2183115e80676495c9911843fdb3ebd48ca7b73079e"}, - {file = "orjson-3.10.4-cp312-none-win_amd64.whl", hash = "sha256:07a2adbeb8b9efe6d68fc557685954a1f19d9e33f5cc018ae1a89e96647c1b65"}, - {file = "orjson-3.10.4-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f5a746f3d908bce1a1e347b9ca89864047533bdfab5a450066a0315f6566527b"}, - {file = "orjson-3.10.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:465b4a8a3e459f8d304c19071b4badaa9b267c59207a005a7dd9dfe13d3a423f"}, - {file = "orjson-3.10.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:35858d260728c434a3d91b60685ab32418318567e8902039837e1c2af2719e0b"}, - {file = "orjson-3.10.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8a5ba090d40c4460312dd69c232b38c2ff67a823185cfe667e841c9dd5c06841"}, - {file = "orjson-3.10.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5dde86755d064664e62e3612a166c28298aa8dfd35a991553faa58855ae739cc"}, - {file = "orjson-3.10.4-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:020a9e9001cfec85c156ef3b185ff758b62ef986cefdb8384c4579facd5ce126"}, - {file = "orjson-3.10.4-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3bf8e6e3388a2e83a86466c912387e0f0a765494c65caa7e865f99969b76ba0d"}, - {file = "orjson-3.10.4-cp38-none-win32.whl", hash = "sha256:c5a1cca6a4a3129db3da68a25dc0a459a62ae58e284e363b35ab304202d9ba9e"}, - {file = "orjson-3.10.4-cp38-none-win_amd64.whl", hash = "sha256:ecd97d98d7bee3e3d51d0b51c92c457f05db4993329eea7c69764f9820e27eb3"}, - {file = "orjson-3.10.4-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:71362daa330a2fc85553a1469185ac448547392a8f83d34e67779f8df3a52743"}, - {file = "orjson-3.10.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d24b59d1fecb0fd080c177306118a143f7322335309640c55ed9580d2044e363"}, - {file = "orjson-3.10.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e906670aea5a605b083ebb58d575c35e88cf880fa372f7cedaac3d51e98ff164"}, - {file = "orjson-3.10.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7ce32ed4bc4d632268e4978e595fe5ea07e026b751482b4a0feec48f66a90abc"}, - {file = "orjson-3.10.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1dcd34286246e0c5edd0e230d1da2daab2c1b465fcb6bac85b8d44057229d40a"}, - {file = "orjson-3.10.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c45d4b8c403e50beedb1d006a8916d9910ed56bceaf2035dc253618b44d0a161"}, - {file = "orjson-3.10.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:aaed3253041b5002a4f5bfdf6f7b5cce657d974472b0699a469d439beba40381"}, - {file = "orjson-3.10.4-cp39-none-win32.whl", hash = "sha256:9a4f41b7dbf7896f8dbf559b9b43dcd99e31e0d49ac1b59d74f52ce51ab10eb9"}, - {file = "orjson-3.10.4-cp39-none-win_amd64.whl", hash = "sha256:6c4eb7d867ed91cb61e6514cb4f457aa01d7b0fd663089df60a69f3d38b69d4c"}, - {file = "orjson-3.10.4.tar.gz", hash = "sha256:c912ed25b787c73fe994a5decd81c3f3b256599b8a87d410d799d5d52013af2a"}, -] - [[package]] name = "packaging" -version = "23.2" +version = "24.1" description = "Core utilities for Python packages" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, - {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, + {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, + {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, ] [[package]] @@ -3838,17 +2800,6 @@ sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-d test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] xml = ["lxml (>=4.9.2)"] -[[package]] -name = "pandocfilters" -version = "1.5.1" -description = "Utilities for writing pandoc filters in python" -optional = true -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc"}, - {file = "pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e"}, -] - [[package]] name = "parso" version = "0.8.4" @@ -4260,65 +3211,6 @@ files = [ [package.extras] tests = ["pytest"] -[[package]] -name = "pyarrow" -version = "16.1.0" -description = "Python library for Apache Arrow" -optional = true -python-versions = ">=3.8" -files = [ - {file = "pyarrow-16.1.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:17e23b9a65a70cc733d8b738baa6ad3722298fa0c81d88f63ff94bf25eaa77b9"}, - {file = "pyarrow-16.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4740cc41e2ba5d641071d0ab5e9ef9b5e6e8c7611351a5cb7c1d175eaf43674a"}, - {file = "pyarrow-16.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98100e0268d04e0eec47b73f20b39c45b4006f3c4233719c3848aa27a03c1aef"}, - {file = "pyarrow-16.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f68f409e7b283c085f2da014f9ef81e885d90dcd733bd648cfba3ef265961848"}, - {file = "pyarrow-16.1.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:a8914cd176f448e09746037b0c6b3a9d7688cef451ec5735094055116857580c"}, - {file = "pyarrow-16.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:48be160782c0556156d91adbdd5a4a7e719f8d407cb46ae3bb4eaee09b3111bd"}, - {file = "pyarrow-16.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:9cf389d444b0f41d9fe1444b70650fea31e9d52cfcb5f818b7888b91b586efff"}, - {file = "pyarrow-16.1.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:d0ebea336b535b37eee9eee31761813086d33ed06de9ab6fc6aaa0bace7b250c"}, - {file = "pyarrow-16.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e73cfc4a99e796727919c5541c65bb88b973377501e39b9842ea71401ca6c1c"}, - {file = "pyarrow-16.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf9251264247ecfe93e5f5a0cd43b8ae834f1e61d1abca22da55b20c788417f6"}, - {file = "pyarrow-16.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddf5aace92d520d3d2a20031d8b0ec27b4395cab9f74e07cc95edf42a5cc0147"}, - {file = "pyarrow-16.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:25233642583bf658f629eb230b9bb79d9af4d9f9229890b3c878699c82f7d11e"}, - {file = "pyarrow-16.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a33a64576fddfbec0a44112eaf844c20853647ca833e9a647bfae0582b2ff94b"}, - {file = "pyarrow-16.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:185d121b50836379fe012753cf15c4ba9638bda9645183ab36246923875f8d1b"}, - {file = "pyarrow-16.1.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:2e51ca1d6ed7f2e9d5c3c83decf27b0d17bb207a7dea986e8dc3e24f80ff7d6f"}, - {file = "pyarrow-16.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:06ebccb6f8cb7357de85f60d5da50e83507954af617d7b05f48af1621d331c9a"}, - {file = "pyarrow-16.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b04707f1979815f5e49824ce52d1dceb46e2f12909a48a6a753fe7cafbc44a0c"}, - {file = "pyarrow-16.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d32000693deff8dc5df444b032b5985a48592c0697cb6e3071a5d59888714e2"}, - {file = "pyarrow-16.1.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:8785bb10d5d6fd5e15d718ee1d1f914fe768bf8b4d1e5e9bf253de8a26cb1628"}, - {file = "pyarrow-16.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:e1369af39587b794873b8a307cc6623a3b1194e69399af0efd05bb202195a5a7"}, - {file = "pyarrow-16.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:febde33305f1498f6df85e8020bca496d0e9ebf2093bab9e0f65e2b4ae2b3444"}, - {file = "pyarrow-16.1.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:b5f5705ab977947a43ac83b52ade3b881eb6e95fcc02d76f501d549a210ba77f"}, - {file = "pyarrow-16.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0d27bf89dfc2576f6206e9cd6cf7a107c9c06dc13d53bbc25b0bd4556f19cf5f"}, - {file = "pyarrow-16.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d07de3ee730647a600037bc1d7b7994067ed64d0eba797ac74b2bc77384f4c2"}, - {file = "pyarrow-16.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fbef391b63f708e103df99fbaa3acf9f671d77a183a07546ba2f2c297b361e83"}, - {file = "pyarrow-16.1.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:19741c4dbbbc986d38856ee7ddfdd6a00fc3b0fc2d928795b95410d38bb97d15"}, - {file = "pyarrow-16.1.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:f2c5fb249caa17b94e2b9278b36a05ce03d3180e6da0c4c3b3ce5b2788f30eed"}, - {file = "pyarrow-16.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:e6b6d3cd35fbb93b70ade1336022cc1147b95ec6af7d36906ca7fe432eb09710"}, - {file = "pyarrow-16.1.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:18da9b76a36a954665ccca8aa6bd9f46c1145f79c0bb8f4f244f5f8e799bca55"}, - {file = "pyarrow-16.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:99f7549779b6e434467d2aa43ab2b7224dd9e41bdde486020bae198978c9e05e"}, - {file = "pyarrow-16.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f07fdffe4fd5b15f5ec15c8b64584868d063bc22b86b46c9695624ca3505b7b4"}, - {file = "pyarrow-16.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddfe389a08ea374972bd4065d5f25d14e36b43ebc22fc75f7b951f24378bf0b5"}, - {file = "pyarrow-16.1.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:3b20bd67c94b3a2ea0a749d2a5712fc845a69cb5d52e78e6449bbd295611f3aa"}, - {file = "pyarrow-16.1.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:ba8ac20693c0bb0bf4b238751d4409e62852004a8cf031c73b0e0962b03e45e3"}, - {file = "pyarrow-16.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:31a1851751433d89a986616015841977e0a188662fcffd1a5677453f1df2de0a"}, - {file = "pyarrow-16.1.0.tar.gz", hash = "sha256:15fbb22ea96d11f0b5768504a3f961edab25eaf4197c341720c4a387f6c60315"}, -] - -[package.dependencies] -numpy = ">=1.16.6" - -[[package]] -name = "pyarrow-hotfix" -version = "0.6" -description = "" -optional = true -python-versions = ">=3.5" -files = [ - {file = "pyarrow_hotfix-0.6-py3-none-any.whl", hash = "sha256:dcc9ae2d220dff0083be6a9aa8e0cdee5182ad358d4931fce825c545e5c89178"}, - {file = "pyarrow_hotfix-0.6.tar.gz", hash = "sha256:79d3e030f7ff890d408a100ac16d6f00b14d44a502d7897cd9fc3e3a534e9945"}, -] - [[package]] name = "pycparser" version = "2.22" @@ -4440,17 +3332,6 @@ files = [ [package.dependencies] typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" -[[package]] -name = "pydub" -version = "0.25.1" -description = "Manipulate audio with an simple and easy high level interface" -optional = true -python-versions = "*" -files = [ - {file = "pydub-0.25.1-py2.py3-none-any.whl", hash = "sha256:65617e33033874b59d87db603aa1ed450633288aefead953b30bded59cb599a6"}, - {file = "pydub-0.25.1.tar.gz", hash = "sha256:980a33ce9949cab2a569606b65674d748ecbca4f0796887fd6f46173a7b0d30f"}, -] - [[package]] name = "pygments" version = "2.18.0" @@ -4485,20 +3366,6 @@ dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pyte 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 = "pyparsing" -version = "3.1.2" -description = "pyparsing module - Classes and methods to define and execute parsing grammars" -optional = true -python-versions = ">=3.6.8" -files = [ - {file = "pyparsing-3.1.2-py3-none-any.whl", hash = "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742"}, - {file = "pyparsing-3.1.2.tar.gz", hash = "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad"}, -] - -[package.extras] -diagrams = ["jinja2", "railroad-diagrams"] - [[package]] name = "pypdf" version = "4.2.0" @@ -4580,20 +3447,6 @@ files = [ [package.dependencies] six = ">=1.5" -[[package]] -name = "python-multipart" -version = "0.0.9" -description = "A streaming multipart parser for Python" -optional = true -python-versions = ">=3.8" -files = [ - {file = "python_multipart-0.0.9-py3-none-any.whl", hash = "sha256:97ca7b8ea7b05f977dc3849c3ba99d51689822fab725c3703af7c866a0c2b215"}, - {file = "python_multipart-0.0.9.tar.gz", hash = "sha256:03f54688c663f1b7977105f021043b0793151e4cb1c1a9d4a11fc13d622c4026"}, -] - -[package.extras] -dev = ["atomicwrites (==1.4.1)", "attrs (==23.2.0)", "coverage (==7.4.1)", "hatch", "invoke (==2.2.0)", "more-itertools (==10.2.0)", "pbr (==6.0.0)", "pluggy (==1.4.0)", "py (==1.11.0)", "pytest (==8.0.0)", "pytest-cov (==4.1.0)", "pytest-timeout (==2.2.0)", "pyyaml (==6.0.1)", "ruff (==0.2.1)"] - [[package]] name = "pytz" version = "2024.1" @@ -4609,7 +3462,7 @@ files = [ name = "pywin32" version = "306" description = "Python for Window Extensions" -optional = true +optional = false python-versions = "*" files = [ {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, @@ -4698,106 +3551,6 @@ files = [ {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, ] -[[package]] -name = "pyzmq" -version = "26.0.3" -description = "Python bindings for 0MQ" -optional = true -python-versions = ">=3.7" -files = [ - {file = "pyzmq-26.0.3-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:44dd6fc3034f1eaa72ece33588867df9e006a7303725a12d64c3dff92330f625"}, - {file = "pyzmq-26.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:acb704195a71ac5ea5ecf2811c9ee19ecdc62b91878528302dd0be1b9451cc90"}, - {file = "pyzmq-26.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dbb9c997932473a27afa93954bb77a9f9b786b4ccf718d903f35da3232317de"}, - {file = "pyzmq-26.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6bcb34f869d431799c3ee7d516554797f7760cb2198ecaa89c3f176f72d062be"}, - {file = "pyzmq-26.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38ece17ec5f20d7d9b442e5174ae9f020365d01ba7c112205a4d59cf19dc38ee"}, - {file = "pyzmq-26.0.3-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:ba6e5e6588e49139a0979d03a7deb9c734bde647b9a8808f26acf9c547cab1bf"}, - {file = "pyzmq-26.0.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3bf8b000a4e2967e6dfdd8656cd0757d18c7e5ce3d16339e550bd462f4857e59"}, - {file = "pyzmq-26.0.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2136f64fbb86451dbbf70223635a468272dd20075f988a102bf8a3f194a411dc"}, - {file = "pyzmq-26.0.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e8918973fbd34e7814f59143c5f600ecd38b8038161239fd1a3d33d5817a38b8"}, - {file = "pyzmq-26.0.3-cp310-cp310-win32.whl", hash = "sha256:0aaf982e68a7ac284377d051c742610220fd06d330dcd4c4dbb4cdd77c22a537"}, - {file = "pyzmq-26.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:f1a9b7d00fdf60b4039f4455afd031fe85ee8305b019334b72dcf73c567edc47"}, - {file = "pyzmq-26.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:80b12f25d805a919d53efc0a5ad7c0c0326f13b4eae981a5d7b7cc343318ebb7"}, - {file = "pyzmq-26.0.3-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:a72a84570f84c374b4c287183debc776dc319d3e8ce6b6a0041ce2e400de3f32"}, - {file = "pyzmq-26.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7ca684ee649b55fd8f378127ac8462fb6c85f251c2fb027eb3c887e8ee347bcd"}, - {file = "pyzmq-26.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e222562dc0f38571c8b1ffdae9d7adb866363134299264a1958d077800b193b7"}, - {file = "pyzmq-26.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f17cde1db0754c35a91ac00b22b25c11da6eec5746431d6e5092f0cd31a3fea9"}, - {file = "pyzmq-26.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b7c0c0b3244bb2275abe255d4a30c050d541c6cb18b870975553f1fb6f37527"}, - {file = "pyzmq-26.0.3-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:ac97a21de3712afe6a6c071abfad40a6224fd14fa6ff0ff8d0c6e6cd4e2f807a"}, - {file = "pyzmq-26.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:88b88282e55fa39dd556d7fc04160bcf39dea015f78e0cecec8ff4f06c1fc2b5"}, - {file = "pyzmq-26.0.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:72b67f966b57dbd18dcc7efbc1c7fc9f5f983e572db1877081f075004614fcdd"}, - {file = "pyzmq-26.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f4b6cecbbf3b7380f3b61de3a7b93cb721125dc125c854c14ddc91225ba52f83"}, - {file = "pyzmq-26.0.3-cp311-cp311-win32.whl", hash = "sha256:eed56b6a39216d31ff8cd2f1d048b5bf1700e4b32a01b14379c3b6dde9ce3aa3"}, - {file = "pyzmq-26.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:3191d312c73e3cfd0f0afdf51df8405aafeb0bad71e7ed8f68b24b63c4f36500"}, - {file = "pyzmq-26.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:b6907da3017ef55139cf0e417c5123a84c7332520e73a6902ff1f79046cd3b94"}, - {file = "pyzmq-26.0.3-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:068ca17214038ae986d68f4a7021f97e187ed278ab6dccb79f837d765a54d753"}, - {file = "pyzmq-26.0.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7821d44fe07335bea256b9f1f41474a642ca55fa671dfd9f00af8d68a920c2d4"}, - {file = "pyzmq-26.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eeb438a26d87c123bb318e5f2b3d86a36060b01f22fbdffd8cf247d52f7c9a2b"}, - {file = "pyzmq-26.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:69ea9d6d9baa25a4dc9cef5e2b77b8537827b122214f210dd925132e34ae9b12"}, - {file = "pyzmq-26.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7daa3e1369355766dea11f1d8ef829905c3b9da886ea3152788dc25ee6079e02"}, - {file = "pyzmq-26.0.3-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:6ca7a9a06b52d0e38ccf6bca1aeff7be178917893f3883f37b75589d42c4ac20"}, - {file = "pyzmq-26.0.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1b7d0e124948daa4d9686d421ef5087c0516bc6179fdcf8828b8444f8e461a77"}, - {file = "pyzmq-26.0.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:e746524418b70f38550f2190eeee834db8850088c834d4c8406fbb9bc1ae10b2"}, - {file = "pyzmq-26.0.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:6b3146f9ae6af82c47a5282ac8803523d381b3b21caeae0327ed2f7ecb718798"}, - {file = "pyzmq-26.0.3-cp312-cp312-win32.whl", hash = "sha256:2b291d1230845871c00c8462c50565a9cd6026fe1228e77ca934470bb7d70ea0"}, - {file = "pyzmq-26.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:926838a535c2c1ea21c903f909a9a54e675c2126728c21381a94ddf37c3cbddf"}, - {file = "pyzmq-26.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:5bf6c237f8c681dfb91b17f8435b2735951f0d1fad10cc5dfd96db110243370b"}, - {file = "pyzmq-26.0.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c0991f5a96a8e620f7691e61178cd8f457b49e17b7d9cfa2067e2a0a89fc1d5"}, - {file = "pyzmq-26.0.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:dbf012d8fcb9f2cf0643b65df3b355fdd74fc0035d70bb5c845e9e30a3a4654b"}, - {file = "pyzmq-26.0.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:01fbfbeb8249a68d257f601deb50c70c929dc2dfe683b754659569e502fbd3aa"}, - {file = "pyzmq-26.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c8eb19abe87029c18f226d42b8a2c9efdd139d08f8bf6e085dd9075446db450"}, - {file = "pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:5344b896e79800af86ad643408ca9aa303a017f6ebff8cee5a3163c1e9aec987"}, - {file = "pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:204e0f176fd1d067671157d049466869b3ae1fc51e354708b0dc41cf94e23a3a"}, - {file = "pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:a42db008d58530efa3b881eeee4991146de0b790e095f7ae43ba5cc612decbc5"}, - {file = "pyzmq-26.0.3-cp37-cp37m-win32.whl", hash = "sha256:8d7a498671ca87e32b54cb47c82a92b40130a26c5197d392720a1bce1b3c77cf"}, - {file = "pyzmq-26.0.3-cp37-cp37m-win_amd64.whl", hash = "sha256:3b4032a96410bdc760061b14ed6a33613ffb7f702181ba999df5d16fb96ba16a"}, - {file = "pyzmq-26.0.3-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:2cc4e280098c1b192c42a849de8de2c8e0f3a84086a76ec5b07bfee29bda7d18"}, - {file = "pyzmq-26.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5bde86a2ed3ce587fa2b207424ce15b9a83a9fa14422dcc1c5356a13aed3df9d"}, - {file = "pyzmq-26.0.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:34106f68e20e6ff253c9f596ea50397dbd8699828d55e8fa18bd4323d8d966e6"}, - {file = "pyzmq-26.0.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ebbbd0e728af5db9b04e56389e2299a57ea8b9dd15c9759153ee2455b32be6ad"}, - {file = "pyzmq-26.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6b1d1c631e5940cac5a0b22c5379c86e8df6a4ec277c7a856b714021ab6cfad"}, - {file = "pyzmq-26.0.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e891ce81edd463b3b4c3b885c5603c00141151dd9c6936d98a680c8c72fe5c67"}, - {file = "pyzmq-26.0.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:9b273ecfbc590a1b98f014ae41e5cf723932f3b53ba9367cfb676f838038b32c"}, - {file = "pyzmq-26.0.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b32bff85fb02a75ea0b68f21e2412255b5731f3f389ed9aecc13a6752f58ac97"}, - {file = "pyzmq-26.0.3-cp38-cp38-win32.whl", hash = "sha256:f6c21c00478a7bea93caaaef9e7629145d4153b15a8653e8bb4609d4bc70dbfc"}, - {file = "pyzmq-26.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:3401613148d93ef0fd9aabdbddb212de3db7a4475367f49f590c837355343972"}, - {file = "pyzmq-26.0.3-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:2ed8357f4c6e0daa4f3baf31832df8a33334e0fe5b020a61bc8b345a3db7a606"}, - {file = "pyzmq-26.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c1c8f2a2ca45292084c75bb6d3a25545cff0ed931ed228d3a1810ae3758f975f"}, - {file = "pyzmq-26.0.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:b63731993cdddcc8e087c64e9cf003f909262b359110070183d7f3025d1c56b5"}, - {file = "pyzmq-26.0.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b3cd31f859b662ac5d7f4226ec7d8bd60384fa037fc02aee6ff0b53ba29a3ba8"}, - {file = "pyzmq-26.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:115f8359402fa527cf47708d6f8a0f8234f0e9ca0cab7c18c9c189c194dbf620"}, - {file = "pyzmq-26.0.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:715bdf952b9533ba13dfcf1f431a8f49e63cecc31d91d007bc1deb914f47d0e4"}, - {file = "pyzmq-26.0.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:e1258c639e00bf5e8a522fec6c3eaa3e30cf1c23a2f21a586be7e04d50c9acab"}, - {file = "pyzmq-26.0.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:15c59e780be8f30a60816a9adab900c12a58d79c1ac742b4a8df044ab2a6d920"}, - {file = "pyzmq-26.0.3-cp39-cp39-win32.whl", hash = "sha256:d0cdde3c78d8ab5b46595054e5def32a755fc028685add5ddc7403e9f6de9879"}, - {file = "pyzmq-26.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:ce828058d482ef860746bf532822842e0ff484e27f540ef5c813d516dd8896d2"}, - {file = "pyzmq-26.0.3-cp39-cp39-win_arm64.whl", hash = "sha256:788f15721c64109cf720791714dc14afd0f449d63f3a5487724f024345067381"}, - {file = "pyzmq-26.0.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2c18645ef6294d99b256806e34653e86236eb266278c8ec8112622b61db255de"}, - {file = "pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7e6bc96ebe49604df3ec2c6389cc3876cabe475e6bfc84ced1bf4e630662cb35"}, - {file = "pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:971e8990c5cc4ddcff26e149398fc7b0f6a042306e82500f5e8db3b10ce69f84"}, - {file = "pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8416c23161abd94cc7da80c734ad7c9f5dbebdadfdaa77dad78244457448223"}, - {file = "pyzmq-26.0.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:082a2988364b60bb5de809373098361cf1dbb239623e39e46cb18bc035ed9c0c"}, - {file = "pyzmq-26.0.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d57dfbf9737763b3a60d26e6800e02e04284926329aee8fb01049635e957fe81"}, - {file = "pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:77a85dca4c2430ac04dc2a2185c2deb3858a34fe7f403d0a946fa56970cf60a1"}, - {file = "pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4c82a6d952a1d555bf4be42b6532927d2a5686dd3c3e280e5f63225ab47ac1f5"}, - {file = "pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4496b1282c70c442809fc1b151977c3d967bfb33e4e17cedbf226d97de18f709"}, - {file = "pyzmq-26.0.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:e4946d6bdb7ba972dfda282f9127e5756d4f299028b1566d1245fa0d438847e6"}, - {file = "pyzmq-26.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:03c0ae165e700364b266876d712acb1ac02693acd920afa67da2ebb91a0b3c09"}, - {file = "pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:3e3070e680f79887d60feeda051a58d0ac36622e1759f305a41059eff62c6da7"}, - {file = "pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6ca08b840fe95d1c2bd9ab92dac5685f949fc6f9ae820ec16193e5ddf603c3b2"}, - {file = "pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e76654e9dbfb835b3518f9938e565c7806976c07b37c33526b574cc1a1050480"}, - {file = "pyzmq-26.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:871587bdadd1075b112e697173e946a07d722459d20716ceb3d1bd6c64bd08ce"}, - {file = "pyzmq-26.0.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d0a2d1bd63a4ad79483049b26514e70fa618ce6115220da9efdff63688808b17"}, - {file = "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0270b49b6847f0d106d64b5086e9ad5dc8a902413b5dbbb15d12b60f9c1747a4"}, - {file = "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:703c60b9910488d3d0954ca585c34f541e506a091a41930e663a098d3b794c67"}, - {file = "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74423631b6be371edfbf7eabb02ab995c2563fee60a80a30829176842e71722a"}, - {file = "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4adfbb5451196842a88fda3612e2c0414134874bffb1c2ce83ab4242ec9e027d"}, - {file = "pyzmq-26.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3516119f4f9b8671083a70b6afaa0a070f5683e431ab3dc26e9215620d7ca1ad"}, - {file = "pyzmq-26.0.3.tar.gz", hash = "sha256:dba7d9f2e047dfa2bca3b01f4f84aa5246725203d6284e3790f2ca15fba6b40a"}, -] - -[package.dependencies] -cffi = {version = "*", markers = "implementation_name == \"pypy\""} - [[package]] name = "rapidfuzz" version = "3.9.3" @@ -4903,21 +3656,6 @@ files = [ [package.extras] full = ["numpy"] -[[package]] -name = "referencing" -version = "0.35.1" -description = "JSON Referencing + Python" -optional = true -python-versions = ">=3.8" -files = [ - {file = "referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de"}, - {file = "referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c"}, -] - -[package.dependencies] -attrs = ">=22.2.0" -rpds-py = ">=0.7.0" - [[package]] name = "regex" version = "2024.5.15" @@ -5059,140 +3797,6 @@ pygments = ">=2.13.0,<3.0.0" [package.extras] jupyter = ["ipywidgets (>=7.5.1,<9)"] -[[package]] -name = "rpds-py" -version = "0.18.1" -description = "Python bindings to Rust's persistent data structures (rpds)" -optional = true -python-versions = ">=3.8" -files = [ - {file = "rpds_py-0.18.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:d31dea506d718693b6b2cffc0648a8929bdc51c70a311b2770f09611caa10d53"}, - {file = "rpds_py-0.18.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:732672fbc449bab754e0b15356c077cc31566df874964d4801ab14f71951ea80"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a98a1f0552b5f227a3d6422dbd61bc6f30db170939bd87ed14f3c339aa6c7c9"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f1944ce16401aad1e3f7d312247b3d5de7981f634dc9dfe90da72b87d37887d"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38e14fb4e370885c4ecd734f093a2225ee52dc384b86fa55fe3f74638b2cfb09"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08d74b184f9ab6289b87b19fe6a6d1a97fbfea84b8a3e745e87a5de3029bf944"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d70129cef4a8d979caa37e7fe957202e7eee8ea02c5e16455bc9808a59c6b2f0"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ce0bb20e3a11bd04461324a6a798af34d503f8d6f1aa3d2aa8901ceaf039176d"}, - {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:81c5196a790032e0fc2464c0b4ab95f8610f96f1f2fa3d4deacce6a79852da60"}, - {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:f3027be483868c99b4985fda802a57a67fdf30c5d9a50338d9db646d590198da"}, - {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d44607f98caa2961bab4fa3c4309724b185b464cdc3ba6f3d7340bac3ec97cc1"}, - {file = "rpds_py-0.18.1-cp310-none-win32.whl", hash = "sha256:c273e795e7a0f1fddd46e1e3cb8be15634c29ae8ff31c196debb620e1edb9333"}, - {file = "rpds_py-0.18.1-cp310-none-win_amd64.whl", hash = "sha256:8352f48d511de5f973e4f2f9412736d7dea76c69faa6d36bcf885b50c758ab9a"}, - {file = "rpds_py-0.18.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6b5ff7e1d63a8281654b5e2896d7f08799378e594f09cf3674e832ecaf396ce8"}, - {file = "rpds_py-0.18.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8927638a4d4137a289e41d0fd631551e89fa346d6dbcfc31ad627557d03ceb6d"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:154bf5c93d79558b44e5b50cc354aa0459e518e83677791e6adb0b039b7aa6a7"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:07f2139741e5deb2c5154a7b9629bc5aa48c766b643c1a6750d16f865a82c5fc"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8c7672e9fba7425f79019db9945b16e308ed8bc89348c23d955c8c0540da0a07"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:489bdfe1abd0406eba6b3bb4fdc87c7fa40f1031de073d0cfb744634cc8fa261"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c20f05e8e3d4fc76875fc9cb8cf24b90a63f5a1b4c5b9273f0e8225e169b100"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:967342e045564cef76dfcf1edb700b1e20838d83b1aa02ab313e6a497cf923b8"}, - {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2cc7c1a47f3a63282ab0f422d90ddac4aa3034e39fc66a559ab93041e6505da7"}, - {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f7afbfee1157e0f9376c00bb232e80a60e59ed716e3211a80cb8506550671e6e"}, - {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9e6934d70dc50f9f8ea47081ceafdec09245fd9f6032669c3b45705dea096b88"}, - {file = "rpds_py-0.18.1-cp311-none-win32.whl", hash = "sha256:c69882964516dc143083d3795cb508e806b09fc3800fd0d4cddc1df6c36e76bb"}, - {file = "rpds_py-0.18.1-cp311-none-win_amd64.whl", hash = "sha256:70a838f7754483bcdc830444952fd89645569e7452e3226de4a613a4c1793fb2"}, - {file = "rpds_py-0.18.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:3dd3cd86e1db5aadd334e011eba4e29d37a104b403e8ca24dcd6703c68ca55b3"}, - {file = "rpds_py-0.18.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:05f3d615099bd9b13ecf2fc9cf2d839ad3f20239c678f461c753e93755d629ee"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35b2b771b13eee8729a5049c976197ff58a27a3829c018a04341bcf1ae409b2b"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ee17cd26b97d537af8f33635ef38be873073d516fd425e80559f4585a7b90c43"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b646bf655b135ccf4522ed43d6902af37d3f5dbcf0da66c769a2b3938b9d8184"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19ba472b9606c36716062c023afa2484d1e4220548751bda14f725a7de17b4f6"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e30ac5e329098903262dc5bdd7e2086e0256aa762cc8b744f9e7bf2a427d3f8"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d58ad6317d188c43750cb76e9deacf6051d0f884d87dc6518e0280438648a9ac"}, - {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e1735502458621921cee039c47318cb90b51d532c2766593be6207eec53e5c4c"}, - {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f5bab211605d91db0e2995a17b5c6ee5edec1270e46223e513eaa20da20076ac"}, - {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2fc24a329a717f9e2448f8cd1f960f9dac4e45b6224d60734edeb67499bab03a"}, - {file = "rpds_py-0.18.1-cp312-none-win32.whl", hash = "sha256:1805d5901779662d599d0e2e4159d8a82c0b05faa86ef9222bf974572286b2b6"}, - {file = "rpds_py-0.18.1-cp312-none-win_amd64.whl", hash = "sha256:720edcb916df872d80f80a1cc5ea9058300b97721efda8651efcd938a9c70a72"}, - {file = "rpds_py-0.18.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:c827576e2fa017a081346dce87d532a5310241648eb3700af9a571a6e9fc7e74"}, - {file = "rpds_py-0.18.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aa3679e751408d75a0b4d8d26d6647b6d9326f5e35c00a7ccd82b78ef64f65f8"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0abeee75434e2ee2d142d650d1e54ac1f8b01e6e6abdde8ffd6eeac6e9c38e20"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed402d6153c5d519a0faf1bb69898e97fb31613b49da27a84a13935ea9164dfc"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:338dee44b0cef8b70fd2ef54b4e09bb1b97fc6c3a58fea5db6cc083fd9fc2724"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7750569d9526199c5b97e5a9f8d96a13300950d910cf04a861d96f4273d5b104"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:607345bd5912aacc0c5a63d45a1f73fef29e697884f7e861094e443187c02be5"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:207c82978115baa1fd8d706d720b4a4d2b0913df1c78c85ba73fe6c5804505f0"}, - {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6d1e42d2735d437e7e80bab4d78eb2e459af48c0a46e686ea35f690b93db792d"}, - {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:5463c47c08630007dc0fe99fb480ea4f34a89712410592380425a9b4e1611d8e"}, - {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:06d218939e1bf2ca50e6b0ec700ffe755e5216a8230ab3e87c059ebb4ea06afc"}, - {file = "rpds_py-0.18.1-cp38-none-win32.whl", hash = "sha256:312fe69b4fe1ffbe76520a7676b1e5ac06ddf7826d764cc10265c3b53f96dbe9"}, - {file = "rpds_py-0.18.1-cp38-none-win_amd64.whl", hash = "sha256:9437ca26784120a279f3137ee080b0e717012c42921eb07861b412340f85bae2"}, - {file = "rpds_py-0.18.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:19e515b78c3fc1039dd7da0a33c28c3154458f947f4dc198d3c72db2b6b5dc93"}, - {file = "rpds_py-0.18.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a7b28c5b066bca9a4eb4e2f2663012debe680f097979d880657f00e1c30875a0"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:673fdbbf668dd958eff750e500495ef3f611e2ecc209464f661bc82e9838991e"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d960de62227635d2e61068f42a6cb6aae91a7fe00fca0e3aeed17667c8a34611"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:352a88dc7892f1da66b6027af06a2e7e5d53fe05924cc2cfc56495b586a10b72"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4e0ee01ad8260184db21468a6e1c37afa0529acc12c3a697ee498d3c2c4dcaf3"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4c39ad2f512b4041343ea3c7894339e4ca7839ac38ca83d68a832fc8b3748ab"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aaa71ee43a703c321906813bb252f69524f02aa05bf4eec85f0c41d5d62d0f4c"}, - {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6cd8098517c64a85e790657e7b1e509b9fe07487fd358e19431cb120f7d96338"}, - {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:4adec039b8e2928983f885c53b7cc4cda8965b62b6596501a0308d2703f8af1b"}, - {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:32b7daaa3e9389db3695964ce8e566e3413b0c43e3394c05e4b243a4cd7bef26"}, - {file = "rpds_py-0.18.1-cp39-none-win32.whl", hash = "sha256:2625f03b105328729f9450c8badda34d5243231eef6535f80064d57035738360"}, - {file = "rpds_py-0.18.1-cp39-none-win_amd64.whl", hash = "sha256:bf18932d0003c8c4d51a39f244231986ab23ee057d235a12b2684ea26a353590"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:cbfbea39ba64f5e53ae2915de36f130588bba71245b418060ec3330ebf85678e"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:a3d456ff2a6a4d2adcdf3c1c960a36f4fd2fec6e3b4902a42a384d17cf4e7a65"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7700936ef9d006b7ef605dc53aa364da2de5a3aa65516a1f3ce73bf82ecfc7ae"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:51584acc5916212e1bf45edd17f3a6b05fe0cbb40482d25e619f824dccb679de"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:942695a206a58d2575033ff1e42b12b2aece98d6003c6bc739fbf33d1773b12f"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b906b5f58892813e5ba5c6056d6a5ad08f358ba49f046d910ad992196ea61397"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6f8e3fecca256fefc91bb6765a693d96692459d7d4c644660a9fff32e517843"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7732770412bab81c5a9f6d20aeb60ae943a9b36dcd990d876a773526468e7163"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:bd1105b50ede37461c1d51b9698c4f4be6e13e69a908ab7751e3807985fc0346"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:618916f5535784960f3ecf8111581f4ad31d347c3de66d02e728de460a46303c"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:17c6d2155e2423f7e79e3bb18151c686d40db42d8645e7977442170c360194d4"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6c4c4c3f878df21faf5fac86eda32671c27889e13570645a9eea0a1abdd50922"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:fab6ce90574645a0d6c58890e9bcaac8d94dff54fb51c69e5522a7358b80ab64"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:531796fb842b53f2695e94dc338929e9f9dbf473b64710c28af5a160b2a8927d"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:740884bc62a5e2bbb31e584f5d23b32320fd75d79f916f15a788d527a5e83644"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:998125738de0158f088aef3cb264a34251908dd2e5d9966774fdab7402edfab7"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2be6e9dd4111d5b31ba3b74d17da54a8319d8168890fbaea4b9e5c3de630ae5"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0cee71bc618cd93716f3c1bf56653740d2d13ddbd47673efa8bf41435a60daa"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2c3caec4ec5cd1d18e5dd6ae5194d24ed12785212a90b37f5f7f06b8bedd7139"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:27bba383e8c5231cd559affe169ca0b96ec78d39909ffd817f28b166d7ddd4d8"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:a888e8bdb45916234b99da2d859566f1e8a1d2275a801bb8e4a9644e3c7e7909"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6031b25fb1b06327b43d841f33842b383beba399884f8228a6bb3df3088485ff"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48c2faaa8adfacefcbfdb5f2e2e7bdad081e5ace8d182e5f4ade971f128e6bb3"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d85164315bd68c0806768dc6bb0429c6f95c354f87485ee3593c4f6b14def2bd"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6afd80f6c79893cfc0574956f78a0add8c76e3696f2d6a15bca2c66c415cf2d4"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fa242ac1ff583e4ec7771141606aafc92b361cd90a05c30d93e343a0c2d82a89"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d21be4770ff4e08698e1e8e0bce06edb6ea0626e7c8f560bc08222880aca6a6f"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c45a639e93a0c5d4b788b2613bd637468edd62f8f95ebc6fcc303d58ab3f0a8"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:910e71711d1055b2768181efa0a17537b2622afeb0424116619817007f8a2b10"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b9bb1f182a97880f6078283b3505a707057c42bf55d8fca604f70dedfdc0772a"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1d54f74f40b1f7aaa595a02ff42ef38ca654b1469bef7d52867da474243cc633"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:8d2e182c9ee01135e11e9676e9a62dfad791a7a467738f06726872374a83db49"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:636a15acc588f70fda1661234761f9ed9ad79ebed3f2125d44be0862708b666e"}, - {file = "rpds_py-0.18.1.tar.gz", hash = "sha256:dc48b479d540770c811fbd1eb9ba2bb66951863e448efec2e2c102625328e92f"}, -] - -[[package]] -name = "ruff" -version = "0.4.8" -description = "An extremely fast Python linter and code formatter, written in Rust." -optional = true -python-versions = ">=3.7" -files = [ - {file = "ruff-0.4.8-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:7663a6d78f6adb0eab270fa9cf1ff2d28618ca3a652b60f2a234d92b9ec89066"}, - {file = "ruff-0.4.8-py3-none-macosx_11_0_arm64.whl", hash = "sha256:eeceb78da8afb6de0ddada93112869852d04f1cd0f6b80fe464fd4e35c330913"}, - {file = "ruff-0.4.8-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aad360893e92486662ef3be0a339c5ca3c1b109e0134fcd37d534d4be9fb8de3"}, - {file = "ruff-0.4.8-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:284c2e3f3396fb05f5f803c9fffb53ebbe09a3ebe7dda2929ed8d73ded736deb"}, - {file = "ruff-0.4.8-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7354f921e3fbe04d2a62d46707e569f9315e1a613307f7311a935743c51a764"}, - {file = "ruff-0.4.8-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:72584676164e15a68a15778fd1b17c28a519e7a0622161eb2debdcdabdc71883"}, - {file = "ruff-0.4.8-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9678d5c9b43315f323af2233a04d747409d1e3aa6789620083a82d1066a35199"}, - {file = "ruff-0.4.8-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704977a658131651a22b5ebeb28b717ef42ac6ee3b11e91dc87b633b5d83142b"}, - {file = "ruff-0.4.8-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d05f8d6f0c3cce5026cecd83b7a143dcad503045857bc49662f736437380ad45"}, - {file = "ruff-0.4.8-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:6ea874950daca5697309d976c9afba830d3bf0ed66887481d6bca1673fc5b66a"}, - {file = "ruff-0.4.8-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:fc95aac2943ddf360376be9aa3107c8cf9640083940a8c5bd824be692d2216dc"}, - {file = "ruff-0.4.8-py3-none-musllinux_1_2_i686.whl", hash = "sha256:384154a1c3f4bf537bac69f33720957ee49ac8d484bfc91720cc94172026ceed"}, - {file = "ruff-0.4.8-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:e9d5ce97cacc99878aa0d084c626a15cd21e6b3d53fd6f9112b7fc485918e1fa"}, - {file = "ruff-0.4.8-py3-none-win32.whl", hash = "sha256:6d795d7639212c2dfd01991259460101c22aabf420d9b943f153ab9d9706e6a9"}, - {file = "ruff-0.4.8-py3-none-win_amd64.whl", hash = "sha256:e14a3a095d07560a9d6769a72f781d73259655919d9b396c650fc98a8157555d"}, - {file = "ruff-0.4.8-py3-none-win_arm64.whl", hash = "sha256:14019a06dbe29b608f6b7cbcec300e3170a8d86efaddb7b23405cb7f7dcaf780"}, - {file = "ruff-0.4.8.tar.gz", hash = "sha256:16d717b1d57b2e2fd68bd0bf80fb43931b79d05a7131aa477d66fc40fbd86268"}, -] - [[package]] name = "safetensors" version = "0.4.3" @@ -5417,21 +4021,6 @@ files = [ cryptography = ">=2.0" jeepney = ">=0.6" -[[package]] -name = "semantic-version" -version = "2.10.0" -description = "A library implementing the 'SemVer' scheme." -optional = true -python-versions = ">=2.7" -files = [ - {file = "semantic_version-2.10.0-py2.py3-none-any.whl", hash = "sha256:de78a3b8e0feda74cabc54aab2da702113e33ac9d9eb9d2389bcf1f58b7d9177"}, - {file = "semantic_version-2.10.0.tar.gz", hash = "sha256:bdabb6d336998cbb378d4b9db3a4b56a1e3235701dc05ea2690d9a997ed5041c"}, -] - -[package.extras] -dev = ["Django (>=1.11)", "check-manifest", "colorama (<=0.4.1)", "coverage", "flake8", "nose2", "readme-renderer (<25.0)", "tox", "wheel", "zest.releaser[recommended]"] -doc = ["Sphinx", "sphinx-rtd-theme"] - [[package]] name = "semver" version = "2.13.0" @@ -5791,24 +4380,6 @@ requests = ">=2.26.0" [package.extras] blobfile = ["blobfile (>=2)"] -[[package]] -name = "tinycss2" -version = "1.3.0" -description = "A tiny CSS parser" -optional = true -python-versions = ">=3.8" -files = [ - {file = "tinycss2-1.3.0-py3-none-any.whl", hash = "sha256:54a8dbdffb334d536851be0226030e9505965bb2f30f21a4a82c55fb2a80fae7"}, - {file = "tinycss2-1.3.0.tar.gz", hash = "sha256:152f9acabd296a8375fbca5b84c961ff95971fcfc32e79550c8df8e29118c54d"}, -] - -[package.dependencies] -webencodings = ">=0.4" - -[package.extras] -doc = ["sphinx", "sphinx_rtd_theme"] -test = ["pytest", "ruff"] - [[package]] name = "tokenizers" version = "0.19.1" @@ -5928,24 +4499,13 @@ testing = ["black (==22.3)", "datasets", "numpy", "pytest", "requests", "ruff"] [[package]] name = "tomlkit" -version = "0.12.0" +version = "0.12.5" description = "Style preserving TOML library" optional = false python-versions = ">=3.7" files = [ - {file = "tomlkit-0.12.0-py3-none-any.whl", hash = "sha256:926f1f37a1587c7a4f6c7484dae538f1345d96d793d9adab5d3675957b1d0766"}, - {file = "tomlkit-0.12.0.tar.gz", hash = "sha256:01f0477981119c7d8ee0f67ebe0297a7c95b14cf9f4b102b45486deb77018716"}, -] - -[[package]] -name = "toolz" -version = "0.12.1" -description = "List processing tools and functional utilities" -optional = true -python-versions = ">=3.7" -files = [ - {file = "toolz-0.12.1-py3-none-any.whl", hash = "sha256:d22731364c07d72eea0a0ad45bafb2c2937ab6fd38a3507bf55eae8744aa7d85"}, - {file = "toolz-0.12.1.tar.gz", hash = "sha256:ecca342664893f177a13dac0e6b41cbd8ac25a358e5f215316d43e2100224f4d"}, + {file = "tomlkit-0.12.5-py3-none-any.whl", hash = "sha256:af914f5a9c59ed9d0762c7b64d3b5d5df007448eb9cd2edc8a46b1eafead172f"}, + {file = "tomlkit-0.12.5.tar.gz", hash = "sha256:eef34fba39834d4d6b73c9ba7f3e4d1c417a4e56f89a7e96e090dd0d24b8fb3c"}, ] [[package]] @@ -6002,26 +4562,6 @@ typing-extensions = ">=4.8.0" opt-einsum = ["opt-einsum (>=3.3)"] optree = ["optree (>=0.9.1)"] -[[package]] -name = "tornado" -version = "6.4.1" -description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." -optional = true -python-versions = ">=3.8" -files = [ - {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:163b0aafc8e23d8cdc3c9dfb24c5368af84a81e3364745ccb4427669bf84aec8"}, - {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6d5ce3437e18a2b66fbadb183c1d3364fb03f2be71299e7d10dbeeb69f4b2a14"}, - {file = "tornado-6.4.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e20b9113cd7293f164dc46fffb13535266e713cdb87bd2d15ddb336e96cfc4"}, - {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8ae50a504a740365267b2a8d1a90c9fbc86b780a39170feca9bcc1787ff80842"}, - {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:613bf4ddf5c7a95509218b149b555621497a6cc0d46ac341b30bd9ec19eac7f3"}, - {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:25486eb223babe3eed4b8aecbac33b37e3dd6d776bc730ca14e1bf93888b979f"}, - {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:454db8a7ecfcf2ff6042dde58404164d969b6f5d58b926da15e6b23817950fc4"}, - {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a02a08cc7a9314b006f653ce40483b9b3c12cda222d6a46d4ac63bb6c9057698"}, - {file = "tornado-6.4.1-cp38-abi3-win32.whl", hash = "sha256:d9a566c40b89757c9aa8e6f032bcdb8ca8795d7c1a9762910c722b1635c9de4d"}, - {file = "tornado-6.4.1-cp38-abi3-win_amd64.whl", hash = "sha256:b24b8982ed444378d7f21d563f4180a2de31ced9d8d84443907a0a64da2072e7"}, - {file = "tornado-6.4.1.tar.gz", hash = "sha256:92d3ab53183d8c50f8204a51e6f91d18a15d5ef261e84d452800d4ff6fc504e9"}, -] - [[package]] name = "tqdm" version = "4.66.4" @@ -6279,96 +4819,6 @@ files = [ {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, ] -[[package]] -name = "webencodings" -version = "0.5.1" -description = "Character encoding aliases for legacy web content" -optional = true -python-versions = "*" -files = [ - {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, - {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, -] - -[[package]] -name = "websockets" -version = "11.0.3" -description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" -optional = true -python-versions = ">=3.7" -files = [ - {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3ccc8a0c387629aec40f2fc9fdcb4b9d5431954f934da3eaf16cdc94f67dbfac"}, - {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d67ac60a307f760c6e65dad586f556dde58e683fab03323221a4e530ead6f74d"}, - {file = "websockets-11.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:84d27a4832cc1a0ee07cdcf2b0629a8a72db73f4cf6de6f0904f6661227f256f"}, - {file = "websockets-11.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffd7dcaf744f25f82190856bc26ed81721508fc5cbf2a330751e135ff1283564"}, - {file = "websockets-11.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7622a89d696fc87af8e8d280d9b421db5133ef5b29d3f7a1ce9f1a7bf7fcfa11"}, - {file = "websockets-11.0.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bceab846bac555aff6427d060f2fcfff71042dba6f5fca7dc4f75cac815e57ca"}, - {file = "websockets-11.0.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:54c6e5b3d3a8936a4ab6870d46bdd6ec500ad62bde9e44462c32d18f1e9a8e54"}, - {file = "websockets-11.0.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:41f696ba95cd92dc047e46b41b26dd24518384749ed0d99bea0a941ca87404c4"}, - {file = "websockets-11.0.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:86d2a77fd490ae3ff6fae1c6ceaecad063d3cc2320b44377efdde79880e11526"}, - {file = "websockets-11.0.3-cp310-cp310-win32.whl", hash = "sha256:2d903ad4419f5b472de90cd2d40384573b25da71e33519a67797de17ef849b69"}, - {file = "websockets-11.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:1d2256283fa4b7f4c7d7d3e84dc2ece74d341bce57d5b9bf385df109c2a1a82f"}, - {file = "websockets-11.0.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e848f46a58b9fcf3d06061d17be388caf70ea5b8cc3466251963c8345e13f7eb"}, - {file = "websockets-11.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aa5003845cdd21ac0dc6c9bf661c5beddd01116f6eb9eb3c8e272353d45b3288"}, - {file = "websockets-11.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b58cbf0697721120866820b89f93659abc31c1e876bf20d0b3d03cef14faf84d"}, - {file = "websockets-11.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:660e2d9068d2bedc0912af508f30bbeb505bbbf9774d98def45f68278cea20d3"}, - {file = "websockets-11.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c1f0524f203e3bd35149f12157438f406eff2e4fb30f71221c8a5eceb3617b6b"}, - {file = "websockets-11.0.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:def07915168ac8f7853812cc593c71185a16216e9e4fa886358a17ed0fd9fcf6"}, - {file = "websockets-11.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b30c6590146e53149f04e85a6e4fcae068df4289e31e4aee1fdf56a0dead8f97"}, - {file = "websockets-11.0.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:619d9f06372b3a42bc29d0cd0354c9bb9fb39c2cbc1a9c5025b4538738dbffaf"}, - {file = "websockets-11.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:01f5567d9cf6f502d655151645d4e8b72b453413d3819d2b6f1185abc23e82dd"}, - {file = "websockets-11.0.3-cp311-cp311-win32.whl", hash = "sha256:e1459677e5d12be8bbc7584c35b992eea142911a6236a3278b9b5ce3326f282c"}, - {file = "websockets-11.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:e7837cb169eca3b3ae94cc5787c4fed99eef74c0ab9506756eea335e0d6f3ed8"}, - {file = "websockets-11.0.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:9f59a3c656fef341a99e3d63189852be7084c0e54b75734cde571182c087b152"}, - {file = "websockets-11.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2529338a6ff0eb0b50c7be33dc3d0e456381157a31eefc561771ee431134a97f"}, - {file = "websockets-11.0.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34fd59a4ac42dff6d4681d8843217137f6bc85ed29722f2f7222bd619d15e95b"}, - {file = "websockets-11.0.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:332d126167ddddec94597c2365537baf9ff62dfcc9db4266f263d455f2f031cb"}, - {file = "websockets-11.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6505c1b31274723ccaf5f515c1824a4ad2f0d191cec942666b3d0f3aa4cb4007"}, - {file = "websockets-11.0.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f467ba0050b7de85016b43f5a22b46383ef004c4f672148a8abf32bc999a87f0"}, - {file = "websockets-11.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:9d9acd80072abcc98bd2c86c3c9cd4ac2347b5a5a0cae7ed5c0ee5675f86d9af"}, - {file = "websockets-11.0.3-cp37-cp37m-win32.whl", hash = "sha256:e590228200fcfc7e9109509e4d9125eace2042fd52b595dd22bbc34bb282307f"}, - {file = "websockets-11.0.3-cp37-cp37m-win_amd64.whl", hash = "sha256:b16fff62b45eccb9c7abb18e60e7e446998093cdcb50fed33134b9b6878836de"}, - {file = "websockets-11.0.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fb06eea71a00a7af0ae6aefbb932fb8a7df3cb390cc217d51a9ad7343de1b8d0"}, - {file = "websockets-11.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8a34e13a62a59c871064dfd8ffb150867e54291e46d4a7cf11d02c94a5275bae"}, - {file = "websockets-11.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4841ed00f1026dfbced6fca7d963c4e7043aa832648671b5138008dc5a8f6d99"}, - {file = "websockets-11.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a073fc9ab1c8aff37c99f11f1641e16da517770e31a37265d2755282a5d28aa"}, - {file = "websockets-11.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:68b977f21ce443d6d378dbd5ca38621755f2063d6fdb3335bda981d552cfff86"}, - {file = "websockets-11.0.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1a99a7a71631f0efe727c10edfba09ea6bee4166a6f9c19aafb6c0b5917d09c"}, - {file = "websockets-11.0.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:bee9fcb41db2a23bed96c6b6ead6489702c12334ea20a297aa095ce6d31370d0"}, - {file = "websockets-11.0.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4b253869ea05a5a073ebfdcb5cb3b0266a57c3764cf6fe114e4cd90f4bfa5f5e"}, - {file = "websockets-11.0.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:1553cb82942b2a74dd9b15a018dce645d4e68674de2ca31ff13ebc2d9f283788"}, - {file = "websockets-11.0.3-cp38-cp38-win32.whl", hash = "sha256:f61bdb1df43dc9c131791fbc2355535f9024b9a04398d3bd0684fc16ab07df74"}, - {file = "websockets-11.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:03aae4edc0b1c68498f41a6772d80ac7c1e33c06c6ffa2ac1c27a07653e79d6f"}, - {file = "websockets-11.0.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:777354ee16f02f643a4c7f2b3eff8027a33c9861edc691a2003531f5da4f6bc8"}, - {file = "websockets-11.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8c82f11964f010053e13daafdc7154ce7385ecc538989a354ccc7067fd7028fd"}, - {file = "websockets-11.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3580dd9c1ad0701169e4d6fc41e878ffe05e6bdcaf3c412f9d559389d0c9e016"}, - {file = "websockets-11.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f1a3f10f836fab6ca6efa97bb952300b20ae56b409414ca85bff2ad241d2a61"}, - {file = "websockets-11.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:df41b9bc27c2c25b486bae7cf42fccdc52ff181c8c387bfd026624a491c2671b"}, - {file = "websockets-11.0.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:279e5de4671e79a9ac877427f4ac4ce93751b8823f276b681d04b2156713b9dd"}, - {file = "websockets-11.0.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1fdf26fa8a6a592f8f9235285b8affa72748dc12e964a5518c6c5e8f916716f7"}, - {file = "websockets-11.0.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:69269f3a0b472e91125b503d3c0b3566bda26da0a3261c49f0027eb6075086d1"}, - {file = "websockets-11.0.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:97b52894d948d2f6ea480171a27122d77af14ced35f62e5c892ca2fae9344311"}, - {file = "websockets-11.0.3-cp39-cp39-win32.whl", hash = "sha256:c7f3cb904cce8e1be667c7e6fef4516b98d1a6a0635a58a57528d577ac18a128"}, - {file = "websockets-11.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:c792ea4eabc0159535608fc5658a74d1a81020eb35195dd63214dcf07556f67e"}, - {file = "websockets-11.0.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f2e58f2c36cc52d41f2659e4c0cbf7353e28c8c9e63e30d8c6d3494dc9fdedcf"}, - {file = "websockets-11.0.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de36fe9c02995c7e6ae6efe2e205816f5f00c22fd1fbf343d4d18c3d5ceac2f5"}, - {file = "websockets-11.0.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0ac56b661e60edd453585f4bd68eb6a29ae25b5184fd5ba51e97652580458998"}, - {file = "websockets-11.0.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e052b8467dd07d4943936009f46ae5ce7b908ddcac3fda581656b1b19c083d9b"}, - {file = "websockets-11.0.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:42cc5452a54a8e46a032521d7365da775823e21bfba2895fb7b77633cce031bb"}, - {file = "websockets-11.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e6316827e3e79b7b8e7d8e3b08f4e331af91a48e794d5d8b099928b6f0b85f20"}, - {file = "websockets-11.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8531fdcad636d82c517b26a448dcfe62f720e1922b33c81ce695d0edb91eb931"}, - {file = "websockets-11.0.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c114e8da9b475739dde229fd3bc6b05a6537a88a578358bc8eb29b4030fac9c9"}, - {file = "websockets-11.0.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e063b1865974611313a3849d43f2c3f5368093691349cf3c7c8f8f75ad7cb280"}, - {file = "websockets-11.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:92b2065d642bf8c0a82d59e59053dd2fdde64d4ed44efe4870fa816c1232647b"}, - {file = "websockets-11.0.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0ee68fe502f9031f19d495dae2c268830df2760c0524cbac5d759921ba8c8e82"}, - {file = "websockets-11.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcacf2c7a6c3a84e720d1bb2b543c675bf6c40e460300b628bab1b1efc7c034c"}, - {file = "websockets-11.0.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b67c6f5e5a401fc56394f191f00f9b3811fe843ee93f4a70df3c389d1adf857d"}, - {file = "websockets-11.0.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d5023a4b6a5b183dc838808087033ec5df77580485fc533e7dab2567851b0a4"}, - {file = "websockets-11.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ed058398f55163a79bb9f06a90ef9ccc063b204bb346c4de78efc5d15abfe602"}, - {file = "websockets-11.0.3-py3-none-any.whl", hash = "sha256:6681ba9e7f8f3b19440921e99efbb40fc89f26cd71bf539e45d8c8a25c976dc6"}, - {file = "websockets-11.0.3.tar.gz", hash = "sha256:88fc51d9a26b10fc331be344f1781224a375b78488fc343620184e95a4b27016"}, -] - [[package]] name = "wrapt" version = "1.16.0" @@ -6521,123 +4971,6 @@ cffi = ">=1.16.0" [package.extras] test = ["pytest"] -[[package]] -name = "xxhash" -version = "3.4.1" -description = "Python binding for xxHash" -optional = true -python-versions = ">=3.7" -files = [ - {file = "xxhash-3.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:91dbfa55346ad3e18e738742236554531a621042e419b70ad8f3c1d9c7a16e7f"}, - {file = "xxhash-3.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:665a65c2a48a72068fcc4d21721510df5f51f1142541c890491afc80451636d2"}, - {file = "xxhash-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb11628470a6004dc71a09fe90c2f459ff03d611376c1debeec2d648f44cb693"}, - {file = "xxhash-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5bef2a7dc7b4f4beb45a1edbba9b9194c60a43a89598a87f1a0226d183764189"}, - {file = "xxhash-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9c0f7b2d547d72c7eda7aa817acf8791f0146b12b9eba1d4432c531fb0352228"}, - {file = "xxhash-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00f2fdef6b41c9db3d2fc0e7f94cb3db86693e5c45d6de09625caad9a469635b"}, - {file = "xxhash-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23cfd9ca09acaf07a43e5a695143d9a21bf00f5b49b15c07d5388cadf1f9ce11"}, - {file = "xxhash-3.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6a9ff50a3cf88355ca4731682c168049af1ca222d1d2925ef7119c1a78e95b3b"}, - {file = "xxhash-3.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f1d7c69a1e9ca5faa75546fdd267f214f63f52f12692f9b3a2f6467c9e67d5e7"}, - {file = "xxhash-3.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:672b273040d5d5a6864a36287f3514efcd1d4b1b6a7480f294c4b1d1ee1b8de0"}, - {file = "xxhash-3.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4178f78d70e88f1c4a89ff1ffe9f43147185930bb962ee3979dba15f2b1cc799"}, - {file = "xxhash-3.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9804b9eb254d4b8cc83ab5a2002128f7d631dd427aa873c8727dba7f1f0d1c2b"}, - {file = "xxhash-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c09c49473212d9c87261d22c74370457cfff5db2ddfc7fd1e35c80c31a8c14ce"}, - {file = "xxhash-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:ebbb1616435b4a194ce3466d7247df23499475c7ed4eb2681a1fa42ff766aff6"}, - {file = "xxhash-3.4.1-cp310-cp310-win_arm64.whl", hash = "sha256:25dc66be3db54f8a2d136f695b00cfe88018e59ccff0f3b8f545869f376a8a46"}, - {file = "xxhash-3.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:58c49083801885273e262c0f5bbeac23e520564b8357fbb18fb94ff09d3d3ea5"}, - {file = "xxhash-3.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b526015a973bfbe81e804a586b703f163861da36d186627e27524f5427b0d520"}, - {file = "xxhash-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36ad4457644c91a966f6fe137d7467636bdc51a6ce10a1d04f365c70d6a16d7e"}, - {file = "xxhash-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:248d3e83d119770f96003271fe41e049dd4ae52da2feb8f832b7a20e791d2920"}, - {file = "xxhash-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2070b6d5bbef5ee031666cf21d4953c16e92c2f8a24a94b5c240f8995ba3b1d0"}, - {file = "xxhash-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2746035f518f0410915e247877f7df43ef3372bf36cfa52cc4bc33e85242641"}, - {file = "xxhash-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a8ba6181514681c2591840d5632fcf7356ab287d4aff1c8dea20f3c78097088"}, - {file = "xxhash-3.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0aac5010869240e95f740de43cd6a05eae180c59edd182ad93bf12ee289484fa"}, - {file = "xxhash-3.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4cb11d8debab1626181633d184b2372aaa09825bde709bf927704ed72765bed1"}, - {file = "xxhash-3.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b29728cff2c12f3d9f1d940528ee83918d803c0567866e062683f300d1d2eff3"}, - {file = "xxhash-3.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:a15cbf3a9c40672523bdb6ea97ff74b443406ba0ab9bca10ceccd9546414bd84"}, - {file = "xxhash-3.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6e66df260fed01ed8ea790c2913271641c58481e807790d9fca8bfd5a3c13844"}, - {file = "xxhash-3.4.1-cp311-cp311-win32.whl", hash = "sha256:e867f68a8f381ea12858e6d67378c05359d3a53a888913b5f7d35fbf68939d5f"}, - {file = "xxhash-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:200a5a3ad9c7c0c02ed1484a1d838b63edcf92ff538770ea07456a3732c577f4"}, - {file = "xxhash-3.4.1-cp311-cp311-win_arm64.whl", hash = "sha256:1d03f1c0d16d24ea032e99f61c552cb2b77d502e545187338bea461fde253583"}, - {file = "xxhash-3.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c4bbba9b182697a52bc0c9f8ec0ba1acb914b4937cd4a877ad78a3b3eeabefb3"}, - {file = "xxhash-3.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9fd28a9da300e64e434cfc96567a8387d9a96e824a9be1452a1e7248b7763b78"}, - {file = "xxhash-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6066d88c9329ab230e18998daec53d819daeee99d003955c8db6fc4971b45ca3"}, - {file = "xxhash-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:93805bc3233ad89abf51772f2ed3355097a5dc74e6080de19706fc447da99cd3"}, - {file = "xxhash-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:64da57d5ed586ebb2ecdde1e997fa37c27fe32fe61a656b77fabbc58e6fbff6e"}, - {file = "xxhash-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a97322e9a7440bf3c9805cbaac090358b43f650516486746f7fa482672593df"}, - {file = "xxhash-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bbe750d512982ee7d831838a5dee9e9848f3fb440e4734cca3f298228cc957a6"}, - {file = "xxhash-3.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:fd79d4087727daf4d5b8afe594b37d611ab95dc8e29fe1a7517320794837eb7d"}, - {file = "xxhash-3.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:743612da4071ff9aa4d055f3f111ae5247342931dedb955268954ef7201a71ff"}, - {file = "xxhash-3.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:b41edaf05734092f24f48c0958b3c6cbaaa5b7e024880692078c6b1f8247e2fc"}, - {file = "xxhash-3.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:a90356ead70d715fe64c30cd0969072de1860e56b78adf7c69d954b43e29d9fa"}, - {file = "xxhash-3.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ac56eebb364e44c85e1d9e9cc5f6031d78a34f0092fea7fc80478139369a8b4a"}, - {file = "xxhash-3.4.1-cp312-cp312-win32.whl", hash = "sha256:911035345932a153c427107397c1518f8ce456f93c618dd1c5b54ebb22e73747"}, - {file = "xxhash-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:f31ce76489f8601cc7b8713201ce94b4bd7b7ce90ba3353dccce7e9e1fee71fa"}, - {file = "xxhash-3.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:b5beb1c6a72fdc7584102f42c4d9df232ee018ddf806e8c90906547dfb43b2da"}, - {file = "xxhash-3.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6d42b24d1496deb05dee5a24ed510b16de1d6c866c626c2beb11aebf3be278b9"}, - {file = "xxhash-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b685fab18876b14a8f94813fa2ca80cfb5ab6a85d31d5539b7cd749ce9e3624"}, - {file = "xxhash-3.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:419ffe34c17ae2df019a4685e8d3934d46b2e0bbe46221ab40b7e04ed9f11137"}, - {file = "xxhash-3.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0e041ce5714f95251a88670c114b748bca3bf80cc72400e9f23e6d0d59cf2681"}, - {file = "xxhash-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc860d887c5cb2f524899fb8338e1bb3d5789f75fac179101920d9afddef284b"}, - {file = "xxhash-3.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:312eba88ffe0a05e332e3a6f9788b73883752be63f8588a6dc1261a3eaaaf2b2"}, - {file = "xxhash-3.4.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:e01226b6b6a1ffe4e6bd6d08cfcb3ca708b16f02eb06dd44f3c6e53285f03e4f"}, - {file = "xxhash-3.4.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:9f3025a0d5d8cf406a9313cd0d5789c77433ba2004b1c75439b67678e5136537"}, - {file = "xxhash-3.4.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:6d3472fd4afef2a567d5f14411d94060099901cd8ce9788b22b8c6f13c606a93"}, - {file = "xxhash-3.4.1-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:43984c0a92f06cac434ad181f329a1445017c33807b7ae4f033878d860a4b0f2"}, - {file = "xxhash-3.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:a55e0506fdb09640a82ec4f44171273eeabf6f371a4ec605633adb2837b5d9d5"}, - {file = "xxhash-3.4.1-cp37-cp37m-win32.whl", hash = "sha256:faec30437919555b039a8bdbaba49c013043e8f76c999670aef146d33e05b3a0"}, - {file = "xxhash-3.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:c9e1b646af61f1fc7083bb7b40536be944f1ac67ef5e360bca2d73430186971a"}, - {file = "xxhash-3.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:961d948b7b1c1b6c08484bbce3d489cdf153e4122c3dfb07c2039621243d8795"}, - {file = "xxhash-3.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:719a378930504ab159f7b8e20fa2aa1896cde050011af838af7e7e3518dd82de"}, - {file = "xxhash-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:74fb5cb9406ccd7c4dd917f16630d2e5e8cbbb02fc2fca4e559b2a47a64f4940"}, - {file = "xxhash-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5dab508ac39e0ab988039bc7f962c6ad021acd81fd29145962b068df4148c476"}, - {file = "xxhash-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8c59f3e46e7daf4c589e8e853d700ef6607afa037bfad32c390175da28127e8c"}, - {file = "xxhash-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cc07256eff0795e0f642df74ad096f8c5d23fe66bc138b83970b50fc7f7f6c5"}, - {file = "xxhash-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e9f749999ed80f3955a4af0eb18bb43993f04939350b07b8dd2f44edc98ffee9"}, - {file = "xxhash-3.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7688d7c02149a90a3d46d55b341ab7ad1b4a3f767be2357e211b4e893efbaaf6"}, - {file = "xxhash-3.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a8b4977963926f60b0d4f830941c864bed16aa151206c01ad5c531636da5708e"}, - {file = "xxhash-3.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:8106d88da330f6535a58a8195aa463ef5281a9aa23b04af1848ff715c4398fb4"}, - {file = "xxhash-3.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:4c76a77dbd169450b61c06fd2d5d436189fc8ab7c1571d39265d4822da16df22"}, - {file = "xxhash-3.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:11f11357c86d83e53719c592021fd524efa9cf024dc7cb1dfb57bbbd0d8713f2"}, - {file = "xxhash-3.4.1-cp38-cp38-win32.whl", hash = "sha256:0c786a6cd74e8765c6809892a0d45886e7c3dc54de4985b4a5eb8b630f3b8e3b"}, - {file = "xxhash-3.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:aabf37fb8fa27430d50507deeab2ee7b1bcce89910dd10657c38e71fee835594"}, - {file = "xxhash-3.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6127813abc1477f3a83529b6bbcfeddc23162cece76fa69aee8f6a8a97720562"}, - {file = "xxhash-3.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ef2e194262f5db16075caea7b3f7f49392242c688412f386d3c7b07c7733a70a"}, - {file = "xxhash-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71be94265b6c6590f0018bbf73759d21a41c6bda20409782d8117e76cd0dfa8b"}, - {file = "xxhash-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10e0a619cdd1c0980e25eb04e30fe96cf8f4324758fa497080af9c21a6de573f"}, - {file = "xxhash-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fa122124d2e3bd36581dd78c0efa5f429f5220313479fb1072858188bc2d5ff1"}, - {file = "xxhash-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17032f5a4fea0a074717fe33477cb5ee723a5f428de7563e75af64bfc1b1e10"}, - {file = "xxhash-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca7783b20e3e4f3f52f093538895863f21d18598f9a48211ad757680c3bd006f"}, - {file = "xxhash-3.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d77d09a1113899fad5f354a1eb4f0a9afcf58cefff51082c8ad643ff890e30cf"}, - {file = "xxhash-3.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:21287bcdd299fdc3328cc0fbbdeaa46838a1c05391264e51ddb38a3f5b09611f"}, - {file = "xxhash-3.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:dfd7a6cc483e20b4ad90224aeb589e64ec0f31e5610ab9957ff4314270b2bf31"}, - {file = "xxhash-3.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:543c7fcbc02bbb4840ea9915134e14dc3dc15cbd5a30873a7a5bf66039db97ec"}, - {file = "xxhash-3.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:fe0a98d990e433013f41827b62be9ab43e3cf18e08b1483fcc343bda0d691182"}, - {file = "xxhash-3.4.1-cp39-cp39-win32.whl", hash = "sha256:b9097af00ebf429cc7c0e7d2fdf28384e4e2e91008130ccda8d5ae653db71e54"}, - {file = "xxhash-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:d699b921af0dcde50ab18be76c0d832f803034d80470703700cb7df0fbec2832"}, - {file = "xxhash-3.4.1-cp39-cp39-win_arm64.whl", hash = "sha256:2be491723405e15cc099ade1280133ccfbf6322d2ef568494fb7d07d280e7eee"}, - {file = "xxhash-3.4.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:431625fad7ab5649368c4849d2b49a83dc711b1f20e1f7f04955aab86cd307bc"}, - {file = "xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc6dbd5fc3c9886a9e041848508b7fb65fd82f94cc793253990f81617b61fe49"}, - {file = "xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3ff8dbd0ec97aec842476cb8ccc3e17dd288cd6ce3c8ef38bff83d6eb927817"}, - {file = "xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef73a53fe90558a4096e3256752268a8bdc0322f4692ed928b6cd7ce06ad4fe3"}, - {file = "xxhash-3.4.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:450401f42bbd274b519d3d8dcf3c57166913381a3d2664d6609004685039f9d3"}, - {file = "xxhash-3.4.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a162840cf4de8a7cd8720ff3b4417fbc10001eefdd2d21541a8226bb5556e3bb"}, - {file = "xxhash-3.4.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b736a2a2728ba45017cb67785e03125a79d246462dfa892d023b827007412c52"}, - {file = "xxhash-3.4.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d0ae4c2e7698adef58710d6e7a32ff518b66b98854b1c68e70eee504ad061d8"}, - {file = "xxhash-3.4.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6322c4291c3ff174dcd104fae41500e75dad12be6f3085d119c2c8a80956c51"}, - {file = "xxhash-3.4.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:dd59ed668801c3fae282f8f4edadf6dc7784db6d18139b584b6d9677ddde1b6b"}, - {file = "xxhash-3.4.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:92693c487e39523a80474b0394645b393f0ae781d8db3474ccdcead0559ccf45"}, - {file = "xxhash-3.4.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4603a0f642a1e8d7f3ba5c4c25509aca6a9c1cc16f85091004a7028607ead663"}, - {file = "xxhash-3.4.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fa45e8cbfbadb40a920fe9ca40c34b393e0b067082d94006f7f64e70c7490a6"}, - {file = "xxhash-3.4.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:595b252943b3552de491ff51e5bb79660f84f033977f88f6ca1605846637b7c6"}, - {file = "xxhash-3.4.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:562d8b8f783c6af969806aaacf95b6c7b776929ae26c0cd941d54644ea7ef51e"}, - {file = "xxhash-3.4.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:41ddeae47cf2828335d8d991f2d2b03b0bdc89289dc64349d712ff8ce59d0647"}, - {file = "xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c44d584afdf3c4dbb3277e32321d1a7b01d6071c1992524b6543025fb8f4206f"}, - {file = "xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd7bddb3a5b86213cc3f2c61500c16945a1b80ecd572f3078ddbbe68f9dabdfb"}, - {file = "xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9ecb6c987b62437c2f99c01e97caf8d25660bf541fe79a481d05732e5236719c"}, - {file = "xxhash-3.4.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:696b4e18b7023527d5c50ed0626ac0520edac45a50ec7cf3fc265cd08b1f4c03"}, - {file = "xxhash-3.4.1.tar.gz", hash = "sha256:0379d6cf1ff987cd421609a264ce025e74f346e3e145dd106c0cc2e3ec3f99a9"}, -] - [[package]] name = "yarl" version = "1.9.4" @@ -6758,11 +5091,9 @@ test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", [extras] api-bot = ["fastapi", "pydantic", "requests", "uvicorn"] -azure = ["pulumi", "pulumi-azure-native"] -ft-notebooks = ["datasets", "faiss-cpu", "ipykernel"] -llama-index-notebooks = ["bitsandbytes", "gradio", "ipykernel", "nbconvert"] +azure = ["azure-storage-file-share", "pulumi", "pulumi-azure-native"] [metadata] lock-version = "2.0" python-versions = ">=3.11,<3.12" -content-hash = "3c2fb819c064f00c71ebc15edaee17905150a91adc0e2b2c2026e406f29a33b6" +content-hash = "6c025f7263718fd83e17df5ff9f4fbacfdef3e41e3338d2567859b58e50d6050" diff --git a/pyproject.toml b/pyproject.toml index 617068bf..cfd99cf4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,23 +19,17 @@ readme = "README.md" [tool.poetry.dependencies] python = ">=3.11,<3.12" accelerate = "^0.31.0" -bitsandbytes = { version="^0.41.1", optional=true } -datasets = { version="^2.16.1", optional=true } -faiss-cpu = { version="^1.7.4", optional=true } fastapi = { version="^0.110.1", optional=true } gitpython = "^3.1.43" -gradio = { version="^4.36.1", optional=true } httpx = "^0.27.0" -ipykernel = { version="^6.23.2", optional=true } -langchain = "^0.2.3" llama-cpp-python = "^0.2.78" llama-index = "^0.10.43" -nbconvert = { version="^7.8.0", optional=true } nest_asyncio = "^1.6.0" openai = "^1.33.0" pandas = "^2.2.2" pulumi = { version="^3.100.0", optional=true } pulumi-azure-native = { version="^2.24.0", optional=true } +azure-storage-file-share = { version="^12.16.0", optional=true } pydantic = { version="^2.7.4", optional=true } requests = { version="^2.32.3", optional=true } safetensors = "^0.4.3" @@ -44,19 +38,16 @@ sentence-transformers = "2.*" torch = "^2.3.1" transformers = "^4.41.2" uvicorn = { version="^0.23.2", optional=true } -llama-index-readers-github = "^0.1.9" llama-index-llms-azure-openai = "^0.1.8" llama-index-llms-openai = "^0.1.22" +llama-index-embeddings-huggingface = "^0.2.1" llama-index-llms-huggingface = "^0.2.3" llama-index-llms-ollama = "^0.1.5" llama-index-llms-llama-cpp = "^0.1.3" llama-index-readers-file = "^0.1.23" -llama-index-embeddings-langchain = "^0.1.2" -typer = "^0.12.3" -langchain-community = "^0.2.4" +llama-index-readers-github = "^0.1.9" tiktoken = "^0.7.0" -llama-index-embeddings-huggingface = "^0.2.1" -azure-storage-file-share = "^12.16.0" +typer = "^0.12.3" rich = "^13.7.1" @@ -79,17 +70,7 @@ api_bot = [ azure = [ "pulumi", "pulumi-azure-native", -] -ft_notebooks = [ - "datasets", - "faiss-cpu", - "ipykernel", -] -llama_index_notebooks = [ - "bitsandbytes", - "gradio", - "ipykernel", - "nbconvert" + "azure-storage-file-share", ] [tool.poetry.scripts] From 0d2737b3396a8e68ce0eef403574bbf5206d07a1 Mon Sep 17 00:00:00 2001 From: rchan Date: Wed, 12 Jun 2024 22:06:58 +0100 Subject: [PATCH 03/11] refactor so models and modules loaded only when necessary --- reginald/cli.py | 52 +- reginald/defaults.py | 22 + reginald/models/__init__.py | 75 ++ reginald/models/app.py | 10 + reginald/models/{models => }/base.py | 0 reginald/models/chat_interact.py | 44 + reginald/models/create_index.py | 6 +- reginald/models/download_from_fileshare.py | 65 + reginald/models/llama_index/__init__.py | 0 reginald/models/llama_index/base.py | 367 ++++++ .../models/llama_index/data_index_creator.py | 396 ++++++ .../llama_cpp_template.py} | 4 +- reginald/models/llama_index/llama_index.py | 370 ++++++ .../llama_index/llama_index_azure_openai.py | 68 + reginald/models/llama_index/llama_index_hf.py | 55 + .../llama_index/llama_index_llama_cpp.py | 71 ++ .../models/llama_index/llama_index_ollama.py | 47 + .../models/llama_index/llama_index_openai.py | 50 + reginald/models/llama_index/llama_utils.py | 119 ++ reginald/models/models/__init__.py | 38 - reginald/models/models/llama_index.py | 1136 ----------------- reginald/models/setup_llm.py | 25 +- reginald/models/simple/__init__.py | 0 .../{models => simple}/chat_completion.py | 2 +- reginald/models/{models => simple}/hello.py | 2 +- reginald/parser_utils.py | 226 ---- reginald/run.py | 187 +-- reginald/run_full_pipeline.py | 17 + reginald/slack_bot/bot.py | 2 +- reginald/slack_bot/run_bot.py | 26 + reginald/slack_bot/{setup_bot.py => utils.py} | 47 +- reginald/utils.py | 1 - tests/test_chat_interact.py | 36 +- 33 files changed, 1939 insertions(+), 1627 deletions(-) create mode 100644 reginald/defaults.py rename reginald/models/{models => }/base.py (100%) create mode 100644 reginald/models/chat_interact.py create mode 100644 reginald/models/download_from_fileshare.py create mode 100644 reginald/models/llama_index/__init__.py create mode 100644 reginald/models/llama_index/base.py create mode 100644 reginald/models/llama_index/data_index_creator.py rename reginald/models/{models/llama_utils.py => llama_index/llama_cpp_template.py} (93%) create mode 100644 reginald/models/llama_index/llama_index.py create mode 100644 reginald/models/llama_index/llama_index_azure_openai.py create mode 100644 reginald/models/llama_index/llama_index_hf.py create mode 100644 reginald/models/llama_index/llama_index_llama_cpp.py create mode 100644 reginald/models/llama_index/llama_index_ollama.py create mode 100644 reginald/models/llama_index/llama_index_openai.py create mode 100644 reginald/models/llama_index/llama_utils.py delete mode 100644 reginald/models/models/__init__.py delete mode 100644 reginald/models/models/llama_index.py create mode 100644 reginald/models/simple/__init__.py rename reginald/models/{models => simple}/chat_completion.py (99%) rename reginald/models/{models => simple}/hello.py (92%) delete mode 100644 reginald/parser_utils.py create mode 100644 reginald/run_full_pipeline.py create mode 100644 reginald/slack_bot/run_bot.py rename reginald/slack_bot/{setup_bot.py => utils.py} (69%) diff --git a/reginald/cli.py b/reginald/cli.py index 74c97320..076f3c30 100644 --- a/reginald/cli.py +++ b/reginald/cli.py @@ -4,10 +4,14 @@ import typer -from reginald.models.setup_llm import DEFAULT_ARGS -from reginald.run import EMOJI_DEFAULT, main +from reginald.defaults import DEFAULT_ARGS, EMOJI_DEFAULT +from reginald.run import main -API_URL_PROPMPT = "No API URL was provided and REGINALD_API_URL not set. Please provide an API URL for the Reginald app" +PROMPTS = { + "api_url": "No API URL was provided and REGINALD_API_URL not set. Please provide an API URL for the Reginald app", + "slack_app_token": "No Slack app token was provided and SLACK_APP_TOKEN not set. Please provide a Slack app token for the bot", + "slack_bot_token": "No Slack bot token was provided and SLACK_BOT_TOKEN not set. Please provide a Slack bot token for the bot", +} HELP_TEXT = { "model": "Select which type of model to use..", "model_name": "Select which sub-model to use (within the main model selected).", @@ -26,6 +30,8 @@ "api_url": "API URL for the Reginald app.", "emoji": "Emoji to use for the bot.", "streaming": "Whether to use streaming for the chat interaction.", + "slack_app_token": "Slack app token for the bot.", + "slack_bot_token": "Slack bot token for the bot.", } cli = typer.Typer() @@ -41,6 +47,22 @@ def set_up_logging_config(level: int = 20) -> None: @cli.command() def run_all( + slack_app_token: Annotated[ + str, + typer.Option( + prompt=PROMPTS["slack_app_token"], + envvar="SLACK_APP_TOKEN", + help=HELP_TEXT["slack_app_token"], + ), + ], + slack_bot_token: Annotated[ + str, + typer.Option( + prompt=PROMPTS["slack_bot_token"], + envvar="SLACK_BOT_TOKEN", + help=HELP_TEXT["slack_bot_token"], + ), + ], model: Annotated[ str, typer.Option( @@ -111,6 +133,8 @@ def run_all( set_up_logging_config(level=20) main( cli="run_all", + slack_app_token=slack_app_token, + slack_bot_token=slack_bot_token, model=model, model_name=model_name, mode=mode, @@ -130,10 +154,28 @@ def run_all( @cli.command() def bot( + slack_app_token: Annotated[ + str, + typer.Option( + prompt=PROMPTS["slack_app_token"], + envvar="SLACK_APP_TOKEN", + help=HELP_TEXT["slack_app_token"], + ), + ], + slack_bot_token: Annotated[ + str, + typer.Option( + prompt=PROMPTS["slack_bot_token"], + envvar="SLACK_BOT_TOKEN", + help=HELP_TEXT["slack_bot_token"], + ), + ], api_url: Annotated[ str, typer.Option( - prompt=API_URL_PROPMPT, envvar="REGINALD_API_URL", help=HELP_TEXT["api_url"] + prompt=PROMPTS["api_url"], + envvar="REGINALD_API_URL", + help=HELP_TEXT["api_url"], ), ], emoji: Annotated[ @@ -149,6 +191,8 @@ def bot( set_up_logging_config(level=20) main( cli="bot", + slack_app_token=slack_app_token, + slack_bot_token=slack_bot_token, api_url=api_url, emoji=emoji, ) diff --git a/reginald/defaults.py b/reginald/defaults.py new file mode 100644 index 00000000..7aa705a4 --- /dev/null +++ b/reginald/defaults.py @@ -0,0 +1,22 @@ +import pathlib +from typing import Final + +EMOJI_DEFAULT: Final[str] = "rocket" + +LLAMA_INDEX_DIR: Final[str] = "llama_index_indices" + +DEFAULT_ARGS = { + "model": "hello", + "mode": "chat", + "data_dir": pathlib.Path(__file__).parent.parent / "data", + "which_index": "reg", + "force_new_index": False, + "max_input_size": 4096, + "k": 3, + "chunk_size": 512, + "chunk_overlap_ratio": 0.1, + "num_output": 512, + "is_path": False, + "n_gpu_layers": 0, + "device": "auto", +} diff --git a/reginald/models/__init__.py b/reginald/models/__init__.py index e69de29b..5988bc26 100644 --- a/reginald/models/__init__.py +++ b/reginald/models/__init__.py @@ -0,0 +1,75 @@ +class ModelMapper: + @staticmethod + def available_models(): + return [ + "chat-completion-azure", + "chat-completion-openai", + "hello", + "llama-index-ollama", + "llama-index-llama-cpp", + "llama-index-hf", + "llama-index-gpt-azure", + "llama-index-gpt-openai", + ] + + @staticmethod + def get_model(model_name: str): + match model_name: + case "chat-completion-azure": + from reginald.models.simple.chat_completion import ChatCompletionAzure + + return ChatCompletionAzure + case "chat-completion-openai": + from reginald.models.simple.chat_completion import ChatCompletionOpenAI + + return ChatCompletionOpenAI + case "hello": + from reginald.models.simple.hello import Hello + + return Hello + case "llama-index-ollama": + from reginald.models.llama_index.llama_index_ollama import ( + LlamaIndexOllama, + ) + + return LlamaIndexOllama + case "llama-index-llama-cpp": + from reginald.models.llama_index.llama_index_llama_cpp import ( + LlamaIndexLlamaCPP, + ) + + return LlamaIndexLlamaCPP + case "llama-index-hf": + from reginald.models.llama_index.llama_index_hf import LlamaIndexHF + + return LlamaIndexHF + case "llama-index-gpt-azure": + from reginald.models.llama_index.llama_index_openai import ( + LlamaIndexGPTOpenAI, + ) + + return LlamaIndexGPTOpenAI + case "llama-index-gpt-openai": + from reginald.models.llama_index.llama_index_openai import ( + LlamaIndexGPTOpenAI, + ) + + return LlamaIndexGPTOpenAI + case _: + raise ValueError( + f"Model {model_name} not found. Available models: {ModelMapper.available_models()}" + ) + + +DEFAULTS = { + "chat-completion-azure": "reginald-gpt4", + "chat-completion-openai": "gpt-3.5-turbo", + "hello": None, + "llama-index-ollama": "llama3", + "llama-index-llama-cpp": "https://huggingface.co/TheBloke/Llama-2-13B-chat-GGUF/resolve/main/llama-2-13b-chat.Q6_K.gguf", + "llama-index-hf": "microsoft/phi-1_5", + "llama-index-gpt-azure": "reginald-gpt4", + "llama-index-gpt-openai": "gpt-3.5-turbo", +} + +__all__ = ["MODELS", "DEFAULTS"] diff --git a/reginald/models/app.py b/reginald/models/app.py index c9c41e9c..04808e40 100644 --- a/reginald/models/app.py +++ b/reginald/models/app.py @@ -1,6 +1,9 @@ +import uvicorn from fastapi import FastAPI from pydantic import BaseModel +from reginald.models.setup_llm import setup_llm + class Query(BaseModel): message: str @@ -38,3 +41,10 @@ async def channel_mention(query: Query): return response return app + + +async def run_reginald_app(**kwargs) -> None: + # set up response model + response_model = setup_llm(**kwargs) + app: FastAPI = create_reginald_app(response_model) + uvicorn.run(app, host="0.0.0.0", port=8000) diff --git a/reginald/models/models/base.py b/reginald/models/base.py similarity index 100% rename from reginald/models/models/base.py rename to reginald/models/base.py diff --git a/reginald/models/chat_interact.py b/reginald/models/chat_interact.py new file mode 100644 index 00000000..391d17f6 --- /dev/null +++ b/reginald/models/chat_interact.py @@ -0,0 +1,44 @@ +import readline + +from reginald.models.base import ResponseModel +from reginald.models.setup_llm import setup_llm + +art = """ +(`-') (`-') _ _ <-. (`-')_(`-') _ _(`-') +<-.(OO ) ( OO).-/ .-> (_) \( OO) (OO ).-/ <-. ( (OO ).-> +,------,(,------.,---(`-'),-(`-',--./ ,--// ,---. ,--. ) \ .'_ +| /`. '| .---' .-(OO )| ( OO| \ | || \ /`.\ | (`-''`'-..__) +| |_.' (| '--.| | .-, \| | | . '| |'-'|_.' || |OO | | ' | +| . .'| .--'| | '.(_(| |_/| |\ (| .-. (| '__ | | / : +| |\ \ | `---| '-' | | |'-| | \ || | | || || '-' / +`--' '--'`------'`-----' `--' `--' `--'`--' `--'`-----'`------' +""" + + +def run_chat_interact(streaming: bool = False, **kwargs) -> ResponseModel: + # set up response model + response_model = setup_llm(**kwargs) + user_id = "command_line_chat" + print(art) + + while True: + message = input(">>> ") + if message in ["exit", "exit()", "quit()", "bye Reginald"]: + return response_model + if message in ["clear_history", "\clear_history"]: + if ( + response_model.mode == "chat" + and response_model.chat_engine.get(user_id) is not None + ): + response_model.chat_engine[user_id].reset() + print("\nReginald: History cleared.") + else: + print("\nReginald: No history to clear.") + continue + + if streaming: + response = response_model.stream_message(message=message, user_id=user_id) + print("") + else: + response = response_model.direct_message(message=message, user_id=user_id) + print(f"\nReginald: {response.message}") diff --git a/reginald/models/create_index.py b/reginald/models/create_index.py index 6b54888b..0f685cdf 100644 --- a/reginald/models/create_index.py +++ b/reginald/models/create_index.py @@ -10,12 +10,12 @@ from llama_index.core.llms.callbacks import llm_completion_callback from llama_index.core.llms.custom import CustomLLM -from reginald.models.models.llama_index import ( +from reginald.defaults import DEFAULT_ARGS +from reginald.models.llama_index.base import ( DataIndexCreator, compute_default_chunk_size, - setup_settings, ) -from reginald.models.setup_llm import DEFAULT_ARGS +from reginald.models.llama_index.llama_utils import setup_settings class DummyLLM(CustomLLM): diff --git a/reginald/models/download_from_fileshare.py b/reginald/models/download_from_fileshare.py new file mode 100644 index 00000000..44d22dc2 --- /dev/null +++ b/reginald/models/download_from_fileshare.py @@ -0,0 +1,65 @@ +import logging +import pathlib +import sys + +from reginald.utils import create_folder + + +def download_from_fileshare( + data_dir: pathlib.Path | str, + which_index: str, + azure_storage_key: str | None, + connection_str: str | None, +) -> None: + from azure.storage.fileshare import ShareClient + from tqdm import tqdm + + if azure_storage_key is None: + logging.error("azure_storage_key is not set.") + sys.exit(1) + if connection_str is None: + logging.error("connection_str is not set.") + sys.exit(1) + + # set the file share name and directory + file_share_name = "llama-data" + file_share_directory = f"llama_index_indices/{which_index}" + + # create a ShareClient object + share_client = ShareClient.from_connection_string( + conn_str=connection_str, + share_name=file_share_name, + credential=azure_storage_key, + ) + + # get a reference to the file share directory + file_share_directory_client = share_client.get_directory_client( + file_share_directory + ) + + # set the local download directory + local_download_directory = ( + pathlib.Path(data_dir) / "llama_index_indices" / which_index + ) + + # create folder if does not exist + create_folder(local_download_directory) + + # list all the files in the directory + files_list = file_share_directory_client.list_directories_and_files() + + # check if the index exists + try: + files_list = list(files_list) + except: + logging.error(f"Index {which_index} does not exist in the file share") + sys.exit(1) + + # iterate through each file in the list and download it + for file in tqdm(files_list): + if not file.is_directory: + file_client = file_share_directory_client.get_file_client(file.name) + download_path = local_download_directory / file.name + with open(download_path, "wb") as file_handle: + data = file_client.download_file() + data.readinto(file_handle) diff --git a/reginald/models/llama_index/__init__.py b/reginald/models/llama_index/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/reginald/models/llama_index/base.py b/reginald/models/llama_index/base.py new file mode 100644 index 00000000..6eed3c94 --- /dev/null +++ b/reginald/models/llama_index/base.py @@ -0,0 +1,367 @@ +import logging +import pathlib +import re +import sys +from typing import Callable + +import nest_asyncio +from llama_index.core import StorageContext, VectorStoreIndex, load_index_from_storage +from llama_index.core.base.llms.base import BaseLLM +from llama_index.core.base.response.schema import RESPONSE_TYPE + +from reginald.defaults import LLAMA_INDEX_DIR +from reginald.models.base import MessageResponse, ResponseModel +from reginald.models.llama_index.data_index_creator import DataIndexCreator +from reginald.models.llama_index.llama_utils import ( + compute_default_chunk_size, + setup_settings, +) +from reginald.utils import stream_iter_progress_wrapper, stream_progress_wrapper + +nest_asyncio.apply() + + +class LlamaIndex(ResponseModel): + def __init__( + self, + model_name: str, + max_input_size: int, + data_dir: pathlib.Path | str, + which_index: str, + mode: str = "chat", + k: int = 3, + chunk_size: int | None = None, + chunk_overlap_ratio: float = 0.1, + num_output: int = 512, + force_new_index: bool = False, + *args, + **kwargs, + ) -> None: + """ + Base class for models using llama-index. + This class is not intended to be used directly, but rather subclassed + to implement the `_prep_llm` method which constructs the LLM to be used. + + Parameters + ---------- + model_name : str + Model name to specify which LLM to use. + max_input_size : int + Context window size for the LLM. + data_dir : pathlib.Path | str + Path to the data directory. + which_index : str + Which index to construct (if force_new_index is True) or use. + Options are "handbook", "wikis", "public", "reg" or "all_data". + mode : Optional[str], optional + The type of engine to use when interacting with the data, options of "chat" or "query". + Default is "chat". + k : int, optional + `similarity_top_k` to use in chat or query engine, by default 3 + chunk_size : int | None, optional + Maximum size of chunks to use, by default None. + If None, this is computed as `ceil(max_input_size / k)`. + chunk_overlap_ratio : float, optional + Chunk overlap as a ratio of chunk size, by default 0.1 + num_output : int, optional + Number of outputs for the LLM, by default 512 + force_new_index : bool, optional + Whether or not to recreate the index vector store, + by default False + """ + super().__init__(*args, emoji="llama", **kwargs) + logging.info("Setting up Huggingface backend.") + if mode == "chat": + logging.info("Setting up chat engine.") + elif mode == "query": + logging.info("Setting up query engine.") + else: + logging.error("Mode must either be 'query' or 'chat'.") + sys.exit(1) + + self.max_input_size = max_input_size + self.model_name = model_name + self.num_output = num_output + self.mode = mode + self.k = k + self.chunk_size = chunk_size or compute_default_chunk_size( + max_input_size=max_input_size, k=k + ) + self.chunk_overlap_ratio = chunk_overlap_ratio + self.data_dir = pathlib.Path(data_dir) + self.which_index = which_index + self.documents = [] + + # set up LLM + llm = self._prep_llm() + + # set up settings + settings = setup_settings( + llm=llm, + max_input_size=self.max_input_size, + num_output=self.num_output, + chunk_size=self.chunk_size, + chunk_overlap_ratio=self.chunk_overlap_ratio, + k=self.k, + tokenizer=self._prep_tokenizer(), + ) + + if force_new_index: + logging.info("Generating the index from scratch...") + data_creator = DataIndexCreator( + which_index=self.which_index, + data_dir=self.data_dir, + settings=settings, + ) + self.index: VectorStoreIndex = stream_progress_wrapper( + data_creator.create_index, + task_str="Generating the index from scratch...", + ) + stream_progress_wrapper( + data_creator.save_index, + task_str="Saving the index...", + ) + + else: + logging.info("Loading the storage context") + storage_context = stream_progress_wrapper( + StorageContext.from_defaults, + task_str="Loading the storage context...", + persist_dir=self.data_dir / LLAMA_INDEX_DIR / self.which_index, + ) + + logging.info("Loading the pre-processed index") + self.index = stream_progress_wrapper( + load_index_from_storage, + task_str="Loading the pre-processed index...", + storage_context=storage_context, + settings=settings, + ) + + self.response_mode = "simple_summarize" + if self.mode == "chat": + self.chat_engine = {} + logging.info("Done setting up Huggingface backend for chat engine.") + elif self.mode == "query": + self.query_engine = self.index.as_query_engine( + response_mode=self.response_mode, + similarity_top_k=k, + ) + logging.info("Done setting up Huggingface backend for query engine.") + + self.error_response_template = ( + "Oh no! When I tried to get a response to your prompt, " + "I got the following error:" + "\n```\n{}\n```" + ) + + @staticmethod + def _format_sources(response: RESPONSE_TYPE) -> str: + """ + Method to format the sources used to compose the response. + + Parameters + ---------- + response : RESPONSE_TYPE + response object from the query engine + + Returns + ------- + str + String containing the formatted sources that + were used to compose the response + """ + texts = [] + for source_node in response.source_nodes: + # obtain the URL for source + try: + node_url = source_node.node.extra_info["url"] + except KeyError: + node_url = source_node.node.extra_info["filename"] + + # add its similarity score and append to texts + source_text = node_url + f" (similarity: {round(source_node.score, 2)})" + texts.append(source_text) + + result = "I read the following documents to compose this answer:\n" + result += "\n\n".join(texts) + + return result + + def _prep_llm(self) -> BaseLLM: + """ + Method to prepare the LLM to be used. + + Returns + ------- + BaseLLM + LLM to be used. + + Raises + ------ + NotImplemented + This must be implemented by a subclass of LlamaIndex. + """ + raise NotImplementedError( + "_prep_llm needs to be implemented by a subclass of LlamaIndex." + ) + + def _prep_tokenizer(self) -> Callable[[str], int] | None: + """ + Method to prepare the Tokenizer to be used. + + Returns + ------- + Callable[[str], int] | None + Tokenizer to use. A callable function on a string. + Can also be None if using the default set by LlamaIndex. + + Raises + ------ + NotImplemented + """ + raise NotImplementedError( + "_prep_tokenizer needs to be implemented by a subclass of LlamaIndex." + ) + + def _get_response(self, message: str, user_id: str) -> MessageResponse: + """ + Method to respond to a message in Slack. + + Parameters + ---------- + msg_in : str + Message from user + user_id : str + User ID + + Returns + ------- + MessageResponse + Response from the query engine. + """ + try: + if self.mode == "chat": + # create chat engine for user if does not exist + if self.chat_engine.get(user_id) is None: + self.chat_engine[user_id] = self.index.as_chat_engine( + chat_mode="context", + response_mode=self.response_mode, + similarity_top_k=self.k, + ) + + # obtain chat engine for particular user + chat_engine = self.chat_engine[user_id] + response = chat_engine.chat(message) + elif self.mode == "query": + self.query_engine._response_synthesizer._streaming = False + response = self.query_engine.query(message) + + # concatenate the response with the resources that it used + formatted_response = ( + response.response + "\n\n\n" + self._format_sources(response) + ) + except Exception as e: # ignore: broad-except + formatted_response = self.error_response_template.format(repr(e)) + + pattern = ( + r"(?s)^Context information is" + r".*" + r"Given the context information and not prior knowledge, answer the question: " + rf"{message}" + r"\n(.*)" + ) + m = re.search(pattern, formatted_response) + + if m: + answer = m.group(1) + else: + logging.warning( + "Was expecting a backend response with a regular expression but couldn't find a match." + ) + answer = formatted_response + + return MessageResponse(answer) + + def direct_message(self, message: str, user_id: str) -> MessageResponse: + """ + Method to respond to a direct message in Slack. + + Parameters + ---------- + msg_in : str + Message from user + user_id : str + User ID + + Returns + ------- + MessageResponse + Response from the query engine. + """ + return self._get_response(message=message, user_id=user_id) + + def channel_mention(self, message: str, user_id: str) -> MessageResponse: + """ + Method to respond to a channel mention in Slack. + + Parameters + ---------- + msg_in : str + Message from user + user_id : str + User ID + + Returns + ------- + MessageResponse + Response from the query engine. + """ + return self._get_response(message=message, user_id=user_id) + + def stream_message(self, message: str, user_id: str) -> None: + """ + Method to respond to a stream message in Slack. + + Parameters + ---------- + msg_in : str + Message from user + user_id : str + User ID + + Returns + ------- + MessageResponse + Response from the query engine. + """ + try: + if self.mode == "chat": + # create chat engine for user if does not exist + if self.chat_engine.get(user_id) is None: + self.chat_engine[user_id] = self.index.as_chat_engine( + chat_mode="context", + response_mode=self.response_mode, + similarity_top_k=self.k, + streaming=True, + ) + + # obtain chat engine for particular user + chat_engine = self.chat_engine[user_id] + response_stream = chat_engine.stream_chat(message) + elif self.mode == "query": + self.query_engine._response_synthesizer._streaming = True + response_stream = self.query_engine.query(message) + + for token in stream_iter_progress_wrapper(response_stream.response_gen): + print(token, end="", flush=True) + + formatted_response = "\n\n\n" + self._format_sources(response_stream) + + for token in re.split(r"(\s+)", formatted_response): + print(token, end="", flush=True) + except Exception as e: # ignore: broad-except + for token in re.split( + r"(\s+)", self.error_response_template.format(repr(e)) + ): + print(token, end="", flush=True) diff --git a/reginald/models/llama_index/data_index_creator.py b/reginald/models/llama_index/data_index_creator.py new file mode 100644 index 00000000..b2fdd483 --- /dev/null +++ b/reginald/models/llama_index/data_index_creator.py @@ -0,0 +1,396 @@ +import logging +import os +import pathlib +from tempfile import TemporaryDirectory + +import pandas as pd +from git import Repo +from httpx import HTTPError +from llama_index.core import Document, SimpleDirectoryReader, VectorStoreIndex +from llama_index.core.settings import _Settings +from llama_index.readers.github import ( + GithubClient, + GitHubIssuesClient, + GitHubRepositoryIssuesReader, + GithubRepositoryReader, +) + +from reginald.defaults import LLAMA_INDEX_DIR +from reginald.utils import get_env_var + + +class DataIndexCreator: + def __init__( + self, + data_dir: pathlib.Path | str, + which_index: str, + settings: _Settings, + ) -> None: + """ + Class for creating the data index. + + Parameters + ---------- + data_dir : pathlib.Path | str + Path to the data directory. + which_index : str + Which index to construct (if force_new_index is True) or use. + Options are "handbook", "wikis", "public", "reg" or "all_data". + settings : _Settings + llama_index.core.settings._Settings object to use to create the index. + """ + self.data_dir: pathlib.Path = pathlib.Path(data_dir) + self.which_index: str = which_index + self.settings: _Settings = settings + self.documents: list[str] = [] + self.index: VectorStoreIndex | None = None + + def prep_documents(self) -> None: + """ + Method to prepare the documents for the index vector store. + """ + # prep the contextual documents + gh_token = get_env_var("GITHUB_TOKEN") + + if gh_token is None: + raise ValueError( + "Please export your github personal access token as 'GITHUB_TOKEN'." + ) + + if self.which_index == "handbook": + logging.info("Regenerating index only for the handbook") + + # load handbook from repo + self._load_handbook(gh_token) + + elif self.which_index == "wikis": + logging.info("Regenerating index only for the wikis") + + # load wikis + self._load_wikis(gh_token) + + elif self.which_index == "public": + logging.info("Regenerating index for all PUBLIC. Will take a long time...") + + # load in scraped turing.ac.uk website + self._load_turing_ac_uk() + + # load public data from repos + self._load_handbook(gh_token) + self._load_rse_course(gh_token) + self._load_rds_course(gh_token) + self._load_turing_way(gh_token) + + elif self.which_index == "reg": + logging.info("Regenerating index for REG. Will take a long time...") + + # load in scraped turing.ac.uk website + self._load_turing_ac_uk() + + # load public data from repos + self._load_handbook(gh_token) + + # load hut23 data + self._load_hut23(gh_token) + + # load wikis + self._load_wikis(gh_token) + + elif self.which_index == "all_data": + logging.info("Regenerating index for ALL DATA. Will take a long time...") + + # load in scraped turing.ac.uk website + self._load_turing_ac_uk() + + # load public data from repos + self._load_handbook(gh_token) + self._load_rse_course(gh_token) + self._load_rds_course(gh_token) + self._load_turing_way(gh_token) + + # load hut23 data + self._load_hut23(gh_token) + + # load wikis + self._load_wikis(gh_token) + + else: + logging.info("The which_index provided is unrecognized") + + def _load_turing_ac_uk(self) -> None: + """ + Load in the scraped turing.ac.uk website. + + For 'public' index and 'all_data' index. + """ + data_file = f"{self.data_dir}/public/turingacuk-no-boilerplate.csv" + turing_df = pd.read_csv(data_file) + turing_df = turing_df[~turing_df.loc[:, "body"].isna()] + self.documents += [ + Document(text=row[1]["body"], extra_info={"url": row[1]["url"]}) + for row in turing_df.iterrows() + ] + + def _load_handbook(self, gh_token: str) -> None: + """ + Load in the REG handbook. + + For 'handbook' index, 'public' index, and 'all_data' index. + + Parameters + ---------- + gh_token : str + Github token to use to access the handbook repo. + """ + owner = "alan-turing-institute" + repo = "REG-handbook" + + handbook_loader = GithubRepositoryReader( + GithubClient(gh_token, fail_on_http_error=False), + owner=owner, + repo=repo, + verbose=False, + concurrent_requests=1, + timeout=60, + retries=3, + filter_file_extensions=( + [".md"], + GithubRepositoryReader.FilterType.INCLUDE, + ), + filter_directories=( + ["content"], + GithubRepositoryReader.FilterType.INCLUDE, + ), + ) + self.documents.extend(handbook_loader.load_data(branch="main")) + + def _load_rse_course(self, gh_token: str) -> None: + """ + Load in the REG RSE course. + + For 'public' index and 'all_data' index. + + Parameters + ---------- + gh_token : str + Github token to use to access the RSE course repo. + """ + owner = "alan-turing-institute" + repo = "rse-course" + + rse_course_loader = GithubRepositoryReader( + GithubClient(gh_token, fail_on_http_error=False), + owner=owner, + repo=repo, + verbose=False, + concurrent_requests=1, + timeout=60, + retries=3, + filter_file_extensions=( + [".md", ".ipynb"], + GithubRepositoryReader.FilterType.INCLUDE, + ), + ) + self.documents.extend(rse_course_loader.load_data(branch="main")) + + def _load_rds_course(self, gh_token: str) -> None: + """ + Load in REG RDS course. + + For 'public' index and 'all_data' index. + + Parameters + ---------- + gh_token : str + Github token to use to access the RDS course repo. + """ + owner = "alan-turing-institute" + repo = "rds-course" + + rds_course_loader = GithubRepositoryReader( + GithubClient(gh_token, fail_on_http_error=False), + owner=owner, + repo=repo, + verbose=False, + concurrent_requests=1, + timeout=60, + retries=3, + filter_file_extensions=( + [".md", ".ipynb"], + GithubRepositoryReader.FilterType.INCLUDE, + ), + ) + self.documents.extend(rds_course_loader.load_data(branch="develop")) + + def _load_turing_way(self, gh_token: str) -> None: + """ + Load in the Turing Way. + + For 'public' index and 'all_data' index. + + Parameters + ---------- + gh_token : str + Github token to use to access the Turing Way repo. + """ + owner = "the-turing-way" + repo = "the-turing-way" + + turing_way_loader = GithubRepositoryReader( + GithubClient(gh_token, fail_on_http_error=False), + owner=owner, + repo=repo, + verbose=False, + concurrent_requests=1, + timeout=60, + retries=3, + filter_file_extensions=( + [".md"], + GithubRepositoryReader.FilterType.INCLUDE, + ), + ) + self.documents.extend(turing_way_loader.load_data(branch="main")) + + def _load_hut23(self, gh_token: str) -> None: + """ + Load in documents from the Hut23 repo. + + For 'all_data' index. + + Parameters + ---------- + gh_token : str + Github token to use to access the Hut23 repo. + """ + owner = "alan-turing-institute" + repo = "Hut23" + + # load repo + hut23_repo_loader = GithubRepositoryReader( + GithubClient(gh_token, fail_on_http_error=False), + owner=owner, + repo=repo, + verbose=False, + concurrent_requests=1, + timeout=60, + retries=3, + filter_file_extensions=( + [".md", ".ipynb"], + GithubRepositoryReader.FilterType.INCLUDE, + ), + filter_directories=( + [ + "JDs", + "development", + "newsletters", + "objectives", + "project-appraisal", + "rfc", + "team-meetings", + ], # we can adjust these + GithubRepositoryReader.FilterType.INCLUDE, + ), + ) + self.documents.extend(hut23_repo_loader.load_data(branch="main")) + + try: + # load_issues + hut23_issues_loader = GitHubRepositoryIssuesReader( + GitHubIssuesClient(gh_token), + owner=owner, + repo=repo, + verbose=True, + ) + + issue_docs = hut23_issues_loader.load_data() + for doc in issue_docs: + doc.metadata["api_url"] = str(doc.metadata["url"]) + doc.metadata["url"] = doc.metadata["source"] + self.documents.extend(issue_docs) + + except HTTPError as e: + logging.error(f"Failed to load Hut23 issues: {e}") + + # load collaborators + # hut23_collaborators_loader = GitHubRepositoryCollaboratorsReader( + # GitHubCollaboratorsClient(gh_token), + # owner=owner, + # repo=repo, + # verbose=True, + # ) + # self.documents.extend(hut23_collaborators_loader.load_data()) + + def _load_wikis(self, gh_token: str) -> None: + """ + Load in documents from the wikis. + + For 'wikis' index and 'all_data' index. + + Parameters + ---------- + gh_token : str + Github token to use to access the research-engineering-group + and Hut23 repo wikis. + """ + wiki_urls = [ + f"https://oauth2:{gh_token}@github.com/alan-turing-institute/research-engineering-group.wiki.git", + f"https://oauth2:{gh_token}@github.com/alan-turing-institute/Hut23.wiki.git", + ] + + for url in wiki_urls: + temp_dir = TemporaryDirectory() + wiki_path = os.path.join(temp_dir.name, url.split("/")[-1]) + + _ = Repo.clone_from(url, wiki_path) + + reader = SimpleDirectoryReader( + input_dir=wiki_path, + required_exts=[".md"], + recursive=True, + filename_as_id=True, + ) + + # get base url and file names + base_url = url.removesuffix(".wiki.git") + fnames = [str(file) for file in reader.input_files] + + # get file urls and create dictionary to map fname to url + file_urls = [ + os.path.join(base_url, "wiki", fname.split("/")[-1].removesuffix(".md")) + for fname in fnames + ] + file_urls_dict = { + fname: file_url for fname, file_url in zip(fnames, file_urls) + } + + def get_urls(fname): + return {"url": file_urls_dict.get(fname)} + + # add `get_urls` function to reader + reader.file_metadata = get_urls + + self.documents.extend(reader.load_data()) + + def create_index(self) -> VectorStoreIndex: + """ + Create the index vector store. + """ + # obtain documents + logging.info(f"Preparing documents for {self.which_index} index...") + self.prep_documents() + + # create index + logging.info("Creating index...") + self.index = VectorStoreIndex.from_documents( + self.documents, settings=self.settings + ) + + return self.index + + def save_index(self, directory: pathlib.Path | None = None) -> None: + if directory is None: + directory = self.data_dir / LLAMA_INDEX_DIR / self.which_index + + # save the settings and persist the index + logging.info(f"Saving the index in {directory}...") + self.index.storage_context.persist(persist_dir=directory) diff --git a/reginald/models/models/llama_utils.py b/reginald/models/llama_index/llama_cpp_template.py similarity index 93% rename from reginald/models/models/llama_utils.py rename to reginald/models/llama_index/llama_cpp_template.py index 372f8856..8b00af53 100644 --- a/reginald/models/models/llama_utils.py +++ b/reginald/models/llama_index/llama_cpp_template.py @@ -2,7 +2,7 @@ from llama_index.core.llms import ChatMessage, MessageRole -BOS, EOS = "", "" +BOS, EOS = "", "" # not needed as LlamaCPP handles adding these B_INST, E_INST = "[INST]", "[/INST]" B_SYS, E_SYS = "<>\n", "\n<>\n\n" # use for Llama2 # B_SYS, E_SYS = "", "\n\n" # use for Mistral @@ -11,7 +11,7 @@ Always answer as helpfully as possible and follow ALL given instructions. \ Do not speculate or make up information. \ Do not reference any given instructions or context. \ -If the content is not relevant, just ignore it and provide a helpful \ +If the content is not relevant to the question, just ignore it and provide a helpful \ response without mentioning the context. \ """ diff --git a/reginald/models/llama_index/llama_index.py b/reginald/models/llama_index/llama_index.py new file mode 100644 index 00000000..7a6945e5 --- /dev/null +++ b/reginald/models/llama_index/llama_index.py @@ -0,0 +1,370 @@ +from __future__ import annotations + +import logging +import pathlib +import re +import sys + +import nest_asyncio +from llama_index.core import StorageContext, VectorStoreIndex, load_index_from_storage +from llama_index.core.base.llms.base import BaseLLM +from llama_index.core.base.response.schema import RESPONSE_TYPE + +from reginald.models.base import MessageResponse, ResponseModel +from reginald.utils import stream_iter_progress_wrapper, stream_progress_wrapper + +nest_asyncio.apply() + + +from reginald.defaults import LLAMA_INDEX_DIR +from reginald.models.llama_index.data_index_creator import DataIndexCreator +from reginald.models.llama_index.llama_utils import ( + compute_default_chunk_size, + setup_settings, +) + + +class LlamaIndex(ResponseModel): + def __init__( + self, + model_name: str, + max_input_size: int, + data_dir: pathlib.Path | str, + which_index: str, + mode: str = "chat", + k: int = 3, + chunk_size: int | None = None, + chunk_overlap_ratio: float = 0.1, + num_output: int = 512, + force_new_index: bool = False, + *args, + **kwargs, + ) -> None: + """ + Base class for models using llama-index. + This class is not intended to be used directly, but rather subclassed + to implement the `_prep_llm` method which constructs the LLM to be used. + + Parameters + ---------- + model_name : str + Model name to specify which LLM to use. + max_input_size : int + Context window size for the LLM. + data_dir : pathlib.Path | str + Path to the data directory. + which_index : str + Which index to construct (if force_new_index is True) or use. + Options are "handbook", "wikis", "public", "reg" or "all_data". + mode : Optional[str], optional + The type of engine to use when interacting with the data, options of "chat" or "query". + Default is "chat". + k : int, optional + `similarity_top_k` to use in chat or query engine, by default 3 + chunk_size : int | None, optional + Maximum size of chunks to use, by default None. + If None, this is computed as `ceil(max_input_size / k)`. + chunk_overlap_ratio : float, optional + Chunk overlap as a ratio of chunk size, by default 0.1 + num_output : int, optional + Number of outputs for the LLM, by default 512 + force_new_index : bool, optional + Whether or not to recreate the index vector store, + by default False + """ + super().__init__(*args, emoji="llama", **kwargs) + logging.info("Setting up Huggingface backend.") + if mode == "chat": + logging.info("Setting up chat engine.") + elif mode == "query": + logging.info("Setting up query engine.") + else: + logging.error("Mode must either be 'query' or 'chat'.") + sys.exit(1) + + self.max_input_size = max_input_size + self.model_name = model_name + self.num_output = num_output + self.mode = mode + self.k = k + self.chunk_size = chunk_size or compute_default_chunk_size( + max_input_size=max_input_size, k=k + ) + self.chunk_overlap_ratio = chunk_overlap_ratio + self.data_dir = pathlib.Path(data_dir) + self.which_index = which_index + self.documents = [] + + # set up LLM + llm = self._prep_llm() + + # set up settings + settings = setup_settings( + llm=llm, + max_input_size=self.max_input_size, + num_output=self.num_output, + chunk_size=self.chunk_size, + chunk_overlap_ratio=self.chunk_overlap_ratio, + k=self.k, + tokenizer=self._prep_tokenizer(), + ) + + if force_new_index: + logging.info("Generating the index from scratch...") + data_creator = DataIndexCreator( + which_index=self.which_index, + data_dir=self.data_dir, + settings=settings, + ) + self.index: VectorStoreIndex = stream_progress_wrapper( + data_creator.create_index, + task_str="Generating the index from scratch...", + ) + stream_progress_wrapper( + data_creator.save_index, + task_str="Saving the index...", + ) + + else: + logging.info("Loading the storage context") + storage_context = stream_progress_wrapper( + StorageContext.from_defaults, + task_str="Loading the storage context...", + persist_dir=self.data_dir / LLAMA_INDEX_DIR / self.which_index, + ) + + logging.info("Loading the pre-processed index") + self.index = stream_progress_wrapper( + load_index_from_storage, + task_str="Loading the pre-processed index...", + storage_context=storage_context, + settings=settings, + ) + + self.response_mode = "simple_summarize" + if self.mode == "chat": + self.chat_engine = {} + logging.info("Done setting up Huggingface backend for chat engine.") + elif self.mode == "query": + self.query_engine = self.index.as_query_engine( + response_mode=self.response_mode, + similarity_top_k=k, + ) + logging.info("Done setting up Huggingface backend for query engine.") + + self.error_response_template = ( + "Oh no! When I tried to get a response to your prompt, " + "I got the following error:" + "\n```\n{}\n```" + ) + + @staticmethod + def _format_sources(response: RESPONSE_TYPE) -> str: + """ + Method to format the sources used to compose the response. + + Parameters + ---------- + response : RESPONSE_TYPE + response object from the query engine + + Returns + ------- + str + String containing the formatted sources that + were used to compose the response + """ + texts = [] + for source_node in response.source_nodes: + # obtain the URL for source + try: + node_url = source_node.node.extra_info["url"] + except KeyError: + node_url = source_node.node.extra_info["filename"] + + # add its similarity score and append to texts + source_text = node_url + f" (similarity: {round(source_node.score, 2)})" + texts.append(source_text) + + result = "I read the following documents to compose this answer:\n" + result += "\n\n".join(texts) + + return result + + def _prep_llm(self) -> BaseLLM: + """ + Method to prepare the LLM to be used. + + Returns + ------- + BaseLLM + LLM to be used. + + Raises + ------ + NotImplemented + This must be implemented by a subclass of LlamaIndex. + """ + raise NotImplementedError( + "_prep_llm needs to be implemented by a subclass of LlamaIndex." + ) + + def _prep_tokenizer(self) -> callable[str] | None: + """ + Method to prepare the Tokenizer to be used. + + Returns + ------- + callable[str] | None + Tokenizer to use. A callable function on a string. + Can also be None if using the default set by LlamaIndex. + + Raises + ------ + NotImplemented + """ + raise NotImplementedError( + "_prep_tokenizer needs to be implemented by a subclass of LlamaIndex." + ) + + def _get_response(self, message: str, user_id: str) -> MessageResponse: + """ + Method to respond to a message in Slack. + + Parameters + ---------- + msg_in : str + Message from user + user_id : str + User ID + + Returns + ------- + MessageResponse + Response from the query engine. + """ + try: + if self.mode == "chat": + # create chat engine for user if does not exist + if self.chat_engine.get(user_id) is None: + self.chat_engine[user_id] = self.index.as_chat_engine( + chat_mode="context", + response_mode=self.response_mode, + similarity_top_k=self.k, + ) + + # obtain chat engine for particular user + chat_engine = self.chat_engine[user_id] + response = chat_engine.chat(message) + elif self.mode == "query": + self.query_engine._response_synthesizer._streaming = False + response = self.query_engine.query(message) + + # concatenate the response with the resources that it used + formatted_response = ( + response.response + "\n\n\n" + self._format_sources(response) + ) + except Exception as e: # ignore: broad-except + formatted_response = self.error_response_template.format(repr(e)) + + pattern = ( + r"(?s)^Context information is" + r".*" + r"Given the context information and not prior knowledge, answer the question: " + rf"{message}" + r"\n(.*)" + ) + m = re.search(pattern, formatted_response) + + if m: + answer = m.group(1) + else: + logging.warning( + "Was expecting a backend response with a regular expression but couldn't find a match." + ) + answer = formatted_response + + return MessageResponse(answer) + + def direct_message(self, message: str, user_id: str) -> MessageResponse: + """ + Method to respond to a direct message in Slack. + + Parameters + ---------- + msg_in : str + Message from user + user_id : str + User ID + + Returns + ------- + MessageResponse + Response from the query engine. + """ + return self._get_response(message=message, user_id=user_id) + + def channel_mention(self, message: str, user_id: str) -> MessageResponse: + """ + Method to respond to a channel mention in Slack. + + Parameters + ---------- + msg_in : str + Message from user + user_id : str + User ID + + Returns + ------- + MessageResponse + Response from the query engine. + """ + return self._get_response(message=message, user_id=user_id) + + def stream_message(self, message: str, user_id: str) -> None: + """ + Method to respond to a stream message in Slack. + + Parameters + ---------- + msg_in : str + Message from user + user_id : str + User ID + + Returns + ------- + MessageResponse + Response from the query engine. + """ + try: + if self.mode == "chat": + # create chat engine for user if does not exist + if self.chat_engine.get(user_id) is None: + self.chat_engine[user_id] = self.index.as_chat_engine( + chat_mode="context", + response_mode=self.response_mode, + similarity_top_k=self.k, + streaming=True, + ) + + # obtain chat engine for particular user + chat_engine = self.chat_engine[user_id] + response_stream = chat_engine.stream_chat(message) + elif self.mode == "query": + self.query_engine._response_synthesizer._streaming = True + response_stream = self.query_engine.query(message) + + for token in stream_iter_progress_wrapper(response_stream.response_gen): + print(token, end="", flush=True) + + formatted_response = "\n\n\n" + self._format_sources(response_stream) + + for token in re.split(r"(\s+)", formatted_response): + print(token, end="", flush=True) + except Exception as e: # ignore: broad-except + for token in re.split( + r"(\s+)", self.error_response_template.format(repr(e)) + ): + print(token, end="", flush=True) diff --git a/reginald/models/llama_index/llama_index_azure_openai.py b/reginald/models/llama_index/llama_index_azure_openai.py new file mode 100644 index 00000000..37c794a4 --- /dev/null +++ b/reginald/models/llama_index/llama_index_azure_openai.py @@ -0,0 +1,68 @@ +import logging +from typing import Any + +from llama_index.core import set_global_tokenizer +from llama_index.llms.azure_openai import AzureOpenAI + +from reginald.models.llama_index.base import LlamaIndex +from reginald.utils import get_env_var + + +class LlamaIndexGPTAzure(LlamaIndex): + def __init__( + self, model_name: str = "reginald-gpt4", *args: Any, **kwargs: Any + ) -> None: + """ + `LlamaIndexGPTAzure` is a subclass of `LlamaIndex` that uses Azure's + instance of OpenAI's LLMs to implement the LLM. + + Must have the following environment variables set: + - `OPENAI_API_BASE`: Azure endpoint which looks + like https://YOUR_RESOURCE_NAME.openai.azure.com/ + - `OPENAI_API_KEY`: Azure API key + + Parameters + ---------- + model_name : str, optional + The deployment name of the model, by default "reginald-gpt4" + """ + openai_azure_api_base = get_env_var("OPENAI_AZURE_API_BASE", secret_value=False) + if openai_azure_api_base is None: + raise ValueError( + "You must set OPENAI_AZURE_API_BASE to your Azure endpoint. " + "It should look like https://YOUR_RESOURCE_NAME.openai.azure.com/" + ) + + openai_azure_api_key = get_env_var("OPENAI_AZURE_API_KEY") + if openai_azure_api_key is None: + raise ValueError("You must set OPENAI_AZURE_API_KEY for Azure OpenAI.") + + # deployment name can be found in the Azure AI Studio portal + self.deployment_name = model_name + self.openai_api_base = openai_azure_api_base + self.openai_api_key = openai_azure_api_key + self.openai_api_version = "2023-09-15-preview" + self.temperature = 0.7 + super().__init__(*args, model_name="gpt-4", **kwargs) + + def _prep_llm(self) -> AzureOpenAI: + logging.info(f"Setting up AzureOpenAI LLM (model {self.deployment_name})") + return AzureOpenAI( + model=self.model_name, + engine=self.deployment_name, + temperature=self.temperature, + max_tokens=self.num_output, + api_key=self.openai_api_key, + api_base=self.openai_api_base, + api_type="azure", + azure_endpoint=self.openai_api_base, + api_version=self.openai_api_version, + ) + + def _prep_tokenizer(self) -> None: + import tiktoken + + logging.info(f"Setting up tiktoken tokenizer for model {self.model_name}") + tokenizer = tiktoken.encoding_for_model("gpt-4").encode + set_global_tokenizer(tokenizer) + return tokenizer diff --git a/reginald/models/llama_index/llama_index_hf.py b/reginald/models/llama_index/llama_index_hf.py new file mode 100644 index 00000000..a602f42e --- /dev/null +++ b/reginald/models/llama_index/llama_index_hf.py @@ -0,0 +1,55 @@ +import logging +from typing import Any, Callable + +from llama_index.core import set_global_tokenizer +from llama_index.llms.huggingface import HuggingFaceLLM +from transformers import AutoTokenizer + +from reginald.models.llama_index.base import LlamaIndex + + +class LlamaIndexHF(LlamaIndex): + def __init__( + self, + model_name: str = "google/gemma-2b-it", + device: str = "auto", + *args: Any, + **kwargs: Any, + ) -> None: + """ + `LlamaIndexHF` is a subclass of `LlamaIndex` that uses HuggingFace's + `transformers` library to implement the LLM. + + Parameters + ---------- + model_name : str, optional + Model name from Huggingface's model hub, + by default "google/gemma-2b-it". + device : str, optional + Device map to use for the LLM, by default "auto". + """ + self.device = device + super().__init__(*args, model_name=model_name, **kwargs) + + def _prep_llm(self) -> HuggingFaceLLM: + logging.info( + f"Setting up Huggingface LLM (model {self.model_name}) on device {self.device}" + ) + logging.info( + f"HF-args: (context_window: {self.max_input_size}, num_output: {self.num_output})" + ) + + return HuggingFaceLLM( + context_window=self.max_input_size, + max_new_tokens=self.num_output, + generate_kwargs={"temperature": 0.1, "do_sample": False}, + tokenizer_name=self.model_name, + model_name=self.model_name, + device_map=self.device or "auto", + ) + + def _prep_tokenizer(self) -> Callable[[str], int]: + logging.info(f"Setting up Huggingface tokenizer for model {self.model_name}") + tokenizer = AutoTokenizer.from_pretrained(self.model_name).encode + set_global_tokenizer(tokenizer) + return tokenizer diff --git a/reginald/models/llama_index/llama_index_llama_cpp.py b/reginald/models/llama_index/llama_index_llama_cpp.py new file mode 100644 index 00000000..c5f3d00d --- /dev/null +++ b/reginald/models/llama_index/llama_index_llama_cpp.py @@ -0,0 +1,71 @@ +import logging +from typing import Any, Callable + +from llama_index.core import set_global_tokenizer +from llama_index.llms.llama_cpp import LlamaCPP +from tiktoken import encoding_for_model + +from reginald.models.llama_index.base import LlamaIndex +from reginald.models.llama_index.llama_cpp_template import ( + completion_to_prompt, + messages_to_prompt, +) + + +class LlamaIndexLlamaCPP(LlamaIndex): + def __init__( + self, + model_name: str, + is_path: bool, + n_gpu_layers: int = 0, + *args: Any, + **kwargs: Any, + ) -> None: + """ + `LlamaIndexLlamaCPP` is a subclass of `LlamaIndex` that uses + llama-cpp to implement the LLM. + + Parameters + ---------- + model_name : str + Either the path to the model or the URL to download the model from + is_path : bool, optional + If True, model_name is used as a path to the model file, + otherwise it should be the URL to download the model + n_gpu_layers : int, optional + Number of layers to offload to GPU. + If -1, all layers are offloaded, by default 0 + """ + self.is_path = is_path + self.n_gpu_layers = n_gpu_layers + super().__init__(*args, model_name=model_name, **kwargs) + + def _prep_llm(self) -> LlamaCPP: + logging.info( + f"Setting up LlamaCPP LLM (model {self.model_name}) on {self.n_gpu_layers} GPU layers" + ) + logging.info( + f"LlamaCPP-args: (context_window: {self.max_input_size}, num_output: {self.num_output})" + ) + + return LlamaCPP( + model_url=self.model_name if not self.is_path else None, + model_path=self.model_name if self.is_path else None, + temperature=0.1, + max_new_tokens=self.num_output, + context_window=self.max_input_size, + # kwargs to pass to __call__() + generate_kwargs={}, + # kwargs to pass to __init__() + model_kwargs={"n_gpu_layers": self.n_gpu_layers}, + messages_to_prompt=messages_to_prompt, + completion_to_prompt=completion_to_prompt, + verbose=True, + ) + + def _prep_tokenizer(self) -> Callable[[str], int]: + # NOTE: this should depend on the model used, but hard coding tiktoken for now + logging.info("Setting up tiktoken gpt-4 tokenizer") + tokenizer = encoding_for_model("gpt-4").encode + set_global_tokenizer(tokenizer) + return tokenizer diff --git a/reginald/models/llama_index/llama_index_ollama.py b/reginald/models/llama_index/llama_index_ollama.py new file mode 100644 index 00000000..b06b4a8e --- /dev/null +++ b/reginald/models/llama_index/llama_index_ollama.py @@ -0,0 +1,47 @@ +import logging +from typing import Any, Callable + +from llama_index.core import set_global_tokenizer +from llama_index.llms.ollama import Ollama +from tiktoken import encoding_for_model + +from reginald.models.llama_index.base import LlamaIndex +from reginald.utils import get_env_var + + +class LlamaIndexOllama(LlamaIndex): + def __init__( + self, + model_name: str, + *args: Any, + **kwargs: Any, + ) -> None: + """ + `LlamaIndexOllama` is a subclass of `LlamaIndex` that uses + ollama to run inference on the LLM. + + Parameters + ---------- + model_name : str + The Ollama model to use + """ + ollama_api_endpoint = get_env_var("OLLAMA_API_ENDPOINT") + if ollama_api_endpoint is None: + raise ValueError("You must set OLLAMA_API_ENDPOINT for Ollama.") + self.ollama_api_endpoint = ollama_api_endpoint + super().__init__(*args, model_name=model_name, **kwargs) + + def _prep_llm(self) -> Ollama: + logging.info(f"Setting up Ollama (model {self.model_name})") + return Ollama( + base_url=self.ollama_api_endpoint, + model=self.model_name, + request_timeout=60, + ) + + def _prep_tokenizer(self) -> Callable[[str], int]: + # NOTE: this should depend on the model used, but hard coding tiktoken for now + logging.info("Setting up tiktoken gpt-4 tokenizer") + tokenizer = encoding_for_model("gpt-4").encode + set_global_tokenizer(tokenizer) + return tokenizer diff --git a/reginald/models/llama_index/llama_index_openai.py b/reginald/models/llama_index/llama_index_openai.py new file mode 100644 index 00000000..8633fff5 --- /dev/null +++ b/reginald/models/llama_index/llama_index_openai.py @@ -0,0 +1,50 @@ +import logging +from typing import Any + +from llama_index.core import set_global_tokenizer +from llama_index.llms.openai import OpenAI + +from reginald.models.llama_index.base import LlamaIndex +from reginald.utils import get_env_var + + +class LlamaIndexGPTOpenAI(LlamaIndex): + def __init__( + self, model_name: str = "gpt-3.5-turbo", *args: Any, **kwargs: Any + ) -> None: + """ + `LlamaIndexGPTOpenAI` is a subclass of `LlamaIndex` that uses OpenAI's + API to implement the LLM. + + Must have `OPENAI_API_KEY` set as an environment variable. + + Parameters + ---------- + model_name : str, optional + The model to use from the OpenAI API, by default "gpt-3.5-turbo" + """ + openai_api_key = get_env_var("OPENAI_API_KEY") + if openai_api_key is None: + raise ValueError("You must set OPENAI_API_KEY for OpenAI.") + + self.model_name = model_name + self.openai_api_key = openai_api_key + self.temperature = 0.7 + super().__init__(*args, model_name=self.model_name, **kwargs) + + def _prep_llm(self) -> OpenAI: + logging.info(f"Setting up OpenAI LLM (model {self.model_name})") + return OpenAI( + model=self.model_name, + temperature=self.temperature, + max_tokens=self.num_output, + api_key=self.openai_api_key, + ) + + def _prep_tokenizer(self) -> None: + import tiktoken + + logging.info(f"Setting up tiktoken tokenizer for model {self.model_name}") + tokenizer = tiktoken.encoding_for_model(self.model_name).encode + set_global_tokenizer(tokenizer) + return tokenizer diff --git a/reginald/models/llama_index/llama_utils.py b/reginald/models/llama_index/llama_utils.py new file mode 100644 index 00000000..65e5a593 --- /dev/null +++ b/reginald/models/llama_index/llama_utils.py @@ -0,0 +1,119 @@ +import logging +from math import ceil +from typing import Callable + +from llama_index.core import PromptHelper, Settings +from llama_index.core.base.llms.base import BaseLLM +from llama_index.core.settings import _Settings +from llama_index.embeddings.huggingface import HuggingFaceEmbedding + + +def compute_default_chunk_size(max_input_size: int, k: int) -> int: + """ + Compute the default chunk size to use for the index vector store. + + Parameters + ---------- + max_input_size : int + Maximum input size for the LLM. + k : int + `similarity_top_k` to use in chat or query engine. + + Returns + ------- + int + Default chunk size to use for the index vector store. + """ + return ceil(max_input_size / (k + 1)) + + +def setup_settings( + llm: BaseLLM, + max_input_size: int | str, + num_output: int | str, + chunk_overlap_ratio: float | str, + chunk_size: int | str | None = None, + k: int | str | None = None, + tokenizer: Callable[[str], int] | None = None, +) -> _Settings: + """ + Helper function to set up the settings. + Can pass in either chunk_size or k. + If chunk_size is not provided, it is computed as + `ceil(max_input_size / k)`. + If chunk_size is provided, k is ignored. + + Parameters + ---------- + llm : BaseLLM + LLM to use to create the index vectors. + max_input_size : int | str + Context window size for the LLM. + num_output : int, optional + Number of outputs for the LLM. + chunk_overlap_ratio : float, optional + Chunk overlap as a ratio of chunk size._ + chunk_size : int | None, optional + Maximum size of chunks to use, by default None. + If None, this is computed as `ceil(max_input_size / k)`. + k : int | str | None, optional + `similarity_top_k` to use in chat or query engine, + by default None + tokenizer: Callable[[str], int] | None, optional + Tokenizer to use. A callable function on a string. + Can also be None if using the default set by LlamaIndex. + + Returns + ------- + Settings + _Settings object to use to create the index vectors. + """ + if chunk_size is None and k is None: + raise ValueError("Either chunk_size or k must be provided.") + + # convert to int or float if necessary + if isinstance(max_input_size, str): + max_input_size = int(max_input_size) + if isinstance(num_output, str): + num_output = int(num_output) + if isinstance(chunk_overlap_ratio, str): + chunk_overlap_ratio = float(chunk_overlap_ratio) + if isinstance(chunk_size, str): + chunk_size = int(chunk_size) + if isinstance(k, str): + k = int(k) + + # if chunk_size is not provided, compute a default value + chunk_size = chunk_size or compute_default_chunk_size( + max_input_size=max_input_size, k=k + ) + + # initialise embedding model to use to create the index vectors + embed_model = HuggingFaceEmbedding( + model_name="sentence-transformers/all-mpnet-base-v2", + embed_batch_size=128, + ) + + # construct the prompt helper + prompt_helper = PromptHelper( + context_window=max_input_size, + num_output=num_output, + chunk_size_limit=chunk_size, + chunk_overlap_ratio=chunk_overlap_ratio, + tokenizer=tokenizer, + ) + + # construct the settings (and logging the settings set) + Settings.llm = llm + logging.info(f"Settings llm: {llm}") + Settings.embed_model = embed_model + logging.info(f"Settings embed_model: {embed_model}") + logging.info(f"Embedding model initialised on device {embed_model._device}") + Settings.prompt_helper = prompt_helper + logging.info(f"Settings prompt_helper: {prompt_helper}") + Settings.chunk_size = chunk_size + logging.info(f"Settings chunk_size: {chunk_size}") + Settings.tokenizer = tokenizer + logging.info(f"Settings tokenizer: {tokenizer}") + + return Settings diff --git a/reginald/models/models/__init__.py b/reginald/models/models/__init__.py deleted file mode 100644 index d018a5c4..00000000 --- a/reginald/models/models/__init__.py +++ /dev/null @@ -1,38 +0,0 @@ -from reginald.models.models.chat_completion import ( - ChatCompletionAzure, - ChatCompletionOpenAI, -) -from reginald.models.models.hello import Hello -from reginald.models.models.llama_index import ( - LlamaIndexGPTAzure, - LlamaIndexGPTOpenAI, - LlamaIndexHF, - LlamaIndexLlamaCPP, - LlamaIndexOllama, -) - -# Please ensure that any models needing OPENAI_API_KEY are named *openai* -# Please ensure that any models needing OPENAI_AZURE_API_BASE and OPENAI_AZURE_API_KEY are named *azure* -MODELS = { - "chat-completion-azure": ChatCompletionAzure, - "chat-completion-openai": ChatCompletionOpenAI, - "hello": Hello, - "llama-index-ollama": LlamaIndexOllama, - "llama-index-llama-cpp": LlamaIndexLlamaCPP, - "llama-index-hf": LlamaIndexHF, - "llama-index-gpt-azure": LlamaIndexGPTAzure, - "llama-index-gpt-openai": LlamaIndexGPTOpenAI, -} - -DEFAULTS = { - "chat-completion-azure": "reginald-gpt4", - "chat-completion-openai": "gpt-3.5-turbo", - "hello": None, - "llama-index-ollama": "llama3", - "llama-index-llama-cpp": "https://huggingface.co/TheBloke/Llama-2-13B-chat-GGUF/resolve/main/llama-2-13b-chat.Q6_K.gguf", - "llama-index-hf": "microsoft/phi-1_5", - "llama-index-gpt-azure": "reginald-gpt4", - "llama-index-gpt-openai": "gpt-3.5-turbo", -} - -__all__ = ["MODELS", "DEFAULTS"] diff --git a/reginald/models/models/llama_index.py b/reginald/models/models/llama_index.py deleted file mode 100644 index 3d08355b..00000000 --- a/reginald/models/models/llama_index.py +++ /dev/null @@ -1,1136 +0,0 @@ -from __future__ import annotations - -import logging -import os -import pathlib -import re -import sys -from math import ceil -from tempfile import TemporaryDirectory -from typing import Any - -import nest_asyncio -import pandas as pd -import tiktoken -from git import Repo -from httpx import HTTPError -from llama_index.core import ( - Document, - PromptHelper, - PromptTemplate, - Settings, - SimpleDirectoryReader, - StorageContext, - VectorStoreIndex, - load_index_from_storage, - set_global_tokenizer, -) -from llama_index.core.base.llms.base import BaseLLM -from llama_index.core.base.response.schema import RESPONSE_TYPE -from llama_index.core.settings import _Settings -from llama_index.embeddings.huggingface import HuggingFaceEmbedding -from llama_index.llms.azure_openai import AzureOpenAI -from llama_index.llms.huggingface import HuggingFaceLLM -from llama_index.llms.llama_cpp import LlamaCPP -from llama_index.llms.ollama import Ollama -from llama_index.llms.openai import OpenAI -from llama_index.readers.github import ( - GithubClient, - GitHubIssuesClient, - GitHubRepositoryIssuesReader, - GithubRepositoryReader, -) -from transformers import AutoTokenizer - -from reginald.models.models.base import MessageResponse, ResponseModel -from reginald.models.models.llama_utils import completion_to_prompt, messages_to_prompt -from reginald.utils import ( - get_env_var, - stream_iter_progress_wrapper, - stream_progress_wrapper, -) - -nest_asyncio.apply() - - -LLAMA_INDEX_DIR = "llama_index_indices" - - -def compute_default_chunk_size(max_input_size: int, k: int) -> int: - """ - Compute the default chunk size to use for the index vector store. - - Parameters - ---------- - max_input_size : int - Maximum input size for the LLM. - k : int - `similarity_top_k` to use in chat or query engine. - - Returns - ------- - int - Default chunk size to use for the index vector store. - """ - return ceil(max_input_size / (k + 1)) - - -def setup_settings( - llm: BaseLLM, - max_input_size: int | str, - num_output: int | str, - chunk_overlap_ratio: float | str, - chunk_size: int | str | None = None, - k: int | str | None = None, - tokenizer: callable[str] | None = None, -) -> _Settings: - """ - Helper function to set up the settings. - Can pass in either chunk_size or k. - If chunk_size is not provided, it is computed as - `ceil(max_input_size / k)`. - If chunk_size is provided, k is ignored. - - Parameters - ---------- - llm : BaseLLM - LLM to use to create the index vectors. - max_input_size : int | str - Context window size for the LLM. - num_output : int, optional - Number of outputs for the LLM. - chunk_overlap_ratio : float, optional - Chunk overlap as a ratio of chunk size._ - chunk_size : int | None, optional - Maximum size of chunks to use, by default None. - If None, this is computed as `ceil(max_input_size / k)`. - k : int | str | None, optional - `similarity_top_k` to use in chat or query engine, - by default None - tokenizer : callable[str] | None, optional - Tokenizer to use. A callable function on a string. - Can also be None if using the default set by LlamaIndex. - - Returns - ------- - Settings - _Settings object to use to create the index vectors. - """ - if chunk_size is None and k is None: - raise ValueError("Either chunk_size or k must be provided.") - - # convert to int or float if necessary - if isinstance(max_input_size, str): - max_input_size = int(max_input_size) - if isinstance(num_output, str): - num_output = int(num_output) - if isinstance(chunk_overlap_ratio, str): - chunk_overlap_ratio = float(chunk_overlap_ratio) - if isinstance(chunk_size, str): - chunk_size = int(chunk_size) - if isinstance(k, str): - k = int(k) - - # if chunk_size is not provided, compute a default value - chunk_size = chunk_size or compute_default_chunk_size( - max_input_size=max_input_size, k=k - ) - - # initialise embedding model to use to create the index vectors - embed_model = HuggingFaceEmbedding( - model_name="sentence-transformers/all-mpnet-base-v2", - embed_batch_size=128, - ) - - # construct the prompt helper - prompt_helper = PromptHelper( - context_window=max_input_size, - num_output=num_output, - chunk_size_limit=chunk_size, - chunk_overlap_ratio=chunk_overlap_ratio, - tokenizer=tokenizer, - ) - - # construct the settings (and logging the settings set) - Settings.llm = llm - logging.info(f"Settings llm: {llm}") - Settings.embed_model = embed_model - logging.info(f"Settings embed_model: {embed_model}") - logging.info(f"Embedding model initialised on device {embed_model._device}") - Settings.prompt_helper = prompt_helper - logging.info(f"Settings prompt_helper: {prompt_helper}") - Settings.chunk_size = chunk_size - logging.info(f"Settings chunk_size: {chunk_size}") - Settings.tokenizer = tokenizer - logging.info(f"Settings tokenizer: {tokenizer}") - - return Settings - - -class DataIndexCreator: - def __init__( - self, - data_dir: pathlib.Path | str, - which_index: str, - settings: _Settings, - ) -> None: - """ - Class for creating the data index. - - Parameters - ---------- - data_dir : pathlib.Path | str - Path to the data directory. - which_index : str - Which index to construct (if force_new_index is True) or use. - Options are "handbook", "wikis", "public", "reg" or "all_data". - settings : _Settings - llama_index.core.settings._Settings object to use to create the index. - """ - self.data_dir: pathlib.Path = pathlib.Path(data_dir) - self.which_index: str = which_index - self.settings: _Settings = settings - self.documents: list[str] = [] - self.index: VectorStoreIndex | None = None - - def prep_documents(self) -> None: - """ - Method to prepare the documents for the index vector store. - """ - # prep the contextual documents - gh_token = get_env_var("GITHUB_TOKEN") - - if gh_token is None: - raise ValueError( - "Please export your github personal access token as 'GITHUB_TOKEN'." - ) - - if self.which_index == "handbook": - logging.info("Regenerating index only for the handbook") - - # load handbook from repo - self._load_handbook(gh_token) - - elif self.which_index == "wikis": - logging.info("Regenerating index only for the wikis") - - # load wikis - self._load_wikis(gh_token) - - elif self.which_index == "public": - logging.info("Regenerating index for all PUBLIC. Will take a long time...") - - # load in scraped turing.ac.uk website - self._load_turing_ac_uk() - - # load public data from repos - self._load_handbook(gh_token) - self._load_rse_course(gh_token) - self._load_rds_course(gh_token) - self._load_turing_way(gh_token) - - elif self.which_index == "reg": - logging.info("Regenerating index for REG. Will take a long time...") - - # load in scraped turing.ac.uk website - self._load_turing_ac_uk() - - # load public data from repos - self._load_handbook(gh_token) - - # load hut23 data - self._load_hut23(gh_token) - - # load wikis - self._load_wikis(gh_token) - - elif self.which_index == "all_data": - logging.info("Regenerating index for ALL DATA. Will take a long time...") - - # load in scraped turing.ac.uk website - self._load_turing_ac_uk() - - # load public data from repos - self._load_handbook(gh_token) - self._load_rse_course(gh_token) - self._load_rds_course(gh_token) - self._load_turing_way(gh_token) - - # load hut23 data - self._load_hut23(gh_token) - - # load wikis - self._load_wikis(gh_token) - - else: - logging.info("The which_index provided is unrecognized") - - def _load_turing_ac_uk(self) -> None: - """ - Load in the scraped turing.ac.uk website. - - For 'public' index and 'all_data' index. - """ - data_file = f"{self.data_dir}/public/turingacuk-no-boilerplate.csv" - turing_df = pd.read_csv(data_file) - turing_df = turing_df[~turing_df.loc[:, "body"].isna()] - self.documents += [ - Document(text=row[1]["body"], extra_info={"url": row[1]["url"]}) - for row in turing_df.iterrows() - ] - - def _load_handbook(self, gh_token: str) -> None: - """ - Load in the REG handbook. - - For 'handbook' index, 'public' index, and 'all_data' index. - - Parameters - ---------- - gh_token : str - Github token to use to access the handbook repo. - """ - owner = "alan-turing-institute" - repo = "REG-handbook" - - handbook_loader = GithubRepositoryReader( - GithubClient(gh_token, fail_on_http_error=False), - owner=owner, - repo=repo, - verbose=False, - concurrent_requests=1, - timeout=60, - retries=3, - filter_file_extensions=( - [".md"], - GithubRepositoryReader.FilterType.INCLUDE, - ), - filter_directories=( - ["content"], - GithubRepositoryReader.FilterType.INCLUDE, - ), - ) - self.documents.extend(handbook_loader.load_data(branch="main")) - - def _load_rse_course(self, gh_token: str) -> None: - """ - Load in the REG RSE course. - - For 'public' index and 'all_data' index. - - Parameters - ---------- - gh_token : str - Github token to use to access the RSE course repo. - """ - owner = "alan-turing-institute" - repo = "rse-course" - - rse_course_loader = GithubRepositoryReader( - GithubClient(gh_token, fail_on_http_error=False), - owner=owner, - repo=repo, - verbose=False, - concurrent_requests=1, - timeout=60, - retries=3, - filter_file_extensions=( - [".md", ".ipynb"], - GithubRepositoryReader.FilterType.INCLUDE, - ), - ) - self.documents.extend(rse_course_loader.load_data(branch="main")) - - def _load_rds_course(self, gh_token: str) -> None: - """ - Load in REG RDS course. - - For 'public' index and 'all_data' index. - - Parameters - ---------- - gh_token : str - Github token to use to access the RDS course repo. - """ - owner = "alan-turing-institute" - repo = "rds-course" - - rds_course_loader = GithubRepositoryReader( - GithubClient(gh_token, fail_on_http_error=False), - owner=owner, - repo=repo, - verbose=False, - concurrent_requests=1, - timeout=60, - retries=3, - filter_file_extensions=( - [".md", ".ipynb"], - GithubRepositoryReader.FilterType.INCLUDE, - ), - ) - self.documents.extend(rds_course_loader.load_data(branch="develop")) - - def _load_turing_way(self, gh_token: str) -> None: - """ - Load in the Turing Way. - - For 'public' index and 'all_data' index. - - Parameters - ---------- - gh_token : str - Github token to use to access the Turing Way repo. - """ - owner = "the-turing-way" - repo = "the-turing-way" - - turing_way_loader = GithubRepositoryReader( - GithubClient(gh_token, fail_on_http_error=False), - owner=owner, - repo=repo, - verbose=False, - concurrent_requests=1, - timeout=60, - retries=3, - filter_file_extensions=( - [".md"], - GithubRepositoryReader.FilterType.INCLUDE, - ), - ) - self.documents.extend(turing_way_loader.load_data(branch="main")) - - def _load_hut23(self, gh_token: str) -> None: - """ - Load in documents from the Hut23 repo. - - For 'all_data' index. - - Parameters - ---------- - gh_token : str - Github token to use to access the Hut23 repo. - """ - owner = "alan-turing-institute" - repo = "Hut23" - - # load repo - hut23_repo_loader = GithubRepositoryReader( - GithubClient(gh_token, fail_on_http_error=False), - owner=owner, - repo=repo, - verbose=False, - concurrent_requests=1, - timeout=60, - retries=3, - filter_file_extensions=( - [".md", ".ipynb"], - GithubRepositoryReader.FilterType.INCLUDE, - ), - filter_directories=( - [ - "JDs", - "development", - "newsletters", - "objectives", - "project-appraisal", - "rfc", - "team-meetings", - ], # we can adjust these - GithubRepositoryReader.FilterType.INCLUDE, - ), - ) - self.documents.extend(hut23_repo_loader.load_data(branch="main")) - - try: - # load_issues - hut23_issues_loader = GitHubRepositoryIssuesReader( - GitHubIssuesClient(gh_token), - owner=owner, - repo=repo, - verbose=True, - ) - - issue_docs = hut23_issues_loader.load_data() - for doc in issue_docs: - doc.metadata["api_url"] = str(doc.metadata["url"]) - doc.metadata["url"] = doc.metadata["source"] - self.documents.extend(issue_docs) - - except HTTPError as e: - logging.error(f"Failed to load Hut23 issues: {e}") - - # load collaborators - # hut23_collaborators_loader = GitHubRepositoryCollaboratorsReader( - # GitHubCollaboratorsClient(gh_token), - # owner=owner, - # repo=repo, - # verbose=True, - # ) - # self.documents.extend(hut23_collaborators_loader.load_data()) - - def _load_wikis(self, gh_token: str) -> None: - """ - Load in documents from the wikis. - - For 'wikis' index and 'all_data' index. - - Parameters - ---------- - gh_token : str - Github token to use to access the research-engineering-group - and Hut23 repo wikis. - """ - wiki_urls = [ - f"https://oauth2:{gh_token}@github.com/alan-turing-institute/research-engineering-group.wiki.git", - f"https://oauth2:{gh_token}@github.com/alan-turing-institute/Hut23.wiki.git", - ] - - for url in wiki_urls: - temp_dir = TemporaryDirectory() - wiki_path = os.path.join(temp_dir.name, url.split("/")[-1]) - - _ = Repo.clone_from(url, wiki_path) - - reader = SimpleDirectoryReader( - input_dir=wiki_path, - required_exts=[".md"], - recursive=True, - filename_as_id=True, - ) - - # get base url and file names - base_url = url.removesuffix(".wiki.git") - fnames = [str(file) for file in reader.input_files] - - # get file urls and create dictionary to map fname to url - file_urls = [ - os.path.join(base_url, "wiki", fname.split("/")[-1].removesuffix(".md")) - for fname in fnames - ] - file_urls_dict = { - fname: file_url for fname, file_url in zip(fnames, file_urls) - } - - def get_urls(fname): - return {"url": file_urls_dict.get(fname)} - - # add `get_urls` function to reader - reader.file_metadata = get_urls - - self.documents.extend(reader.load_data()) - - def create_index(self) -> VectorStoreIndex: - """ - Create the index vector store. - """ - # obtain documents - logging.info(f"Preparing documents for {self.which_index} index...") - self.prep_documents() - - # create index - logging.info("Creating index...") - self.index = VectorStoreIndex.from_documents( - self.documents, settings=self.settings - ) - - return self.index - - def save_index(self, directory: pathlib.Path | None = None) -> None: - if directory is None: - directory = self.data_dir / LLAMA_INDEX_DIR / self.which_index - - # save the settings and persist the index - logging.info(f"Saving the index in {directory}...") - self.index.storage_context.persist(persist_dir=directory) - - -class LlamaIndex(ResponseModel): - def __init__( - self, - model_name: str, - max_input_size: int, - data_dir: pathlib.Path | str, - which_index: str, - mode: str = "chat", - k: int = 3, - chunk_size: int | None = None, - chunk_overlap_ratio: float = 0.1, - num_output: int = 512, - force_new_index: bool = False, - *args, - **kwargs, - ) -> None: - """ - Base class for models using llama-index. - This class is not intended to be used directly, but rather subclassed - to implement the `_prep_llm` method which constructs the LLM to be used. - - Parameters - ---------- - model_name : str - Model name to specify which LLM to use. - max_input_size : int - Context window size for the LLM. - data_dir : pathlib.Path | str - Path to the data directory. - which_index : str - Which index to construct (if force_new_index is True) or use. - Options are "handbook", "wikis", "public", "reg" or "all_data". - mode : Optional[str], optional - The type of engine to use when interacting with the data, options of "chat" or "query". - Default is "chat". - k : int, optional - `similarity_top_k` to use in chat or query engine, by default 3 - chunk_size : int | None, optional - Maximum size of chunks to use, by default None. - If None, this is computed as `ceil(max_input_size / k)`. - chunk_overlap_ratio : float, optional - Chunk overlap as a ratio of chunk size, by default 0.1 - num_output : int, optional - Number of outputs for the LLM, by default 512 - force_new_index : bool, optional - Whether or not to recreate the index vector store, - by default False - """ - super().__init__(*args, emoji="llama", **kwargs) - logging.info("Setting up Huggingface backend.") - if mode == "chat": - logging.info("Setting up chat engine.") - elif mode == "query": - logging.info("Setting up query engine.") - else: - logging.error("Mode must either be 'query' or 'chat'.") - sys.exit(1) - - self.max_input_size = max_input_size - self.model_name = model_name - self.num_output = num_output - self.mode = mode - self.k = k - self.chunk_size = chunk_size or compute_default_chunk_size( - max_input_size=max_input_size, k=k - ) - self.chunk_overlap_ratio = chunk_overlap_ratio - self.data_dir = pathlib.Path(data_dir) - self.which_index = which_index - self.documents = [] - - # set up LLM - llm = self._prep_llm() - - # set up settings - settings = setup_settings( - llm=llm, - max_input_size=self.max_input_size, - num_output=self.num_output, - chunk_size=self.chunk_size, - chunk_overlap_ratio=self.chunk_overlap_ratio, - k=self.k, - tokenizer=self._prep_tokenizer(), - ) - - if force_new_index: - logging.info("Generating the index from scratch...") - data_creator = DataIndexCreator( - which_index=self.which_index, - data_dir=self.data_dir, - settings=settings, - ) - self.index = stream_progress_wrapper( - data_creator.create_index, - task_str="Generating the index from scratch...", - ) - stream_progress_wrapper( - data_creator.save_index, - task_str="Saving the index...", - ) - - else: - logging.info("Loading the storage context") - storage_context = stream_progress_wrapper( - StorageContext.from_defaults, - task_str="Loading the storage context...", - persist_dir=self.data_dir / LLAMA_INDEX_DIR / self.which_index, - ) - - logging.info("Loading the pre-processed index") - self.index = stream_progress_wrapper( - load_index_from_storage, - task_str="Loading the pre-processed index...", - storage_context=storage_context, - settings=settings, - ) - - self.response_mode = "simple_summarize" - if self.mode == "chat": - self.chat_engine = {} - logging.info("Done setting up Huggingface backend for chat engine.") - elif self.mode == "query": - self.query_engine = self.index.as_query_engine( - response_mode=self.response_mode, - similarity_top_k=k, - ) - logging.info("Done setting up Huggingface backend for query engine.") - - self.error_response_template = ( - "Oh no! When I tried to get a response to your prompt, " - "I got the following error:" - "\n```\n{}\n```" - ) - - @staticmethod - def _format_sources(response: RESPONSE_TYPE) -> str: - """ - Method to format the sources used to compose the response. - - Parameters - ---------- - response : RESPONSE_TYPE - response object from the query engine - - Returns - ------- - str - String containing the formatted sources that - were used to compose the response - """ - texts = [] - for source_node in response.source_nodes: - # obtain the URL for source - try: - node_url = source_node.node.extra_info["url"] - except KeyError: - node_url = source_node.node.extra_info["filename"] - - # add its similarity score and append to texts - source_text = node_url + f" (similarity: {round(source_node.score, 2)})" - texts.append(source_text) - - result = "I read the following documents to compose this answer:\n" - result += "\n\n".join(texts) - - return result - - def _prep_llm(self) -> BaseLLM: - """ - Method to prepare the LLM to be used. - - Returns - ------- - BaseLLM - LLM to be used. - - Raises - ------ - NotImplemented - This must be implemented by a subclass of LlamaIndex. - """ - raise NotImplementedError( - "_prep_llm needs to be implemented by a subclass of LlamaIndex." - ) - - def _prep_tokenizer(self) -> callable[str] | None: - """ - Method to prepare the Tokenizer to be used. - - Returns - ------- - callable[str] | None - Tokenizer to use. A callable function on a string. - Can also be None if using the default set by LlamaIndex. - - Raises - ------ - NotImplemented - """ - raise NotImplementedError( - "_prep_tokenizer needs to be implemented by a subclass of LlamaIndex." - ) - - def _get_response(self, message: str, user_id: str) -> MessageResponse: - """ - Method to respond to a message in Slack. - - Parameters - ---------- - msg_in : str - Message from user - user_id : str - User ID - - Returns - ------- - MessageResponse - Response from the query engine. - """ - try: - if self.mode == "chat": - # create chat engine for user if does not exist - if self.chat_engine.get(user_id) is None: - self.chat_engine[user_id] = self.index.as_chat_engine( - chat_mode="condense_plus_context", - response_mode=self.response_mode, - similarity_top_k=self.k, - ) - - # obtain chat engine for particular user - chat_engine = self.chat_engine[user_id] - response = chat_engine.chat(message) - elif self.mode == "query": - self.query_engine._response_synthesizer._streaming = False - response = self.query_engine.query(message) - - # concatenate the response with the resources that it used - formatted_response = ( - response.response + "\n\n\n" + self._format_sources(response) - ) - except Exception as e: # ignore: broad-except - formatted_response = self.error_response_template.format(repr(e)) - - pattern = ( - r"(?s)^Context information is" - r".*" - r"Given the context information and not prior knowledge, answer the question: " - rf"{message}" - r"\n(.*)" - ) - m = re.search(pattern, formatted_response) - - if m: - answer = m.group(1) - else: - logging.warning( - "Was expecting a backend response with a regular expression but couldn't find a match." - ) - answer = formatted_response - - return MessageResponse(answer) - - def direct_message(self, message: str, user_id: str) -> MessageResponse: - """ - Method to respond to a direct message in Slack. - - Parameters - ---------- - msg_in : str - Message from user - user_id : str - User ID - - Returns - ------- - MessageResponse - Response from the query engine. - """ - return self._get_response(message=message, user_id=user_id) - - def channel_mention(self, message: str, user_id: str) -> MessageResponse: - """ - Method to respond to a channel mention in Slack. - - Parameters - ---------- - msg_in : str - Message from user - user_id : str - User ID - - Returns - ------- - MessageResponse - Response from the query engine. - """ - return self._get_response(message=message, user_id=user_id) - - def stream_message(self, message: str, user_id: str) -> None: - """ - Method to respond to a stream message in Slack. - - Parameters - ---------- - msg_in : str - Message from user - user_id : str - User ID - - Returns - ------- - MessageResponse - Response from the query engine. - """ - try: - if self.mode == "chat": - # create chat engine for user if does not exist - if self.chat_engine.get(user_id) is None: - self.chat_engine[user_id] = self.index.as_chat_engine( - chat_mode="condense_plus_context", - response_mode=self.response_mode, - similarity_top_k=self.k, - streaming=True, - ) - - # obtain chat engine for particular user - chat_engine = self.chat_engine[user_id] - response_stream = chat_engine.stream_chat(message) - elif self.mode == "query": - self.query_engine._response_synthesizer._streaming = True - response_stream = self.query_engine.query(message) - - for token in stream_iter_progress_wrapper(response_stream.response_gen): - print(token, end="", flush=True) - - formatted_response = "\n\n\n" + self._format_sources(response_stream) - - for token in re.split(r"(\s+)", formatted_response): - print(token, end="", flush=True) - except Exception as e: # ignore: broad-except - for token in re.split( - r"(\s+)", self.error_response_template.format(repr(e)) - ): - print(token, end="", flush=True) - - -class LlamaIndexOllama(LlamaIndex): - def __init__( - self, - model_name: str, - *args: Any, - **kwargs: Any, - ) -> None: - """ - `LlamaIndexOllama` is a subclass of `LlamaIndex` that uses - ollama to run inference on the LLM. - - Parameters - ---------- - model_name : str - The Ollama model to use - """ - ollama_api_endpoint = get_env_var("OLLAMA_API_ENDPOINT") - if ollama_api_endpoint is None: - raise ValueError("You must set OLLAMA_API_ENDPOINT for Ollama.") - self.ollama_api_endpoint = ollama_api_endpoint - super().__init__(*args, model_name=model_name, **kwargs) - - def _prep_llm(self) -> Ollama: - logging.info(f"Setting up Ollama (model {self.model_name})") - return Ollama( - base_url=self.ollama_api_endpoint, - model=self.model_name, - request_timeout=60, - ) - - def _prep_tokenizer(self) -> callable[str]: - # NOTE: this should depend on the model used, but hard coding tiktoken for now - logging.info("Setting up tiktoken gpt-4 tokenizer") - tokenizer = tiktoken.encoding_for_model("gpt-4").encode - set_global_tokenizer(tokenizer) - return tokenizer - - -class LlamaIndexLlamaCPP(LlamaIndex): - def __init__( - self, - model_name: str, - is_path: bool, - n_gpu_layers: int = 0, - *args: Any, - **kwargs: Any, - ) -> None: - """ - `LlamaIndexLlamaCPP` is a subclass of `LlamaIndex` that uses - llama-cpp to implement the LLM. - - Parameters - ---------- - model_name : str - Either the path to the model or the URL to download the model from - is_path : bool, optional - If True, model_name is used as a path to the model file, - otherwise it should be the URL to download the model - n_gpu_layers : int, optional - Number of layers to offload to GPU. - If -1, all layers are offloaded, by default 0 - """ - self.is_path = is_path - self.n_gpu_layers = n_gpu_layers - super().__init__(*args, model_name=model_name, **kwargs) - - def _prep_llm(self) -> LlamaCPP: - logging.info( - f"Setting up LlamaCPP LLM (model {self.model_name}) on {self.n_gpu_layers} GPU layers" - ) - logging.info( - f"LlamaCPP-args: (context_window: {self.max_input_size}, num_output: {self.num_output})" - ) - - return LlamaCPP( - model_url=self.model_name if not self.is_path else None, - model_path=self.model_name if self.is_path else None, - temperature=0.1, - max_new_tokens=self.num_output, - context_window=self.max_input_size, - # kwargs to pass to __call__() - generate_kwargs={}, - # kwargs to pass to __init__() - model_kwargs={"n_gpu_layers": self.n_gpu_layers}, - messages_to_prompt=messages_to_prompt, - completion_to_prompt=completion_to_prompt, - verbose=True, - ) - - def _prep_tokenizer(self) -> callable[str]: - # NOTE: this should depend on the model used, but hard coding tiktoken for now - logging.info("Setting up tiktoken gpt-4 tokenizer") - tokenizer = tiktoken.encoding_for_model("gpt-4").encode - set_global_tokenizer(tokenizer) - return tokenizer - - -class LlamaIndexHF(LlamaIndex): - def __init__( - self, - model_name: str = "google/gemma-2b-it", - device: str = "auto", - *args: Any, - **kwargs: Any, - ) -> None: - """ - `LlamaIndexHF` is a subclass of `LlamaIndex` that uses HuggingFace's - `transformers` library to implement the LLM. - - Parameters - ---------- - model_name : str, optional - Model name from Huggingface's model hub, - by default "google/gemma-2b-it". - device : str, optional - Device map to use for the LLM, by default "auto". - """ - self.device = device - super().__init__(*args, model_name=model_name, **kwargs) - - def _prep_llm(self) -> HuggingFaceLLM: - logging.info( - f"Setting up Huggingface LLM (model {self.model_name}) on device {self.device}" - ) - logging.info( - f"HF-args: (context_window: {self.max_input_size}, num_output: {self.num_output})" - ) - - return HuggingFaceLLM( - context_window=self.max_input_size, - max_new_tokens=self.num_output, - generate_kwargs={"temperature": 0.1, "do_sample": False}, - tokenizer_name=self.model_name, - model_name=self.model_name, - device_map=self.device or "auto", - ) - - def _prep_tokenizer(self) -> callable[str]: - logging.info(f"Setting up Huggingface tokenizer for model {self.model_name}") - tokenizer = AutoTokenizer.from_pretrained(self.model_name).encode - set_global_tokenizer(tokenizer) - return tokenizer - - -class LlamaIndexGPTOpenAI(LlamaIndex): - def __init__( - self, model_name: str = "gpt-3.5-turbo", *args: Any, **kwargs: Any - ) -> None: - """ - `LlamaIndexGPTOpenAI` is a subclass of `LlamaIndex` that uses OpenAI's - API to implement the LLM. - - Must have `OPENAI_API_KEY` set as an environment variable. - - Parameters - ---------- - model_name : str, optional - The model to use from the OpenAI API, by default "gpt-3.5-turbo" - """ - openai_api_key = get_env_var("OPENAI_API_KEY") - if openai_api_key is None: - raise ValueError("You must set OPENAI_API_KEY for OpenAI.") - - self.model_name = model_name - self.openai_api_key = openai_api_key - self.temperature = 0.7 - super().__init__(*args, model_name=self.model_name, **kwargs) - - def _prep_llm(self) -> OpenAI: - logging.info(f"Setting up OpenAI LLM (model {self.model_name})") - return OpenAI( - model=self.model_name, - temperature=self.temperature, - max_tokens=self.num_output, - api_key=self.openai_api_key, - ) - - def _prep_tokenizer(self) -> None: - import tiktoken - - logging.info(f"Setting up tiktoken tokenizer for model {self.model_name}") - tokenizer = tiktoken.encoding_for_model(self.model_name).encode - set_global_tokenizer(tokenizer) - return tokenizer - - -class LlamaIndexGPTAzure(LlamaIndex): - def __init__( - self, model_name: str = "reginald-gpt4", *args: Any, **kwargs: Any - ) -> None: - """ - `LlamaIndexGPTAzure` is a subclass of `LlamaIndex` that uses Azure's - instance of OpenAI's LLMs to implement the LLM. - - Must have the following environment variables set: - - `OPENAI_API_BASE`: Azure endpoint which looks - like https://YOUR_RESOURCE_NAME.openai.azure.com/ - - `OPENAI_API_KEY`: Azure API key - - Parameters - ---------- - model_name : str, optional - The deployment name of the model, by default "reginald-gpt4" - """ - openai_azure_api_base = get_env_var("OPENAI_AZURE_API_BASE", secret_value=False) - if openai_azure_api_base is None: - raise ValueError( - "You must set OPENAI_AZURE_API_BASE to your Azure endpoint. " - "It should look like https://YOUR_RESOURCE_NAME.openai.azure.com/" - ) - - openai_azure_api_key = get_env_var("OPENAI_AZURE_API_KEY") - if openai_azure_api_key is None: - raise ValueError("You must set OPENAI_AZURE_API_KEY for Azure OpenAI.") - - # deployment name can be found in the Azure AI Studio portal - self.deployment_name = model_name - self.openai_api_base = openai_azure_api_base - self.openai_api_key = openai_azure_api_key - self.openai_api_version = "2023-09-15-preview" - self.temperature = 0.7 - super().__init__(*args, model_name="gpt-4", **kwargs) - - def _prep_llm(self) -> AzureOpenAI: - logging.info(f"Setting up AzureOpenAI LLM (model {self.deployment_name})") - return AzureOpenAI( - model=self.model_name, - engine=self.deployment_name, - temperature=self.temperature, - max_tokens=self.num_output, - api_key=self.openai_api_key, - api_base=self.openai_api_base, - api_type="azure", - azure_endpoint=self.openai_api_base, - api_version=self.openai_api_version, - ) - - def _prep_tokenizer(self) -> None: - import tiktoken - - logging.info(f"Setting up tiktoken tokenizer for model {self.model_name}") - tokenizer = tiktoken.encoding_for_model("gpt-4").encode - set_global_tokenizer(tokenizer) - return tokenizer diff --git a/reginald/models/setup_llm.py b/reginald/models/setup_llm.py index ea464631..4841fc05 100644 --- a/reginald/models/setup_llm.py +++ b/reginald/models/setup_llm.py @@ -2,24 +2,9 @@ import pathlib import sys -from reginald.models.models import DEFAULTS, MODELS -from reginald.models.models.base import ResponseModel - -DEFAULT_ARGS = { - "model": "hello", - "mode": "chat", - "data_dir": pathlib.Path(__file__).parent.parent.parent / "data", - "which_index": "reg", - "force_new_index": False, - "max_input_size": 4096, - "k": 3, - "chunk_size": 512, - "chunk_overlap_ratio": 0.1, - "num_output": 512, - "is_path": False, - "n_gpu_layers": 0, - "device": "auto", -} +from reginald.defaults import DEFAULT_ARGS +from reginald.models import DEFAULTS, ModelMapper +from reginald.models.base import ResponseModel def setup_llm( @@ -114,7 +99,7 @@ def setup_llm( if model is None: model = DEFAULT_ARGS["model"] model = model.lower() - if model not in MODELS.keys(): + if model not in ModelMapper.available_models(): logging.error(f"Model '{model}' not recognised.") sys.exit(1) logging.info(f"Setting up '{model}' model.") @@ -189,7 +174,7 @@ def setup_llm( device = DEFAULT_ARGS["device"] # set up response model - model = MODELS[model] + model = ModelMapper.get_model(model) response_model = model( model_name=model_name, max_input_size=max_input_size, diff --git a/reginald/models/simple/__init__.py b/reginald/models/simple/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/reginald/models/models/chat_completion.py b/reginald/models/simple/chat_completion.py similarity index 99% rename from reginald/models/models/chat_completion.py rename to reginald/models/simple/chat_completion.py index fb0c0bcc..e9aad242 100644 --- a/reginald/models/models/chat_completion.py +++ b/reginald/models/simple/chat_completion.py @@ -5,7 +5,7 @@ import openai from openai import AzureOpenAI, OpenAI -from reginald.models.models.base import MessageResponse, ResponseModel +from reginald.models.base import MessageResponse, ResponseModel from reginald.utils import get_env_var, stream_iter_progress_wrapper diff --git a/reginald/models/models/hello.py b/reginald/models/simple/hello.py similarity index 92% rename from reginald/models/models/hello.py rename to reginald/models/simple/hello.py index 01ba40a3..accbf193 100644 --- a/reginald/models/models/hello.py +++ b/reginald/models/simple/hello.py @@ -1,6 +1,6 @@ from typing import Any -from reginald.models.models.base import MessageResponse, ResponseModel +from reginald.models.base import MessageResponse, ResponseModel from reginald.utils import stream_iter_progress_wrapper diff --git a/reginald/parser_utils.py b/reginald/parser_utils.py deleted file mode 100644 index 2b2677b7..00000000 --- a/reginald/parser_utils.py +++ /dev/null @@ -1,226 +0,0 @@ -import argparse -import pathlib - -from reginald.models.models import MODELS -from reginald.utils import get_env_var - - -class Parser(argparse.ArgumentParser): - def __init__(self, create_index_only: bool = False, *args, **kwargs): - """ - Parser for command line arguments for Reginald. - - Note that the default values for the arguments are set to a lambda function - to obtain the relevant environment variables (if they exist). They are - lambda functions so that the environment variables are only obtained if - the argument is actually used. - - See `get_args` for parsing the arguments and obtaining any of the - environment variables if using default values. - - Parameters - ---------- - create_index_only : bool, optional - Whether or not to only include arguments related to data index creation, - by default False - """ - super().__init__(*args, **kwargs) - if not create_index_only: - # model arguments - self.add_argument( - "--model", - "-m", - type=str, - help=("Select which type of model to use. Default is 'hello'."), - default=lambda: get_env_var("REGINALD_MODEL", secret_value=False), - choices=MODELS, - ) - self.add_argument( - "--model-name", - "-n", - type=str, - help=( - "Select which sub-model to use (within the main model selected)." - "For llama-index-llama-cpp and llama-index-hf models, this specifies" - "the LLM (or path to that model) which we would like to use." - "For chat-completion-azure and llama-index-gpt-azure, this refers" - "to the deployment name on Azure." - "For chat-completion-azure and llama-index-gpt-openai, this refers" - "to the model name on OpenAI." - "(ignored if using 'hello' model types)." - ), - default=lambda: get_env_var("REGINALD_MODEL_NAME", secret_value=False), - ) - self.add_argument( - "--mode", - type=str, - help=( - "Select which mode to use " - "(ignored if not using llama-index). " - "Default is 'chat'." - ), - default=lambda: get_env_var("LLAMA_INDEX_MODE", secret_value=False), - choices=["chat", "query"], - ) - self.add_argument( - "--force-new-index", - "-f", - help=( - "Recreate the index vector store or not " - "(ignored if not using llama-index). " - "Default is False." - ), - action=argparse.BooleanOptionalAction, - default=lambda: get_env_var( - "LLAMA_INDEX_FORCE_NEW_INDEX", secret_value=False - ), - ) - self.add_argument( - "--is-path", - "-p", - help=( - "Whether or not the model_name passed is a path to the model " - "(ignored if not using llama-index-llama-cpp). " - "Default is False." - ), - action=argparse.BooleanOptionalAction, - default=lambda: get_env_var("LLAMA_INDEX_IS_PATH", secret_value=False), - ) - self.add_argument( - "--n-gpu-layers", - "-ngl", - type=int, - help=( - "Select number of GPU layers for LlamaCPP model " - "(ignored if not using llama-index-llama-cpp). " - "Default is 0." - ), - default=lambda: get_env_var( - "LLAMA_INDEX_N_GPU_LAYERS", secret_value=False - ), - ) - self.add_argument( - "--device", - "-dev", - type=str, - help=( - "Select device for HuggingFace model " - "(ignored if not using llama-index-hf model). " - "Default is 'auto'." - ), - default=lambda: get_env_var("LLAMA_INDEX_DEVICE", secret_value=False), - ) - - # data index arguments - self.add_argument( - "--data-dir", - "-d", - type=pathlib.Path, - help=( - "Location for data (ignored if not using llama-index). " - "Default is 'data' in the root of the repo." - ), - default=lambda: get_env_var("LLAMA_INDEX_DATA_DIR", secret_value=False) - or (pathlib.Path(__file__).parent.parent / "data").resolve(), - ) - self.add_argument( - "--which-index", - "-w", - type=str, - help=( - "Specifies the directory name for looking up/writing indices " - "(ignored if not using llama-index). " - "Currently supports 'handbook', 'wikis', 'public', or 'all_data'. " - "Default is 'all_data'." - ), - default=lambda: get_env_var("LLAMA_INDEX_WHICH_INDEX", secret_value=False), - choices=["handbook", "wikis", "public", "reg", "all_data"], - ) - self.add_argument( - "--max-input-size", - "-max", - type=int, - help=( - "Select maximum input size for LlamaCPP or HuggingFace model " - "(ignored if not using llama-index). " - "Default is 4096." - ), - default=lambda: get_env_var( - "LLAMA_INDEX_MAX_INPUT_SIZE", secret_value=False - ), - ) - self.add_argument( - "--k", - type=int, - help=( - "`similarity_top_k` to use in chat or query engine, " - "(ignored if not using llama-index). " - "Default is 3." - ), - default=lambda: get_env_var("LLAMA_INDEX_K", secret_value=False), - ) - self.add_argument( - "--chunk-size", - "-cs", - type=int, - help=( - "Select chunk size for LlamaIndex model " - "(ignored if not using llama-index). " - "Default is computed by ceil(max_input_size / k)." - ), - default=lambda: get_env_var("LLAMA_INDEX_CHUNK_SIZE", secret_value=False), - ) - self.add_argument( - "--chunk-overlap-ratio", - "-cor", - type=float, - help=( - "Select chunk overlap ratio for LlamaIndex model " - "(ignored if not using llama-index). " - "Default is 0.1." - ), - default=lambda: get_env_var( - "LLAMA_INDEX_CHUNK_OVERLAP_RATIO", secret_value=False - ), - ) - self.add_argument( - "--num-output", - "-no", - type=int, - help=( - "Select number of outputs for LlamaIndex LLM model " - "(ignored if not using llama-index). " - "Default is 512." - ), - default=lambda: get_env_var("LLAMA_INDEX_NUM_OUTPUT", secret_value=False), - ) - - -def get_args(parser: Parser) -> argparse.Namespace: - """ - Helper function to parse command line arguments and obtain any of the - environment variables if using default values. - - Parameters - ---------- - parser : Parser - Parser for command line arguments for Reginald - - Returns - ------- - argparse.Namespace - Namespace of parsed arguments - """ - # parse command line arguments - args = parser.parse_args() - - # call any lambda functions in the args - for arg_name in vars(args): - arg_value = getattr(args, arg_name) - if callable(arg_value): - # call the lambda function to get its value - arg_value = arg_value() - # update the argument value in args - setattr(args, arg_name, arg_value) - - return args diff --git a/reginald/run.py b/reginald/run.py index 6ca70950..26bb0993 100644 --- a/reginald/run.py +++ b/reginald/run.py @@ -1,176 +1,59 @@ import asyncio import logging -import pathlib -import sys -from typing import Final - -import uvicorn -from fastapi import FastAPI -from slack_sdk.socket_mode.aiohttp import SocketModeClient - -from reginald.models.app import create_reginald_app -from reginald.models.create_index import create_index -from reginald.models.models.base import ResponseModel -from reginald.models.setup_llm import setup_llm -from reginald.slack_bot.setup_bot import ( - EMOJI_DEFAULT, - setup_api_slack_bot, - setup_slack_bot, - setup_slack_client, -) -from reginald.utils import create_folder - -LISTENING_MSG: Final[str] = "Listening for requests..." - - -async def run_bot(api_url: str | None, emoji: str) -> None: - if api_url is None: - logging.error("api_url is not set.") - sys.exit(1) - - # set up slack bot - bot = setup_api_slack_bot(api_url=api_url, emoji=emoji) - - # set up slack client - client = setup_slack_client(slack_bot=bot) - await connect_client(client) - - -async def run_reginald_app(**kwargs) -> None: - # set up response model - response_model = setup_llm(**kwargs) - app: FastAPI = create_reginald_app(response_model) - uvicorn.run(app, host="0.0.0.0", port=8000) - - -async def run_full_pipeline(**kwargs) -> None: - # set up response model - response_model = setup_llm(**kwargs) - bot = setup_slack_bot(response_model) - # set up slack client - client = setup_slack_client(bot) - await connect_client(client) - - -def run_chat_interact(streaming: bool = False, **kwargs) -> ResponseModel: - # set up response model - response_model = setup_llm(**kwargs) - user_id = "command_line_chat" - - while True: - message = input(">>> ") - if message in ["exit", "exit()", "quit()", "bye Reginald"]: - return response_model - if message == "": - continue - if message in ["clear_history", "\clear_history"]: - if ( - response_model.mode == "chat" - and response_model.chat_engine.get(user_id) is not None - ): - response_model.chat_engine[user_id].reset() - print("\nReginald: History cleared.") - else: - print("\nReginald: No history to clear.") - continue - - if streaming: - response = response_model.stream_message(message=message, user_id=user_id) - print("") - else: - response = response_model.direct_message(message=message, user_id=user_id) - print(f"\nReginald: {response.message}") - - -async def connect_client(client: SocketModeClient) -> None: - await client.connect() - # listen for events - logging.info(LISTENING_MSG) - # TODO: Assess whether this is best to use - await asyncio.sleep(float("inf")) - - -def download_from_fileshare( - data_dir: pathlib.Path | str, - which_index: str, - azure_storage_key: str | None, - connection_str: str | None, -) -> None: - from azure.storage.fileshare import ShareClient - from tqdm import tqdm - - if azure_storage_key is None: - logging.error("azure_storage_key is not set.") - sys.exit(1) - if connection_str is None: - logging.error("connection_str is not set.") - sys.exit(1) - - # set the file share name and directory - file_share_name = "llama-data" - file_share_directory = f"llama_index_indices/{which_index}" - - # create a ShareClient object - share_client = ShareClient.from_connection_string( - conn_str=connection_str, - share_name=file_share_name, - credential=azure_storage_key, - ) - - # get a reference to the file share directory - file_share_directory_client = share_client.get_directory_client( - file_share_directory - ) - - # set the local download directory - local_download_directory = ( - pathlib.Path(data_dir) / "llama_index_indices" / which_index - ) - - # create folder if does not exist - create_folder(local_download_directory) - - # list all the files in the directory - files_list = file_share_directory_client.list_directories_and_files() - - # check if the index exists - try: - files_list = list(files_list) - except: - logging.error(f"Index {which_index} does not exist in the file share") - sys.exit(1) - - # iterate through each file in the list and download it - for file in tqdm(files_list): - if not file.is_directory: - file_client = file_share_directory_client.get_file_client(file.name) - download_path = local_download_directory / file.name - with open(download_path, "wb") as file_handle: - data = file_client.download_file() - data.readinto(file_handle) def main( cli: str, api_url: str | None = None, - emoji: str = EMOJI_DEFAULT, + emoji: str | None = None, streaming: bool = False, data_dir: str | None = None, which_index: str | None = None, + slack_app_token: str | None = None, + slack_bot_token: str | None = None, **kwargs, ): # initialise logging if cli == "run_all": - asyncio.run(run_full_pipeline(**kwargs)) + from reginald.run_full_pipeline import run_full_pipeline + + asyncio.run( + run_full_pipeline( + slack_app_token=slack_app_token, + slack_bot_token=slack_bot_token, + **kwargs, + ) + ) elif cli == "bot": - asyncio.run(run_bot(api_url=api_url, emoji=emoji)) + from reginald.slack_bot.run_bot import run_bot + + asyncio.run( + run_bot( + slack_app_token=slack_app_token, + slack_bot_token=slack_bot_token, + api_url=api_url, + emoji=emoji, + ) + ) elif cli == "app": + from reginald.models.app import run_reginald_app + asyncio.run(run_reginald_app(**kwargs)) elif cli == "chat": + import warnings + + warnings.filterwarnings("ignore") + + from reginald.models.chat_interact import run_chat_interact + run_chat_interact(streaming=streaming, **kwargs) elif cli == "create_index": - create_index(**kwargs) + from reginald.models.create_index import create_index + + create_index(data_dir=data_dir, which_index=which_index, **kwargs) elif cli == "download": + from reginald.models.download_from_fileshare import download_from_fileshare + download_from_fileshare(data_dir=data_dir, which_index=which_index, **kwargs) else: logging.info("No run options selected.") diff --git a/reginald/run_full_pipeline.py b/reginald/run_full_pipeline.py new file mode 100644 index 00000000..4c669960 --- /dev/null +++ b/reginald/run_full_pipeline.py @@ -0,0 +1,17 @@ +from reginald.models.setup_llm import setup_llm +from reginald.slack_bot.utils import connect_client, setup_slack_bot, setup_slack_client + + +async def run_full_pipeline( + slack_app_token: str, slack_bot_token: str, **kwargs +) -> None: + # set up response model + response_model = setup_llm(**kwargs) + bot = setup_slack_bot(response_model) + + # set up slack client + client = setup_slack_client( + slack_bot=bot, slack_app_token=slack_app_token, slack_bot_token=slack_bot_token + ) + + await connect_client(client) diff --git a/reginald/slack_bot/bot.py b/reginald/slack_bot/bot.py index 978c080a..85f9716f 100644 --- a/reginald/slack_bot/bot.py +++ b/reginald/slack_bot/bot.py @@ -7,7 +7,7 @@ from slack_sdk.socket_mode.request import SocketModeRequest from slack_sdk.socket_mode.response import SocketModeResponse -from reginald.models.models.base import ResponseModel +from reginald.models.base import ResponseModel class Bot(AsyncSocketModeRequestListener): diff --git a/reginald/slack_bot/run_bot.py b/reginald/slack_bot/run_bot.py new file mode 100644 index 00000000..1366979b --- /dev/null +++ b/reginald/slack_bot/run_bot.py @@ -0,0 +1,26 @@ +import logging +import sys + +from reginald.slack_bot.utils import ( + connect_client, + setup_api_slack_bot, + setup_slack_client, +) + + +async def run_bot( + slack_app_token: str, slack_bot_token: str, api_url: str | None, emoji: str | None +) -> None: + if api_url is None: + logging.error("api_url is not set.") + sys.exit(1) + + # set up slack bot + bot = setup_api_slack_bot(api_url=api_url, emoji=emoji) + + # set up slack client + client = setup_slack_client( + slack_bot=bot, slack_app_token=slack_app_token, slack_bot_token=slack_bot_token + ) + + await connect_client(client) diff --git a/reginald/slack_bot/setup_bot.py b/reginald/slack_bot/utils.py similarity index 69% rename from reginald/slack_bot/setup_bot.py rename to reginald/slack_bot/utils.py index 505b2559..296510c4 100755 --- a/reginald/slack_bot/setup_bot.py +++ b/reginald/slack_bot/utils.py @@ -1,19 +1,15 @@ -import argparse import asyncio import logging -import os -import sys from typing import Final from slack_sdk.socket_mode.aiohttp import SocketModeClient from slack_sdk.web.async_client import AsyncWebClient -from reginald.models.models.base import ResponseModel -from reginald.parser_utils import get_args +from reginald.defaults import EMOJI_DEFAULT +from reginald.models.base import ResponseModel from reginald.slack_bot.bot import ApiBot, Bot -from reginald.utils import get_env_var -EMOJI_DEFAULT: Final[str] = "rocket" +LISTENING_MSG: Final[str] = "Listening for requests..." def setup_slack_bot(model: ResponseModel) -> Bot: @@ -34,15 +30,10 @@ def setup_slack_bot(model: ResponseModel) -> Bot: slack_bot = Bot(model=model) - logging.info("Connecting to Slack...") - if get_env_var("SLACK_APP_TOKEN", log=False) is None: - logging.error("SLACK_APP_TOKEN is not set") - sys.exit(1) - return slack_bot -def setup_api_slack_bot(api_url: str | None, emoji: str) -> ApiBot: +def setup_api_slack_bot(api_url: str, emoji: str | None) -> ApiBot: """ Initialise `ApiBot` with response model. @@ -57,20 +48,20 @@ def setup_api_slack_bot(api_url: str | None, emoji: str) -> ApiBot: Bot which uses an API for responding to messages """ logging.info(f"Initalising bot at {api_url}") + + if emoji is None: + emoji = EMOJI_DEFAULT logging.info(f"Initalising bot with {emoji} emoji") # set up bot with the api_url and emoji slack_bot = ApiBot(api_url=api_url, emoji=emoji) - logging.info("Connecting to Slack...") - if get_env_var("SLACK_APP_TOKEN", log=False) is None: - logging.error("SLACK_APP_TOKEN is not set") - sys.exit(1) - return slack_bot -def setup_slack_client(slack_bot: ApiBot | Bot) -> SocketModeClient: +def setup_slack_client( + slack_bot: ApiBot | Bot, slack_app_token: str, slack_bot_token: str +) -> SocketModeClient: """ Initialise Slack client with bot. @@ -88,15 +79,7 @@ def setup_slack_client(slack_bot: ApiBot | Bot) -> SocketModeClient: SocketModeClient Slack client with bot """ - slack_app_token = get_env_var("SLACK_APP_TOKEN") - if slack_app_token is None: - logging.error("SLACK_APP_TOKEN is not set") - sys.exit(1) - - slack_bot_token = get_env_var("SLACK_BOT_TOKEN") - if slack_bot_token is None: - logging.error("SLACK_BOT_TOKEN is not set") - sys.exit(1) + logging.info("Connecting to Slack...") # initialize SocketModeClient with an app-level token + AsyncWebClient client = SocketModeClient( @@ -112,3 +95,11 @@ def setup_slack_client(slack_bot: ApiBot | Bot) -> SocketModeClient: client.socket_mode_request_listeners.append(slack_bot) return client + + +async def connect_client(client: SocketModeClient) -> None: + await client.connect() + # listen for events + logging.info(LISTENING_MSG) + # TODO: Assess whether this is best to use + await asyncio.sleep(float("inf")) diff --git a/reginald/utils.py b/reginald/utils.py index 673fe0e5..720e5206 100644 --- a/reginald/utils.py +++ b/reginald/utils.py @@ -1,7 +1,6 @@ import logging import os from itertools import chain -from time import sleep from typing import Any, Callable, Final, Generator, Iterable from rich.progress import Progress, SpinnerColumn, TextColumn diff --git a/tests/test_chat_interact.py b/tests/test_chat_interact.py index 2379372c..1cb68a0f 100644 --- a/tests/test_chat_interact.py +++ b/tests/test_chat_interact.py @@ -5,19 +5,21 @@ from typer.testing import CliRunner from reginald.cli import cli -from reginald.models.models.hello import Hello -from reginald.run import run_chat_interact +from reginald.models.chat_interact import art, run_chat_interact +from reginald.models.simple.hello import Hello runner = CliRunner() +art_split = art.splitlines() def test_chat_cli(): """Test sending an input `str` via `cli` and then exiting.""" result = runner.invoke(cli, ["chat"], input="What's up dock?\nexit\n") term_stdout_lines: list[str] = result.stdout.split("\n") - assert term_stdout_lines[0] == ">>> " - assert term_stdout_lines[1] == "Reginald: Hello! How are you?" - assert term_stdout_lines[2] == ">>> " + assert term_stdout_lines[: len(art_split)] == art_split + assert term_stdout_lines[len(art_split) + 1] == ">>> " + assert term_stdout_lines[len(art_split) + 2] == "Reginald: Hello! How are you?" + assert term_stdout_lines[len(art_split) + 3] == ">>> " def test_chat_cli_no_stream(): @@ -26,9 +28,13 @@ def test_chat_cli_no_stream(): cli, ["chat", "--no-streaming"], input="What's up dock?\nexit\n" ) term_stdout_lines: list[str] = result.stdout.split("\n") - assert term_stdout_lines[0] == ">>> " - assert term_stdout_lines[1] == "Reginald: Let's discuss this in a channel!" - assert term_stdout_lines[2] == ">>> " + assert term_stdout_lines[: len(art_split)] == art_split + assert term_stdout_lines[len(art_split) + 1] == ">>> " + assert ( + term_stdout_lines[len(art_split) + 2] + == "Reginald: Let's discuss this in a channel!" + ) + assert term_stdout_lines[len(art_split) + 3] == ">>> " def test_chat_interact_exit(): @@ -58,14 +64,16 @@ def test_chat_interact_bye(): def test_chat_interact_clear_history(): result = runner.invoke(cli, ["chat"], input="clear_history\n") term_stdout_lines: list[str] = result.stdout.split("\n") - assert term_stdout_lines[0] == ">>> " - assert term_stdout_lines[1] == "Reginald: No history to clear." - assert term_stdout_lines[2] == ">>> " + assert term_stdout_lines[: len(art_split)] == art_split + assert term_stdout_lines[len(art_split) + 1] == ">>> " + assert term_stdout_lines[len(art_split) + 2] == "Reginald: No history to clear." + assert term_stdout_lines[len(art_split) + 3] == ">>> " def test_chat_interact_slash_clear_history(): result = runner.invoke(cli, ["chat"], input="\clear_history\n") term_stdout_lines: list[str] = result.stdout.split("\n") - assert term_stdout_lines[0] == ">>> " - assert term_stdout_lines[1] == "Reginald: No history to clear." - assert term_stdout_lines[2] == ">>> " + assert term_stdout_lines[: len(art_split)] == art_split + assert term_stdout_lines[len(art_split) + 1] == ">>> " + assert term_stdout_lines[len(art_split) + 2] == "Reginald: No history to clear." + assert term_stdout_lines[len(art_split) + 3] == ">>> " From 20a3eb5a8d35bc9ae1a33574a57eb1c5dd1ccf2f Mon Sep 17 00:00:00 2001 From: rchan Date: Wed, 12 Jun 2024 22:48:11 +0100 Subject: [PATCH 04/11] fix error in llama-index-azure-gpt model getter --- poetry.lock | 2 +- pyproject.toml | 2 +- reginald/models/__init__.py | 4 ++-- reginald/models/chat_interact.py | 2 ++ 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/poetry.lock b/poetry.lock index a5c2ccf1..a5c8cf7c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -5096,4 +5096,4 @@ azure = ["azure-storage-file-share", "pulumi", "pulumi-azure-native"] [metadata] lock-version = "2.0" python-versions = ">=3.11,<3.12" -content-hash = "6c025f7263718fd83e17df5ff9f4fbacfdef3e41e3338d2567859b58e50d6050" +content-hash = "4d7330aee8ed44e7b403e2a21fc304c310e2ae5f9fba6a72079257869506a085" diff --git a/pyproject.toml b/pyproject.toml index cfd99cf4..11e98a96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ httpx = "^0.27.0" llama-cpp-python = "^0.2.78" llama-index = "^0.10.43" nest_asyncio = "^1.6.0" -openai = "^1.33.0" +openai = "^1.34.0" pandas = "^2.2.2" pulumi = { version="^3.100.0", optional=true } pulumi-azure-native = { version="^2.24.0", optional=true } diff --git a/reginald/models/__init__.py b/reginald/models/__init__.py index 5988bc26..5e4684d7 100644 --- a/reginald/models/__init__.py +++ b/reginald/models/__init__.py @@ -44,8 +44,8 @@ def get_model(model_name: str): return LlamaIndexHF case "llama-index-gpt-azure": - from reginald.models.llama_index.llama_index_openai import ( - LlamaIndexGPTOpenAI, + from reginald.models.llama_index.llama_index_azure_openai import ( + LlamaIndexGPTAzure, ) return LlamaIndexGPTOpenAI diff --git a/reginald/models/chat_interact.py b/reginald/models/chat_interact.py index 391d17f6..1bc5cfaa 100644 --- a/reginald/models/chat_interact.py +++ b/reginald/models/chat_interact.py @@ -25,6 +25,8 @@ def run_chat_interact(streaming: bool = False, **kwargs) -> ResponseModel: message = input(">>> ") if message in ["exit", "exit()", "quit()", "bye Reginald"]: return response_model + if message == "": + continue if message in ["clear_history", "\clear_history"]: if ( response_model.mode == "chat" From cfc52404caefaf6a11a7e144301620ba0d68531c Mon Sep 17 00:00:00 2001 From: rchan Date: Wed, 12 Jun 2024 22:50:55 +0100 Subject: [PATCH 05/11] update handbook indices --- data/llama_index_indices/handbook/default__vector_store.json | 1 + data/llama_index_indices/handbook/docstore.json | 2 +- data/llama_index_indices/handbook/image__vector_store.json | 1 + data/llama_index_indices/handbook/index_store.json | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 data/llama_index_indices/handbook/default__vector_store.json create mode 100644 data/llama_index_indices/handbook/image__vector_store.json diff --git a/data/llama_index_indices/handbook/default__vector_store.json b/data/llama_index_indices/handbook/default__vector_store.json new file mode 100644 index 00000000..0ebe2473 --- /dev/null +++ b/data/llama_index_indices/handbook/default__vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"75cf5ad8-bf0e-4b67-b3dd-ed3272881b09": [0.013197319582104683, 0.011916624382138252, -0.05129290744662285, 0.0015251581789925694, -0.059926245361566544, -0.0037623224779963493, 0.04194905608892441, 0.01710866577923298, -0.0034507750533521175, 0.0021076216362416744, 0.027662940323352814, 0.01799507811665535, 0.005806008819490671, 0.09388380497694016, 0.022276535630226135, -0.042984429746866226, 0.03962317481637001, -0.012565327808260918, -0.03009520284831524, -0.0126412408426404, 0.009960923343896866, -0.003316539339721203, -0.02211957424879074, 0.022943269461393356, 0.03884167596697807, -0.03142911568284035, -0.007834000512957573, 0.006806707940995693, 0.05822954326868057, 0.029071465134620667, 0.011245799250900745, 0.03667028620839119, -0.024421261623501778, 0.06730309128761292, 2.666602767931181e-06, -0.02253924123942852, -0.0255073681473732, 0.0651547759771347, -0.00035738974111154675, 0.0071036722511053085, 0.05586494505405426, 0.06463126093149185, -0.03432108461856842, 0.027687326073646545, -0.00422280840575695, 0.012347673065960407, 0.06408198922872543, -0.038231585174798965, -0.005635879002511501, 0.018764812499284744, 0.01216764934360981, 0.002476705936715007, -0.004544748924672604, 0.025622539222240448, 0.07939217239618301, -0.010716111399233341, -0.023915542289614677, 0.035676259547472, 0.09250547736883163, 0.021337470039725304, -0.007780219428241253, 0.019186245277523994, 0.010436645708978176, -0.02176472172141075, 0.08546408265829086, 0.036836639046669006, 0.031333472579717636, -0.05964278057217598, -0.019890103489160538, 0.04386148974299431, 0.09964242577552795, -0.014387082308530807, 0.018956750631332397, 0.0675625205039978, -0.04519946128129959, 0.044540878385305405, -0.009114007465541363, 0.01615305244922638, -0.02366737462580204, -0.014127799309790134, -0.06755916029214859, -0.023387189954519272, -0.02121734991669655, -0.009808759205043316, -0.010196208953857422, 0.05378490313887596, 0.011111889034509659, 0.0050888932310044765, -0.0022714887745678425, -0.012633192352950573, 0.041503310203552246, -0.005553990136831999, -0.018488433212041855, 0.005374212749302387, 0.04124011844396591, -0.030946126207709312, 0.0709194540977478, -0.03350719064474106, 0.039947621524333954, 0.05239507555961609, 0.021039577201008797, 0.016419723629951477, 0.009386011399328709, 0.03144187107682228, 0.013522526249289513, 0.024231281131505966, -0.031978681683540344, -0.013777229934930801, -0.0015118425944820046, 0.03191123157739639, -0.06164884194731712, -0.014614787884056568, -0.01876724883913994, 0.0082896389067173, -0.015833647921681404, -0.018305353820323944, -0.01596655324101448, 0.0651223435997963, -0.0008740675984881818, 0.043280117213726044, -0.009015160612761974, -0.0007007094100117683, -0.07622424513101578, 0.0073512219823896885, -0.026611818000674248, -0.04144176468253136, -0.0029872257728129625, -0.019407445564866066, -0.005407747346907854, -0.05363039672374725, -0.011028994806110859, -0.028966985642910004, 0.0075434171594679356, -0.00829510111361742, -0.021768895909190178, 0.03886948153376579, 0.02834368124604225, 0.004438983742147684, 0.04467706382274628, -0.050939641892910004, 0.02699464000761509, -0.0007342572207562625, 0.031190603971481323, -0.017155589535832405, 0.030024811625480652, -0.004423812963068485, 0.03163539990782738, -0.03662169724702835, -0.0057860082015395164, -0.013893324881792068, 0.023870887234807014, 0.060735009610652924, -0.046504948288202286, -0.00037461696774698794, 0.0077495570294559, 0.044863149523735046, -0.03751463443040848, -0.0058309342712163925, -0.006527798715978861, 0.013699440285563469, 0.012777150608599186, -0.0029669511131942272, 0.06590907275676727, -0.006264827214181423, -0.04062413051724434, -0.05472264438867569, 0.029506392776966095, 0.017336254939436913, 0.05220165476202965, 0.013714788481593132, -0.029780188575387, 0.06008195877075195, -0.0259763915091753, 0.06847142428159714, 0.029628144577145576, 0.03816729411482811, 0.0692356675863266, 0.077093206346035, -0.0005735346931032836, 0.06938095390796661, 0.00023344227520283312, -0.06399952620267868, -0.019872982054948807, 0.06369633227586746, -0.028503000736236572, -0.0014383585657924414, -0.030362624675035477, 0.04768448323011398, -0.025962764397263527, 2.550576709836605e-06, -0.008040416054427624, -0.005936219356954098, -0.029766779392957687, -0.03603257238864899, 0.027470696717500687, -0.014604567550122738, -0.0034326298628002405, -0.10043244063854218, 0.014400409534573555, -0.031149186193943024, 0.001098980545066297, -0.07309112697839737, 0.04708200320601463, 0.04051604121923447, 0.057119715958833694, -0.05894012749195099, -0.01418814156204462, -0.04125640541315079, -0.019018223509192467, 0.05237200856208801, 0.07400474697351456, 0.004444069694727659, -0.030313288792967796, -0.019562838599085808, -0.03390277922153473, -0.01325894519686699, -0.028897536918520927, 0.020471328869462013, -0.036464642733335495, 0.044378168880939484, -0.02805500663816929, -0.0473245233297348, -0.022918930277228355, -0.007100673858076334, -0.012502132914960384, 0.0004699536948464811, -0.010843631811439991, -0.012692255899310112, 0.023712286725640297, 0.0476333387196064, -0.05051697418093681, 0.033965133130550385, 0.02776593342423439, 0.012307017110288143, -0.009299439378082752, 0.028753245249390602, 0.04119332134723663, 0.06807473301887512, 0.008983115665614605, -0.14047597348690033, 0.00810926966369152, 0.0779324397444725, -0.011167927645146847, 0.01446283608675003, 0.04252013936638832, -0.001471757423132658, 0.06348012387752533, 0.018338950350880623, -0.023536281660199165, -0.01994473859667778, 0.00902900192886591, -0.008584197610616684, -0.01669628545641899, 0.06284802407026291, 0.025865379720926285, -7.529435970354825e-05, -0.12766076624393463, 0.028817733749747276, -0.010493259876966476, -0.006015541031956673, 0.022181982174515724, 0.00553593784570694, -0.004540149588137865, 0.03137070685625076, -0.016516201198101044, -0.024216409772634506, -0.0036904457956552505, -0.017315415665507317, -0.03235312178730965, 0.012225219048559666, 0.01342468149960041, 0.007331131957471371, -0.00902249850332737, 0.004712784197181463, -0.006580996327102184, 0.028323626145720482, -0.022679336369037628, -0.0032116887159645557, -0.06464041024446487, 0.02029954269528389, 0.029407307505607605, -0.04502011090517044, -0.005948616657406092, -0.009378204122185707, -0.010163281112909317, 0.02605462819337845, 0.09007398784160614, -0.012021366506814957, -0.0867874026298523, -0.02363232895731926, 0.013706397265195847, -0.02766127698123455, 0.00405226880684495, -0.020405421033501625, -0.021868132054805756, 0.028091760352253914, 0.061468373984098434, 0.006877967156469822, -0.01725730299949646, 0.05100938677787781, 0.02605678141117096, 0.017060108482837677, -0.014950384385883808, -0.01031001377850771, -0.018544897437095642, -0.03053736500442028, 0.028457187116146088, -0.06228460744023323, -0.007800552528351545, -0.062208257615566254, -0.02093554101884365, -0.010412649251520634, -0.026342030614614487, 0.04608077555894852, -0.019221920520067215, -0.02004779875278473, -0.048415932804346085, -0.04922337457537651, -8.461465768050402e-05, 0.06751692295074463, -0.02365160919725895, -0.041498880833387375, 0.04477255046367645, 0.0018843940924853086, -0.007600888609886169, -0.11311432719230652, -0.003849560860544443, -0.02935728430747986, 0.07490259408950806, -0.04572441428899765, 0.023640625178813934, 0.015169112011790276, -0.002873246092349291, -0.0087041687220335, -0.022159185260534286, 0.009976159781217575, -0.009231487289071083, -0.052113793790340424, -0.02720731496810913, -0.009117218665778637, -0.02130822092294693, 0.012313426472246647, -0.01658792607486248, 0.009171050041913986, 0.005104736424982548, 0.0002466095902491361, -0.019374307245016098, -0.008144308812916279, -0.04045502096414566, 0.012609616853296757, 0.10231280326843262, 0.0022542099468410015, 0.012850639410316944, -0.02089824341237545, 0.008512287400662899, -0.04700101539492607, -0.01948850043118, -0.00921667367219925, 0.00012491636152844876, -0.03613615036010742, 0.031071318313479424, 0.03592435643076897, -0.011065931990742683, 0.02152692899107933, -0.05352739989757538, -0.043809469789266586, 0.01848180592060089, -0.027245910838246346, 0.0063282703049480915, 0.0290756244212389, -0.0006068397196941078, 0.018931197002530098, -0.04318292811512947, 0.046386852860450745, 0.014141719788312912, -0.07106874883174896, 0.0016405628994107246, -0.036658234894275665, 0.04100605472922325, 0.011884906329214573, 0.055142395198345184, -0.08504282683134079, 0.09536350518465042, -0.014669487252831459, 0.040440406650304794, -0.032806430011987686, -0.011827899143099785, 0.008946001529693604, 0.018340596929192543, 0.05416041240096092, 0.01275425124913454, -0.06515654921531677, -0.052786536514759064, -0.0451911985874176, -0.000761872623115778, 0.021035384386777878, -0.03154293820261955, 0.03624764829874039, -0.005809433292597532, 0.02373710833489895, 0.020628299564123154, -0.06885935366153717, -0.016998443752527237, -0.006305219139903784, -0.005459484178572893, 0.062128156423568726, 0.06766823679208755, 0.03440301492810249, -0.040956877171993256, -0.04552428051829338, 0.06615860015153885, 0.009964538738131523, 0.03172408416867256, -0.031490832567214966, 0.0172133632004261, 0.015793882310390472, -0.03709257394075394, -0.04055573791265488, 0.02283603511750698, -0.05831234157085419, -0.020212123170495033, 0.011340855620801449, 0.08578958362340927, -0.028861407190561295, 0.002032062504440546, -0.06839162111282349, 0.020634405314922333, 0.04101467505097389, 0.016452712938189507, -0.022930553182959557, -0.02471170388162136, -0.029231544584035873, -0.0017945420695468783, 0.05317704752087593, -0.03714844211935997, -0.05234871432185173, -0.06665162742137909, -0.023635074496269226, -0.01671474613249302, -0.03394350782036781, -0.011616391129791737, 0.01815207302570343, 0.03837214782834053, 0.03067929856479168, -0.04831414297223091, 0.03982095420360565, 0.01917235739529133, -0.07745835185050964, 0.007629745174199343, -0.02660388872027397, 0.00899703148752451, -0.05514666810631752, -0.052703794091939926, -0.012362516485154629, -0.044498853385448456, -0.049291860312223434, -0.07132250815629959, 0.043590180575847626, 0.0005543797742575407, 0.07124312967061996, 0.05258505046367645, 0.0502680204808712, -0.030303359031677246, 0.005311212968081236, 0.0012701191008090973, -0.005669785663485527, -0.030002446845173836, -0.051706843078136444, 0.04935464635491371, -0.030918199568986893, 0.02537296898663044, -0.03766211122274399, -0.0399700365960598, -0.00874965451657772, 0.014172797091305256, -0.01977606490254402, -0.052288636565208435, 0.01142790075391531, -0.055211395025253296, -0.005693110171705484, 0.014139271341264248, 0.018163857981562614, 0.017755351960659027, 0.03373554348945618, -0.023030800744891167, 0.012748196721076965, 0.03938201814889908, 0.016389042139053345, -0.03024863451719284, -0.022922346368432045, 0.01844666339457035, -0.03875693306326866, 0.012918570078909397, 0.02080734632909298, -0.02467135339975357, 0.01991579495370388, -0.02008860744535923, 0.06301689147949219, 0.010731242597103119, 0.07352536916732788, 0.02265923283994198, -0.0026663069147616625, -0.015464519150555134, 0.029500847682356834, -0.0536235012114048, 0.04918202757835388, -0.015293249860405922, 0.019270841032266617, -0.008452964015305042, -0.00757104717195034, -0.007482142187654972, 0.015235455706715584, -0.07928991317749023, -0.07947833091020584, 0.030719712376594543, 0.0027415333315730095, -0.017090903595089912, 0.1017809808254242, -0.005354546941816807, -0.04119638353586197, 0.030607616528868675, -0.017176058143377304, 0.04485943540930748, -0.026607802137732506, 0.0490463562309742, -0.007500916253775358, 0.011661999858915806, 0.006389774847775698, -0.04525190219283104, 0.023758631199598312, -0.03378494456410408, -0.030493251979351044, -0.021177731454372406, -0.028542593121528625, -0.03358931839466095, -0.022821485996246338, 0.01894230768084526, -0.002620992250740528, 0.0026901299133896828, -0.033164266496896744, -0.046059634536504745, -0.03320370987057686, 0.058124031871557236, 0.03815600275993347, 0.011469457298517227, -0.03663970157504082, 0.08130135387182236, 0.014960496686398983, 0.01729719527065754, -0.043200619518756866, 0.022899573668837547, 0.00481393001973629, -0.009763629175722599, -0.006587280426174402, 0.036769505590200424, -7.02366690823948e-33, 0.004355832934379578, -0.031242497265338898, 0.009164967574179173, 0.019556377083063126, -0.05313606932759285, -0.020308738574385643, -0.010638697072863579, -0.018793432042002678, -0.04342087358236313, -0.015485386364161968, -0.01918482594192028, 0.012517375871539116, 0.015951748937368393, -0.011027345433831215, 0.016155337914824486, 0.014913595281541348, 0.02005474828183651, 0.00860897358506918, 0.006577108055353165, 0.02688799798488617, -0.020633546635508537, -0.0016954450402408838, -0.00883642677217722, -0.028966404497623444, 0.03888249769806862, -0.030415816232562065, -0.032697200775146484, -0.0047141085378825665, -0.00763891264796257, 0.019909752532839775, -0.011346286162734032, -0.008779267780482769, -0.022946028038859367, 0.0019413625122979283, 4.2363345187368395e-07, 0.08684296160936356, -0.07829148322343826, -0.005702169146388769, -0.007922903634607792, -0.017446454614400864, 0.016478504985570908, -0.04070822522044182, -0.008729399181902409, -0.02165897935628891, -0.04817720502614975, -0.0003468292998149991, 0.06400596350431442, 0.011189078912138939, -0.004020283930003643, -0.013114907778799534, -0.0634278953075409, 0.0038401444908231497, -0.060257673263549805, 0.06682352721691132, 0.014051704667508602, 0.0029814946465194225, 0.027031823992729187, -0.06983467936515808, -0.043214019387960434, 0.025903187692165375, -0.017630480229854584, 0.004777177702635527, 0.038103342056274414, -0.011556228622794151, 0.006649181246757507, 0.013264656066894531, -0.02364457957446575, 0.06270265579223633, 0.001823684899136424, -0.004584882874041796, -0.012584547512233257, 0.03695857897400856, 0.020222345367074013, 0.0008308444521389902, -0.018412230536341667, -0.018719380721449852, -0.07406149059534073, 0.055995404720306396, 0.06373170763254166, 0.06542813777923584, 0.04722865670919418, -0.005354403052479029, -0.04459652677178383, -0.01184480544179678, -0.0018215326126664877, 0.004401829093694687, -0.03337772190570831, -0.010677444748580456, -0.027806356549263, -0.011535774916410446, -0.020433159545063972, -0.00798418466001749, -0.0018485249020159245, -0.011489246971905231, 0.07150200009346008, -0.030305206775665283, 0.01571926288306713, 0.02501203492283821, -0.021139318123459816, -0.020153546705842018, -0.017954230308532715, -0.035226669162511826, -0.03681016340851784, 0.06205355003476143, 0.05112644284963608, -0.01272638700902462, -0.023627489805221558, 0.03299469128251076, -0.06029938906431198, 0.01757805049419403, -0.037086114287376404, 0.01894436404109001, 0.01113010011613369, -0.029754137620329857, -0.006937161087989807, -0.0022143435198813677, 0.02063373476266861, -0.0007965625263750553, -0.02255704253911972, -0.006709257606416941, -0.0037850334774702787, 0.08123374730348587, -0.03359029442071915, 0.01446647197008133, -0.038111940026283264, -0.01729174517095089, -0.010973804630339146, 0.06386373192071915, 0.09262485057115555, -0.015203380957245827, -0.023557031527161598, -0.03779609501361847, 3.360087532655598e-07, 0.050000838935375214, 0.025384822860360146, 0.02970319427549839, 0.011410641483962536, 0.010234630666673183, -0.04014120250940323, -0.002415135269984603, 0.04711233451962471, 0.003442081855610013, 0.025341585278511047, 0.027620583772659302, 0.01426251232624054, -0.00261117285117507, -0.019487353041768074, -0.040296562016010284, -0.13432276248931885, -0.038550037890672684, 0.004194260574877262, -0.03524244576692581, 0.0065349373035132885, 0.051682986319065094, -0.007705185562372208, 0.05551620572805405, 0.0028094113804399967, -0.0415169782936573, -0.014174388721585274, 0.0002139783464372158, -0.03744787350296974, 0.09276393055915833, 0.06432262063026428, -0.010142005048692226, 0.005811062175780535, -0.021548330783843994, -0.013270282186567783, 0.038554269820451736, -0.044515371322631836, -0.027330845594406128, 0.047166578471660614, 0.024499034509062767, 0.014073282480239868, 0.009495683945715427, 0.0031514752190560102, -0.014277508482336998, -0.014138844795525074, 0.02876734919846058, 0.02723219431936741, -0.03233030065894127, 0.03271358087658882, -0.05296644568443298, -0.05234190449118614, 0.003337505040690303, -0.0016157063655555248, 0.023317771032452583, -0.010606612078845501, -0.020965009927749634, -0.028297727927565575, -0.013960710726678371, -0.02357529290020466, 0.04345013573765755, -0.007201276253908873, -0.06453879922628403, -0.0724220871925354, -0.0063574486412107944, 0.026494381949305534, 0.033374231308698654, -0.03701590746641159, -0.006677079014480114, 3.5817797301797334e-34, 0.03133516386151314, -0.0479588583111763, -0.009898975491523743, 0.03421560302376747, 0.009135217405855656, 0.004457641858607531, 0.03634941205382347, -0.01748277060687542, 0.01999487727880478, -0.03341665863990784, -0.059146083891391754], "d0a13454-b117-45a1-a7f3-c088eaae7dce": [0.07929576933383942, -0.0421525314450264, -0.03357512131333351, -0.004955115262418985, 0.003793775336816907, 0.0627126395702362, -0.026013728231191635, 0.036632560193538666, -0.022246621549129486, -0.022627875208854675, 0.012679950334131718, -0.0025941338390111923, 0.0016182922990992665, -0.00903632678091526, -3.382071736268699e-05, 0.015573736280202866, 0.06154296547174454, -0.004598453640937805, 0.03008401021361351, 0.006062746047973633, -0.019495386630296707, 0.022638123482465744, 0.022665563970804214, -0.025876741856336594, 0.027805976569652557, 0.005767174065113068, -0.016181500628590584, 0.02881791815161705, -0.019046340137720108, -0.06706441193819046, 0.004035377409309149, 0.004158736672252417, 0.023860163986682892, 0.01853085309267044, 1.8662749425857328e-06, -0.039796777069568634, -0.024984676390886307, 0.018897144123911858, -0.013331187888979912, -0.04605189710855484, 0.05731990933418274, -0.005540944170206785, -0.07773208618164062, 0.007716126274317503, 0.022226382046937943, -0.0002994132228195667, 0.019761856645345688, 0.08393926173448563, -0.0048478227108716965, 0.11549416184425354, 0.019232654944062233, -0.029154224321246147, 0.041985608637332916, -0.034298334270715714, 0.11564543843269348, -0.05202559381723404, 0.013071106746792793, 0.13045340776443481, 0.014321273192763329, 0.05292671546339989, 0.04757873713970184, -0.00911788735538721, -0.02884969487786293, -0.008323723450303078, 0.014528016559779644, -0.004110611043870449, 0.03940271586179733, -0.06982794404029846, 0.016777586191892624, 0.045191649347543716, 0.08258643001317978, 0.010862097144126892, 0.012661602348089218, 0.06395082175731659, -0.038659222424030304, -0.037967536598443985, -0.0077557312324643135, 0.05784541368484497, 0.01639440841972828, 0.012059384025633335, -0.038182538002729416, -0.017051583155989647, 0.008266338147222996, -0.0025455434806644917, 0.012398545630276203, 0.0044621736742556095, -0.010141025297343731, -0.06214572489261627, 0.026429740712046623, -0.027823150157928467, 0.021531514823436737, -0.036385428160429, 0.01081896387040615, -0.003803232219070196, 0.07312372326850891, -0.007843737490475178, -0.01799158751964569, -0.10812702029943466, 0.046643875539302826, 0.002842780901119113, -0.042920034378767014, -0.014355123974382877, -0.010459065437316895, 0.06143855303525925, 0.0017887437716126442, 0.02591087482869625, 0.0073565589264035225, -0.01743321307003498, 0.020645204931497574, 0.07634016871452332, -0.03921855613589287, -0.029998034238815308, -0.06046422943472862, -0.012102806009352207, -0.03536929935216904, -0.02226763404905796, 0.0031453301198780537, 0.038122452795505524, 0.015603111125528812, -0.004901654552668333, -0.002128504915162921, -0.026999667286872864, -0.02423480898141861, 0.05698126181960106, -0.010984450578689575, -0.04023003578186035, 0.035755354911088943, 0.007214630022644997, 0.016470590606331825, 0.00807921215891838, -0.015782805159687996, 0.0479925237596035, 0.0042641619220376015, -0.012399326078593731, -0.009553240612149239, 0.09818223118782043, 0.034495577216148376, -0.06117852404713631, 0.04384922981262207, -0.03574583679437637, 0.06039946526288986, -0.04072128236293793, -0.033250872045755386, -0.022678395733237267, 0.009182886220514774, 0.02345409244298935, 0.00015193525177892298, -0.028067249804735184, -0.0059122429229319096, 0.0005400108057074249, -0.0902617871761322, 0.020473061129450798, -0.013822987675666809, -0.016462227329611778, 0.027805063873529434, -0.022279154509305954, -0.03900621831417084, -0.040995921939611435, -0.008366755209863186, 0.014668334275484085, 0.025084104388952255, 0.020537354052066803, 0.04928237199783325, -0.05334077402949333, 0.005121962632983923, -0.03966951742768288, 0.06713838130235672, 0.0051309880800545216, 0.06161539629101753, 0.02796475775539875, 0.023490367457270622, 0.04609009250998497, -0.0336739681661129, 0.016547413542866707, -0.0034922172781080008, 0.1159093827009201, 0.08229152113199234, 0.027153469622135162, -0.032318662852048874, 0.06326957046985626, -0.009257098659873009, -0.06592115759849548, 0.010937415063381195, -0.007887215353548527, -0.04198848456144333, -0.03136546164751053, -0.01963123120367527, -0.00951441004872322, 0.03894626349210739, -8.144916137098335e-06, -0.02192203886806965, -0.02300284244120121, -0.012177477590739727, -0.09729721397161484, 0.00789421796798706, 0.0005598471616394818, -0.05494831129908562, -0.08310669660568237, 0.01800396293401718, -0.026179837062954903, 0.04131671413779259, 0.00947992317378521, 0.06126711890101433, -0.026081666350364685, 0.04569167271256447, -0.02042427659034729, 0.04279820993542671, -0.013167920522391796, 0.026418764144182205, -0.0067342608235776424, 0.01543793361634016, 0.003006663639098406, -0.01992710679769516, -0.03165285289287567, -0.00816167052835226, -0.0018190138507634401, -0.000543507921975106, -0.010446501895785332, -0.0339188426733017, -0.010584484785795212, 0.025632686913013458, -0.04271373152732849, -0.02590838447213173, 0.015269610099494457, 0.027266832068562508, -0.05859459564089775, -0.08306989073753357, -0.0025630018208175898, 0.028134234249591827, -0.003583749756217003, -0.05493159964680672, 0.034656986594200134, 0.04265206679701805, 0.059858255088329315, -0.01131526194512844, 0.055198900401592255, 0.03610806539654732, 0.03175608813762665, -0.003970257006585598, -0.11463547497987747, -0.015414373949170113, 0.04631111025810242, 0.04702914133667946, 0.022308798506855965, 0.0589156337082386, -0.03562123700976372, 0.008445806801319122, 0.0018770587630569935, 0.0257872361689806, 0.020998161286115646, 0.06647811830043793, -0.004657689481973648, 0.013390895910561085, 0.06133584678173065, 0.005090577062219381, 0.027861671522259712, -0.11746617406606674, 0.014642619527876377, -0.047727879136800766, -0.022402193397283554, 0.059762198477983475, -0.006405363325029612, -0.03368132933974266, 0.023802949115633965, 0.02567807026207447, 0.016439156606793404, -0.07535266876220703, 0.01599504053592682, -0.028009848669171333, -0.002536060521379113, 0.00887386966496706, -0.002377175958827138, 0.00483533414080739, -0.012744957581162453, 0.013208542950451374, 0.03588340803980827, -0.033680565655231476, -0.013031178154051304, -0.03625774383544922, 0.010353783145546913, 0.03295798599720001, -0.005131922662258148, -0.038752611726522446, -0.013348042033612728, -0.05563969165086746, 0.02650817111134529, 0.013279091566801071, -0.013030657544732094, -0.07429690659046173, -0.05339963361620903, -0.016642898321151733, 0.028076089918613434, 0.002210671082139015, -0.04336527734994888, -0.0056434315629303455, 0.016599012538790703, -0.024107707664370537, -0.02267313562333584, 0.01718117482960224, 0.08350274711847305, 0.022017166018486023, 0.019930437207221985, -0.021030746400356293, -0.014043481089174747, 0.0003032386885024607, 0.03511838987469673, -0.002294456120580435, -0.03631678968667984, 0.024814356118440628, -0.014828691259026527, 0.029460765421390533, 0.02573947049677372, 0.0025720999110490084, -0.022884145379066467, -0.021365543827414513, -0.05991586297750473, -0.04146557301282883, -0.07580374926328659, 0.00537802092730999, 0.041204020380973816, 0.014122451655566692, 0.008111328817903996, 0.00483990041539073, -0.0035222701262682676, -0.0005311450804583728, -0.09273291379213333, -0.0035787445958703756, -0.01457573939114809, 0.03939065337181091, 0.010390598326921463, 0.021701380610466003, 0.0042108348570764065, -0.01904832012951374, 0.016182513907551765, -0.00746995909139514, 0.020353205502033234, 0.00891133677214384, -0.08231031894683838, 0.029178231954574585, 0.0013738480629399419, -0.014658869244158268, 0.03315001726150513, 0.02170833759009838, 0.00858965702354908, 0.003011472523212433, -0.0014650836819782853, -0.011555151082575321, 0.0121749397367239, -0.11384392529726028, 0.008930349722504616, 0.04212455824017525, -0.019068554043769836, 0.01571475900709629, -0.0256840568035841, -0.03863166645169258, 0.03486713394522667, 0.036509908735752106, -0.01150522194802761, 0.03794238716363907, -0.007549538277089596, 0.03105795383453369, 0.03589065745472908, -0.026013465598225594, 0.03547193482518196, -0.010474956594407558, 0.0590943917632103, -0.023395821452140808, 0.00838701892644167, 0.017308982089161873, -0.004268607124686241, -0.01577138714492321, -0.0027220374904572964, 0.021094411611557007, 0.05518506467342377, 0.03733648359775543, -0.026062075048685074, 0.005494424607604742, -0.06034056097269058, -0.02725876122713089, -0.005485197063535452, 0.015337091870605946, -0.030138419941067696, 0.044758789241313934, 0.01421893946826458, -0.01127299852669239, 0.022388314828276634, 0.01073975395411253, 0.023604312911629677, 0.0619693361222744, -0.007424457930028439, 0.02379562333226204, 0.0047813705168664455, -0.07706227153539658, -0.06994703412055969, -0.0270110871642828, 0.002485913224518299, -0.025028392672538757, 0.025936100631952286, 0.019331125542521477, -0.0189609806984663, 0.006827667821198702, 0.06113483011722565, 0.032670892775058746, 0.037722621113061905, -0.00831674039363861, 0.07293836027383804, 0.06580508500337601, 0.026625508442521095, 0.012051146477460861, 0.036342743784189224, 0.09719844907522202, 0.040201108902692795, 0.010691092349588871, 0.026895098388195038, 0.02495196834206581, -0.012218478135764599, 0.020120777189731598, -0.03669287636876106, -0.020448999479413033, -0.07491687685251236, -0.04530185088515282, -0.029672278091311455, 0.05117177218198776, 0.008696960285305977, 0.004350215662270784, -0.05868719145655632, 0.04679049551486969, -0.018193598836660385, 0.035241711884737015, -0.04635469987988472, 0.0675140991806984, -0.01728062331676483, -0.03487735241651535, 0.02185184881091118, -0.0005650130333378911, 0.03777448087930679, 0.0035086744464933872, -0.04536982625722885, -0.029308758676052094, -0.05327028036117554, -0.01982797496020794, 0.010820170864462852, 0.03368796035647392, -0.016027651727199554, -0.022925375029444695, 0.06609819829463959, 0.009178039617836475, -0.01757773943245411, 0.01096521969884634, 0.020834265276789665, -0.02658933959901333, -0.08254706114530563, -0.061153195798397064, -0.00156758155208081, -0.014870391227304935, -0.012804077006876469, -0.01019469927996397, -0.018700281158089638, -0.034319303929805756, -0.009105666540563107, -0.030949080362915993, 0.049593228846788406, -0.048510778695344925, -0.038658641278743744, -0.02317110076546669, -0.04405966028571129, -0.008134232833981514, -0.09341876953840256, 0.04402165859937668, 0.03515273705124855, -0.054175131022930145, -0.02286997064948082, -0.01016437727957964, 0.0002946284075733274, 0.04261365905404091, -0.07956978678703308, -0.03395635262131691, -0.02649693377315998, 0.017932536080479622, -0.009671507403254509, 0.02922365628182888, -0.023332539945840836, 0.04686857759952545, -0.028386816382408142, -0.011454137042164803, 0.012055139057338238, -0.025807999074459076, 0.027472766116261482, -0.007449739146977663, -0.031294312328100204, 0.0020473995245993137, 0.008779413998126984, 0.01111376192420721, 0.004124426282942295, 0.017493683844804764, -0.021071618422865868, 0.027478229254484177, -0.0065352339297533035, 0.029738737270236015, 0.002300081541761756, 0.04377828538417816, -0.046569887548685074, 0.026522357016801834, 0.02027251571416855, -0.08235481381416321, 0.007781952619552612, -0.020457878708839417, -0.04134901985526085, 0.017796065658330917, -0.03407496586441994, -0.02662561647593975, -0.023618550971150398, -0.0756242573261261, 0.037798888981342316, 0.023753732442855835, -0.007101206108927727, 0.04606078192591667, -0.030922822654247284, 0.03671930357813835, -0.008452688343822956, 0.01601399853825569, -0.0013099352363497019, 0.036105554550886154, -0.04147280007600784, -0.008793072775006294, 0.044335026293992996, 0.012732299044728279, 0.020280631259083748, 0.06128041073679924, 0.03801663964986801, -0.04214773327112198, 0.04812713339924812, 0.029949000105261803, -0.026224225759506226, -0.02893618866801262, 0.0027424341533333063, 0.00857703760266304, 0.019287653267383575, -0.025002844631671906, 0.022085949778556824, 0.05501025915145874, -0.03416575491428375, 0.04746275022625923, 0.05936579406261444, 0.0452498234808445, 0.025611434131860733, 0.004050645045936108, 0.04424315690994263, -0.007490257732570171, -0.07317415624856949, 0.005210384260863066, 0.0012258632341399789, -0.04911298304796219, 0.0015332651091739535, 0.04753772169351578, -5.134269858907862e-33, 0.0004235634987708181, 0.0013719841372221708, -0.00019752493244595826, 0.043922241777181625, -0.0264899805188179, 0.00435842527076602, -0.04434746876358986, -0.038651254028081894, -0.027644408866763115, -0.011499579064548016, -0.017981642857193947, -0.01633496955037117, 0.0026706294156610966, -0.04300409555435181, 0.0015068072825670242, 0.019460035488009453, -0.0457347072660923, 0.007490902673453093, -0.00266746967099607, -0.04562177509069443, 0.005727034993469715, -0.03451850637793541, 0.018629388883709908, 0.013795427046716213, -0.013031002134084702, -0.017654577270150185, -0.023106692358851433, -0.026387246325612068, 0.04122154414653778, 0.047246430069208145, -0.029207594692707062, -0.032527875155210495, -0.026710547506809235, 0.03988261520862579, -0.021761704236268997, 0.0371931791305542, -0.0501832589507103, -0.016564255580306053, 0.0020542433485388756, 0.006886591669172049, 0.0226825512945652, 0.0066668810322880745, -0.0232296921312809, -0.02598315291106701, 0.029952220618724823, 0.05907033383846283, 0.014412001706659794, 0.01942448690533638, -0.02217026613652706, 0.002952286973595619, -0.04203365370631218, 0.007736478000879288, -0.03926093503832817, 0.07134578377008438, -0.009054915979504585, -0.04001614451408386, 0.02197512984275818, 0.009250211529433727, -0.016712723299860954, -0.012639784254133701, -0.002110645640641451, 0.026113275438547134, 0.024964170530438423, -0.061932239681482315, 0.006827952805906534, 0.006936113350093365, -0.007803329266607761, 0.03392328321933746, 0.030726267024874687, 0.041490454226732254, -0.010667379945516586, -0.032181739807128906, -0.02831418067216873, -0.02359459549188614, -0.03724966198205948, -0.018466925248503685, -0.02150813117623329, 0.020243175327777863, 0.09967738389968872, 0.08454371988773346, 0.029795031994581223, 0.012264764867722988, -0.007090583443641663, 0.01912272535264492, -0.017766878008842468, 0.009036006405949593, -0.023102516308426857, -0.053416330367326736, -0.04224172234535217, -0.0007804487831890583, 0.046012867242097855, -0.011204705573618412, -0.012212619185447693, 0.006922508589923382, 0.0020605779718607664, -0.0042158435098826885, -0.03952758014202118, 0.0024571416433900595, -0.042690474539995193, -0.05777166038751602, -0.00546643603593111, -0.02419149875640869, 0.048340048640966415, -0.02321319468319416, 0.041801124811172485, 0.0024415573570877314, 0.026630720123648643, 0.00634491303935647, -0.017408838495612144, -0.03236882761120796, -0.0027183364145457745, 0.007433504797518253, 0.04877573251724243, 0.019501710310578346, -0.003488911548629403, -0.015896914526820183, -0.0034564484376460314, -0.02991333231329918, -0.03230450302362442, -0.013010584749281406, 0.004171108826994896, 0.0525694377720356, -0.020490216091275215, 0.003180632134899497, -0.050226666033267975, -0.01980331353843212, -0.046917833387851715, 0.0576060451567173, 0.08043213188648224, -0.008682711981236935, 0.00014903295959811658, 0.04230258986353874, 2.678764019492519e-07, 0.02726026624441147, 0.04811141639947891, 0.036240655928850174, 0.014469650574028492, -0.024136384949088097, -0.048756763339042664, -0.04382534325122833, 0.006501819007098675, -0.021716410294175148, 0.042065978050231934, 0.02955513447523117, -0.004537287168204784, -0.011978685855865479, -0.049633488059043884, -0.03644983470439911, -0.019865931943058968, -0.06644140183925629, -0.03997577354311943, 0.015496691688895226, -0.0006304284906946123, 0.015298069454729557, 0.07444456964731216, 0.04256530851125717, 0.02376527711749077, -0.0451449491083622, 0.014373899437487125, -0.035604432225227356, -0.04025041684508324, 0.03322227671742439, -0.017197294160723686, 0.028617598116397858, 0.0024914529640227556, -0.03898964077234268, -0.02198331244289875, -0.02515088953077793, -0.023538708686828613, -0.03009333647787571, 0.012282556854188442, 0.005642674397677183, 0.03116932138800621, -0.015991277992725372, 0.017048824578523636, -0.011760405264794827, 0.004192041233181953, -0.005375067703425884, 0.06108501926064491, -0.02201877534389496, -0.03064686991274357, -0.08393854647874832, -0.017823414877057076, -0.022590847685933113, 0.02130899205803871, 0.0059178913943469524, -0.0014045718125998974, -0.015543552115559578, -0.029065947979688644, 0.03897937387228012, -0.04863276332616806, 0.042303938418626785, 0.005151109769940376, -0.019627051427960396, -0.004679811652749777, -0.009094004519283772, 0.02244052290916443, 0.10914726555347443, -0.03459527716040611, 0.02021014876663685, 2.475983240400332e-34, 0.0508471317589283, -0.057317815721035004, -0.001399526372551918, -0.028809133917093277, 0.013105776160955429, -0.020086679607629776, 0.020895877853035927, -0.0007618634845130146, -0.05866769701242447, -0.09452410042285919, -0.030870940536260605], "3c7bf40c-c5e4-40db-80b2-dbb4e0f11289": [0.058521587401628494, 0.009091539308428764, -0.06112015247344971, 0.016899362206459045, 0.0027103254105895758, 0.01905578374862671, 0.02110237628221512, 0.06142585724592209, -2.5106144676101394e-05, -0.0031910627149045467, 0.02542474865913391, 0.01008653361350298, -0.012045525014400482, 0.07827989012002945, -0.008890016935765743, -0.0030066550243645906, 0.031375594437122345, 0.001500888029113412, 0.019495755434036255, -0.02284439466893673, -0.03176257759332657, 0.04195033758878708, 0.023665226995944977, -0.0025161022786051035, 0.06965810060501099, -0.01830502599477768, 0.02068755216896534, 0.016774313524365425, 0.028221502900123596, -0.022796792909502983, -0.03859375789761543, 0.05527696758508682, -0.031339380890131, 0.05544860288500786, 2.5889721655403264e-06, -0.01421097107231617, -0.03868624567985535, -0.01724325306713581, -0.00896071083843708, 0.0045408084988594055, 0.047655634582042694, 0.0559331513941288, -0.04109295457601547, 0.02328454703092575, -0.05185423418879509, 0.003523712744936347, 0.025152308866381645, 0.010566647164523602, -0.04256695881485939, 0.044871989637613297, 0.014761346392333508, -0.015682170167565346, 0.013925952836871147, -0.013617968186736107, 0.13586609065532684, -0.01574878953397274, -0.019350342452526093, 0.026940617710351944, 0.04402046278119087, 0.032037489116191864, 0.01632535457611084, 0.07457932829856873, -0.010224121622741222, 0.012357166968286037, 0.05423147976398468, 0.02427658811211586, 0.05246727913618088, -0.11887678503990173, 0.013268363662064075, 0.0533740371465683, 0.07981006056070328, -0.03860766813158989, 0.04467083886265755, 0.05710848420858383, -0.06365663558244705, 0.06792579591274261, -0.016529330983757973, 0.03900333121418953, -0.011270970106124878, 0.010833756998181343, -0.05489441379904747, -0.014840299263596535, -0.006146957632154226, 0.004815900698304176, 0.02850889042019844, 0.005802956875413656, -0.01031433418393135, -0.023029234260320663, 0.01817292347550392, -0.035399630665779114, 0.0671122744679451, -0.03671153262257576, 0.012787352316081524, -0.012427358888089657, 0.06454682350158691, -0.01906839944422245, 0.018217820674180984, -0.04050135612487793, 0.03518112003803253, 0.012251552194356918, 0.02976701781153679, 0.015429509803652763, -0.0022829738445580006, 0.013516844250261784, 0.004857150372117758, 0.006001431494951248, -0.021335473284125328, -0.057175394147634506, 0.013194992206990719, 0.0937090516090393, -0.042880382388830185, 0.0011000307276844978, 0.012852645479142666, 0.0025388665962964296, -0.0014248145744204521, -0.02523939684033394, -0.025479290634393692, 0.0650610402226448, -0.017085380852222443, 0.049990370869636536, -0.00443305866792798, 0.005920597817748785, -0.059723272919654846, 0.026584425941109657, 0.0020872715394943953, -0.022829774767160416, 0.023399678990244865, -0.03959072008728981, -0.007224287372082472, -0.04077375307679176, -0.005257781594991684, -0.009506989270448685, 0.03925597295165062, 0.012405012734234333, -0.026167450472712517, 0.05984112620353699, 0.015146895311772823, -0.04994174838066101, 0.055554263293743134, -0.057707514613866806, 0.015414255671203136, 0.004267738200724125, 0.020325494930148125, -0.03348168730735779, 0.02506249211728573, 0.01280524767935276, 0.025584280490875244, -0.01782509684562683, 0.006379222963005304, 0.03834838047623634, -0.03720038756728172, 0.05226430296897888, -0.026981927454471588, 0.010794217698276043, 0.011683288961648941, 0.0351700522005558, 0.0022880309261381626, 0.029456473886966705, 0.0015860249986872077, 0.020571105182170868, 0.061792027205228806, 0.016947275027632713, 0.018367448821663857, -0.021069958806037903, -0.009614161215722561, -0.027917493134737015, 0.020869558677077293, -0.028644241392612457, 0.001316472771577537, -0.00040169915882870555, -0.012785330414772034, 0.05154659226536751, -0.025559822097420692, 0.04295404627919197, 0.017868002876639366, 0.04362799599766731, 0.04465591907501221, 0.06598366796970367, -0.0011321051279082894, 0.02169203758239746, -0.0024691743310540915, -0.028529252856969833, -0.03485577926039696, 0.018251506611704826, -0.10371757298707962, -0.0015573648270219564, 0.012821965850889683, 0.025328654795885086, -0.013283546082675457, 0.007407606113702059, -0.00560598773881793, 0.0038747102953493595, 0.043439652770757675, -0.06297121196985245, 0.013889366760849953, 0.0028790177311748266, -0.059042904525995255, -0.09363221377134323, -0.010061659850180149, -0.031127354130148888, 0.028796188533306122, -0.05131520703434944, 0.03199059143662453, 0.08883745968341827, 0.0470639169216156, -0.033365461975336075, 0.025092346593737602, -0.022809922695159912, 0.01311587542295456, 0.05274343490600586, 0.06525775790214539, 0.016757527366280556, -0.05119384452700615, -0.015582382678985596, -0.03971905633807182, -0.011499108746647835, -0.007306350860744715, -0.013935262337327003, -0.008993860334157944, 0.05911652743816376, 0.002936258912086487, -0.07910255342721939, 0.0064686015248298645, -0.005517767742276192, 0.029211731627583504, -0.011498997919261456, -0.05965392291545868, 0.011587686836719513, 0.0275556817650795, 0.04654252901673317, -0.004791806451976299, 0.005563977640122175, 0.0331173911690712, 0.018522098660469055, -0.048641908913850784, 0.006553559098392725, -0.005321322940289974, 0.018551519140601158, 0.0034009648952633142, -0.14667685329914093, -0.02094615064561367, 0.10898301005363464, 0.01786741428077221, 0.02572508528828621, 0.04206307604908943, -0.00624260725453496, 0.07622648775577545, 0.004643573425710201, -0.0006528529338538647, 0.022220101207494736, 0.030481558293104172, 0.0006508420337922871, 0.04556208848953247, 0.003544648177921772, -0.0069237579591572285, 0.03187039867043495, -0.15825513005256653, -0.04242054373025894, -0.04035729914903641, 0.04789365455508232, 0.0047975038178265095, 0.008411434479057789, -0.016157599166035652, 0.01595943048596382, 0.010930836200714111, -0.020154396072030067, -0.015127308666706085, -0.018299829214811325, -0.02283083088696003, -0.002494500484317541, 0.01288952212780714, 0.01602036878466606, 0.05203746631741524, -0.014615104533731937, 0.017131568863987923, 0.03795188292860985, -0.007099964190274477, 0.0370388925075531, -0.008819283917546272, -0.013771283440291882, -0.006539246533066034, -0.04752793163061142, -0.03582638129591942, -0.011968708597123623, -0.04783090204000473, -1.3581173334387131e-05, 0.03503134474158287, -0.10972510278224945, -0.01019299030303955, -0.021321283653378487, -0.02399672195315361, -0.005902301520109177, 0.013520544394850731, -0.044117558747529984, -0.03091241605579853, 0.008411344140768051, -0.0029533617198467255, 0.012574287131428719, -0.004972370807081461, 0.08233845978975296, 0.009482696652412415, 0.004218220245093107, -0.013295307755470276, 0.007209561299532652, -0.022496405988931656, -0.019024845212697983, 0.011618398129940033, -0.058840129524469376, -0.011469591408967972, -0.07010803371667862, 0.030155044049024582, 0.03397507593035698, -0.02885196916759014, -5.6730561482254416e-05, -0.011039034463465214, -0.0338970385491848, -0.016914624720811844, -0.03420856222510338, 0.010363050736486912, 0.0747346580028534, 0.005859777797013521, -0.006278808694332838, 0.006849653087556362, 0.026839479804039, 0.02673504501581192, -0.02631075493991375, -0.011544222012162209, 0.003429603297263384, 0.06634355336427689, 0.019289860501885414, 0.045794691890478134, 0.008222189731895924, -0.014894912950694561, 0.0003431491495575756, 0.00197464763186872, 0.019866254180669785, -0.03550766408443451, -0.010040764696896076, 0.021744078025221825, -0.006655803881585598, -0.012835212983191013, 0.06413210183382034, 0.0006550878169946373, -0.02722642570734024, -0.0279146246612072, -0.02697300724685192, -0.053792644292116165, -0.02381371334195137, -0.06531091034412384, 0.009029743261635303, 0.029469234868884087, -0.008165813982486725, 0.013030266389250755, -0.04646311327815056, -0.019450603052973747, -0.009329559281468391, 0.003095761639997363, -0.02926720306277275, -0.03554945066571236, -0.03029303066432476, 0.05300221964716911, 0.049238789826631546, -0.005455769598484039, 0.017147809267044067, -0.005888286978006363, 0.017631109803915024, 0.020286139100790024, -0.03618388622999191, 0.013227156363427639, 0.04711517319083214, 0.003278145333752036, 0.026443837210536003, 0.008749698288738728, 0.07784850895404816, 0.03668580204248428, -0.015497426502406597, 0.00793389230966568, 0.013955723494291306, 0.01004922017455101, -0.03442170470952988, 0.022384626790881157, -0.09564141929149628, 0.056246738880872726, -0.009123237803578377, 0.003330304054543376, 0.0011814667377620935, -0.003348811762407422, 0.0049843331798911095, -7.789345545461401e-05, 0.0006389817572198808, 0.021966425701975822, -0.06372103095054626, -0.04413417726755142, -0.02419113926589489, -0.019975755363702774, 0.008924175053834915, -0.015184505842626095, -0.008684963919222355, -0.06006116047501564, 0.00881948322057724, -0.019213281571865082, -0.010717528872191906, -0.019814368337392807, 0.008286291733384132, -0.010218772105872631, 0.047568030655384064, 0.03615697845816612, 0.056237924844026566, -0.019822172820568085, -0.04381885379552841, 0.05840759724378586, 0.03398367762565613, 0.025131862610578537, -0.0161361675709486, 0.060538601130247116, -0.03361118212342262, 0.011563794687390327, -0.042336221784353256, 0.0046421498991549015, -0.046595845371484756, -0.05066349357366562, -0.017753291875123978, 0.055538665503263474, -0.0070481253787875175, -0.010663370601832867, -0.026347996667027473, 0.06659651547670364, -0.016435902565717697, 0.03224184364080429, -0.011699602007865906, 0.013051492162048817, -0.02755226381123066, -0.04508274048566818, 0.06575939804315567, -0.018992509692907333, -0.06860977411270142, -0.026063185185194016, -0.03833474963903427, -0.0898781344294548, -0.05059399828314781, 0.0031298757530748844, -0.010304901748895645, 0.02204073779284954, -0.005298898089677095, -0.02981742098927498, 0.05901004746556282, 0.04377981275320053, -0.045751333236694336, -0.05080312117934227, -0.08391532301902771, -0.019454507157206535, -0.029199952259659767, -0.053579993546009064, -0.030384939163923264, -0.020723557099699974, 0.0026395900640636683, -0.02931038849055767, 0.030971307307481766, -0.0128543796017766, 0.026818178594112396, -0.02242193929851055, 0.06838250160217285, -0.008230938576161861, -0.011051028966903687, -0.017543619498610497, 0.0405091755092144, 0.03143249452114105, -0.04120790213346481, 0.04795600101351738, 0.015232393518090248, 0.01491650938987732, -0.018507294356822968, -0.004547690972685814, -0.03217947110533714, 0.001463960506953299, -0.051458731293678284, -0.024177134037017822, -0.0018122000619769096, -0.016873199492692947, -0.02065802738070488, -6.71244997647591e-05, -0.013114175759255886, 0.017120983451604843, -0.0023028296418488026, -0.018530026078224182, 0.006299223750829697, -0.00832363124936819, 0.0459585003554821, 0.0010867280652746558, -0.027924027293920517, 0.027761241421103477, -0.003297532442957163, -0.01105799525976181, -0.050891388207674026, -0.03500009700655937, 0.03433506563305855, -0.0787152349948883, 0.006346679758280516, -0.012605619616806507, 0.042822420597076416, -0.011537694372236729, -0.04967333748936653, -0.009495207108557224, 0.0976325199007988, -0.03089018352329731, -0.004667434375733137, -0.0058995746076107025, 0.01654975302517414, -0.013430549763143063, 0.0159200057387352, -0.019135894253849983, 0.04202742874622345, -0.10580532252788544, -0.08361271768808365, 0.0445474237203598, 0.010188216343522072, 0.03901385888457298, 0.006803027354180813, 0.03818098455667496, -0.004281522706151009, 0.007982729934155941, 0.030896686017513275, 0.027577703818678856, -0.013374365866184235, -0.011522279120981693, -0.009091346524655819, 0.026848342269659042, 0.021686913445591927, 0.025448080152273178, 0.05054020881652832, -0.041811197996139526, -0.009550653398036957, 0.03743384778499603, -0.01991835981607437, -0.030347915366292, -0.007884159684181213, -0.013572211377322674, 0.04866490513086319, 0.022523734718561172, -0.03375442698597908, 0.007917957380414009, -0.05494959279894829, 0.06599120050668716, 0.030853096395730972, 0.00239559356123209, 0.005802358500659466, 0.05263705551624298, 0.04223518446087837, 0.014408016577363014, -0.07541345804929733, 0.013607300817966461, -0.01890450343489647, -0.01832617074251175, 0.0318751186132431, 0.023221362382173538, -7.683574008427757e-33, 0.004745893646031618, -0.02444613166153431, -0.04286802560091019, 0.058255281299352646, -0.04494979977607727, -0.02442815527319908, -0.026606759056448936, -0.03133273869752884, -0.042522598057985306, -0.04913066327571869, -0.02985522150993347, 0.009311215952038765, 0.02547733299434185, -0.010553293861448765, -0.011964169330894947, -0.04347153753042221, 0.02403877303004265, 0.012050235643982887, 0.0003334986395202577, 0.04505505412817001, -0.03140886873006821, -0.04031623899936676, -0.03941912204027176, -0.001063194707967341, -0.009378636255860329, -0.05200839787721634, -0.04047354683279991, -0.01879885047674179, 0.04068072885274887, 0.03214717656373978, -0.06670815497636795, -0.008891552686691284, -0.01004085224121809, -0.013849783688783646, 0.018309777602553368, 0.09463296085596085, -0.04828851670026779, -0.0409378707408905, -0.0003711397002916783, -0.010735365562140942, 0.014321431517601013, -0.029970424249768257, -0.004078934900462627, -0.04188740625977516, -0.01602577418088913, 0.028171569108963013, 0.054096076637506485, 0.011358313262462616, -0.004489579703658819, -0.007490196265280247, -0.07621168345212936, 0.031282637268304825, -0.023462973535060883, 0.08393150568008423, -0.02125946618616581, -0.016453223302960396, 0.04926275461912155, -0.03878841921687126, -0.09541293233633041, 0.004463158547878265, -0.0056438264437019825, 0.013593966141343117, 0.052600204944610596, -0.010906466282904148, -0.03131207078695297, 0.02910947985947132, 0.0013827320653945208, 0.08885299414396286, 0.023992648348212242, 0.029116958379745483, -0.015591307543218136, 0.03654024377465248, -0.011050088331103325, -0.042565666139125824, -0.034489937126636505, -0.04243326932191849, -0.03936309367418289, 0.03704656660556793, 0.05290208011865616, 0.07054661214351654, 0.026684166863560677, -0.01059312466531992, -0.02638177201151848, 0.01582508161664009, 0.020870644599199295, -0.020811712369322777, -0.05136045813560486, -0.03095129132270813, -0.01943669281899929, -0.0013713720254600048, -0.005378404166549444, -0.029456062242388725, -0.026243332773447037, -0.011872285977005959, 0.0011355433380231261, 0.013384206220507622, 0.015313220210373402, 0.026705289259552956, -0.03203517943620682, -0.0482521690428257, -0.0010609134333208203, -0.04748991131782532, -0.003269731067121029, 0.05209141597151756, 0.009398547932505608, -0.02213827706873417, -0.016871189698576927, 0.016890956088900566, -0.09377098083496094, -0.019039945676922798, -0.020743776112794876, -0.020582612603902817, 0.021554062142968178, -0.056938380002975464, 0.022450534626841545, 0.007410148624330759, -0.009336886927485466, -0.014336540363729, 0.006888080853968859, 0.019879767671227455, -0.003576990682631731, 0.030547091737389565, -0.028531519696116447, -0.01008306723088026, -0.03473709523677826, 0.004701307974755764, -0.026148002594709396, 0.055602699518203735, 0.048852015286684036, -0.07437542080879211, -0.016308562830090523, -0.03027299977838993, 3.4354098943367717e-07, 0.022557688876986504, 0.043886058032512665, 0.02340531349182129, 0.0012944808695465326, -0.002810209523886442, -0.045824527740478516, 0.019641198217868805, 0.02002381905913353, -0.006144700571894646, -0.010577209293842316, 0.03546275943517685, 0.044743359088897705, -0.003964221104979515, 0.03042588196694851, -0.012199562042951584, -0.0614541657269001, -0.025723103433847427, -0.027327721938490868, -0.03830086067318916, 0.029681095853447914, 0.0655512884259224, 0.018601618707180023, 0.07311013340950012, 0.025499025359749794, -0.03046182543039322, -0.01777181588113308, -0.002850928111001849, -0.04669102653861046, 0.020504077896475792, -0.009216055274009705, 0.017607562243938446, 0.031358856707811356, -0.035913076251745224, -0.07549651712179184, -0.005549746565520763, -0.014780658297240734, -0.019700007513165474, 0.021458394825458527, 0.03172080218791962, 0.04010886698961258, -0.002297294558957219, -0.04851820692420006, -0.014668308198451996, -0.007158320397138596, 0.04753963276743889, 0.035452116280794144, -0.012698417529463768, 0.0581773966550827, -0.05097455158829689, -0.02819877490401268, 0.008075469173491001, 0.022258859127759933, -0.0064863660372793674, 0.014792137779295444, -0.016828298568725586, -0.024590250104665756, -0.03912658989429474, -0.03911180794239044, 0.047484129667282104, -0.0018502915045246482, -0.04443909972906113, -0.042466603219509125, -0.007332628592848778, 0.03525765612721443, 0.04088396951556206, -0.0004931308794766665, -0.019806839525699615, 3.7142184542540572e-34, 0.05513501167297363, -0.04177813231945038, 0.0306234247982502, -0.0544813796877861, 0.0005827879067510366, 0.009151950478553772, 0.003955595660954714, 0.010193874128162861, 0.031239626929163933, -0.10750950127840042, -0.026116985827684402], "672cbc89-3888-483a-a14c-7e3ed578d4b4": [0.010436761192977428, -0.023687485605478287, -0.0369553416967392, -0.00568587239831686, -0.010048946365714073, 0.025728514418005943, -0.006641277112066746, 0.023033594712615013, -0.020621715113520622, -0.04513394087553024, 0.03284434974193573, -0.008166155777871609, 0.04022042453289032, -0.0011733663268387318, 0.02729792706668377, -0.047029025852680206, 0.05974665656685829, -0.027466408908367157, -0.06231176480650902, -0.006538731511682272, -0.013984574936330318, 0.01616881601512432, 0.006327494513243437, 0.01764734275639057, 0.010632898658514023, -0.02094784937798977, 0.008065101690590382, -0.008775664493441582, 0.03323306143283844, -0.015469835139811039, -0.018757231533527374, 0.024627504870295525, 0.002745828591287136, 0.068473219871521, 2.2269027795118745e-06, -0.06100950017571449, -0.010035543702542782, 0.07076513022184372, 0.0062624127604067326, 0.034584641456604004, 0.00198902259580791, 0.035188958048820496, -0.03071560524404049, 0.04713313281536102, 0.02202148549258709, -0.04533432796597481, 0.03226364776492119, 0.028684288263320923, 0.019686872139573097, 0.03929200395941734, 0.012317117303609848, -0.04189235717058182, 0.08283992111682892, 0.0009125359356403351, 0.09172163158655167, -0.0271881315857172, -0.0015101538738235831, 0.05032661184668541, 0.04820261523127556, 0.00531214103102684, 0.023326868191361427, -0.017298245802521706, 0.02806069701910019, -0.03089899569749832, 0.09145455062389374, -0.025659851729869843, 0.060938481241464615, -0.04409317672252655, -0.0014198352582752705, 0.01993710733950138, 0.13816028833389282, -0.018100572749972343, 0.006285241339355707, 0.08172687143087387, -0.03267015889286995, 0.060144372284412384, -0.019920945167541504, 0.017237942665815353, -0.008977577090263367, -0.012153367511928082, -0.007044458761811256, -0.063294418156147, -0.016797592863440514, -0.01423800177872181, 0.02151533216238022, 0.03198546543717384, 0.03158983215689659, -0.019168902188539505, -0.0016326361801475286, -0.03330480679869652, 0.00012149858957855031, -0.030722465366125107, -0.021641835570335388, 0.02197779156267643, 0.006957135628908873, -0.02548791654407978, 0.022157497704029083, -0.014438272453844547, 0.0453016459941864, 0.022818729281425476, 0.00502434279769659, 0.024953093379735947, 0.02681824192404747, 0.027408026158809662, 0.019799254834651947, 0.012812371365725994, -0.013261256739497185, -0.05155303329229355, -0.012048674747347832, 0.0346950925886631, -0.04461295157670975, -0.03562774509191513, -0.03771451115608215, 0.00303355953656137, 0.003479097969830036, 0.01479734480381012, -0.03498667851090431, 0.06202937662601471, 0.03242100775241852, 0.050888873636722565, 0.01116111595183611, -0.0412314273416996, -0.04865275323390961, 0.017435919493436813, -0.052954621613025665, -0.0679706484079361, 0.006106163375079632, -0.014973092824220657, -0.008266390301287174, -0.024091316387057304, -0.009194394573569298, -0.0058954558335244656, -0.009564759209752083, -0.03730304539203644, -0.03884003683924675, 0.09439586102962494, 0.0332198329269886, 0.011197847314178944, 0.02747451327741146, -0.013357697054743767, 0.0371241569519043, -0.004303264897316694, -0.014794973656535149, -0.06302763521671295, -0.04342179000377655, -0.0038754933048039675, 0.042841050773859024, -0.0008702673367224634, -0.005072719417512417, 0.028469178825616837, 0.02231135591864586, 0.0090958122164011, -0.0788554847240448, -0.012623167596757412, 0.01613840088248253, 0.0026286228094249964, -0.026003332808613777, -0.011574062518775463, -0.02314617484807968, 0.001108052209019661, 0.013516456820070744, 0.002535994863137603, 0.0744623914361, -0.020438047125935555, -0.03392266482114792, -0.03376311436295509, 0.005449408665299416, 0.024723762646317482, 0.032593145966529846, 0.012979473918676376, -0.014922942966222763, 0.08530193567276001, -0.023231742903590202, 0.03995959833264351, 0.0247074905782938, 0.038806892931461334, 0.07634012401103973, 0.059906184673309326, 0.012074461206793785, 0.024788295850157738, 0.047736942768096924, -0.0541207380592823, -0.037941887974739075, 0.034370988607406616, -0.09830158948898315, 0.035230204463005066, -0.10465076565742493, 0.047450195997953415, -0.0031500442419201136, -0.025194328278303146, -0.026050889864563942, 0.0054300641641020775, -0.018119487911462784, -0.08572912961244583, 0.01685424894094467, 0.002668271539732814, -2.750935550466238e-07, -0.10150829702615738, -0.0018792691407725215, -0.020702339708805084, 0.02547985129058361, -0.03596511483192444, 0.06474562734365463, 0.06854365766048431, 0.07632976770401001, -0.07516512274742126, 0.031564969569444656, -0.059076134115457535, -0.02347167767584324, 0.03368493169546127, 0.04217635840177536, -0.020023802295327187, -0.02532505989074707, -0.04160650819540024, -0.021596260368824005, 0.004289910662919283, -0.007409196346998215, 0.018179338425397873, -0.04651687294244766, 0.0423390157520771, 0.007059988100081682, -0.06018983572721481, -0.012991996482014656, 0.046644020825624466, -0.01369837298989296, -0.08135818690061569, -0.05280983820557594, 0.0014533874345943332, 0.019066574051976204, 0.019603298977017403, -0.06395217031240463, 0.045445166528224945, 0.01607493869960308, 0.03835153207182884, -0.01801779866218567, -0.0006200288771651685, 0.02957068756222725, 0.02406138926744461, 0.060999657958745956, -0.1197778508067131, -0.02493485063314438, 0.11179935932159424, 0.01657603122293949, 0.009620594792068005, 0.006101486273109913, -0.06256888806819916, 0.06733307242393494, -0.026533255353569984, 0.03246704116463661, 0.021525446325540543, 0.012051798403263092, 0.016944920644164085, 0.006631922442466021, 0.027973217889666557, 0.0022282220888882875, 0.036257050931453705, -0.08723420649766922, 0.031763408333063126, 0.01439221203327179, -0.018661372363567352, 0.006312653422355652, 3.018164716195315e-05, 0.0299912728369236, 0.03816298022866249, 0.022066954523324966, 0.004724136088043451, -0.0025766603648662567, 0.012422200292348862, -0.00964525155723095, 0.0021347668953239918, 0.008610573597252369, -0.039870359003543854, -0.014849788509309292, 0.002046415116637945, -0.0054193767718970776, 0.016122030094265938, 0.0025199365336447954, -0.054311126470565796, -0.042969945818185806, 0.027190066874027252, 0.014979382045567036, -0.032888613641262054, -0.02795250713825226, -0.009270023554563522, -0.011327173560857773, 0.0046350182965397835, 0.02434384822845459, -0.016641665250062943, -0.05418385565280914, -0.0026899916119873524, 0.00881099607795477, 0.005315375979989767, 0.020682889968156815, -0.02319447509944439, -0.018407434225082397, 0.0264748428016901, 0.04285794869065285, -0.04205752909183502, 0.007131544407457113, 0.08064565807580948, 0.0177952591329813, 0.02858513779938221, -0.023494645953178406, -0.017534956336021423, 0.004463056568056345, -0.0012539770686998963, 0.00450784619897604, -0.04253927245736122, 0.003513268893584609, -0.02508515678346157, -0.012441819533705711, -0.02000942826271057, -0.02653614431619644, 0.009882769547402859, 0.0073758456856012344, -0.019248755648732185, -0.06231258064508438, -0.061658162623643875, -0.0064819385297596455, 0.023016856983304024, -0.007407024037092924, -0.03488492593169212, 0.04052680730819702, -0.039472565054893494, -0.0013040135381743312, -0.09965325146913528, 0.002755754627287388, -0.03543771058320999, 0.09445440769195557, -1.0253743312205188e-05, -0.00679030129685998, 0.028482206165790558, -0.008154667913913727, 0.004208773374557495, -0.007748818024992943, 0.04582040011882782, 0.028272951021790504, -0.013995697721838951, 0.021711336448788643, -0.016360808163881302, -0.03805018588900566, 0.02165280282497406, -0.007875343784689903, -0.016588330268859863, 0.002340557985007763, 0.023048441857099533, -0.025327051058411598, -0.02507958933711052, -0.018511058762669563, 0.0014363244408741593, 0.08155688643455505, -0.017763718962669373, 0.04605412855744362, -0.03683866187930107, -0.009966901503503323, -0.03575761988759041, 0.018109487369656563, -0.009126333519816399, 0.03643782064318657, -0.04745858162641525, 0.01682356931269169, 0.032492849975824356, -0.00929008238017559, 0.003821561112999916, -0.013771425932645798, -0.03652346879243851, 0.02680734172463417, -0.046973828226327896, -0.016774363815784454, 0.015160269103944302, -0.011684791184961796, 0.02274235151708126, 0.028796525672078133, 0.03302733227610588, 0.023992856964468956, -0.03483404964208603, 0.03342195600271225, -0.057552799582481384, 0.0648241862654686, 0.012441610917448997, 0.03484079986810684, -0.07469353079795837, 0.06876259297132492, 0.004032382741570473, 0.026537002995610237, -0.010464410297572613, 0.008920369669795036, 0.05340638384222984, 0.00594982597976923, 0.032758500427007675, 0.012128795497119427, -0.056533657014369965, -0.06674648076295853, -0.014691093005239964, -0.01081941556185484, 0.015666700899600983, -0.030437184497714043, 0.01490369625389576, -0.03547088801860809, 0.01612897403538227, 0.02610647864639759, -0.05073682218790054, -0.01767883263528347, -0.03829913213849068, -0.014507167972624302, 0.08287632465362549, 0.03947195038199425, 0.027382560074329376, -0.01473149098455906, -0.016886450350284576, 0.09275592118501663, -0.04503302276134491, -0.0021610974799841642, -0.028079019859433174, 0.01668330654501915, -0.01737368479371071, -0.018184691667556763, -0.043661653995513916, 0.011962500400841236, -0.019742758944630623, -0.053955093026161194, 0.004965414758771658, 0.06892846524715424, -0.010432711802423, 0.002847079187631607, -0.07045990973711014, 0.005953115411102772, 0.015642134472727776, 0.024591779336333275, 0.0016436370788142085, 0.02228124998509884, 0.004500743467360735, -0.06058825924992561, -0.002754948101937771, -0.009206981398165226, -0.010943991132080555, -0.0682767927646637, -0.04246794804930687, -0.10252702981233597, -0.07616671174764633, 0.0019451613770797849, 0.001535755000077188, 0.05371330305933952, 0.014235963113605976, -0.009003394283354282, 0.018772410228848457, 0.029622038826346397, -0.03450921177864075, 0.001521815313026309, -0.022386344149708748, 0.007943867705762386, -0.02211666665971279, -0.057236555963754654, -0.014464246109127998, -0.040099386125802994, -0.04836533963680267, -0.05901028588414192, 0.08701779693365097, -0.007860030047595501, 0.061396438628435135, 0.06313449889421463, 0.04473106563091278, -0.02422601729631424, -0.04564525932073593, -0.015128024853765965, 0.004185363184660673, 0.0032965068239718676, -0.03803533688187599, 0.036398835480213165, 0.011503358371555805, 0.015007050707936287, -0.021667081862688065, -0.015326009131968021, -0.00957206916064024, -0.003956121858209372, -0.06019173189997673, -0.03994636610150337, 0.027688421308994293, -0.019958341494202614, -0.000650256231892854, 0.02368493378162384, -0.015352921560406685, 0.024204257875680923, 0.06858955323696136, -0.003516282420605421, 0.0326300784945488, 0.0033573016989976168, 0.012943475507199764, -0.033978670835494995, -0.005224700551480055, 0.016119275242090225, -0.04440326988697052, -0.00983444694429636, -0.003985587041825056, -0.0025180994998663664, 0.04042941331863403, -0.004854348488152027, 0.05856277048587799, 0.016288064420223236, 0.10999253392219543, 0.01733039692044258, -0.012675274163484573, -0.01858181692659855, -0.0018682503141462803, -0.05843466520309448, 0.021816039457917213, -0.016061877831816673, -0.0170434582978487, 0.008263561874628067, -0.022737447172403336, -0.017356548458337784, -0.007890387438237667, -0.06833133101463318, -0.02782701887190342, 0.012488285079598427, -0.015439940616488457, 0.0027048850897699594, 0.037252798676490784, 0.03254508227109909, -0.051859233528375626, 0.01442763302475214, -0.02375221997499466, 0.04248228296637535, -0.02380163036286831, 0.04822937771677971, 0.013977193273603916, 0.02231796830892563, 0.0029390035197138786, -0.0415051244199276, 0.024382444098591805, -0.01630454510450363, 0.004921528976410627, 0.01991923712193966, -0.05190983787178993, -0.044695448130369186, -0.049548640847206116, 0.023094700649380684, -0.0016979780048131943, -0.012381591834127903, -0.026139110326766968, -0.026942968368530273, -0.05421425402164459, 1.6579775547143072e-05, 0.05543765053153038, -0.0059087155386805534, -0.0033893052022904158, 0.06300273537635803, 0.0031126912217587233, 0.01908734068274498, -0.05079799145460129, 0.004339252598583698, -0.001931244507431984, -0.03101508319377899, 0.007193702273070812, 0.06807099282741547, -5.642481617174431e-33, -0.026105718687176704, 0.0029193058144301176, 0.024816032499074936, 0.029330801218748093, -0.037424586713314056, -0.061783868819475174, -0.016898268833756447, -0.000901751802302897, -0.035662949085235596, 0.009486624971032143, -0.0020335630979388952, 0.0010142907267436385, 0.015778129920363426, -0.036553818732500076, -0.01717122085392475, 0.005266002845019102, 0.025042030960321426, 0.03732207044959068, -0.022159500047564507, -0.027425773441791534, -0.03216554969549179, -0.021286049857735634, 0.03808895871043205, -0.03239566460251808, 0.009705593809485435, -0.0326194129884243, -0.018721047788858414, 0.004785234108567238, -0.003463153727352619, 0.055906008929014206, -0.012057675048708916, 0.019157636910676956, 0.0006151747656986117, 0.04477963224053383, -0.000828156596980989, 0.03625309094786644, -0.067397341132164, -0.036706797778606415, 0.03057960793375969, -0.006025850772857666, 0.03812773898243904, -0.045763351023197174, -0.03410406410694122, -0.010355828329920769, -0.02150142751634121, 0.02335158921778202, 0.060820575803518295, -0.008909332565963268, -0.03877278417348862, 0.02294030971825123, -0.06318047642707825, 0.021199215203523636, -0.03424841910600662, 0.05868157744407654, -0.026919802650809288, 0.026234349235892296, 0.03696178272366524, -0.10214892029762268, -0.026937969028949738, 0.0011200603330507874, 0.008510701358318329, 0.033072639256715775, 0.008695940487086773, -0.02138855680823326, 0.031547222286462784, 0.02037237398326397, -0.03139498084783554, 0.031197046861052513, -0.02257457748055458, 0.011760974302887917, -0.022967029362916946, 0.019061250612139702, 0.0007335261907428503, 0.039708562195301056, -0.017939355224370956, -0.025460004806518555, -0.03407234698534012, 0.06447836011648178, 0.06080235540866852, 0.09491229057312012, 0.0005423550610430539, -0.01951577514410019, -0.04236872121691704, -0.007690005470067263, -0.0342726930975914, 0.030786268413066864, -0.02682110108435154, -0.022967355325818062, -0.013727694749832153, -0.019371015951037407, -0.00992579199373722, -0.025957675650715828, -0.011364086531102657, 0.0031637935899198055, 0.03487665578722954, -0.010632853955030441, -0.004609356634318829, 0.06326598674058914, -0.009458823129534721, -0.011229182593524456, -0.018370218575000763, -0.038909364491701126, 0.004658350721001625, 0.060970768332481384, 0.030776917934417725, -0.016093868762254715, -0.0016760785365477204, 0.04424513876438141, -0.04831831902265549, 0.009908243082463741, 0.002279814099892974, -0.0017706856597214937, 0.007505136076360941, -0.0062500000931322575, -0.02459889091551304, -0.02786356210708618, 0.028162630274891853, 0.011671134270727634, -0.058462124317884445, -0.017327459529042244, -0.022285234183073044, 0.06957864761352539, 0.02384198270738125, -0.01210006419569254, 0.0053208963945508, -0.0018874662928283215, -0.019320525228977203, 0.08237721771001816, 0.129234179854393, 0.021267609670758247, -0.009087594226002693, -0.025391487404704094, 2.8944998575752834e-07, 0.04887915030121803, 0.04296238347887993, 0.05395994707942009, 0.005553266033530235, 0.009103578515350819, -0.034929800778627396, -0.00885690189898014, 0.04189994931221008, -0.011987006291747093, 0.06773849576711655, 0.007857153192162514, 0.008750515058636665, 0.00013739858695771545, -0.011624851264059544, -0.011568731628358364, -0.13270066678524017, -0.04810180142521858, 0.03091360442340374, -0.031525321304798126, 0.0357048474252224, 0.032676294445991516, 0.02593228779733181, 0.037527166306972504, 0.013677626848220825, -0.014664498157799244, 0.025804638862609863, 0.004509675316512585, -0.0379033125936985, 0.03404633700847626, 0.0375361405313015, 0.01114105898886919, 0.02378547377884388, 0.0242942962795496, -0.0527351014316082, 0.011768397875130177, -0.029775524511933327, -0.027075443416833878, 0.03754773736000061, 0.015392511151731014, 0.04059911146759987, 0.01718641258776188, 0.0018858544062823057, -0.003163777757436037, -0.03154332563281059, 0.02538624219596386, 0.07948901504278183, -0.020430156961083412, 0.0005138784181326628, -0.05856328085064888, -0.0344485379755497, -0.0031515045557171106, -0.006638569291681051, -0.001064416253939271, -0.03188169002532959, -0.0004294844111427665, -0.004086903762072325, -0.0227945689111948, -0.026812562718987465, 0.02047598361968994, -0.010134708136320114, -0.05280290171504021, -0.06427958607673645, -0.02310914173722267, 0.001480773207731545, 0.02509811706840992, -0.057799141854047775, -0.019569452852010727, 3.0499592239851043e-34, 0.042461588978767395, -0.06927169859409332, -0.007724944967776537, 0.0017794509185478091, -0.00670244125649333, -0.02362680621445179, 0.029146097600460052, 0.010640710592269897, 0.013854049146175385, -0.058444805443286896, -0.04361191391944885], "e11b64d8-ec6b-4956-8a57-ad499b1eb9b7": [0.017945751547813416, -0.0391620397567749, -0.045520905405282974, 0.008308169431984425, 0.04835407808423042, 0.047345541417598724, -0.036815278232097626, 0.06991635262966156, -0.03473607823252678, -0.028738871216773987, -0.040777888149023056, 0.022344637662172318, 0.0032084030099213123, 0.04131360352039337, 0.031768448650836945, -0.05893348902463913, 0.005884028039872646, 0.01654880680143833, -0.018883349373936653, -0.007141291629523039, -0.005098299589008093, 0.011557943187654018, 0.04341542720794678, -0.005250261630862951, 0.06644883006811142, -0.004924869164824486, -0.04199543222784996, 0.018670769408345222, 0.02019406110048294, -0.07513401657342911, -0.007603946141898632, 0.011693106964230537, 0.02430640161037445, 0.01096078660339117, 1.933611656568246e-06, -0.004836819134652615, -0.07754617929458618, -0.0056558349169790745, -0.05506931245326996, -0.0016268808394670486, -0.013165019452571869, 0.020182063803076744, -0.028787914663553238, 0.010819599963724613, 0.0013714180095121264, -0.06256185472011566, -0.06276116520166397, 0.043409813195466995, -0.003289387561380863, 0.008367708884179592, 0.03213357552886009, -0.1025690883398056, -0.011757108382880688, -0.021315203979611397, 0.09687230736017227, 0.007194237317889929, -0.0511644072830677, 0.07249929010868073, 0.07397370040416718, 0.006953585427254438, 0.0004645282169803977, 0.01782468520104885, -0.00160110997967422, 0.001087404671125114, 0.08199970424175262, 0.018402889370918274, 0.0034766383469104767, -0.07670699059963226, 0.005583302117884159, 0.048467908054590225, 0.07407359778881073, -0.0681290552020073, 0.01741555705666542, -0.010214303620159626, -0.02109431102871895, 0.08179771900177002, -0.050674449652433395, 0.005343655589967966, -0.011150267906486988, 0.015731746330857277, 0.007289519999176264, -0.059681955724954605, -0.0008976785466074944, -0.020893370732665062, 0.033098217099905014, -0.029741574078798294, -0.006488079205155373, -0.05274949595332146, 0.0714089572429657, -0.026146959513425827, -0.003104191506281495, -0.044425126165151596, -0.013396968133747578, 0.044290825724601746, 0.06561654061079025, -0.04259178414940834, -0.002940666861832142, -0.048202186822891235, 0.06762126088142395, 0.007923074997961521, -0.011388896033167839, -0.019617868587374687, 0.02025510184466839, -0.008095702156424522, 0.01400220301002264, 0.02754569798707962, -0.03904912993311882, -0.05127840116620064, -0.011304570361971855, 0.05792236328125, -0.027124233543872833, 0.008011920377612114, 0.0228525809943676, -0.018099576234817505, -0.01722615957260132, -0.010269518941640854, 0.030524779111146927, 0.02480042725801468, 0.036668576300144196, 0.06325695663690567, 0.0003492986143101007, -0.002799680456519127, -0.02985967881977558, 0.021088944748044014, 0.005247818771749735, -0.06346415728330612, 0.012861323542892933, -0.05938902869820595, 0.022808749228715897, 0.020308315753936768, 0.012057244777679443, 0.012761970050632954, 0.009384315460920334, 0.04972262680530548, 0.0027554798871278763, 0.08467164635658264, 0.015519342385232449, -0.024849355220794678, -0.0010720902355387807, -0.00399530865252018, 0.041283439844846725, -0.012663566507399082, -0.016062429174780846, -0.015074032358825207, 0.002137813251465559, 0.02119765803217888, 0.01039164885878563, 0.04540864750742912, 0.042600370943546295, 0.047436248511075974, -0.030355719849467278, 0.010361750610172749, 0.040861696004867554, -0.008138032630085945, 0.025609342381358147, 0.022376326844096184, -0.01674313098192215, -0.011120598763227463, -0.005210058763623238, 0.0025976155884563923, 0.023514967411756516, 0.019288532435894012, 0.020481690764427185, -0.014501558616757393, 0.035969700664281845, 0.07603397965431213, 0.05265019088983536, 0.024259116500616074, 0.02669082209467888, 0.013077217154204845, -0.060868240892887115, 0.02773556113243103, -0.035537492483854294, 0.04355000704526901, -0.009283809922635555, -0.004767459351569414, 0.10367952287197113, 0.0645388662815094, 0.03212859854102135, 0.014388913288712502, 0.04945560544729233, -0.027732323855161667, -0.006262094248086214, -0.02075290121138096, -0.10654035210609436, 0.008396069519221783, -0.0714598074555397, 0.036258649080991745, 0.007854507304728031, -0.005736856255680323, -0.024162448942661285, 0.013147618621587753, 0.068815216422081, -0.016498489305377007, 0.02059120498597622, 0.011787277646362782, -0.05651208013296127, -0.14670926332473755, -0.03737770393490791, -0.02407938428223133, 0.041463274508714676, 0.024809082970023155, 0.061747558414936066, 0.028033772483468056, 0.1021328866481781, -0.002660562749952078, -0.0007646647864021361, -0.04463627561926842, -0.012159090489149094, -0.02080879732966423, 0.03644425794482231, -0.021505754441022873, -0.03576933592557907, -0.0377841517329216, -0.04015239328145981, -0.03803602606058121, -0.03861860930919647, -0.023003168404102325, 0.014712430536746979, -0.0159382913261652, 0.05445630103349686, -0.026534345000982285, -0.004454305395483971, 0.036131661385297775, -0.013613828457891941, -0.0434386245906353, -0.02359107695519924, -0.014837618917226791, 0.0369616262614727, -0.028961846604943275, -0.01311318576335907, -0.0034654196351766586, 0.022218430414795876, 0.057257749140262604, 0.009629787877202034, -0.03018249198794365, 0.07993374019861221, -0.023900354281067848, -0.005349883809685707, -0.060353122651576996, 0.02727872133255005, 0.04082565754652023, 0.005211456213146448, 0.02078053168952465, -0.09788563847541809, 0.024429747834801674, -0.01923239789903164, 0.0020571574568748474, 0.05977025255560875, 0.045709721744060516, 0.02449790947139263, -0.004951684270054102, 0.09510219097137451, 0.008564088493585587, -0.024768317118287086, 0.0755007416009903, 0.0035431906580924988, 0.0225690808147192, -0.03028462640941143, 0.053882479667663574, 0.014954828657209873, 0.012509447522461414, -0.03122909739613533, 0.026254188269376755, 0.05945656821131706, 0.01363478321582079, 0.03455166891217232, -0.015199128538370132, 0.016082489863038063, -0.0016941606299951673, -0.0011950838379561901, 0.011575932614505291, -0.00652600172907114, -0.04062918201088905, 0.003317512571811676, -0.017656538635492325, 0.08545679599046707, -0.01702723652124405, -0.04004152491688728, -0.011919915676116943, 0.015528141520917416, 0.02264258824288845, -0.038827382028102875, 0.011117278598248959, 0.0056212120689451694, -0.006683499552309513, 0.014900454320013523, 0.029474793002009392, -0.01960737444460392, -0.008632163517177105, -0.04584599286317825, 0.02313578687608242, 0.05430736392736435, -0.05115611478686333, -0.00511542521417141, 0.004120339173823595, -0.009130076505243778, -0.0036511491052806377, -0.023375367745757103, 0.0869746133685112, 0.03021087870001793, -0.024424254894256592, 0.03557056933641434, 0.037478238344192505, -0.03394448384642601, 0.048462748527526855, -0.010059183463454247, -0.02797485515475273, -0.010064942762255669, -0.05541902035474777, 0.06149530038237572, 0.0280607882887125, -0.0009605689556337893, -0.05335868149995804, 0.04286784306168556, -0.02382545918226242, 0.0070831049233675, -0.0009497861610725522, 0.02076198346912861, 0.048384420573711395, 0.021151475608348846, -0.003002857556566596, -0.02832641638815403, -0.052517808973789215, 0.002789718797430396, -0.07616028934717178, 0.01697225496172905, -0.030661581084132195, 0.04570172727108002, 0.04808858036994934, 0.006553175393491983, -0.0372847244143486, 0.04662454500794411, -0.020732896402478218, 0.0057684252969920635, 0.02235862798988819, -0.016832614317536354, 0.0177848469465971, 0.0014234940754249692, -0.04232843592762947, -0.008150428533554077, 0.04373167082667351, -0.014580088667571545, 0.023672113195061684, -0.0021292464807629585, 0.005791724659502506, 0.005662822164595127, -0.02942551299929619, -0.030904022976756096, -0.007927561178803444, 0.061410628259181976, 0.02250584587454796, 0.029508080333471298, -0.03845106437802315, -0.0033709171693772078, -0.0005487248999997973, -0.002982300939038396, -0.029835516586899757, -0.03242849186062813, -0.02019094116985798, 0.007530956529080868, 0.03794537112116814, 0.007806462235748768, 0.019593024626374245, 0.057906825095415115, 0.011706409975886345, -0.030156943947076797, 0.007917692884802818, -0.01825135201215744, 0.012077013030648232, -0.07264198362827301, -0.004930451977998018, 0.022333551198244095, 0.033103834837675095, 0.054528046399354935, 0.005067747086286545, 0.00725399749353528, -0.03167777881026268, 0.05267344415187836, -0.020104363560676575, 0.031882394105196, -0.02332019992172718, 0.040458470582962036, 0.015628037974238396, 0.051881689578294754, -0.00833197496831417, 0.06525667011737823, 0.030466441065073013, 0.06874629110097885, 0.0005002171965315938, 0.01574484445154667, -0.012729227542877197, 0.019551798701286316, 0.0131071787327528, -0.02672714926302433, 0.0012549046659842134, -0.0536658875644207, -0.005386750679463148, -0.03465428203344345, 0.0011097171809524298, -0.03923129662871361, 0.030158406123518944, -0.03137324005365372, 0.0036984465550631285, 0.0543147549033165, 0.032113492488861084, 0.04089159891009331, 0.04800078272819519, 0.014588771387934685, 0.07785201072692871, 0.0008782650693319738, -0.012023454532027245, -0.024432694539427757, -0.05573983117938042, 0.015690384432673454, -0.018361413851380348, 0.01630297303199768, -0.016796104609966278, 0.01378079503774643, 0.02383732981979847, -0.03148914501070976, 0.018009556457400322, 0.041810356080532074, -0.05004970356822014, -0.008231568150222301, -0.07697117328643799, 0.02349145896732807, 0.017417939379811287, 0.029149940237402916, 0.008416980504989624, 0.06006406992673874, 0.0006992446142248809, -0.0296377744525671, -0.013665982522070408, 0.06671033054590225, 0.01927664503455162, 0.014869204722344875, -0.08273071050643921, -0.104653500020504, -0.029242753982543945, -0.0023039844818413258, 0.029661985114216805, 0.05484091117978096, 0.03809354454278946, -0.00895738136023283, 0.029918432235717773, 0.03454402834177017, 0.013155114836990833, -0.061292968690395355, -0.008753035217523575, -0.02369268611073494, -0.04953339695930481, -0.10365568846464157, 0.04611112177371979, -0.07186676561832428, -0.006227653473615646, -1.4036929314897861e-05, 0.07154282182455063, -0.008631731383502483, 0.002575403545051813, -0.030342191457748413, 0.036672838032245636, 0.04806943237781525, -0.013607182539999485, -0.002196347573772073, 0.04149907827377319, -0.030851665884256363, -0.0933217704296112, -0.005650525912642479, -0.014603925868868828, 0.016291562467813492, 0.004082410130649805, -0.028273271396756172, -0.05528786778450012, 0.027301732450723648, -0.06514456868171692, -0.04714614897966385, 0.01951858401298523, 0.022112276405096054, 0.012556761503219604, 0.0030328810680657625, -0.024292636662721634, 0.01420585997402668, -0.032609663903713226, 0.001833554939366877, 0.04210001602768898, -0.04404671862721443, -0.009132008999586105, 0.004329880699515343, -0.0025161057710647583, 0.05902572348713875, -0.0207731444388628, 0.009874442592263222, -0.022305328398942947, -0.00445079430937767, 0.07782132178544998, -0.05304095894098282, 0.026256512850522995, -0.0007313630194403231, 0.024760140106081963, 0.010102573782205582, -0.03903673216700554, -0.018091104924678802, 0.01766764000058174, -0.044959090650081635, -0.03422349691390991, -0.027251610532402992, 0.04839639738202095, 0.024245215579867363, -0.023664487525820732, -0.0439855195581913, -0.02049420215189457, -0.05356474965810776, -0.016646936535835266, 0.001610347768291831, -0.03626753017306328, -0.05805892124772072, -0.025556739419698715, 0.029091374948620796, -0.008405306376516819, -0.014643167145550251, -0.01734735257923603, 0.024753794074058533, -0.04191136732697487, 0.019548850134015083, -0.003151949727907777, 0.03167581930756569, 0.020334606990218163, -0.01815992034971714, 0.012743545696139336, 0.04247695952653885, -0.04377995803952217, 0.0256207175552845, -0.033565323799848557, -0.060519278049468994, 0.03289281949400902, 0.04327380657196045, 0.019106661900877953, -5.4791114962426946e-05, -0.0353638231754303, -0.010658178478479385, -0.03719843178987503, -0.016727706417441368, 0.029528915882110596, -0.027383623644709587, -0.01438105944544077, 0.03964575380086899, 0.02698422595858574, -0.010914992541074753, -0.03574831783771515, -0.02958529256284237, 0.048649001866579056, -0.034784600138664246, 0.0027207464445382357, 0.04959874972701073, -5.238176947364829e-33, -0.025181850418448448, 0.0023573515936732292, -0.0028589926660060883, 0.0433853380382061, 0.04463151842355728, -0.08694924414157867, -0.013865360990166664, -0.0661352276802063, -0.02764049358665943, -0.01957840844988823, -0.00857926718890667, -0.03212755173444748, 0.011086965911090374, -0.03185804560780525, -0.008832213468849659, -0.032756444066762924, 0.03707986697554588, 0.015272099524736404, -0.05065429210662842, 0.06615287065505981, -0.02049526944756508, -0.021631726995110512, 0.003686315380036831, 0.002612968673929572, -0.03977736085653305, -0.1002587080001831, -0.018061267212033272, -0.04651350528001785, -0.030166497454047203, 0.05842598155140877, -0.042949628084897995, -0.012359386309981346, -0.005413941573351622, 0.04571818932890892, 0.02205759659409523, 0.017308074980974197, -0.022813668474555016, -0.02270137146115303, 0.013968553394079208, -0.0005475808866322041, 0.032515257596969604, -0.035710860043764114, -0.03230253607034683, -0.014732795767486095, 0.04968825355172157, 0.018669862300157547, 0.0099128857254982, 0.020751530304551125, -0.028806952759623528, 0.03519438952207565, -0.05152631923556328, 0.01322718895971775, 0.014086497947573662, 0.026946930214762688, 0.006183094345033169, 0.018503809347748756, 0.01877683587372303, -0.0006243641255423427, 0.007561531849205494, -0.015438319183886051, 0.05600132420659065, 0.009396729059517384, 0.056713685393333435, -0.01628081128001213, 0.019023902714252472, 0.02290978655219078, -0.018212154507637024, 0.007641775533556938, -0.04280070215463638, 0.037814345210790634, 0.0056425342336297035, -0.021978536620736122, -0.0023767335806041956, -0.04630528762936592, -0.024601463228464127, 0.008112319745123386, -0.04135935381054878, 0.026015333831310272, -0.004845147021114826, 0.06776764988899231, -0.05936184898018837, -0.022008581086993217, -0.030138548463582993, 0.018331972882151604, 0.014141549356281757, -0.016488371416926384, -0.00992263201624155, -0.043680205941200256, 0.0170749481767416, 0.013052031397819519, -0.0720219537615776, -0.036206331104040146, -0.03035973384976387, 0.06337612867355347, 0.0010785319609567523, 0.08648189902305603, -0.010520185343921185, 0.03382815793156624, -0.02368699200451374, -0.021934453397989273, -0.0012183403596282005, -0.04603038728237152, 0.014278768561780453, -0.029759997501969337, -0.01584349200129509, -0.020833803340792656, -0.030569709837436676, 0.06939827650785446, -0.02504393272101879, -0.004001287277787924, 0.018490394577383995, -0.056368712335824966, 0.029393017292022705, -0.029568752273917198, -0.02970816008746624, -0.061568450182676315, 0.005707649979740381, -0.03186274319887161, -0.01608283817768097, -0.020990557968616486, -0.04349701106548309, -0.03251985087990761, 0.05232219398021698, -0.030233828350901604, 0.031013857573270798, 0.005301188677549362, -0.026158208027482033, 0.008380897343158722, 0.07396717369556427, -0.011133825406432152, -0.00974398385733366, 0.028451548889279366, 2.578898374849814e-07, 0.06348337978124619, 0.011388028971850872, -0.005101584363728762, 0.015550960786640644, -0.00612229947000742, -0.02509096823632717, -0.027166295796632767, -0.03468373045325279, -0.03825763985514641, -0.014970538206398487, 0.03164329007267952, -0.005068477243185043, -0.018363237380981445, 0.048315729945898056, -0.0009502512984909117, -0.004611322656273842, 0.013493306003510952, -0.0535447895526886, -0.06499084830284119, -0.03510319069027901, 0.048004768788814545, 0.039339207112789154, 0.03135891258716583, 0.02140120603144169, -0.009465730749070644, 0.029367702081799507, -0.010456906631588936, 0.004584880080074072, 0.010322497226297855, 0.005707814358174801, 0.04143565148115158, 0.05111519247293472, -0.02579948678612709, -0.06878616660833359, -0.02727157063782215, 0.025857383385300636, -0.022462189197540283, -0.008917732164263725, 0.011678416281938553, 0.04859909787774086, 0.04135699197649956, -0.04535555839538574, -0.006952808704227209, -0.06898725777864456, 0.002638446632772684, 0.031624361872673035, 0.0444164015352726, 0.07926801592111588, -0.021511206403374672, -0.04001393914222717, 0.015126638114452362, -0.029103362932801247, -0.016243183985352516, -0.00914038810878992, -0.014933446422219276, -0.016186198219656944, -0.012006242759525776, -0.0024278301279991865, 0.016152439638972282, -0.006803978234529495, -0.05509015917778015, 0.01081666350364685, -0.023599695414304733, 0.02948577143251896, 0.019535649567842484, 0.008307038806378841, -0.0442194789648056, 3.018419470773344e-34, 0.03454074636101723, -0.060682348906993866, -0.048071134835481644, -0.023115340620279312, -0.0027989393565803766, -0.05004241317510605, 0.00785859301686287, 0.0031752057839185, 0.0010733678936958313, -0.08141066133975983, -0.035985589027404785], "721230de-13e8-4aa4-be8f-e6bfc5b79200": [0.01752481795847416, -0.06508268415927887, -0.04716130346059799, -0.07177653163671494, -0.031228352338075638, 0.04640507698059082, -0.02726387418806553, 0.023242054507136345, -0.035855602473020554, -0.03941496089100838, 0.009230201132595539, 0.02337012253701687, 0.050383370369672775, 0.03442559018731117, -0.005220852326601744, 0.02825946733355522, 0.036323774605989456, -0.014997816644608974, 0.024461787194013596, 0.004976114723831415, -0.014969483949244022, 0.011677754111588001, 0.0333382822573185, -0.023397203534841537, 0.05245824158191681, -0.05408438667654991, 0.01515450794249773, 0.0008538131369277835, 0.01601128652691841, -0.014449521899223328, 0.019559159874916077, 0.05567505955696106, -0.024026263505220413, 0.008725962601602077, 2.3315224098041654e-06, -0.014407423324882984, -0.019567593932151794, 0.02887885831296444, -0.015543468296527863, -0.003781708888709545, 0.01735546626150608, -0.01786605827510357, -0.038757920265197754, 0.033205773681402206, 0.019695864990353584, -0.023289939388632774, -0.043250758200883865, 0.09084385633468628, 0.01766585372388363, 0.017546409741044044, 0.02898363769054413, -0.016689743846654892, -0.00445347186177969, -0.015287008136510849, 0.08379137516021729, 0.010434390977025032, 0.0041169291362166405, 0.0742364153265953, 0.008719815872609615, 0.02296634018421173, 0.0006910894298925996, 0.014382386580109596, -0.027538415044546127, -0.010919995605945587, 0.08559446781873703, -0.014291537925601006, 0.04608636349439621, -0.08664096146821976, 0.04173720255494118, -0.006008665077388287, 0.01999553292989731, -0.055931027978658676, 0.03518843650817871, 0.013215621933341026, -0.07130007445812225, 0.06977379322052002, 0.0024896988179534674, 0.02046513557434082, 0.011224494315683842, -0.0359111949801445, -0.07062485814094543, -0.12160515785217285, -0.026568137109279633, 0.0046975379809737206, 0.03087305650115013, -0.04709755256772041, -0.004987348802387714, -0.030563959851861, 0.01855872943997383, -0.029264027252793312, -0.00316154514439404, -0.050792574882507324, -0.037937067449092865, 0.020093528553843498, 0.01782950758934021, -0.055386029183864594, 0.028772281482815742, -0.031673118472099304, 0.057791922241449356, 0.005556353367865086, -0.03779149428009987, 0.0009252853342331946, -0.03528856486082077, 0.023758649826049805, -0.015652695670723915, 0.05468766763806343, 0.015362568199634552, 0.0030376682989299297, 0.009013300761580467, 0.0713227391242981, -0.0539235919713974, 0.02383108250796795, -0.008496689610183239, -0.054304204881191254, -0.021820416674017906, 0.00651610316708684, 0.04556756839156151, -0.0034168788697570562, 0.06995169818401337, 0.04431936517357826, 0.07454178482294083, -0.0014078887179493904, -0.05859901383519173, 0.009556370787322521, -0.00841002818197012, -0.04204796999692917, 0.027841223403811455, -0.022380618378520012, -0.013969467021524906, 0.07494953274726868, -0.012519917450845242, -0.007133409846574068, 0.0042856354266405106, 0.018271444365382195, -0.029062898829579353, 0.025568818673491478, 0.03051416389644146, 0.012309257872402668, 0.005143838003277779, -0.009038067422807217, 0.041459184139966965, -0.014153968542814255, -0.0514187254011631, -0.010941987857222557, -0.007015143521130085, -0.02785755880177021, 0.007788978982716799, -0.013316524215042591, -0.023047180846333504, 0.013158577494323254, -0.010953213088214397, -0.0021521213930100203, -0.02873910404741764, 0.010941228829324245, 0.03245393559336662, 0.015493499115109444, -0.06636089086532593, -0.04829314723610878, -0.020202942192554474, -0.00027744437102228403, 0.01656544767320156, 0.0398729033768177, 0.04074537381529808, -0.05383333936333656, -0.017006976529955864, 0.01889031194150448, 0.09568992257118225, 0.013971562497317791, 0.04561028257012367, 0.0211976058781147, -0.023610766977071762, 0.014652162790298462, -0.01276722364127636, 0.027153534814715385, 0.0064917090348899364, 0.009693855419754982, 0.05999190732836723, 0.010610432364046574, -0.007513847202062607, 0.06774503737688065, -0.014098013751208782, -0.056746602058410645, -0.011946319602429867, -0.011036563664674759, -0.05930901691317558, -0.03198500722646713, -0.08689781278371811, 0.023712681606411934, 0.010613251477479935, 0.028023837134242058, -0.058181341737508774, -0.01661817729473114, -0.00895147118717432, -0.06447874754667282, -0.01517654862254858, 0.026580072939395905, 0.0006175203598104417, -0.10189089924097061, 0.015177056193351746, -0.008358869701623917, 0.018533438444137573, 0.004611337557435036, 0.0738150104880333, 0.024977605789899826, 0.06572622060775757, -0.02918851748108864, -0.020125653594732285, -0.02695932611823082, 0.03134137764573097, -0.033711742609739304, 0.0389862097799778, -0.018967339769005775, -0.028952542692422867, -0.027913875877857208, -0.04441630095243454, -0.006666369736194611, -0.04887155815958977, -0.027889816090464592, 0.011920618824660778, -0.01128042209893465, 0.008966547437012196, -0.03433532267808914, -0.01209291722625494, 0.019397709518671036, -0.018827294930815697, -0.022101575508713722, -0.014968998730182648, -0.002633893396705389, 0.06880645453929901, -0.00942558515816927, -0.01988609880208969, -0.007545370142906904, -0.0011398792266845703, 0.0458671897649765, -0.06324328482151031, 0.024100301787257195, 0.0979723408818245, 0.0063913241028785706, 0.022901946678757668, -0.05474696308374405, -0.015683235600590706, 0.023785917088389397, -0.00906040333211422, 0.013718526810407639, -0.01983053609728813, -0.010916575789451599, -0.041079506278038025, 0.03550628200173378, 0.04320646822452545, 0.010590027086436749, 0.008450943976640701, 0.00047315264237113297, 0.009452939964830875, -0.004542433191090822, -0.0395093709230423, -0.01692059449851513, -0.04642345383763313, 0.018938545137643814, 0.0027301907539367676, 0.05359678715467453, 0.028461914509534836, -0.0007531600422225893, -0.04993625730276108, 0.0030216656159609556, 0.02610967867076397, 0.012871463783085346, 0.012156181037425995, 0.04339338839054108, -0.02484111301600933, 0.0014505002181977034, -0.013004947453737259, -0.0029977168887853622, -0.015801988542079926, -0.0013196396175771952, 0.03538040071725845, 0.017700066789984703, 0.01739208772778511, -0.04630899429321289, -0.018034182488918304, -0.016950830817222595, 0.02205452136695385, 0.02341637574136257, -0.023926256224513054, 0.02405366115272045, -0.014227105304598808, 0.005472999531775713, 0.01849813386797905, -0.052929602563381195, -0.04845534637570381, -0.04670892283320427, -0.009779135696589947, 0.035899512469768524, 0.025522151961922646, -0.051932577043771744, -0.024309711530804634, 0.027683041989803314, 0.07793101668357849, -0.06651768088340759, -0.02692182920873165, 0.02889428287744522, 0.05433637276291847, -0.0004922525258734822, -0.010020260699093342, -0.008533482439815998, 0.02762048877775669, 0.0010972743621096015, 0.008415828458964825, -0.01676972396671772, -0.015025561675429344, -0.07531443983316422, 0.044012535363435745, -0.006309424061328173, -0.059767141938209534, -0.05159004405140877, -0.004930572584271431, -0.04451575130224228, 0.040658362209796906, -0.05813473463058472, 0.02357269823551178, 0.04838281869888306, -0.027708692476153374, -0.017745403572916985, -0.03531656041741371, -0.012032086960971355, 0.028264202177524567, -0.10464996844530106, 0.03894893079996109, -0.03168795630335808, 0.042683426290750504, 0.006151728332042694, 0.002108804415911436, 0.01772116683423519, 0.02654404751956463, 0.0034561562351882458, 0.014855865389108658, 0.013278749771416187, 0.032033950090408325, -0.039982739835977554, -0.005973555147647858, -0.019637316465377808, 0.008658409118652344, 0.07956459373235703, 0.034848663955926895, 0.004684906918555498, 0.00620003929361701, -0.005649182014167309, -0.009458430111408234, -0.02394198626279831, 0.0011904853163287044, 0.02352421171963215, 0.07223454117774963, 0.002541034482419491, 0.040718019008636475, -0.03538268059492111, -0.006482607685029507, -0.06782364100217819, -0.003994002938270569, 0.010355436243116856, -0.010167999193072319, -0.038062285631895065, 0.031804271042346954, 0.03192542865872383, 0.06382938474416733, 0.01914490945637226, -0.00534419622272253, -0.025851961225271225, -0.028058219701051712, -0.03276675194501877, -0.004999097902327776, 0.005143465008586645, -0.07176559418439865, 0.0006148015963844955, 0.004618596285581589, 0.04727127030491829, 0.02576029859483242, -0.08076252788305283, 0.014403039589524269, -0.0413781963288784, -0.0038924894761294127, -0.027920907363295555, 0.01534954458475113, -0.042335331439971924, 0.034001074731349945, 0.006311158183962107, -0.048722025007009506, -0.016951797530055046, -0.0012229231651872396, 0.02237909659743309, 0.09500455856323242, -0.012336010113358498, -0.008128692395985126, -0.013196145184338093, -0.03551201894879341, -0.0027040131390094757, 0.004360762424767017, 0.0026523065753281116, -0.07034876942634583, -0.005217329133301973, -0.0097693782299757, 0.002560049993917346, -0.027074432000517845, 0.0160677507519722, -0.001740245264954865, 0.027261381968855858, -0.01527630165219307, -0.0012095358688384295, 0.07395851612091064, -0.004870602395385504, 0.04755186662077904, 0.08214399218559265, 0.129102423787117, 0.03429457172751427, 0.027068933472037315, -0.010380351915955544, 0.043545790016651154, -0.03424118086695671, 0.046734075993299484, 0.0401243194937706, -0.041612762957811356, -0.024318449199199677, -0.0699663832783699, 0.00788692757487297, 0.03784741833806038, -0.03273709863424301, -0.008443590253591537, -0.018170436844229698, 0.04910207539796829, -0.00043535197619348764, 0.01696707122027874, -0.032700035721063614, 0.035195812582969666, 0.02903992123901844, 0.01963096112012863, 0.031269609928131104, 0.07692085951566696, 0.01125309243798256, -0.04877900704741478, -0.02316492237150669, 0.010446120984852314, -0.07692968845367432, -0.010835448279976845, 0.020840885117650032, 0.03725018352270126, 0.04815193638205528, 0.030189273878932, 0.08421676605939865, 0.04743880033493042, 0.030732862651348114, -0.02158723771572113, -0.03383362665772438, -0.006684680934995413, -0.024063874036073685, -0.08995203673839569, 0.02788531593978405, -0.025639481842517853, 0.001953554805368185, -0.029832957312464714, 0.04424275457859039, 0.004181100986897945, 0.004368132445961237, -0.02397039905190468, 0.03335832804441452, -0.00016408698866143823, -0.012174855917692184, -0.047513820230960846, -0.04076021537184715, -0.056810274720191956, -0.07731661200523376, 0.040497273206710815, 0.003341594012454152, 0.04904266074299812, -0.025436680763959885, -0.027134690433740616, -0.04057510197162628, -0.025096135213971138, -0.05871851369738579, -0.03923129662871361, 0.019129395484924316, 0.00486939400434494, -0.032677553594112396, -0.006210860796272755, 0.0007711936486884952, 0.057576995342969894, 0.0029891044832766056, -0.017051871865987778, 0.040856290608644485, 0.03527721390128136, 0.006470813881605864, 0.0002008564188145101, -0.0031924669165164232, 0.055216796696186066, -0.06162191554903984, -0.0025185246486216784, 0.04472699016332626, -0.008933696895837784, -0.012922852300107479, -0.03876693546772003, 0.007416395004838705, 0.03103007562458515, 0.06594936549663544, 0.027903471142053604, -0.02674524113535881, -0.026840096339583397, 0.023963933810591698, -0.0538175068795681, -0.05802687257528305, -0.012661851942539215, 0.01990840584039688, 0.004655725788325071, -0.009755288250744343, -0.02813885360956192, -0.01432052068412304, -0.07272636890411377, -0.04498615488409996, 0.0508098229765892, -0.03989901393651962, -0.024125011637806892, 0.02193678356707096, 0.07726085931062698, 0.011188416741788387, -0.008804942481219769, -0.03523285686969757, 0.026427533477544785, -0.024640917778015137, 0.020941296592354774, 0.004432660527527332, 0.006128575652837753, 0.0497853048145771, -5.387679993873462e-05, 0.010255394503474236, -0.034287333488464355, 0.005427658092230558, 0.0060913763009011745, -0.0357864610850811, -0.015353023074567318, -0.03812563046813011, -0.0014619285939261317, 0.01501708384603262, -0.007492287550121546, -0.03800061345100403, 0.03496898338198662, 0.00408422714099288, 0.018036654219031334, 0.060659363865852356, 0.01722012087702751, 0.007830202579498291, 0.02988048456609249, 0.010026740841567516, -0.018506642431020737, -0.06044727936387062, 0.001354913809336722, -0.030094143003225327, -0.008473992347717285, 0.023342197760939598, 0.03756164759397507, -5.6273688005846874e-33, 0.00031995258177630603, -0.03250078856945038, 0.02144784852862358, 0.019906651228666306, -0.002743534743785858, -0.06946396082639694, -0.054297421127557755, -0.05573936179280281, -0.02697931043803692, -0.022279148921370506, -0.0001324022450717166, 0.005609714426100254, 0.0026644656900316477, -0.05122914910316467, 0.020464973524212837, 0.009883382357656956, 0.050020646303892136, 0.01557727437466383, -0.006795692723244429, 0.04475560784339905, -0.04281548783183098, -0.02229202166199684, -0.028442339971661568, 0.01566835679113865, -0.04545131325721741, -0.04871543496847153, -0.022958453744649887, 0.019398771226406097, -0.034896012395620346, 0.03875375911593437, -0.03994673863053322, -0.0585874579846859, -0.00698973098769784, 0.027803625911474228, -0.0038244782481342554, -0.020323166623711586, 0.013836110010743141, -0.006221340969204903, -0.031690310686826706, -0.00010806276259245351, 0.04942535609006882, -0.02480243146419525, -0.02699934132397175, 0.01271003857254982, 0.01531922072172165, 0.023756004869937897, 0.02831864170730114, 0.04710807278752327, -0.019571417942643166, 0.06276094168424606, -0.12057524919509888, 0.029568884521722794, 0.010639448650181293, 0.050095848739147186, -0.024927057325839996, 0.03314162418246269, 0.06587986648082733, -0.02073025517165661, -0.00931475218385458, -0.046284157782793045, 0.031249653548002243, 0.012160858139395714, 0.0055407448671758175, -0.06379992514848709, -0.010647941380739212, 0.0003659469948615879, -0.047589413821697235, 0.056495945900678635, 0.020724983885884285, 0.03048148937523365, -0.00624101934954524, -0.013045252300798893, -0.010729805566370487, 0.040012016892433167, -0.04302489012479782, -0.001439835294149816, -0.004980021622031927, 0.03213341534137726, 0.04248037189245224, 0.14297190308570862, -0.04410042613744736, 0.01710323989391327, 0.003940974827855825, 0.01764686591923237, 0.02093733474612236, -0.05634665861725807, -0.03412378951907158, -0.010081990621984005, 0.004216395318508148, 0.01797519624233246, 0.03214582800865173, -0.04676178842782974, -0.020651211962103844, 0.015185629017651081, 0.08078032732009888, 0.06879907846450806, -0.020433302968740463, 0.06087629497051239, 0.013818535022437572, -0.05166928097605705, -0.02111821435391903, -0.027393316850066185, 0.022625645622611046, -0.018796922639012337, 0.04160838574171066, -0.02695440500974655, 0.013542873784899712, 0.043560877442359924, 0.0002400740486336872, 0.020269080996513367, -0.0007451042765751481, -0.04452953115105629, -0.013445302844047546, 0.015260357409715652, -0.06602462381124496, -0.03279558941721916, 0.010614891536533833, 0.008420612663030624, -0.04587101936340332, -0.03988036885857582, -0.03699149936437607, 0.0713190957903862, 0.048590708523988724, -0.04136577248573303, 0.010633304715156555, 0.01965484395623207, 0.03133608400821686, 0.05503641068935394, 0.08127234131097794, 0.017700865864753723, 0.004242327529937029, 0.02499997988343239, 3.0956002206039557e-07, 0.019671116024255753, 0.06915633380413055, 0.010776336304843426, -0.05755183845758438, 0.005871261470019817, -0.04062294587492943, -0.0568745918571949, 0.0074301003478467464, 0.014665819704532623, 0.03880070522427559, 0.04312719404697418, 0.002753783017396927, -0.0025861107278615236, 0.024110855534672737, 0.011140515096485615, -0.09533530473709106, -0.004976098425686359, -0.0065587894059717655, -0.025087645277380943, -0.010823570191860199, 0.005375409498810768, 0.004507412668317556, 0.035017602145671844, 0.02332654595375061, -0.04406766593456268, 0.08502102643251419, -0.016403356567025185, -0.01772123947739601, 0.03318173065781593, 0.045998409390449524, -0.01617264747619629, -0.026889298111200333, -0.029015827924013138, -0.07777681946754456, -0.030678048729896545, -0.03679603710770607, -0.052583999931812286, 0.018031485378742218, 0.020977001637220383, 0.003136970102787018, 0.03310241550207138, 0.05608241632580757, -0.023961266502738, -0.021106787025928497, -0.0019231571350246668, -0.0056552947498857975, 0.0169485155493021, 0.008207915350794792, 0.010574067011475563, -0.02014492265880108, 0.02682274580001831, 0.033273208886384964, 0.038597073405981064, 0.007940564304590225, -0.01703529991209507, 0.01262721512466669, -0.005691454280167818, -0.029689082875847816, 0.045621857047080994, 0.008782198652625084, -0.05365559086203575, -0.0017930069006979465, 0.008529449813067913, 0.03715178743004799, 0.03127749264240265, -0.027716076001524925, -0.006584829650819302, 3.2487348595316723e-34, 0.023091576993465424, -0.06967736035585403, 0.020326698198914528, -0.04364736005663872, 0.0022664733696728945, -0.038448914885520935, 0.018067877739667892, 0.001683343667536974, -0.011884265579283237, -0.06903181225061417, -0.05583634227514267], "91d01686-e2e1-4e30-8f24-54bc362bfde6": [0.009980267845094204, -0.06108948215842247, -0.02956344373524189, -0.08333852142095566, 0.007022584788501263, 0.04917163401842117, -0.040754370391368866, -0.017912205308675766, -0.055299703031778336, -0.024085775017738342, 0.042174872010946274, -0.001146778929978609, 0.028544386848807335, 0.009091337211430073, 0.017011769115924835, 0.03484662249684334, 0.039435822516679764, -0.012308122590184212, 0.05422619357705116, 0.03328626602888107, -0.023121818900108337, 0.01631934568285942, 0.01705106347799301, -0.009884531609714031, -0.0028441152535378933, -0.06571736931800842, 0.017962194979190826, 0.018806355074048042, 0.003900646697729826, -0.02967749908566475, -0.019580798223614693, 0.056085776537656784, -0.014362442307174206, 0.009942329488694668, 2.176357156713493e-06, -0.00638592941686511, -0.002333457116037607, 0.0347832515835762, 0.002325545996427536, -0.037430331110954285, -0.04163176938891411, -0.04630611464381218, -0.05355381965637207, 0.024364877492189407, 0.018073100596666336, -0.03885742649435997, -0.008588332682847977, 0.07916034013032913, 0.05239127576351166, 0.045180775225162506, 0.02776332013309002, -0.0029770836699754, 0.007506233174353838, -0.01801057532429695, 0.12471294403076172, 0.058749567717313766, 0.010611527599394321, 0.08345821499824524, 0.0025724906008690596, 0.01641320250928402, 0.03665037453174591, 0.005686958786100149, -0.005871315486729145, -0.05398724228143692, 0.07982419431209564, -0.03124290332198143, 0.039642445743083954, -0.05700678005814552, 0.036668673157691956, -0.013295686803758144, 0.03034881129860878, -0.0369349867105484, 0.014022169634699821, -0.0059988172724843025, -0.04120803251862526, 0.02652035653591156, -0.029427379369735718, 0.04076436907052994, 0.03519606962800026, -0.03173736482858658, -0.06905752420425415, -0.08665178716182709, -0.01721542701125145, -0.009968501515686512, 0.05337158590555191, -0.014896316453814507, 0.005628439597785473, -0.03369585797190666, 0.007806622888892889, -0.04135057330131531, -0.04780525341629982, -0.08156903088092804, -0.06930596381425858, 0.0030069409403949976, 0.022649038583040237, -0.018713779747486115, -0.010662375018000603, -0.07895975559949875, 0.06401613354682922, -0.011042362079024315, -0.011979961767792702, -0.011263011023402214, -0.026798255741596222, 0.011226683855056763, 0.01255355216562748, 0.06219204142689705, 0.02334252931177616, -0.005841482430696487, 0.022537140175700188, 0.04399188980460167, -0.026640521362423897, 0.0005819866200909019, -0.034735582768917084, -0.05372755602002144, 0.006479128263890743, 0.018858904018998146, 0.06426679342985153, 0.04199328273534775, 0.06715845316648483, 0.0156437736004591, 0.05851467326283455, -0.03699148818850517, -0.0430339053273201, 0.02111878991127014, 0.02874854952096939, -0.05697448551654816, 0.0020643549505621195, 0.00013619901437778026, 0.008606561459600925, 0.07832306623458862, -0.03126942366361618, 0.026983752846717834, 0.0014489507302641869, -0.008920243009924889, -0.028419293463230133, 0.027186958119273186, 0.06034519150853157, 0.008537794463336468, 0.011846354231238365, -0.003454216755926609, 0.03055626153945923, -0.0023991353809833527, -0.028949839994311333, 0.00458478881046176, -0.02615632489323616, -0.004549603909254074, 0.010509798303246498, -0.05587081238627434, -0.03933032229542732, 0.027736589312553406, -0.013660913333296776, -0.010343228466808796, -0.07016955316066742, -0.003115150611847639, -0.0052949776872992516, -0.022036930546164513, -0.06160707771778107, -0.02320808731019497, 0.025396112352609634, 0.027713166549801826, 0.02896532416343689, 0.015016961842775345, 0.03752806410193443, -0.057177890092134476, -0.0025062160566449165, 0.008684251457452774, 0.10314713418483734, 0.015081270597875118, 0.08066247403621674, 0.04519515112042427, -0.005754014011472464, 0.021030182018876076, -0.0034257967490702868, 0.010899752378463745, 0.013612526468932629, 0.0330551452934742, 0.07376110553741455, -0.03350218012928963, -0.002344588516280055, 0.035329896956682205, -0.023913316428661346, -0.06386319547891617, -0.012611006386578083, -0.02834160625934601, 0.001983432564884424, -0.0021853004582226276, -0.07532180845737457, -0.01599757745862007, 0.02304232120513916, 0.018692497164011, -0.09183481335639954, -0.0002780880022328347, -0.04696831479668617, -0.0562717467546463, -0.04358251020312309, -0.0011394218308851123, -0.004240057431161404, -0.06613712757825851, 0.036723148077726364, 0.010944596491754055, 0.02580193430185318, 0.0004561525711324066, 0.07194375991821289, -0.01880059577524662, 0.04595967382192612, -0.020989274606108665, -0.014835087582468987, -0.05954929068684578, 0.033519722521305084, -0.021100793033838272, -0.0029426347464323044, -0.037264954298734665, -0.03769387677311897, -0.023312006145715714, -0.018735716119408607, -0.01615956798195839, -0.04971189424395561, -0.0191813912242651, 0.008915387094020844, -0.010076940059661865, 0.018985126167535782, -0.01540330145508051, -0.001991031691431999, 0.038947928696870804, 0.023813579231500626, -0.04084881767630577, -0.019383607432246208, -0.03323137387633324, 0.06523872166872025, 0.003909561783075333, -0.05860619619488716, 0.01645570620894432, 0.0007400442264042795, 0.05455034226179123, -0.03789418563246727, 0.04537466540932655, 0.07000204920768738, -0.00024293891328852624, 0.04413948208093643, -0.01309745293110609, -0.002200696850195527, -0.017197607085108757, 0.013415849767625332, -0.005108852405101061, -0.01700788363814354, -0.06265316158533096, -0.025596654042601585, 0.020465387031435966, 0.013196677900850773, 0.008267558179795742, 0.02390730008482933, -0.0013552330201491714, -0.033377159386873245, 0.004416417330503464, -0.07575211673974991, -0.02263568714261055, -0.01305976789444685, 0.011702781543135643, -0.019354142248630524, 0.001317179063335061, 0.0334804505109787, 0.005977023858577013, -0.035207368433475494, 0.011569171212613583, 0.03364577516913414, 0.0015278111677616835, 0.01930624060332775, 0.04641653969883919, -0.016369689255952835, 0.012684202753007412, -0.028849784284830093, -0.028849290683865547, -0.03485483303666115, -0.018144041299819946, 0.010745195671916008, 0.03262060880661011, -0.009656979702413082, -0.03542080149054527, -0.027062229812145233, 0.007100880611687899, 0.04686173424124718, 0.025316845625638962, -0.02362990938127041, 0.00924274604767561, -0.01846037246286869, 0.027446256950497627, 0.012445533648133278, -0.051345743238925934, -0.05282961577177048, -0.04370925948023796, 0.007443469483405352, 0.024183273315429688, 0.03228821977972984, -0.0367988720536232, -0.01572398841381073, 0.016503268852829933, 0.09237712621688843, -0.047912150621414185, 0.005135477054864168, 0.020864779129624367, 0.0374293327331543, 0.04039624705910683, -0.0035547332372516394, -0.01351914368569851, 0.041525762528181076, 0.0386846698820591, 0.030212469398975372, 0.002015352249145508, 0.029480693861842155, -0.03539586067199707, 0.01601611264050007, -0.013540374115109444, -0.07367532700300217, -0.022674189880490303, -0.012453923001885414, -0.029301965609192848, 0.05306042358279228, -0.04791593179106712, 0.04109059274196625, 0.06473124027252197, 0.0099055590108037, -0.03214699774980545, -0.03784533590078354, -0.02070752903819084, -0.004596952348947525, -0.04382801428437233, 0.05081862211227417, -0.008732509799301624, 0.006475152913480997, 0.034308310598134995, -0.018385929986834526, 0.019731270149350166, 0.02139192819595337, 0.021165337413549423, -0.032090865075588226, -0.010122207924723625, 0.08376166969537735, -0.044199779629707336, 0.005580260884016752, 0.0008675096905790269, 0.009184311144053936, 0.04749218747019768, 0.030437888577580452, 0.005273353308439255, -0.01795974373817444, 0.005694549065083265, -0.03881637379527092, -0.005350776948034763, 0.01917296089231968, 0.01787486858665943, 0.024942388758063316, -0.015453378669917583, 0.021467411890625954, -0.017143966630101204, -0.004504641517996788, -0.07532710582017899, 0.0041726259514689445, 0.0017555569065734744, 0.0076207867823541164, 0.0032884494867175817, 0.007359112612903118, 0.018281444907188416, 0.037543728947639465, 0.02623101882636547, -0.047367773950099945, -0.020193660631775856, -0.035264752805233, -0.05679531767964363, 0.0025970302522182465, -0.004907774738967419, -0.05556962639093399, 0.025628678500652313, 0.013935784809291363, 0.056867580860853195, 0.011130415834486485, -0.02480710670351982, 0.01822267659008503, -0.04528934136033058, 0.01990370638668537, -0.01161736249923706, 0.021031495183706284, -0.0344383604824543, 0.018116259947419167, 0.012224585749208927, -0.030211854726076126, -0.0003531223628669977, 0.007437971420586109, 0.03162861615419388, 0.09649620950222015, 0.004270119592547417, -0.0011690419632941484, 0.0036307063419371843, -0.06677787750959396, -0.0176559966057539, 0.011839733459055424, -0.00381320808082819, -0.041734129190444946, 0.012994769029319286, 0.0030450078193098307, -0.0005927727906964719, 0.0062167285941541195, 0.014848391525447369, -0.02396427094936371, -0.013626137748360634, -0.030526909977197647, 0.0369238406419754, 0.10059557110071182, -0.03573925420641899, 0.03982795774936676, 0.03187165781855583, 0.13038061559200287, 0.05972578749060631, 0.006824753247201443, -0.01615961268544197, 0.009214412420988083, -0.04667588323354721, 0.045776307582855225, 0.011534691788256168, -0.03522969037294388, -0.021225132048130035, -0.08033500611782074, 0.0088424663990736, 0.07047736644744873, -0.015258162282407284, -0.0027077975682914257, -0.0411347970366478, 0.06700623780488968, -0.017991887405514717, 0.022215450182557106, 0.0006025307811796665, 0.030948668718338013, 0.03582583740353584, -0.01004716381430626, 0.01527506485581398, 0.027650263160467148, 0.019916528835892677, -0.04126222804188728, -0.015892809256911278, 0.0034474150743335485, -0.08359737694263458, -0.051821112632751465, 0.025060521438717842, 0.05331342667341232, 0.010140555910766125, 0.025484247133135796, 0.03712470084428787, 0.019984479993581772, 0.019934484735131264, 0.030447684228420258, 0.00039482838474214077, -0.03541381657123566, -0.019734321162104607, -0.09344397485256195, 0.039790477603673935, -0.039978139102458954, 0.013135096058249474, -0.07771230489015579, 0.012968656606972218, -0.008874689228832722, 0.011333920992910862, -0.01188673172146082, 0.02390008233487606, -0.008721396327018738, -0.02742205746471882, -0.057822663336992264, -0.05793596804141998, -0.05669564753770828, -0.06137219816446304, 0.023185748606920242, 0.022082794457674026, 0.02475797012448311, -0.0020993154030293226, -0.023957984521985054, -0.005277570802718401, -0.030969256535172462, -0.037830911576747894, -0.050167761743068695, 0.012355812825262547, 0.0433046817779541, -0.017017561942338943, 0.03573931008577347, 0.012090747244656086, 0.031740982085466385, 0.022292934358119965, -0.03558123856782913, 0.027357611805200577, 0.01570543460547924, -0.004401883576065302, -0.02602805569767952, -0.0276456568390131, 0.024384506046772003, -0.05624491721391678, -0.03441336750984192, 0.03990612179040909, -0.07729886472225189, -0.04054513946175575, -0.021279435604810715, 0.047290656715631485, 0.014597443863749504, 0.07449193298816681, 0.024501530453562737, -0.04377201199531555, -0.01977674290537834, -0.006960159167647362, -0.05946802720427513, -0.05300064757466316, -0.021432504057884216, -0.006256424821913242, 0.014954623766243458, -0.05001583322882652, -0.010845726355910301, 0.008210675790905952, -0.05142532289028168, -0.006227794568985701, 0.007331575732678175, -0.055765170603990555, -0.039434488862752914, 0.0006050108349882066, 0.06683845818042755, -0.0037668312434107065, -0.008597361855208874, -9.334158676210791e-05, 0.02955709956586361, 0.030402772128582, -0.0035065144766122103, 0.026351625099778175, -0.006065040361136198, 0.019478946924209595, -0.04605741798877716, -0.012181303463876247, -0.021078450605273247, 0.024653583765029907, 0.005497234407812357, -0.029116235673427582, -0.007921556010842323, -0.007825068198144436, -0.014378593303263187, -0.0034001015592366457, -0.019813576713204384, -0.03979402408003807, 0.04093228280544281, -0.020280424505472183, 0.035155173391103745, 0.06846188753843307, 0.0034929816611111164, 0.07391586899757385, 0.01186151709407568, 0.0021161120384931564, -0.017674431204795837, -0.04676317423582077, 0.007853537797927856, -0.03155757859349251, 0.004775852430611849, 0.004025184083729982, 0.007981771603226662, -4.989135612173665e-33, -0.01167265884578228, -0.009853353723883629, -0.003813861170783639, 0.011041847988963127, -0.02380230836570263, -0.057528018951416016, -0.05878366157412529, -0.03492686152458191, -0.01701207458972931, -0.012636546976864338, -0.025350168347358704, 0.016383133828639984, 0.003858898300677538, -0.028528282418847084, 0.011024232022464275, 0.0035436274483799934, 0.03904804214835167, 0.008505062200129032, 0.004112537484616041, 0.008886360563337803, -0.0460762083530426, -0.04086238890886307, 0.027461931109428406, 0.023411482572555542, -0.013434791006147861, -0.03951387479901314, -0.03688407689332962, -0.007268012035638094, -0.006010061129927635, 0.04286632686853409, -0.0028241067193448544, -0.055366236716508865, -0.0037579999770969152, 0.037140123546123505, -0.021896468475461006, -0.028676852583885193, 0.012047331780195236, -0.000782653340138495, -0.02517831325531006, 0.02394985966384411, 0.06705081462860107, -0.021164895966649055, -0.027302691712975502, -0.029207075014710426, 0.03491741046309471, 0.008433455601334572, 0.01345061045140028, 0.03538951650261879, -0.0012006149627268314, 0.0315876267850399, -0.06601381301879883, 0.0391194149851799, 0.025501245632767677, 0.07064702361822128, -0.010633307509124279, -0.019145455211400986, 0.07204907387495041, 0.028430912643671036, 0.0018928690114989877, -0.03950721397995949, 0.03819558024406433, -0.012387484312057495, -0.002982513513416052, -0.07291147857904434, -0.00264813588000834, -0.017291400581598282, -0.07249408960342407, 0.03456898778676987, 0.018650347366929054, 0.04270037263631821, 0.00645310478284955, -0.0448869913816452, 0.012443134561181068, 0.07336294651031494, -0.011945733800530434, 0.02299923077225685, -0.004927261266857386, 0.038025304675102234, 0.04928089678287506, 0.1340155452489853, -0.03221328929066658, 0.017859041690826416, 0.018651964142918587, 0.009596046060323715, -0.008656366728246212, -0.05485910177230835, -0.016060076653957367, -0.01750679686665535, -0.013638523407280445, -0.011868521571159363, 0.02628820575773716, -0.003941698931157589, -0.029240569099783897, 0.01645919680595398, 0.10121093690395355, 0.0483931265771389, -0.055957309901714325, 0.05233033746480942, -0.006720496341586113, -0.03563700243830681, 0.016211437061429024, -0.01519490871578455, 0.08538046479225159, -0.018496198579669, 0.038322728127241135, 0.00295872800052166, 0.06016305461525917, 0.020366469398140907, -0.0036367822904139757, 0.01837080344557762, 0.03488023951649666, 0.022409452125430107, -0.004860432352870703, 0.011477649211883545, -0.03309991583228111, -0.034345753490924835, -0.00775047717615962, 0.007817093282938004, -0.045398175716400146, -0.03217408061027527, -0.0022995416074991226, 0.07027903944253922, 0.037343770265579224, -0.021074963733553886, 0.008285636082291603, 0.017561886459589005, 0.0373215451836586, 0.04315188527107239, 0.07960633188486099, 0.03090391308069229, 0.015211110934615135, 0.018328264355659485, 2.8406645924405893e-07, 0.04441184923052788, 0.06509740650653839, 0.03020474873483181, -0.03556669503450394, -0.0020698048174381256, -0.017328107729554176, -0.06892044097185135, -0.0001694425445748493, -0.03244844079017639, 0.034605272114276886, 0.00944585632532835, -0.021266227588057518, -0.002024539979174733, -0.004492079373449087, 0.017110135406255722, -0.092991404235363, -0.038882020860910416, 0.017017079517245293, -0.028367316350340843, -0.008461159653961658, -0.02354627288877964, 0.029499705880880356, 0.0292508602142334, 0.05469895154237747, -0.025683492422103882, 0.06015941500663757, -0.03876641020178795, -0.03757978230714798, 0.05103524401783943, 0.05564512312412262, -0.022464187815785408, -0.056764405220746994, -0.020863989368081093, -0.04642748832702637, -0.05571296438574791, -0.03504569083452225, -0.04574741795659065, 0.010305428877472878, 0.01957153156399727, 0.04532860219478607, 0.010868867859244347, 0.06955266743898392, 0.024312451481819153, -0.03657355532050133, 0.0063433097675442696, 0.028201699256896973, -0.01250621397048235, -0.06393813341856003, -0.004496033303439617, -0.005987942684441805, 0.04763663560152054, 0.007950574159622192, 0.021256646141409874, -0.02982933074235916, -0.019072657451033592, -0.007830006070435047, 0.00896432250738144, -0.03296346217393875, 0.04406794533133507, -0.031247593462467194, -0.04541364684700966, 0.012306289747357368, -0.006920961197465658, 0.02589639276266098, 0.07605764269828796, -0.0524822473526001, 0.00035751383984461427, 2.7974001301136087e-34, 0.029409121721982956, -0.05308522284030914, 0.016929881647229195, -0.024413317441940308, -0.001008366933092475, -0.05053465813398361, 0.042354926466941833, 0.002554182894527912, -0.00838958378881216, -0.0667453482747078, -0.06282861530780792], "72f60be5-209a-4251-9961-999d7847be69": [-0.003536385716870427, -0.02114780992269516, -0.0313381552696228, -0.0626872107386589, -0.015253540128469467, 0.03239300474524498, -0.06944414228200912, 0.024876171723008156, -0.023446330800652504, 0.0002497094392310828, 0.039119694381952286, -0.027570441365242004, 0.03182365000247955, 0.00544867804273963, -0.0038305092602968216, 0.06629286706447601, 0.038084570318460464, -0.011463218368589878, -0.008398832753300667, 0.023963825777173042, -0.023909948766231537, 0.017548829317092896, -0.009022891521453857, -0.018754608929157257, -0.006716297939419746, -0.026454318314790726, -0.018871940672397614, 0.018812207505106926, 0.02572168968617916, 0.018398698419332504, -0.017037739977240562, 0.09761769324541092, -0.033951543271541595, 0.0736842155456543, 2.0863374174950877e-06, -0.039218030869960785, 0.03164363652467728, 0.01644391007721424, -0.01552549283951521, -0.04019393026828766, -0.015473890118300915, -0.045678503811359406, -0.04809637740254402, 0.015260947868227959, 0.02175893262028694, -0.01796739175915718, -0.015195445157587528, 0.05474938079714775, 0.05750357359647751, 0.022181354463100433, 0.01759558916091919, 0.008321422152221203, 0.02016814425587654, -0.00822918489575386, 0.09723827242851257, 0.04394432529807091, 0.022005116567015648, 0.059191565960645676, 0.010186976753175259, -0.026019396260380745, 0.056361522525548935, -0.0012660189531743526, 0.02266077511012554, -0.047071509063243866, 0.02117242105305195, -0.006753237918019295, 0.04404085874557495, -0.06389054656028748, 0.0056165470741689205, -0.011194965802133083, -0.0054536485113203526, -0.05259716883301735, 0.033313341438770294, -0.020940979942679405, -0.03628195822238922, 0.023114195093512535, -0.004422869998961687, 0.01507694274187088, 0.01651882939040661, -0.030375836417078972, -0.06965688616037369, -0.026983557268977165, -0.009645577520132065, -0.021694421768188477, 0.0008138520061038435, -0.03717046231031418, 0.01594318076968193, -0.022976042702794075, 0.0028444482013583183, 0.011556421406567097, 0.001056599779985845, -0.07184495031833649, -0.05225241556763649, 0.04051288589835167, 0.013757345266640186, -0.06096552312374115, -0.009213625453412533, -0.060998495668172836, 0.09481851756572723, 0.019738882780075073, -0.06930745393037796, -0.014870846644043922, -0.05516359955072403, 0.04579047113656998, 0.02441263385117054, 0.07797423005104065, -0.0026137703098356724, -0.0315634086728096, 0.01840055361390114, 0.019440457224845886, -0.0333276093006134, 0.02351182885468006, -0.0022392356768250465, -0.04964154586195946, 0.01337149366736412, -0.0042890640906989574, 0.05990635231137276, 0.03046969696879387, 0.04561952129006386, 0.06362218409776688, 0.04429645091295242, -0.04359943047165871, -0.030044779181480408, -0.0002607144124340266, 0.00480886735022068, -0.07249410450458527, 0.02849333919584751, -0.009922347031533718, 0.00021620403276756406, 0.07475368678569794, 0.013224865309894085, -0.024631952866911888, 0.005581530276685953, -0.02272098697721958, 0.00022743632143829018, 0.0003846673062071204, 0.035787854343652725, -0.000865729118231684, 0.0003782497369684279, -0.012504886835813522, 0.04494462534785271, -0.025565123185515404, 0.007913022302091122, -0.0014399533392861485, 0.005429013166576624, -0.03212226927280426, 0.0047336299903690815, -0.03792731463909149, -0.0462258905172348, -0.008417136035859585, -0.00047144925338216126, -0.021299021318554878, -0.036144841462373734, 0.022678028792142868, -0.02207167260348797, -0.005684134550392628, -0.03590596094727516, 0.004672138951718807, -0.031603842973709106, 0.008871789090335369, 0.016714155673980713, 0.007566976360976696, 0.042343541979789734, -0.013135567307472229, -0.019506914541125298, 0.04714525118470192, 0.08406823873519897, -0.0026033080648630857, 0.07902377098798752, 0.012034788727760315, -0.04347528889775276, 0.030529489740729332, 0.007381020113825798, -0.030001606792211533, -0.017628412693738937, 0.007466186303645372, 0.07302592694759369, -0.015467597171664238, 0.015323431231081486, 0.026325447484850883, 0.00761759327724576, 0.025093959644436836, -0.010674607008695602, -0.034668173640966415, -0.041313037276268005, -0.024616152048110962, -0.08626500517129898, -0.0004114972834941, 0.010343718342483044, -0.009260131046175957, -0.08360014855861664, 0.0010897826869040728, -0.04222273826599121, -0.06849835067987442, -0.02049403078854084, -0.0006838837871327996, 0.021885477006435394, -0.062471646815538406, 0.03652902692556381, -0.02105671726167202, 0.004621434025466442, 0.01586030051112175, 0.07306499034166336, 0.006898670457303524, 0.060784514993429184, -0.02872668392956257, -0.008531472645699978, -0.003329918719828129, 0.022527771070599556, -0.0327267087996006, 0.024548957124352455, -0.01837204024195671, -0.007494337856769562, -0.01365689653903246, -0.025047115981578827, 0.009156462736427784, -0.008024914190173149, -0.015183486044406891, 0.004518858157098293, -0.0016032734420150518, -0.016959769651293755, -0.010788236744701862, -0.04250869154930115, 0.03317241743206978, 0.011107905767858028, -0.01613699086010456, -0.032960955053567886, -0.0087899724021554, 0.037142567336559296, 0.0017535515362396836, -0.04429641738533974, -0.012162047438323498, 0.015008651651442051, 0.045373301953077316, -0.060075610876083374, 0.06873101741075516, 0.11047397553920746, 0.03288288787007332, 0.03955785557627678, 0.04433180019259453, -0.04379338026046753, -0.021223178133368492, -0.0331389345228672, 0.025914018973708153, -0.02788310870528221, -0.019396817311644554, -0.036246053874492645, 0.03747422993183136, 0.05572817847132683, -0.017309239134192467, -0.0034162737429142, 0.01817704178392887, -0.025268658995628357, 0.002404183382168412, -0.03233971819281578, -0.01398202683776617, 0.002190852304920554, 0.058640025556087494, 0.00279297586530447, -0.02000582218170166, 0.043691787868738174, -0.025477172806859016, -0.048763953149318695, 0.003232974326238036, 0.018958399072289467, 2.6246705601806752e-05, -0.03693358600139618, 0.05411835014820099, -0.03371942788362503, 0.01420250441879034, 0.011481578461825848, -0.015476636588573456, -0.03770578280091286, 0.009817120619118214, 0.03247986361384392, 0.04415130987763405, 0.03134285286068916, 0.017262354493141174, -0.020135682076215744, 0.02933569997549057, 0.014884942211210728, 0.029258577153086662, -0.03774195909500122, 0.014925450086593628, -0.019603857770562172, 0.0605475939810276, 0.052583612501621246, -0.03492167219519615, -0.04399196431040764, -0.05109163746237755, -0.0031365007162094116, 0.021447502076625824, 0.03448963537812233, -0.030012572184205055, -0.006939345970749855, -0.004537286702543497, 0.0901198461651802, -0.01961415447294712, 0.039916299283504486, -0.040742721408605576, 0.013729535043239594, 0.004428801126778126, -0.002122711157426238, -0.015854408964514732, 0.07494761794805527, -0.013309555128216743, 0.014156024903059006, -0.002725958591327071, 0.03220574930310249, -0.039968255907297134, -0.003674758831039071, -0.016503985971212387, -0.09686953574419022, -0.04108943045139313, -0.02265794947743416, -0.029461029917001724, 0.06368979811668396, -0.04709671437740326, 0.0044825817458331585, 0.03179118409752846, -0.01964804157614708, -0.0015463803429156542, -0.007885383442044258, -0.04669699817895889, -0.018955713137984276, -0.03454308211803436, 0.05052122473716736, -0.008723647333681583, 0.028362365439534187, 0.029706602916121483, -0.026267489418387413, 0.02060725912451744, 0.017346933484077454, 0.024137407541275024, -0.02430056408047676, -0.02009444870054722, 0.03880903124809265, -0.07833195477724075, -0.016285790130496025, 0.01245077233761549, 0.02400154434144497, 0.08490413427352905, 0.006823762785643339, 0.016257818788290024, -0.025426620617508888, 0.0001931700826389715, -0.0429203063249588, 0.0057196603156626225, 0.015238243155181408, 0.004546050913631916, -0.018065020442008972, 0.0344524011015892, 0.026063214987516403, -0.01606540009379387, -0.013455424457788467, -0.039680227637290955, -0.017480947077274323, -0.013795014470815659, 0.002164809498935938, 0.00046554190339520574, -0.021570300683379173, 0.027073165401816368, 0.05787980929017067, 0.008749405853450298, -0.07772905379533768, -0.05655881017446518, -0.023660920560359955, -0.011507843621075153, 0.0400259904563427, 0.0023739407770335674, -0.07446828484535217, -0.004537971690297127, 0.030591147020459175, 0.06299713253974915, 0.012005402706563473, -0.018950611352920532, -0.0005846892017871141, -0.02205723524093628, -0.025566289201378822, 0.002666256856173277, 0.0058445497415959835, -0.05466493219137192, 0.029380669817328453, 0.014955251477658749, -0.08251229673624039, 0.01570357009768486, 0.007897153496742249, 0.027982821688055992, 0.09984879940748215, 0.030449729412794113, -0.019292734563350677, 0.052401360124349594, -0.01046809833496809, 0.029125435277819633, 0.010624328628182411, -0.006752807646989822, -0.09395385533571243, -0.003019189927726984, -0.006553318817168474, -0.017433276399970055, -0.009565524756908417, -0.01238982006907463, 0.011269800364971161, 0.01361818891018629, -0.032952822744846344, -0.002874100813642144, 0.08768603205680847, -0.028303612023591995, 0.00519943330436945, -0.027993259951472282, 0.13870546221733093, 0.02834322862327099, 0.025695089250802994, -0.03291337937116623, 0.03830228000879288, 0.0032557942904531956, 0.036933235824108124, 0.025637967512011528, -0.03464353829622269, 0.009804165922105312, -0.04684232175350189, -5.655738277710043e-06, 0.040891699492931366, -0.04923051968216896, -0.06266818940639496, -0.027218876406550407, 0.036503929644823074, -0.011580794118344784, 0.006301514804363251, 0.012475461699068546, 0.027243968099355698, 0.01663079299032688, 0.02379223331809044, 0.02135850302875042, 0.04089150205254555, 0.004068803042173386, -0.0684731975197792, 0.002849266165867448, -0.007380164694041014, -0.0821225643157959, -0.03576505929231644, 0.0009339780081063509, 0.016241341829299927, 0.03046487830579281, -0.002419998636469245, 0.019039614126086235, 0.012084078043699265, -0.02258300967514515, 0.014430693350732327, 0.0317864827811718, 0.013469986617565155, -0.04451751336455345, -0.045372653752565384, 0.019566424190998077, 0.00394302187487483, -0.010480355471372604, -0.039597488939762115, -0.042754098773002625, 0.008841468952596188, 0.02037227340042591, -0.05455313250422478, 0.02395259588956833, -0.029511626809835434, -0.037292785942554474, -0.02543194591999054, -0.04077855870127678, -0.06902246922254562, -0.06755215674638748, 0.014747361652553082, 0.023081166669726372, -0.0029317745938897133, -0.011254873126745224, -0.041976530104875565, -0.016959797590970993, -0.03654202073812485, -0.03758900240063667, -0.06274087727069855, 0.03899235278367996, 0.005001419689506292, -0.03620842099189758, 0.028367115184664726, -0.009459173306822777, 0.05642181262373924, 0.009862730279564857, -0.012009362690150738, 0.02014288865029812, 0.07767625153064728, 0.006742718163877726, -0.00771077536046505, -0.018433140590786934, 0.0016687415773048997, -0.05600683018565178, -0.02530638314783573, 0.07015354186296463, -0.06111323833465576, 0.0026053404435515404, -0.010012027807533741, -0.040772695094347, 0.029078176245093346, 0.05973954498767853, 0.03937434032559395, -0.0391518659889698, 0.0008817803463898599, -0.0018190352711826563, -0.043034035712480545, -0.027330856770277023, 9.044352918863297e-05, 0.01068553701043129, 0.01819869875907898, -0.005865012761205435, -0.008793594315648079, 0.00859358161687851, -0.0542326457798481, 0.011541654355823994, 0.042448218911886215, -0.058765314519405365, 0.007574283983558416, 0.02054092101752758, 0.0986035093665123, -0.02390286885201931, -0.010571534745395184, -0.023708824068307877, 0.0028136135078966618, -0.009986011311411858, 0.029153749346733093, -0.023789439350366592, -0.02537503093481064, 0.025091543793678284, -0.03702467679977417, -0.009956472553312778, -0.046550992876291275, 0.02042967453598976, -0.025938455015420914, 0.01275994349271059, 0.00727683212608099, -0.020976172760128975, -0.033186085522174835, 0.01165611483156681, -0.013916589319705963, -0.03140224888920784, 0.01590314693748951, 0.0109934126958251, 0.05459738150238991, 0.0682772696018219, -0.03347194939851761, 0.03449779376387596, -0.0013358374126255512, 0.04101485386490822, -0.004600278101861477, -0.017877740785479546, 0.009461850859224796, -0.02168145962059498, 0.005019805394113064, 0.01705174706876278, 0.0021097997669130564, -5.4578327604953584e-33, 0.0010810879757627845, -0.031179338693618774, 0.006399158388376236, 0.01997307501733303, -0.016937430948019028, -0.04120258986949921, -0.055214740335941315, -0.05146916210651398, -0.018988296389579773, -0.02737591229379177, -0.021090196445584297, 0.04811476171016693, 0.0010101450607180595, -0.08416862785816193, 0.07181251794099808, 0.01218176819384098, 0.058502450585365295, 0.033862948417663574, -0.023122254759073257, -0.010620810091495514, -0.07353951781988144, -0.03672868385910988, -0.022029036656022072, 0.014549451880156994, -0.029772786423563957, -0.0028834454715251923, -0.00696929544210434, 0.005902049131691456, -0.05420566350221634, 0.010838058777153492, 0.006650113966315985, -0.05324988067150116, 0.006335580255836248, 0.035732775926589966, 0.00219923397526145, -0.03281087428331375, 0.003520567901432514, -0.01928900182247162, -0.006383802741765976, -0.019397124648094177, 0.04177848994731903, 0.0351298451423645, 0.011193918995559216, -0.004479845520108938, -0.029345540329813957, 0.0018504163017496467, 0.012062132358551025, 0.024952206760644913, 0.01248374953866005, 0.03250947967171669, -0.06114243343472481, 0.04297192767262459, 0.017133913934230804, 0.047821395099163055, -0.0018173790303990245, 0.013583241030573845, 0.07947305589914322, 0.022542832419276237, -0.014870699495077133, 0.005471587181091309, 0.013144965283572674, 0.010209165513515472, 0.001353321480564773, -0.07938539981842041, -0.0013641883851960301, -0.002757980488240719, -0.10716427862644196, 0.02450401522219181, 0.026324180886149406, 0.07410518079996109, 0.02870667167007923, 0.0017043899279087782, 0.022522836923599243, 0.07422475516796112, -0.05163996294140816, 0.017144758254289627, 0.04899122193455696, 0.08370067924261093, 0.05425472930073738, 0.11274690181016922, -0.05530337244272232, 0.009548087604343891, 0.004904825706034899, 0.014303167350590229, -0.0038997731171548367, -0.029072443023324013, -0.01707725040614605, 0.0036446317099034786, -0.014584735967218876, 0.012818729504942894, 0.03083600476384163, -0.022885028272867203, -0.01364926714450121, 0.008765478618443012, 0.06960190832614899, 0.07974521070718765, -0.06267271935939789, 0.032242026180028915, 0.01517427433282137, -0.02772037498652935, 0.041956860572099686, -0.012124007567763329, 0.0744008794426918, 0.008788011968135834, 0.058733854442834854, -0.005349722690880299, 0.0032561218831688166, 0.04936115816235542, -0.022240614518523216, 0.01068113837391138, 0.004368667025119066, 0.0032376518938690424, -0.028229782357811928, -0.02889704704284668, -0.026070456951856613, 0.009568003006279469, 0.02195470780134201, 0.01391435507684946, -0.05946765094995499, -0.034670501947402954, -0.0572710856795311, 0.05828668549656868, 0.06015472486615181, -0.011538619175553322, -0.01081549096852541, 0.005042806267738342, 0.03017367050051689, 0.05344395712018013, 0.07992924749851227, 0.05778760090470314, -0.000967526575550437, 0.031163228675723076, 2.787073754006997e-07, 0.02118098922073841, 0.0421091727912426, 0.037017885595560074, -0.043032485991716385, 0.01834873855113983, -0.02794625796377659, -0.10326290130615234, -0.03622182086110115, -0.02476375363767147, 0.03555721789598465, 0.016972210258245468, -0.02769666165113449, 0.0348132848739624, 0.02102183923125267, 0.030894728377461433, -0.11829967051744461, -0.03565327450633049, -0.010379191488027573, -0.061577070504426956, 0.0015485488111153245, -0.016354747116565704, -0.011383140459656715, 0.011340489611029625, 0.004942939151078463, -0.02708204835653305, 0.040854617953300476, -0.04286036640405655, 0.03998994082212448, 0.04802153632044792, 0.06679181009531021, 0.001376287778839469, -0.08048437535762787, 0.0076686302199959755, -0.053943533450365067, -0.0395694263279438, -0.01732948049902916, -0.06729721277952194, 0.008260969072580338, 0.010124650783836842, 0.017590897157788277, -8.731939306017011e-05, 0.02259419672191143, -0.015140686184167862, -0.029914487153291702, 0.02922123670578003, 0.04542343690991402, 0.012151374481618404, -0.06665593385696411, 0.03124706633388996, -0.0689551830291748, 0.021219497546553612, 0.047189339995384216, 0.029979629442095757, -0.010007924400269985, -0.020065927878022194, 0.0129393320530653, 0.0071677216328680515, -0.02854449488222599, 0.029815983027219772, -0.0465271882712841, -0.05374136567115784, -0.005177349783480167, -0.007026311010122299, 0.0016597682842984796, 0.015822798013687134, -0.02259259670972824, 0.016140764579176903, 2.4596085122578815e-34, 0.022137312218546867, -0.019435644149780273, 0.03720353916287422, -0.04347116872668266, -0.008891904726624489, -0.024170154705643654, 0.006033319514244795, 0.038773033767938614, -0.028141193091869354, -0.03383900225162506, -0.017514433711767197], "b22dd272-77eb-482f-b515-14e76a55a8b7": [0.011809154413640499, -0.05225794389843941, -0.024446934461593628, -0.031573884189128876, 0.014547682367265224, 0.06266433000564575, -0.06578803807497025, -0.006654954049736261, -0.03433884680271149, -0.007288812194019556, 0.001941679511219263, 0.02306588925421238, 0.06570746004581451, -0.06115817651152611, 0.01587284356355667, 0.047138433903455734, 0.0365741066634655, -0.02089119330048561, -0.01840771734714508, -0.008730064146220684, 0.012400338426232338, 0.040629372000694275, 0.050458986312150955, -0.01995626650750637, -0.002655163174495101, 0.008915161713957787, 0.036203738301992416, -0.001971957040950656, 0.042566802352666855, -0.008928325958549976, -0.013096150942146778, 0.056468505412340164, -0.007760307285934687, 0.05795641988515854, 2.375884605498868e-06, -0.020661603659391403, 0.003460748353973031, 0.042815886437892914, -0.02289522998034954, -0.037289809435606, -0.02300850674510002, -0.008661058731377125, -0.07638182491064072, 0.02840651571750641, 0.024801285937428474, -0.02917967550456524, -0.02802691049873829, 0.058693528175354004, 0.038453083485364914, 0.03490008786320686, 0.01773597113788128, -0.03757701441645622, 0.07206424325704575, -0.0280348751693964, 0.1205165684223175, 0.00029422162333503366, 0.026679912582039833, 0.08849895000457764, 0.003378649242222309, 0.006821193732321262, 0.040978528559207916, 0.014876648783683777, 0.004025095608085394, -0.046610940247774124, 0.04340769350528717, -0.022589121013879776, 0.082591213285923, -0.025119975209236145, 0.040200091898441315, 0.000865014037117362, 0.050469886511564255, -0.027062419801950455, 0.02256842330098152, 0.03308645635843277, -0.03773253411054611, 0.051928624510765076, -0.021167125552892685, 0.059407878667116165, 0.007383142597973347, 0.007817803882062435, -0.034102197736501694, -0.06297385692596436, 0.011792230419814587, -0.0077740210108459, 0.009215949103236198, -0.02282632887363434, 0.003691447898745537, -0.0321623869240284, 0.01960764266550541, -0.013166696764528751, -0.02799033373594284, -0.07388842850923538, -0.03863400220870972, -0.0010389660019427538, 0.05988267809152603, -0.010523955337703228, -0.0020098856184631586, -0.020552407950162888, 0.0323527529835701, 0.010715908370912075, -0.08117014914751053, -0.023448940366506577, -0.019317006692290306, 0.05151836946606636, -0.002045152010396123, 0.02609541267156601, -0.02443826198577881, -0.002138935960829258, 0.019000524654984474, 0.018180200830101967, -0.046703629195690155, -0.019409269094467163, -0.016641579568386078, -0.0458175465464592, -0.0377240888774395, 0.02825331501662731, 0.026560498401522636, -0.005628163460642099, 0.023261232301592827, 0.05609118565917015, 0.02722664549946785, -0.06544777005910873, -0.027850888669490814, 0.016357548534870148, -0.001041507232002914, -0.02587406523525715, 0.02487283945083618, -0.009632277302443981, 0.014593387953937054, 0.052846573293209076, 0.0015841216081753373, 0.0004948420100845397, -0.02368720807135105, -0.010842048563063145, -0.04528268054127693, 0.05637530982494354, 0.01321503333747387, 0.014868108555674553, 0.03129858896136284, -0.005994888022542, 0.03092029318213463, -0.032409582287073135, -0.04393833503127098, -0.021701330319046974, -0.0036802475806325674, -0.02551574446260929, 0.01520893070846796, -0.04365283250808716, -0.028046173974871635, 0.01185150258243084, -0.022690827026963234, 0.0009358717943541706, -0.09448353946208954, -0.009741546586155891, 0.004836844280362129, 0.01871601864695549, -0.06709212809801102, -0.05828951299190521, -0.028572022914886475, 0.009662017226219177, 0.007007775828242302, 0.0385037362575531, 0.0333460196852684, -0.04020903259515762, 0.024275681003928185, 0.00853907223790884, 0.08786134421825409, -0.008456414565443993, 0.06429880857467651, 0.028199555352330208, -0.02133900299668312, 0.04234597459435463, -0.03570251166820526, 0.00966020580381155, -0.005558964796364307, -0.008777840994298458, 0.06011074408888817, -0.004940099082887173, -0.02753169648349285, 0.034425877034664154, 0.00241016480140388, -0.016045818105340004, -0.017573054879903793, -0.06159549579024315, -0.07912939786911011, -0.001398427877575159, -0.08402012288570404, -0.0013847015798091888, 0.011025718413293362, -0.0006962480256333947, -0.07337632775306702, -0.0037897226866334677, -0.02044530026614666, -0.07516553997993469, -0.005477980710566044, -0.010206375271081924, 0.01810658723115921, -0.07969847321510315, 0.009487692266702652, -0.017623843625187874, 0.05063356086611748, 0.008042905479669571, 0.07837139815092087, -0.014306213706731796, 0.055689338594675064, -0.01644645445048809, 0.03203854709863663, -0.018155740574002266, 0.026472628116607666, -0.020979396998882294, -0.032418087124824524, -0.022863416001200676, -0.03372535482048988, -0.029177334159612656, -0.015260249376296997, -0.010040616616606712, -0.02889891341328621, 0.010943245142698288, -0.0012655062600970268, 0.011231238953769207, 0.007465538568794727, -0.006502209231257439, 0.03523530811071396, 0.026597093790769577, -0.041075076907873154, -0.027175214141607285, -0.06773251295089722, -0.02898504212498665, 0.02738470584154129, -0.005682466086000204, -0.06460481882095337, 0.00735982833430171, 0.02097967267036438, 0.04759294539690018, -0.06309010088443756, 0.06879814714193344, 0.04986432567238808, -0.014962923713028431, 0.036296334117650986, -0.07548283040523529, -0.050772808492183685, 0.01627129502594471, 0.02884148620069027, 0.0242534838616848, -0.025121167302131653, -0.0498119592666626, -0.03551085293292999, 0.020903445780277252, 0.06272050738334656, 0.007874064147472382, 0.0383453406393528, 0.020949792116880417, -0.0016144331311807036, -0.006130259018391371, -0.03138931840658188, 0.03453591465950012, -0.02658054791390896, 0.024229180067777634, -0.0014636162668466568, 0.00044119200902059674, 0.024672599509358406, 0.0004589477612171322, -0.027572380378842354, 0.0033184837084263563, 0.01548837311565876, 0.020352113991975784, -0.015549956820905209, 0.06639791280031204, -0.012617690488696098, 0.00680782925337553, -0.011861072853207588, -0.0016328641213476658, -0.03843957185745239, 0.010156732052564621, 0.034257058054208755, 0.033392440527677536, 0.02969118393957615, -0.02153283730149269, -0.013190709985792637, 0.021845582872629166, 0.03821936249732971, 0.03319466859102249, -0.024910664185881615, 0.01315827202051878, -0.0268578939139843, 0.03512401133775711, -0.0042771026492118835, -0.014466522261500359, -0.05438348278403282, -0.08589096367359161, -0.02511788345873356, 0.034259866923093796, 0.0053003886714577675, -0.010627311654388905, 0.004959935788065195, -0.015083624050021172, 0.07659575343132019, -0.08394764363765717, 0.014260710217058659, 0.04186118021607399, 0.039052363485097885, 0.008748287335038185, 0.012583471834659576, -0.016319258138537407, 0.05360962077975273, 0.019000815227627754, 0.0007827442022971809, -0.0116199292242527, -0.009253480471670628, -0.04897848516702652, 0.0425439290702343, 0.00094830640591681, -0.05463503673672676, -0.014937967993319035, 0.000782626448199153, -0.04564877226948738, 0.023336295038461685, -0.08544137328863144, 0.01798156648874283, 0.032856885343790054, -0.0060339723713696, -0.02201060764491558, -0.044743187725543976, -0.027532417327165604, -0.005678541958332062, -0.034388378262519836, 0.03514982759952545, -0.008930043317377567, 0.031204689294099808, 0.014384147711098194, -0.017007477581501007, -0.02655198611319065, 0.004785472061485052, 0.020763566717505455, -0.016017433255910873, 0.006457807961851358, 0.049785129725933075, -0.04785381630063057, 0.014554408378899097, -0.0039361934177577496, 0.0024044530000537634, 0.05413466691970825, 0.013505497016012669, 0.04894329980015755, -0.03143293038010597, 0.004800532944500446, -0.017143042758107185, 0.002450567437335849, 0.02263360284268856, -0.015839731320738792, 0.049694787710905075, -0.01381770521402359, 0.022346865385770798, -0.03062748722732067, -0.023294981569051743, -0.008409785106778145, 0.01397243794053793, -0.01393187791109085, 0.04788639768958092, -0.04768051952123642, 0.0025794641114771366, 0.027966273948550224, 0.036104440689086914, 0.010838350281119347, -0.010101072490215302, -0.04117266461253166, -0.023998228833079338, 0.0001109027725760825, -0.0058151595294475555, -0.017337383702397346, -0.04930853471159935, 0.022924844175577164, 0.04621579498052597, 0.03578125312924385, 0.014205443672835827, 0.014282505959272385, -0.008473103865981102, -0.06342601776123047, 0.00200845580548048, -0.025569718331098557, 0.02712543122470379, -0.045998770743608475, 0.013074405491352081, 0.01744246296584606, -0.054953452199697495, 0.02617456577718258, 0.006178437266498804, 0.03410905972123146, 0.047475848346948624, 0.03352658823132515, 0.015059038996696472, -0.03202508017420769, -0.06049646809697151, 0.03147458657622337, -0.004221417475491762, -0.009821354411542416, -0.060956452041864395, 0.019117919728159904, 0.011098196730017662, -0.019466660916805267, -0.0374961793422699, 0.03651093691587448, 0.0324576161801815, 0.0006291493191383779, -0.028241023421287537, 0.02233714610338211, 0.04314934089779854, -0.02634481154382229, 0.05315350741147995, 0.009660299867391586, 0.1599874347448349, -0.0438213087618351, 0.0026560493279248476, -0.018077783286571503, 0.02136402018368244, -0.01814286783337593, 0.041505519300699234, 0.016575757414102554, -0.036096710711717606, 0.01965595968067646, -0.08344873785972595, -0.03817935287952423, 0.050858303904533386, 0.0009634521557018161, -0.005941444542258978, -0.03139970451593399, 0.07313000410795212, -0.03357743099331856, 0.018787890672683716, -0.03083351068198681, 0.058089278638362885, 0.025734132155776024, -0.004754307679831982, -0.002742365002632141, 0.12158489227294922, 0.03243153169751167, -0.0012819960247725248, -0.025736939162015915, -0.0346989668905735, -0.07724497467279434, -0.009971670806407928, -0.018031317740678787, 0.05998748913407326, -0.007965434342622757, 0.03824355825781822, 0.019360443577170372, -0.004126023035496473, 0.0021754682529717684, 0.0015713461907580495, -0.015109695494174957, -0.012139775790274143, -0.0031945775263011456, -0.02403031475841999, 0.00520534859970212, -0.044344980269670486, -0.00229765847325325, -0.06586810946464539, 0.01750011555850506, -0.0009770197793841362, -0.012832027859985828, -0.007349441293627024, 0.028278622776269913, 0.011553540825843811, -0.050838783383369446, -0.026068948209285736, -0.03686687350273132, -0.021417539566755295, -0.05286809802055359, 0.023840274661779404, 0.03857273608446121, 0.01189222652465105, -0.004943380132317543, -0.0243225134909153, -0.005033235531300306, -0.026531465351581573, -0.046118441969156265, -0.07999646663665771, -0.00887923315167427, 0.0709809958934784, -0.024351894855499268, 0.05181706324219704, 0.012647051364183426, 0.06167902797460556, 0.033287424594163895, 0.0028587249107658863, 0.016537761315703392, 0.050591256469488144, -0.001619956106878817, 0.0038135468494147062, -0.07047955691814423, 0.04706310108304024, -0.03847179561853409, 0.007890868932008743, 0.02897103689610958, -0.001942334114573896, -0.04149648919701576, -0.017775483429431915, -0.015918131917715073, 0.024100063368678093, 0.09870154410600662, 0.03471801429986954, -0.030327901244163513, 0.010716420598328114, -0.017482036724686623, -0.05650906637310982, -0.024292444810271263, -0.029924364760518074, -0.018309729173779488, 0.009874405339360237, -0.0697115883231163, -0.006929728202521801, 0.0041807834059000015, -0.08885013312101364, 0.007724631577730179, 0.0017413576133549213, -0.03657064959406853, 0.008098330348730087, -0.008908389136195183, 0.06722120940685272, -0.0072623612359166145, -0.010006260126829147, -0.02030637115240097, 0.01712512969970703, -0.013993725180625916, -0.009846242144703865, 0.013370852917432785, -0.0017050686292350292, 0.04482369124889374, 0.0005129176424816251, -0.028512807562947273, -0.043932944536209106, 0.023821426555514336, 0.003647212404757738, -0.01563894934952259, 0.0029145744629204273, -0.03868335485458374, -0.0059726121835410595, -0.044880785048007965, -0.010474941693246365, -0.059326838701963425, 0.04291931912302971, -0.006327998358756304, 0.019988976418972015, 0.08110493421554565, 0.016050420701503754, 0.04438559338450432, 0.009811111725866795, -0.00031834447872824967, -0.02256086654961109, -0.04888976737856865, -0.01439567469060421, -0.007520872633904219, 0.029866471886634827, -0.005732698831707239, 0.0807817354798317, -5.3457152113398825e-33, -0.0022014330606907606, 0.004744537640362978, 0.009784701280295849, 0.010209811851382256, -0.07902776449918747, -0.02510060928761959, -0.08110770583152771, -0.03924797475337982, -0.03693955019116402, -0.002482012379914522, -0.029150906950235367, 0.015033110044896603, -0.004427280742675066, -0.07591734081506729, 0.003696163184940815, -0.005958030000329018, 0.0221034474670887, 0.04874839261174202, -0.0336369052529335, -0.01084317546337843, -0.04021511226892471, -0.01818700321018696, 0.024726243689656258, -0.014157634228467941, -0.03626221790909767, -0.03151451423764229, -0.03499284014105797, 0.014341313391923904, -0.025712454691529274, 0.01809084229171276, 0.004026858136057854, -0.04313979297876358, -0.0031049256213009357, -0.01148161944001913, -0.01435272116214037, -0.031954169273376465, -0.02658935636281967, 0.004935231991112232, 0.0023320848122239113, -0.021504979580640793, 0.04858994111418724, 0.010365317575633526, -0.01969829574227333, -0.006936894729733467, 0.017610175535082817, -0.0031299255788326263, 0.007614782080054283, 0.015739861875772476, -0.03583874553442001, 0.06356823444366455, -0.06043338030576706, 0.041574615985155106, 0.015383665449917316, 0.07479290664196014, -0.02404453605413437, -0.014220276847481728, 0.05048740655183792, 0.010529998689889908, -0.005318657495081425, 0.004035111051052809, 0.06758005917072296, 0.014884249307215214, 0.004620302002876997, -0.1270681619644165, 0.026164520531892776, 0.007205873727798462, -0.057766832411289215, 0.00400211988016963, -0.017007874324917793, 0.027191385626792908, -0.02052050083875656, 0.0033687923569232225, 0.02242330089211464, 0.07961848378181458, -0.048347413539886475, 0.01300230622291565, -0.030552474781870842, 0.058536089956760406, 0.036645568907260895, 0.1331031769514084, -0.05960724502801895, 0.04200121387839317, 0.010854590684175491, -0.013105674646794796, -0.02423349767923355, -0.021017175167798996, -0.013485527597367764, -0.012315179221332073, -0.028327856212854385, 0.0018261813092976809, 0.025367990136146545, -0.04795783385634422, -0.020204048603773117, 0.012914137914776802, 0.0636734589934349, 0.047261957079172134, -0.051344309002161026, 0.060299765318632126, 0.01715565100312233, -0.04156111180782318, -0.005118302535265684, -0.03374102711677551, 0.05705215036869049, 0.02407309040427208, 0.03195494785904884, 0.03126515820622444, 0.03881378471851349, 0.02236936055123806, 0.005439573898911476, 0.0107648354023695, 0.024996085092425346, -0.0026930170133709908, -0.027182001620531082, -0.027944255620241165, -0.015201324597001076, -0.027016621083021164, 0.0031633845064789057, -0.007177934981882572, -0.043183159083127975, 0.009391244500875473, -0.005835017655044794, 0.0733148530125618, 0.036087390035390854, -0.02739950641989708, 0.026623481884598732, 0.04918902367353439, 0.021230699494481087, 0.06977132707834244, 0.07541871815919876, 0.018703682348132133, 0.014496992342174053, 0.008757384493947029, 2.9689243774555507e-07, 0.016395781189203262, 0.026157204061746597, 0.03620082139968872, -0.02100597508251667, 0.015859032049775124, -0.03775352984666824, -0.07863382250070572, 0.039409101009368896, -0.03665901720523834, 0.06575708836317062, 0.02999306283891201, -0.00783901009708643, 0.020063310861587524, 0.002834053011611104, -0.0038824724033474922, -0.08580347150564194, -0.06102600321173668, -0.002344501670449972, -0.01216293778270483, -0.018262337893247604, -0.030372409150004387, 0.027762966230511665, 0.011578434146940708, 0.035918790847063065, 9.152870916295797e-05, 0.0674416571855545, -0.014101196080446243, -0.02250548079609871, 0.03462103381752968, 0.0010012233396992087, -0.004294064361602068, -0.06957142800092697, -0.004413214512169361, -0.06810619682073593, -0.03972537815570831, -0.028429146856069565, -0.03892488405108452, -0.013591879047453403, 0.012372641824185848, 0.07813282310962677, 0.009812584146857262, 0.028538145124912262, 0.01979108341038227, -0.024156296625733376, -0.009412539191544056, 0.04228323698043823, 0.01796017773449421, -0.031382396817207336, -0.029303427785634995, -0.047220177948474884, 0.01521469745784998, 0.04130810871720314, 0.011429387144744396, -0.034292932599782944, -0.03202967345714569, 0.02266506478190422, 0.010626716539263725, -0.05155792459845543, 0.05966675654053688, -0.009527739137411118, -0.03668881207704544, -0.0005134661332704127, -0.014383613131940365, 0.03927292302250862, 0.04243410378694534, -0.05840728059411049, -0.028613412752747536, 2.754865372124333e-34, 0.0392850823700428, -0.0518193282186985, 0.01178289670497179, -0.02824629656970501, 0.014670396223664284, -0.03547494485974312, 0.04371508210897446, 0.020586227998137474, -0.024509752169251442, -0.04097703844308853, -0.035277292132377625], "c8d40a5f-08f1-49b4-aec3-74fe69681315": [-0.0008783523226156831, -0.056940533220767975, -0.041605144739151, -0.06808104366064072, -0.026337413117289543, 0.0394316241145134, -0.05643408000469208, -0.02800317108631134, -0.04761349782347679, -0.008855078369379044, -0.009442484006285667, 0.020801670849323273, 0.06537894904613495, -0.005039708688855171, -0.0007166504510678351, 0.048826612532138824, 0.042886096984148026, -0.0324663370847702, 0.023563722148537636, 0.010507890023291111, 0.0087778614833951, 0.005772516597062349, 0.04008477181196213, -0.0384163036942482, -0.01966862753033638, -0.021372728049755096, 0.030094286426901817, 0.0016075983876362443, 0.045567166060209274, -0.00824686512351036, -0.004432971123605967, 0.053701627999544144, -0.011225798167288303, 0.035187751054763794, 2.3329187115450623e-06, 0.008055664598941803, -0.02978724241256714, 0.036150332540273666, 0.006699736230075359, -0.041246198117733, -0.003534671850502491, -0.0052998862229287624, -0.05781494453549385, 0.03520888090133667, 0.008235649205744267, -0.0040204403921961784, -0.011200093664228916, 0.04448387026786804, 0.05700026452541351, 0.047894157469272614, 0.014177263714373112, -0.022585133090615273, 0.007890342734754086, -0.02663404680788517, 0.08449128270149231, 0.04427342861890793, 0.03661109134554863, 0.10465925186872482, -0.00635982770472765, 0.019705690443515778, 0.00842072069644928, 0.006199267692863941, -0.03357718139886856, -0.037270426750183105, 0.060000378638505936, -0.022067876532673836, 0.09940936416387558, -0.003715228522196412, 0.04969849810004234, -0.015482642687857151, 0.011049977503716946, -0.056610144674777985, 0.02594008482992649, 0.0063288286328315735, -0.06700033694505692, 0.012447519227862358, -0.012132862582802773, 0.05661400780081749, 0.017984814941883087, -0.02254766970872879, -0.057754628360271454, -0.08835487067699432, -0.004795067012310028, 0.007810485083609819, 0.0056357611902058125, -0.042434774339199066, 0.002761503681540489, -0.024203231558203697, -0.012465477921068668, 0.001602608128450811, -0.02174549177289009, -0.05222519114613533, -0.045506998896598816, -0.014380199834704399, 0.022524483501911163, -0.018624773249030113, 0.030163494870066643, -0.029886500909924507, 0.021520767360925674, 0.001797615783289075, -0.06036895513534546, -0.01550185028463602, -0.05677444487810135, 0.04043057933449745, 0.01157057099044323, 0.05016620457172394, 0.016332460567355156, 0.02640553005039692, 0.002533972030505538, 0.03364110738039017, -0.07508992403745651, -0.010666188783943653, -0.019115982577204704, -0.03257033973932266, -0.018599355593323708, 0.05069679021835327, 0.022373870015144348, -0.010096024721860886, 0.029157675802707672, 0.0029374926816672087, 0.0750182569026947, -0.04220592975616455, -0.03778461366891861, 0.026746613904833794, 0.026761069893836975, -0.0205093901604414, -0.010970530100166798, 0.00162840960547328, 0.009770574048161507, 0.05786938592791557, -0.01487923413515091, -0.016413576900959015, -0.021185334771871567, -0.005402402952313423, -0.038865793496370316, -0.005383691284805536, 0.030908387154340744, 0.006282030139118433, 0.021462533622980118, -0.007671551313251257, -0.010483418591320515, -0.01485447771847248, -0.046504128724336624, -0.008011081255972385, -0.0075669181533157825, -0.031745653599500656, 0.010084612295031548, -0.03876589238643646, -0.05783853307366371, -0.001017729751765728, 0.003329457249492407, -0.00867545511573553, -0.07862699776887894, 0.013139124028384686, -0.008247539401054382, 0.007633615285158157, -0.08357642590999603, -0.06258022785186768, -0.014431248418986797, 0.012692750431597233, 0.007756135426461697, 0.042384013533592224, 0.04018887132406235, -0.05247807875275612, 0.002094495575875044, -0.024565448984503746, 0.06981969624757767, 0.004704071208834648, 0.06082921102643013, 0.04186632111668587, -0.013686830177903175, 0.013491839170455933, -0.025822186842560768, 0.00456133671104908, 0.007668815087527037, -0.006033581215888262, 0.0372866727411747, 0.00437977584078908, -0.007864998653531075, 0.021815262734889984, -0.03129243105649948, -0.04495730251073837, -0.01431919913738966, -0.04416951909661293, 0.0031816072296351194, -0.025065939873456955, -0.07852153480052948, -0.01047440804541111, 0.01714557223021984, 0.043639201670885086, -0.058375049382448196, -0.012818694114685059, -0.0394270084798336, -0.044925887137651443, -0.02002100460231304, 0.005430317018181086, 0.044539377093315125, -0.04498554393649101, 0.030629673972725868, -0.035220466554164886, 0.013459764420986176, -0.025562390685081482, 0.06546097993850708, -0.011607475578784943, 0.06228267028927803, -0.04380963742733002, -0.0064814710058271885, -0.016718078404664993, 0.04613407328724861, -0.03097899816930294, -0.010387066751718521, -0.02724452316761017, -0.02403665892779827, -0.023778485134243965, -0.021395906805992126, -0.004634425975382328, -0.05756734684109688, 0.017577648162841797, 0.01164776086807251, 0.0015022236621007323, 0.009175592102110386, -0.006737563759088516, 0.02992844395339489, 0.0060719954781234264, -0.01975136436522007, -0.006291152909398079, -0.03954221308231354, -0.035644806921482086, 0.05356577783823013, 0.011769686825573444, -0.06227395683526993, 0.004273755010217428, 0.01030286680907011, 0.05022885650396347, -0.05472785606980324, 0.06834153831005096, 0.042564935982227325, 0.018863454461097717, 0.03299013897776604, -0.06477247923612595, -0.0054577249102294445, -0.02874356135725975, 0.0033978663850575686, -0.001620426424778998, -0.004786225501447916, -0.028618259355425835, -0.034287650138139725, 0.046923600137233734, 0.04614771530032158, -0.015655094757676125, 0.01120710838586092, 0.0014268410159274936, -0.02844374254345894, 0.006207515485584736, -0.017814602702856064, -0.02011839859187603, -0.05603168159723282, 0.024684052914381027, 0.0063551925122737885, 0.03478928655385971, 0.018647903576493263, -0.0041489191353321075, -0.027935262769460678, 0.007094043772667646, 0.004200302995741367, 0.010539540089666843, -0.0016884804936125875, 0.025091497227549553, -0.04903695359826088, 0.0027947761118412018, -0.02330775558948517, 0.011855265125632286, -0.007861125282943249, 0.0012897142441943288, 0.024041306227445602, 0.010816995054483414, 0.0051376232877373695, -0.04401056841015816, 0.005771299824118614, 0.0049407631158828735, 0.055472735315561295, 0.05619898438453674, -0.027050409466028214, 0.018122315406799316, -0.018343783915042877, 0.029362192377448082, 0.0002661949547473341, -0.01882210001349449, -0.062495552003383636, -0.11355654150247574, -0.020572945475578308, 0.0443996898829937, 0.011101298034191132, -0.010484001599252224, 0.019467085599899292, 0.009041517972946167, 0.10966379195451736, -0.07767997682094574, -0.002239085966721177, 0.0001391320547554642, 0.0423397421836853, 0.015293549746274948, 0.01743137091398239, -0.03476259484887123, 0.07413863390684128, 0.013295416720211506, 0.015256131067872047, -0.006514084059745073, -0.016913479194045067, -0.04890346899628639, 0.035177890211343765, -0.016450800001621246, -0.06300611048936844, -0.036728475242853165, -0.01759711280465126, -0.042724646627902985, 0.04104343429207802, -0.08580438047647476, 0.005173028446733952, 0.026791410520672798, -0.029155422002077103, -0.01929933950304985, -0.05474530905485153, -0.004103513900190592, 0.003414539620280266, -0.04093313217163086, 0.03482641652226448, -0.016009943559765816, 0.050959039479494095, -0.003028517123311758, -0.000761483155656606, -0.00668864231556654, 0.0036684880033135414, 0.01682121865451336, -0.045345403254032135, -0.002497813431546092, 0.04221141338348389, -0.06204046681523323, 0.001090485486201942, 0.0031440414022654295, 0.02114284411072731, 0.048749834299087524, 0.030942929908633232, 0.007458565756678581, -0.014089235104620457, -0.006488321349024773, -0.004458648152649403, 0.01127286534756422, 0.05186338350176811, 0.012631023302674294, 0.05650865286588669, -0.006728591863065958, 0.004340614192187786, -0.01033766195178032, -0.0018675035098567605, -0.04404771327972412, -0.00016487592074554414, 0.012101305648684502, -0.00786561518907547, -0.015850774943828583, -0.013300950638949871, 0.021735327318310738, 0.06264778226613998, 0.005875017959624529, -0.041189126670360565, -0.030177373439073563, -0.039796728640794754, -0.0423717238008976, -0.015752263367176056, -0.02215862087905407, -0.024159327149391174, 0.02273755893111229, 0.0069996509701013565, 0.029677657410502434, 0.005421670153737068, -0.06681430339813232, 0.005035320296883583, -0.06431731581687927, -0.027714649215340614, -0.039183929562568665, 0.02545873448252678, -0.052434250712394714, 0.0058948686346411705, 0.0010449914261698723, -0.06920433789491653, 0.0016239362303167582, -0.031256649643182755, 0.03148456662893295, 0.03852837532758713, 0.0002304668159922585, 0.014484654180705547, -0.030380792915821075, -0.07096880674362183, 0.0037446122150868177, -0.012962198816239834, -0.019433166831731796, -0.07417904585599899, 0.03941498324275017, -0.0039001984987407923, -0.006487006787210703, -0.051812004297971725, 0.03827710077166557, 0.04044513404369354, 0.035755109041929245, -0.04110510274767876, 0.007779738400131464, 0.04227685183286667, -0.035679642111063004, 0.05111341550946236, 0.051372651010751724, 0.13678672909736633, 0.0312538705766201, 0.023112867027521133, -0.014020475558936596, 0.001152452197857201, -0.024764511734247208, 0.042182549834251404, 0.031191522255539894, -0.05847862735390663, 0.023535773158073425, -0.06996257603168488, -0.02129434421658516, 0.044916488230228424, -0.011397895403206348, -0.0024876331444829702, 0.011326301842927933, 0.062073975801467896, 0.014871140941977501, 0.00033272034488618374, -0.02356393076479435, 0.043211679905653, 0.02533690072596073, 0.0033375925850123167, 0.0370301753282547, 0.11051242053508759, 0.028104441240429878, -0.03288436681032181, -0.007218313403427601, 0.017835745587944984, -0.09074946492910385, -0.011514873243868351, -0.02028464712202549, 0.05676070600748062, 0.027270643040537834, 0.03879654407501221, 0.05163952708244324, 0.004870494827628136, 0.014139292761683464, -0.0036293587181717157, -0.028688687831163406, 0.008837155066430569, 0.015063391998410225, -0.038495734333992004, 0.03102642297744751, -0.03053620085120201, 0.010480699129402637, -0.06240188702940941, 0.012759216129779816, 0.020134644582867622, 0.027514316141605377, -0.012179904617369175, 0.019023064523935318, 0.008787138387560844, -0.02444511093199253, -0.042271938174963, -0.03349079564213753, -0.0645797997713089, -0.0639263167977333, 0.025399286299943924, 0.024314722046256065, 0.0193284023553133, -0.014886260032653809, -0.024235613644123077, -0.015663037076592445, -0.03103668801486492, -0.021806640550494194, -0.040114324539899826, 0.005686069373041391, 0.0532430075109005, -0.033500682562589645, 0.02519305609166622, 0.04973360151052475, 0.06463699787855148, 0.017210477963089943, -0.02096036821603775, 0.01181886252015829, 0.025812039151787758, 0.02207890897989273, 0.0004653746436815709, -0.0357360765337944, 0.0493510477244854, -0.05188300833106041, -0.003962960094213486, 0.04312305897474289, -0.049032676964998245, -0.06340321153402328, 0.00794676411896944, 0.011159313842654228, 0.023971134796738625, 0.11354656517505646, 0.01772277057170868, -0.023258060216903687, -0.016205372288823128, 0.019683517515659332, -0.027119578793644905, -0.02080935426056385, -0.04367315024137497, -0.011491850949823856, 0.008725212886929512, -0.048141319304704666, -0.027412762865424156, 0.02102307230234146, -0.07559642940759659, -0.0017435667105019093, 0.020208025351166725, -0.022762393578886986, 0.026704369112849236, 0.02351495623588562, 0.07986076921224594, 0.010512564331293106, -0.0014281150652095675, -0.014896998181939125, 0.020433777943253517, -0.00806758739054203, -0.004712802357971668, -0.014286822639405727, -0.017632629722356796, 0.04795568063855171, 0.02437671273946762, -0.02402498386800289, -0.04236208274960518, 0.013909554108977318, 0.011887920089066029, -0.024902844801545143, 0.02104506455361843, -0.04554200917482376, 0.0014065572759136558, -0.04065152257680893, -0.039447568356990814, -0.053744085133075714, 0.05079004541039467, 0.002459517680108547, 0.022610323503613472, 0.07580932974815369, 0.03104301169514656, 0.015328324399888515, 0.02616025134921074, -0.015213905833661556, -0.01695598103106022, -0.036152828484773636, -0.0004865261435043067, -0.0005743994261138141, 0.049871090799570084, -0.018618373200297356, 0.06288796663284302, -5.369514931182203e-33, 0.02318466641008854, 0.005192890297621489, 0.03367280960083008, -0.017076833173632622, -0.07623527944087982, -0.03698946163058281, -0.06356070935726166, -0.03073837235569954, -0.01350615918636322, -0.016282323747873306, -0.03073578141629696, 0.03378405421972275, -0.010309839621186256, -0.06359142065048218, 0.023119814693927765, 0.011950699612498283, 0.033638644963502884, 0.0325390100479126, -0.01215022150427103, 0.03022746555507183, -0.0379161573946476, -0.015740718692541122, 0.017205024138092995, 0.019988909363746643, -0.029374603182077408, -0.005004149861633778, -0.0331714004278183, 0.018838584423065186, -0.05212300270795822, -0.01520565152168274, 0.009838622063398361, -0.04994305595755577, -0.0004487282130867243, -0.00977750401943922, -0.013343879021704197, -0.03456295654177666, 0.015290464274585247, 0.021445956081151962, -0.02282695472240448, -0.01336964126676321, 0.05711197853088379, 0.018543414771556854, -0.03231846168637276, -0.006801792420446873, 0.016089661046862602, 0.023883480578660965, -0.0015851976349949837, 0.03249482065439224, -0.03108387067914009, 0.10043467581272125, -0.06957124918699265, 0.043473463505506516, 0.008874693885445595, 0.05481778085231781, -0.02122541330754757, 0.006166263949126005, 0.05182651802897453, 0.014336350373923779, 0.014390919357538223, 0.0024322059471160173, 0.06115461885929108, 0.006291649304330349, -0.029440201818943024, -0.10716921836137772, 0.0004389081441331655, 0.00703241815790534, -0.03855662792921066, 0.029088184237480164, 0.004136569332331419, 0.016682831570506096, -0.028160657733678818, -0.009346568025648594, 0.012525753118097782, 0.07777223736047745, -0.02423589862883091, -0.011813881807029247, -0.013960530050098896, 0.031217046082019806, 0.05169803649187088, 0.13671894371509552, -0.059420280158519745, 0.051337290555238724, 0.012768509797751904, -0.0014895414933562279, 0.01021475251764059, -0.03246939182281494, -0.006272811908274889, 0.0008446887950412929, -0.0197539571672678, -0.017285486683249474, 0.03206116706132889, -0.00296138902194798, 0.0017477584769949317, -0.01574297435581684, 0.10272982716560364, 0.050415653735399246, -0.043080251663923264, 0.06748753786087036, 0.024103520438075066, -0.03490975499153137, -0.005260928999632597, -0.03291941434144974, 0.06469875574111938, 0.0025003296323120594, 0.035617731511592865, 0.027497516945004463, 0.05520736053586006, 0.038796696811914444, 0.011755427345633507, 0.010231660678982735, 0.04213123023509979, -0.021394893527030945, -0.05148058384656906, -0.00366339017637074, -0.029503237456083298, -0.012105145491659641, 0.008340759202837944, 0.010005599819123745, -0.0288655087351799, 0.0054045808501541615, 0.01507667638361454, 0.06223253533244133, 0.04737135022878647, -0.01426873542368412, 0.026764998212456703, 0.02962292917072773, 0.03695686534047127, 0.05583607405424118, 0.04149993136525154, 0.013895170763134956, 0.0015748855657875538, 0.017725897952914238, 3.006794315751904e-07, 0.017813201993703842, 0.047282956540584564, 0.03130330517888069, -0.03513770177960396, 0.020222028717398643, -0.037894781678915024, -0.08444604277610779, 0.03765777871012688, -0.005313272587954998, 0.0801333636045456, 0.03882909566164017, -0.012000512331724167, 0.018306037411093712, -0.011061495169997215, -0.014432798139750957, -0.07617635279893875, -0.07899022847414017, 0.0055868676863610744, -0.001701083849184215, 0.005519985221326351, -0.042252372950315475, 0.03682038187980652, -0.0007124762632884085, 0.04146096110343933, -0.00935501977801323, 0.0741853415966034, -0.011925497092306614, 0.0013736918335780501, 0.04031534492969513, 0.015003088861703873, -0.011354244314134121, -0.07386752218008041, -0.034428127110004425, -0.08566687256097794, -0.0395541712641716, -0.03897044435143471, -0.038457974791526794, 0.0011532306671142578, -0.012445291504263878, 0.03992542251944542, 0.010567748919129372, 0.07734496891498566, -0.0010002003982663155, -0.03544079139828682, -0.018680665642023087, 0.012830868363380432, 0.014268893748521805, -0.056297317147254944, -0.011559925973415375, -0.013300501741468906, 0.03242187201976776, 0.02122410386800766, 0.017826974391937256, -0.017111457884311676, -0.012047603726387024, 0.04701932519674301, -0.008298246189951897, -0.0355900302529335, 0.05718361958861351, -0.0032456140033900738, -0.02761460840702057, 0.01381269283592701, 0.0035260431468486786, 0.04260104149580002, 0.035159289836883545, -0.058885443955659866, 0.004350714851170778, 2.6529853685740616e-34, 0.04751791059970856, -0.05717912316322327, 0.022299012169241905, -0.03993353620171547, 0.014862402342259884, -0.04767504334449768, 0.024876389652490616, 0.014203152619302273, -0.02221164107322693, -0.038640160113573074, -0.06445608288049698], "f5f01aab-661a-4766-9639-edcb7719160c": [0.05066486448049545, -0.0628967210650444, -0.024093637242913246, 0.012343061156570911, 0.03845087066292763, 0.061442479491233826, -0.010070160031318665, 0.09109651297330856, -0.05881459265947342, -0.03162122145295143, -0.0018256254261359572, -0.003069973550736904, 0.021217230707406998, -0.03982733562588692, 0.026109065860509872, -0.006893955171108246, 0.03617854043841362, 0.0022775803226977587, -0.0523810088634491, -0.0112373111769557, -0.027580739930272102, 0.019550535827875137, 0.04568789154291153, -0.01955316588282585, -0.00019159418297931552, -0.014677885919809341, -0.033748261630535126, 0.02444375492632389, -0.016189998015761375, -0.08933909982442856, 0.026112129911780357, 0.0075570871122181416, 0.019197428598999977, 0.0251443050801754, 1.8459455759511911e-06, -0.030598418787121773, -0.027046218514442444, 0.006385899614542723, -0.02286108024418354, 0.004693374503403902, 0.022069523110985756, 0.005229175090789795, -0.02271988056600094, 0.026842547580599785, 0.02214851975440979, -0.03993324190378189, -0.07664547860622406, 0.08196943253278732, -0.05313510075211525, 0.03010583482682705, 0.02780056558549404, -0.07912080734968185, 0.034320514649152756, -0.030861349776387215, 0.1117861419916153, -0.02060888707637787, -0.05714839696884155, 0.08403969556093216, 0.03715332970023155, 0.017455723136663437, 0.020426452159881592, 0.008135863579809666, 0.0012086034985259175, 0.013167315162718296, 0.06732188910245895, -0.012598180212080479, 0.08332839608192444, -0.0912046954035759, 0.022025281563401222, 0.02555638737976551, 0.07920009642839432, -0.025540368631482124, 0.03648480400443077, 0.02819068171083927, -0.03784854710102081, 0.08194209635257721, -0.011147981509566307, 0.03667668253183365, -0.009426049888134003, -0.019472120329737663, 0.031364571303129196, -0.062435563653707504, 0.013728681951761246, 0.0026980647817254066, 0.052225060760974884, -0.0376472994685173, -0.02341643162071705, -0.04545164853334427, 0.05615151673555374, -0.028093477711081505, 0.009894723072648048, -0.04067235812544823, -0.0402572937309742, 0.020016763359308243, 0.04592558741569519, -0.041245024651288986, 0.011038022115826607, -0.009280791506171227, 0.05894405394792557, 0.018428323790431023, -0.040963735431432724, -0.02094423398375511, 0.0126883490011096, 0.009589577093720436, 0.019263841211795807, 0.03544238954782486, -0.03276808559894562, -0.03488020971417427, -0.008899564854800701, 0.06875752657651901, -0.024202026426792145, 0.0028910518158227205, 0.011309079825878143, -0.023242425173521042, -0.02728983387351036, -0.02560831978917122, 0.042896807193756104, 0.027298104017972946, 0.04021231085062027, 0.053852859884500504, 0.0137537382543087, -0.020264998078346252, -0.035226281732320786, 0.0028418335132300854, -0.014186469838023186, -0.05270584672689438, 0.04289741441607475, -0.007311955559998751, 0.009208395145833492, 0.06376827508211136, 0.007422343827784061, -0.001831713248975575, -0.017291437834501266, 0.06101938709616661, -0.0048970929346978664, 0.07286451756954193, 0.01944570802152157, -0.022624382749199867, -0.006668290589004755, -0.01606726460158825, 0.05682392045855522, -0.013125887140631676, -0.025930434465408325, -0.027573371306061745, -0.004939643200486898, 0.02017982117831707, 0.02314913086593151, 0.03889721259474754, 0.03200950846076012, 0.009874553419649601, -0.02217177487909794, -0.01778092049062252, 0.01563280075788498, 0.0034563911613076925, 0.06582491099834442, 0.013544464483857155, -0.03996748849749565, -0.020153874531388283, -0.003397479886189103, 0.011784734204411507, 0.009759529493749142, 0.05558618903160095, 0.037750422954559326, -0.025539455935359, 0.0017065269639715552, 0.05176636204123497, 0.06473041325807571, -0.0041590542532503605, 0.03191089630126953, 0.042557090520858765, -0.020458165556192398, 0.034171223640441895, -0.032859764993190765, 0.0526290237903595, -0.040676869451999664, 0.0025729984045028687, 0.037516579031944275, 0.040800679475069046, 0.019117897376418114, 0.008216272108256817, 0.0024111878592520952, -0.03332826867699623, -0.021998612210154533, -0.05613222345709801, -0.12568047642707825, -0.004662901628762484, -0.06696845591068268, -0.0055918339639902115, 0.021091202273964882, -0.00471438467502594, -0.05278027430176735, 0.0020800691563636065, 0.07431406527757645, -0.0935559794306755, -0.002264796057716012, 0.029550066217780113, -0.06319573521614075, -0.13286630809307098, -0.03795807808637619, -0.016335811465978622, 0.03531137481331825, 0.0412212535738945, 0.10651425272226334, 0.03198353573679924, 0.07972856611013412, -0.002577939536422491, -0.0034217697102576494, -0.0014871770981699228, -0.019809488207101822, -0.017820976674556732, 0.032698605209589005, -0.0015606170054525137, -0.013530949130654335, -0.043356239795684814, -0.04318154230713844, -0.04224855452775955, -0.03260410577058792, -0.006131698377430439, 0.0006684597465209663, 0.0052045490592718124, 0.03455286845564842, -0.05195147171616554, -0.023197941482067108, 0.05836544558405876, -0.025718403980135918, -0.06733304262161255, -0.0369349904358387, -0.009056524373590946, 0.024241851642727852, -0.023801498115062714, -0.02693997509777546, -0.010245075449347496, 0.023523565381765366, 0.03991272300481796, -0.023340458050370216, -0.040155358612537384, 0.03937029838562012, -0.06179876998066902, -0.002209250582382083, -0.08392750471830368, -0.039152778685092926, 0.04876446723937988, 0.017694596201181412, 0.034798938781023026, -0.03001927211880684, 0.0012510824017226696, -0.019373375922441483, -0.002686565276235342, 0.05881410092115402, 0.043602339923381805, 0.037708163261413574, -0.004085891414433718, 0.08411841094493866, -0.00664997985586524, -0.02772577852010727, 0.09692952036857605, 0.0015300229424610734, 0.02063462883234024, -0.00928428117185831, 0.02917347475886345, 0.008722707629203796, 0.00038046296685934067, -0.01741667650640011, 0.011179783381521702, 0.04681263491511345, 0.01980072446167469, -0.009213881567120552, -0.006415145471692085, 0.03873426839709282, -0.009191195480525494, -0.0029482580721378326, -0.015555044636130333, -0.02422536164522171, -0.027513839304447174, 0.02379424311220646, 0.0023858307395130396, 0.04897475987672806, -0.017484158277511597, -0.04992247372865677, -0.029015732929110527, -0.007401467300951481, 0.04686160385608673, -0.026346765458583832, 0.019990209490060806, -0.024949660524725914, -0.015014957636594772, 0.021396787837147713, 0.016378721222281456, -0.037700146436691284, 0.025555389001965523, -0.010624959133565426, 0.014576279558241367, 0.018738409504294395, -0.03022327832877636, -0.008265567012131214, 0.010169588029384613, 0.006145705934613943, -0.019688548520207405, -0.0041358741000294685, 0.06484717130661011, 0.04115680977702141, 0.013139816001057625, 0.007113862317055464, 0.015109343454241753, -0.02724815160036087, 0.03448968008160591, -0.015533278696238995, -0.02804260328412056, -0.027310525998473167, -0.057747386395931244, 0.06866758316755295, 0.016908392310142517, -0.022388268262147903, -0.052608292549848557, -0.011852055788040161, -0.03976750001311302, 0.00021436068345792592, -0.05117777734994888, 0.02823125571012497, 0.06028195843100548, 0.014948181807994843, 0.011539033614099026, -0.05063753202557564, -0.017238395288586617, 0.005302728619426489, -0.09276016801595688, 0.030252499505877495, -0.021378688514232635, 0.02913844771683216, 0.04562261328101158, 0.009292298927903175, 0.006774363573640585, 0.021980276331305504, -0.03986607864499092, 0.03644024580717087, -0.006831050850450993, 0.006860688794404268, -0.014453232288360596, 0.028006868436932564, -0.04941834136843681, 8.221075404435396e-05, 0.061722852289676666, -0.03519073873758316, 0.019271910190582275, 0.006478738039731979, 0.015384640544652939, -0.014012586325407028, -0.014516450464725494, -0.016864892095327377, 0.00677466718479991, 0.06296598166227341, 0.004070620518177748, 0.029594404622912407, -0.048901259899139404, -0.03138664364814758, -0.016279935836791992, 0.015537707135081291, -0.0013988697901368141, 0.03344698250293732, -0.06922131031751633, 0.009729535318911076, 0.02766238898038864, 0.02008345164358616, 0.038543134927749634, 0.04033591225743294, 0.03299824148416519, -0.04077582061290741, 0.0235743410885334, -0.030453627929091454, -0.0015686008846387267, -0.05801486596465111, 0.008692772127687931, 0.053165461868047714, 0.03659481555223465, 0.02507093921303749, -0.02368655987083912, 0.0031011824030429125, -0.026720277965068817, 0.039079152047634125, -0.01319054700434208, -0.00036931235808879137, -0.0019785836338996887, 0.05949923023581505, 0.02847081422805786, 0.04035980626940727, 0.006455871742218733, 0.05799480527639389, 0.040138863027095795, 0.08452273905277252, -0.00016652241174597293, 0.00963389128446579, -0.026952164247632027, 0.025291087105870247, 0.005781578831374645, -0.0528128519654274, -0.004915951751172543, -0.030834702774882317, -0.009937350638210773, -0.03041091375052929, -0.007033966016024351, -0.005014067515730858, 0.031240899115800858, -0.03215815871953964, 0.0027288952842354774, 0.04099242016673088, 0.03340525925159454, -0.002076334087178111, 0.02469279244542122, 0.02798844501376152, 0.07230435311794281, 0.05936258286237717, -0.019355207681655884, -0.03572085499763489, -0.01450850535184145, 0.012288039550185204, 0.00015208309923764318, 0.03257456421852112, -0.013848485425114632, -0.026205915957689285, -0.019747359678149223, -0.04413245990872383, 0.01775452122092247, 0.024197006598114967, -0.021783294156193733, -0.014921050518751144, -0.06427080184221268, 0.04906123876571655, -0.011603470891714096, 0.04062140733003616, -0.01796732470393181, 0.06538844853639603, 0.009356112219393253, -0.007837502285838127, 0.030544355511665344, 0.08269259333610535, 0.043752145022153854, 0.015357249416410923, -0.08537861704826355, -0.0799010843038559, -0.02204558625817299, -0.02027776464819908, -0.028713446110486984, 0.05199418589472771, 0.008675429970026016, -0.010233412496745586, 0.03828679770231247, -0.009259164333343506, -0.005668647587299347, -0.029808782041072845, 0.010403420776128769, -0.02340112254023552, -0.05318040773272514, -0.07671496272087097, -0.017958171665668488, -0.06200973317027092, -0.01716582290828228, -0.008539197035133839, 0.09640955179929733, -0.015299247577786446, 0.020765531808137894, -0.04834892228245735, 0.035876329988241196, -0.0007808153168298304, -0.026404818519949913, 0.0025760638527572155, 0.047845274209976196, -0.01920894719660282, -0.07084418088197708, 0.029058272019028664, -0.005651638377457857, 0.04117307811975479, -0.005179924424737692, -0.019130367785692215, -0.028379473835229874, 0.03985275328159332, -0.10311126708984375, -0.05980629101395607, -0.023580675944685936, 0.0030449198093265295, -0.027751633897423744, -0.008267016150057316, -0.03457396849989891, 0.027605149894952774, 0.024081168696284294, -0.0064637186005711555, 0.050766754895448685, 0.014629075303673744, -0.012485171668231487, 0.0290073212236166, -0.03346564620733261, 0.04081728681921959, -0.014046862721443176, 0.0051964945159852505, -0.019484946504235268, 0.03502950817346573, 0.05165841430425644, -0.022466981783509254, -0.018880432471632957, 0.023132897913455963, 0.03838949277997017, 0.012726773507893085, -0.03844644874334335, -0.0010778963332995772, 0.014681135304272175, -0.06600335985422134, -0.03131162002682686, -0.011551622301340103, 0.024699533358216286, 0.020494595170021057, -0.038464028388261795, -0.06785845011472702, -0.037960052490234375, -0.05470772832632065, -0.008529707789421082, 0.04151487722992897, -0.03176100179553032, -0.04625700041651726, -0.0578373447060585, 0.062417156994342804, -0.01228297594934702, -0.0029874874744564295, 0.004322736524045467, 0.023479338735342026, -0.036361102014780045, 0.000978598603978753, 0.023085078224539757, 0.014352716505527496, 0.03446163609623909, -0.017213158309459686, 0.00211387244053185, 0.05037905275821686, -0.003544527804479003, 0.022693511098623276, -0.025756802409887314, -0.03508283570408821, 0.022549429908394814, 0.051136940717697144, 0.009427066892385483, 0.019741380587220192, 0.0036898490507155657, -0.0020009921863675117, -0.009251346811652184, 0.004992545582354069, 0.04484529793262482, -0.00269592204131186, -0.01390796434134245, 0.051509611308574677, 0.017833080142736435, -0.018954003229737282, -0.06624490022659302, -0.02686564438045025, 0.006362311542034149, -0.040554240345954895, 0.02415386214852333, 0.04646905139088631, -4.691188569200509e-33, -0.026300808414816856, -0.0066895512863993645, 0.010766670107841492, 0.051585424691438675, 0.0016143933171406388, -0.06577185541391373, -0.0548783615231514, -0.03840767964720726, -0.017954375594854355, 0.005343837197870016, -0.021006055176258087, -0.03429048880934715, -0.00464880745857954, -0.04212651774287224, 0.006721334531903267, -0.014319084584712982, 0.006819149013608694, 0.018143359571695328, -0.04306107759475708, 0.03655049577355385, -0.02924528904259205, -0.022697797045111656, -0.0048859575763344765, 0.00808789860457182, -0.06429221481084824, -0.07187827676534653, -0.01075444370508194, -0.048633500933647156, -0.0053876969031989574, 0.04866737127304077, -0.054442550987005234, -0.022718176245689392, -0.002021962543949485, 0.027062077075242996, 0.011714314110577106, 0.022629961371421814, 0.01580609381198883, -0.02244153618812561, 0.007617166265845299, 0.006440234370529652, 0.02860323153436184, -0.04355068877339363, -0.040942393243312836, 0.012964049354195595, 0.021356701850891113, 0.03159173205494881, -0.0018454251112416387, 0.0447365902364254, -0.037753187119960785, 0.029422828927636147, -0.06363292783498764, 0.005056326277554035, 0.023090118542313576, 0.015853313729166985, -0.006653092801570892, -0.03559313714504242, 0.02354653738439083, -0.038704268634319305, 0.0020238987635821104, -0.012958467938005924, 0.026339024305343628, 0.0259171761572361, 0.027616826817393303, -0.032317232340574265, -0.01463017612695694, 0.00883777067065239, -0.02813097834587097, 0.045795802026987076, -0.03328361734747887, 0.004809077363461256, 0.01530453097075224, -0.030222417786717415, -0.015321286395192146, -0.016090726479887962, -0.038765158504247665, 0.010028673335909843, -0.05068347975611687, 0.05881883203983307, 0.028786299750208855, 0.07176937907934189, -0.030268460512161255, -0.029121529310941696, -0.031152216717600822, -0.007744170259684324, -0.010054483078420162, 0.010395796038210392, -0.02572343684732914, -0.005686760414391756, 0.00937892310321331, 0.027797210961580276, -0.006612345110625029, -0.09890976548194885, -0.046254441142082214, 0.03292882442474365, -0.001001848722808063, 0.0884750708937645, -0.04854660853743553, 0.03141263872385025, 0.006240497343242168, -0.02233511582016945, -0.03732195496559143, -0.05440345034003258, -0.008390872739255428, 0.027198858559131622, -0.015213080681860447, -0.01618851162493229, -0.0291218813508749, 0.04635819420218468, -0.018800117075443268, 0.00897764042019844, 0.013425672426819801, -0.03189438581466675, 0.023345470428466797, -0.023158539086580276, -0.04316600039601326, -0.05859404802322388, 0.003475660691037774, -0.04697785899043083, -0.04038149118423462, 0.015481330454349518, -0.024546625092625618, -0.009208869189023972, 0.02416236884891987, -0.004352428950369358, 0.013102810829877853, 0.021378396078944206, -0.05014953389763832, 0.06953331083059311, 0.1004682332277298, 0.0002582147135399282, -0.014935907907783985, 0.0013095691101625562, 2.529456821775966e-07, 0.026014912873506546, 0.06630971282720566, -0.002767791971564293, 0.016106344759464264, 0.007088825572282076, -0.02710127644240856, -0.03058742545545101, 0.01349565852433443, -0.06426296383142471, 0.026893265545368195, 0.024236854165792465, 0.002019669394940138, -0.00922052189707756, 0.015466873534023762, 0.020233701914548874, -0.022486893460154533, 0.007865984924137592, 0.002124199876561761, -0.04633810371160507, -0.01511182077229023, -0.0005401510279625654, 0.030845969915390015, 0.014891727827489376, -0.005518358666449785, -0.025306113064289093, 0.07359053939580917, -0.006792956031858921, -0.011072312481701374, 0.005797411780804396, 0.013444660231471062, 0.06024632602930069, 0.07758019864559174, 0.005334076005965471, -0.07867582887411118, -0.016341598704457283, -0.0008386586559936404, -0.04455931857228279, -0.01867470145225525, 0.014334294013679028, 0.013873771764338017, 0.03494364768266678, 0.003155875951051712, -0.01746203564107418, -0.06970474869012833, -0.023046188056468964, 0.06457974761724472, 0.042778898030519485, 0.04656451568007469, -0.025053566321730614, -0.026134567335247993, 0.0042023505084216595, 0.001732704578898847, 0.01278084795922041, -0.003005643840879202, -0.005182180088013411, -0.03282051905989647, 0.017803344875574112, -0.010491338558495045, 0.05381878837943077, 0.023492954671382904, -0.052411988377571106, 0.01639212667942047, -0.008974608033895493, 0.05695789307355881, 0.011229630559682846, 0.005300080869346857, -0.04709220305085182, 2.839130868334021e-34, 0.03671152889728546, -0.061876311898231506, -0.026325680315494537, -0.047652531415224075, -0.006231098435819149, -0.032602984458208084, 0.01383518148213625, 0.01654765196144581, -0.009615088813006878, -0.06783634424209595, -0.021325917914509773], "052be6ea-fc41-49cb-a5fe-5309172d18fc": [0.016790181398391724, -0.0880691185593605, -0.0012398769613355398, -0.0381857268512249, 0.028164025396108627, 0.06013248860836029, -0.03624653071165085, 0.04532650113105774, -0.07956906408071518, -0.051275044679641724, -0.006773310247808695, 0.051999274641275406, 0.0006766843143850565, -0.01561893243342638, 0.03134911507368088, -0.00667571509256959, 0.02650507539510727, 0.0025116519536823034, -0.019253816455602646, -0.008445365354418755, 0.0018388554453849792, 0.030479084700345993, 0.05857916176319122, -0.0037343238946050406, -0.013480378314852715, -0.0059946319088339806, -0.025490373373031616, 0.011756731197237968, -0.017817934975028038, -0.05011169612407684, -0.012767226435244083, -0.001948826713487506, 0.061832137405872345, -0.011430717073380947, 1.7192169252666645e-06, -0.01222844235599041, -0.0224168598651886, 0.030350327491760254, -0.0022934195585548878, -0.03469520062208176, 0.004449555184692144, -0.019983138889074326, -0.06099693104624748, 0.0058605563826859, 0.00919514149427414, -0.055825185030698776, -0.0434037521481514, 0.08153578639030457, -0.00043562852079048753, 0.038957566022872925, 0.037193767726421356, -0.08580612391233444, 0.017210306599736214, -0.01760552078485489, 0.09063711017370224, -0.0012128771049901843, -0.04065108299255371, 0.09491339325904846, 0.016321534290909767, 0.006433190777897835, 0.04829183965921402, -0.007867805659770966, -0.008622082881629467, -0.033152833580970764, 0.12344752252101898, -0.017057152464985847, 0.06296443194150925, -0.035173602402210236, 0.013368009589612484, 0.010620363056659698, 0.08240843564271927, -0.04420868307352066, 0.029257571324706078, 0.023569276556372643, -0.03444579243659973, 0.06656535714864731, -0.06916161626577377, 0.042807262390851974, 0.004521915223449469, -0.012070845812559128, 0.013936759904026985, -0.06041958928108215, 0.003701383015140891, -0.002932970644906163, 0.03604353964328766, -0.04774459823966026, -0.017487719655036926, -0.06840794533491135, 0.025957658886909485, -0.013686739839613438, -0.0044601233676075935, -0.051444876939058304, -0.026389239355921745, 0.03959086909890175, 0.062462691217660904, -0.030425094068050385, -0.019308870658278465, -0.06721461564302444, 0.06620710343122482, 0.015810417011380196, -0.033032018691301346, -0.02908024750649929, 0.03347848355770111, 0.01981382444500923, 0.01289836224168539, 0.020639367401599884, -0.0291505865752697, -0.02852744422852993, -0.01056329719722271, 0.06638475507497787, -0.05234432965517044, -0.006993514485657215, 0.0016686079325154424, -0.025002984330058098, -0.0076040662825107574, -0.018789155408740044, 0.017087895423173904, 0.042655594646930695, 0.04910146817564964, 0.02670246921479702, 0.051023904234170914, -0.026348847895860672, -0.03480176255106926, 0.01262449100613594, -0.0029739008750766516, -0.08335395157337189, 0.023536765947937965, -0.012495864182710648, 0.006242598406970501, 0.04711024835705757, 0.02907477878034115, 0.04211236163973808, -0.0016053589060902596, 0.04942014440894127, -0.020214250311255455, 0.08907423913478851, 0.0418488048017025, -0.017484145238995552, 0.011066043749451637, 0.015447190962731838, 0.0700862929224968, -0.020282845944166183, -0.03452123701572418, -0.028599807992577553, 0.012515956535935402, 0.01581488735973835, -0.007633000146597624, 0.02946094423532486, 0.020324310287833214, 0.01154445018619299, -0.017297720536589622, -0.007463679648935795, -0.024454638361930847, 0.0014455794589594007, 0.06552957743406296, -0.028439892455935478, -0.04358469694852829, -0.03283782675862312, 0.029363112524151802, 0.004930093418806791, 0.005960394162684679, 0.0520511269569397, 0.0465911403298378, -0.028906608000397682, 0.018514389172196388, 0.010676473379135132, 0.05580495297908783, 0.024307550862431526, 0.05901644006371498, 0.08117911219596863, -0.029274484142661095, 0.041586972773075104, -0.029514893889427185, 0.08429989218711853, -0.029955992475152016, 0.021958421915769577, 0.05372510105371475, 0.017196401953697205, 0.057281993329524994, 0.027104664593935013, -0.008537206798791885, -0.0393047071993351, -0.03272946551442146, -0.044147003442049026, -0.03244716674089432, 0.005814723204821348, -0.06416433304548264, -0.03393396735191345, 0.020715782418847084, 0.0012121753534302115, -0.0475299097597599, -0.017211822792887688, 0.021442323923110962, -0.10156508535146713, -0.00010646651207935065, 0.017418039962649345, -0.04658127948641777, -0.08755378425121307, -0.008025911636650562, 0.007624353282153606, 0.05105668678879738, 0.00598474545404315, 0.09511999040842056, 0.010572518222033978, 0.07101236283779144, -0.006141636986285448, 0.013785694725811481, -0.041940804570913315, -0.019176309928297997, -0.01469422411173582, 0.009327258914709091, -0.02096937969326973, -0.041964173316955566, -0.06514526158571243, -0.011716781184077263, -0.08927464485168457, -0.04381301626563072, -0.0026457980275154114, 0.040343545377254486, -0.02988004870712757, 0.03485887497663498, -0.08881822228431702, -0.008969906717538834, 0.0626022145152092, -0.03245936706662178, -0.08091813325881958, -0.05190272256731987, -0.019330961629748344, 0.04190385714173317, -0.03758371248841286, -0.06291718780994415, 0.03107282891869545, 0.042969804257154465, 0.03424733504652977, -0.02179962769150734, 0.0030835787765681744, 0.044536229223012924, -0.018567370250821114, -0.0007557030767202377, -0.10835476964712143, -0.0056144162081182, -0.006345074623823166, 0.03884568437933922, 0.02489199861884117, -0.006533617153763771, -0.016621306538581848, -0.004543446470052004, -0.00893363170325756, 0.021373940631747246, 0.04451703652739525, 0.034155089408159256, -0.017219189554452896, 0.06365413218736649, 0.004520187620073557, -0.030005205422639847, 0.06780034303665161, -0.020298060029745102, 0.008768339641392231, 0.007172558922320604, 0.012333272956311703, -0.009465543553233147, 0.005321938078850508, -0.03995989263057709, 0.0023679558653384447, 0.046313147991895676, 0.03553704172372818, -0.03598661348223686, 0.003815890522673726, 0.011094843037426472, -0.02646035887300968, -0.023586267605423927, -0.01547885499894619, -0.04604778811335564, -0.01197511050850153, -0.014258225448429585, 0.009718858636915684, 0.018795130774378777, -0.026473436504602432, -0.018344376236200333, -0.010509571060538292, 0.012546122074127197, 0.05254393070936203, -0.02077801711857319, 0.018321920186281204, -0.010935668833553791, 0.006792386062443256, 0.05776408687233925, 5.750347918365151e-05, -0.03635070472955704, -0.026045283302664757, -0.013019256293773651, 0.002584671601653099, 0.021247953176498413, -0.01245832722634077, 0.024067962542176247, -0.006754368543624878, 0.03899712860584259, -0.017796868458390236, -0.011372019536793232, 0.06684009730815887, 0.056279636919498444, 0.006467973813414574, 0.01580791547894478, -0.0020822002552449703, -0.008873454295098782, 0.05803922936320305, -0.002301545115187764, -0.03612563759088516, 0.002872677054256201, -0.056888215243816376, 0.07726847380399704, 0.027203597128391266, -0.028440134599804878, -0.038487691432237625, 0.003271465189754963, -0.03125571832060814, 0.006978069432079792, -0.06668200343847275, 0.024856219068169594, 0.03320155292749405, 0.0402815155684948, -0.01543253194540739, -0.05432365834712982, -0.016783781349658966, 0.011659461073577404, -0.0683659166097641, 0.04015837609767914, -0.014801950193941593, 0.007860785350203514, 0.049677226692438126, -0.005687978118658066, -0.030362727120518684, 0.03570184484124184, 0.011253618635237217, -0.016514917835593224, -0.010348998941481113, 0.03555990010499954, -0.04365358129143715, 0.032614100724458694, -0.0009060625452548265, -0.011461937800049782, 0.061503417789936066, -0.012132735922932625, 0.05263980105519295, -0.00046470615779981017, 0.021730074658989906, -2.3100363250705414e-05, -0.007998984307050705, 0.004775986075401306, 0.0017864247784018517, 0.061011817306280136, -0.0073250411078333855, 0.025668105110526085, -0.02850077487528324, -0.040403880178928375, 0.005412313621491194, 0.004892734345048666, -0.0260376688092947, 0.021186836063861847, -0.04257187247276306, 0.025621967390179634, 0.039893437176942825, 0.014552079141139984, 0.057617925107479095, 0.01657087355852127, 0.009909914806485176, -0.07832393795251846, 0.0019941707141697407, 0.008779347874224186, 0.002365529304370284, -0.07109163701534271, 0.010072185657918453, 0.029220324009656906, 0.009822690859436989, 0.026859594509005547, -0.0046903109177947044, -0.0011539950501173735, -0.037350017577409744, 0.018746977671980858, -0.017271069809794426, 0.005664346273988485, 0.017059005796909332, 0.04676918312907219, 0.047388747334480286, 0.029502172023057938, 0.004719087854027748, 0.04804769903421402, 0.040935806930065155, 0.10708221793174744, -0.0046278443187475204, -0.01349976472556591, -0.0017608613707125187, 0.020667478442192078, -0.00783509947359562, -0.029900483787059784, 0.006067200563848019, -0.024032464250922203, 0.014873805455863476, -0.005834232084453106, -0.020954038947820663, -0.011266474612057209, 0.020074859261512756, -0.03734694421291351, -0.020596612244844437, 0.028355181217193604, 0.04195379838347435, 0.04452599585056305, 0.030894365161657333, 0.023814234882593155, 0.06615405529737473, 0.050990309566259384, 0.021298080682754517, -0.03304993361234665, -0.02890176698565483, -0.0006044566980563104, -0.010191013105213642, 0.01902434416115284, -0.011129130609333515, 0.018723785877227783, 0.0006848913035355508, -0.04207358509302139, 0.014462999068200588, 0.027554219588637352, -0.045143287628889084, 0.01674659550189972, -0.07230672985315323, 0.04220317676663399, 0.016022955998778343, 0.029726939275860786, -0.005056190304458141, 0.06943409144878387, -0.004273304250091314, -0.013627163134515285, 0.02127801440656185, 0.02762795239686966, 0.03880276903510094, -0.043369654566049576, -0.09060972929000854, -0.048265740275382996, -0.040079571306705475, -0.001679950044490397, 0.02008930593729019, 0.04768221080303192, 0.04086310788989067, -0.03232431411743164, 0.034472111612558365, -0.025914283469319344, -0.035709597170352936, -0.01735943742096424, 0.026696259155869484, -0.013071375899016857, -0.06335452944040298, -0.11020087450742722, 0.03110634721815586, -0.06991232931613922, -0.0015553963603451848, -0.03752603009343147, 0.0865955501794815, -0.008905371651053429, 0.048071347177028656, -0.043363649398088455, 0.020666074007749557, 0.004537868779152632, -0.025825260207057, -0.00035243635647930205, 0.04999091103672981, -0.03768966346979141, -0.06147446483373642, 0.011685137636959553, 0.006765815429389477, 0.052833229303359985, -0.026018483564257622, -0.009075770154595375, -0.035155169665813446, 0.027247918769717216, -0.062255218625068665, -0.08451753854751587, -0.02142222598195076, 0.06405176967382431, 0.0035608827602118254, -0.0021111739333719015, -0.04229026287794113, 0.006420052610337734, 0.02655109576880932, -0.020859120413661003, 0.02691485360264778, -0.0344366729259491, -0.01847449690103531, 0.0069853258319199085, -0.03932945057749748, 0.03945985063910484, -0.033392541110515594, 0.008747299201786518, -0.0019748909398913383, -0.022101039066910744, -0.018418891355395317, -0.03335541486740112, 0.0007335437694564462, 0.004568377044051886, 0.05394066125154495, 0.03387276828289032, -0.05617444962263107, -0.03302580118179321, -0.0008340519852936268, -0.08603475242853165, -0.028048869222402573, -0.02020946890115738, 0.008750496432185173, 0.017433881759643555, -0.029404258355498314, 0.001047599478624761, -0.05390550196170807, -0.03380974382162094, -0.012709240429103374, 0.0111543545499444, -0.037946827709674835, -0.05571002885699272, -0.03655396029353142, 0.04573305323719978, -0.008113700896501541, -0.04373537749052048, 0.007391054183244705, 0.022299207746982574, -0.009703557007014751, -0.008890443481504917, 0.03879385441541672, 0.0055230762809515, 0.02152085490524769, -0.03330959379673004, -0.014982766471803188, 0.0390380397439003, -0.017717596143484116, 0.01704767346382141, -0.024743739515542984, -0.04181826114654541, 0.009469285607337952, 0.05449683219194412, 0.006782955024391413, 0.0019230736652389169, -0.020732225850224495, 0.04124786704778671, 0.013097948394715786, 0.005898097064346075, 0.07749734073877335, -0.038534197956323624, 0.009272982366383076, 0.02549988403916359, 0.020603671669960022, -0.036003027111291885, -0.050074562430381775, -0.040247611701488495, 0.05142126977443695, -0.005104274954646826, -0.004993550479412079, 0.05844937264919281, -3.901534810672283e-33, -0.033570822328329086, -0.003579748095944524, 0.028804287314414978, 0.004942385479807854, -0.001872885855846107, -0.04017113894224167, -0.049439579248428345, -0.0377369150519371, -0.012829791754484177, 0.025449901819229126, -0.0140451118350029, -0.062263716012239456, 0.009223239496350288, -0.02715063840150833, 0.010152900591492653, -0.012470555491745472, 0.009335391223430634, 0.017142197117209435, -0.013957010582089424, 0.031699080020189285, 0.0031197145581245422, -0.03758084028959274, 0.027157370001077652, 0.011441079899668694, -0.01800697296857834, -0.07619508355855942, -0.008314154110848904, -0.052021175622940063, 0.002838658634573221, 0.042120225727558136, -0.0325142927467823, -0.021015755832195282, -0.01935715042054653, 0.046890679746866226, 0.017300091683864594, 0.02999955601990223, -0.012369421310722828, 0.016294151544570923, 0.011054432019591331, 0.01894485391676426, 0.045495983213186264, -0.0412137471139431, -0.03179581090807915, 0.006507086101919413, 0.053181856870651245, 0.02915729023516178, 0.002188712125644088, 0.06416340917348862, -0.037563614547252655, -0.003979748114943504, -0.04362231120467186, 0.017667027190327644, 0.02923288568854332, 0.0072501301765441895, -0.01817825436592102, -0.0749121755361557, 0.020026804879307747, -0.009240085259079933, -0.011018453165888786, -0.017400722950696945, 0.012081808410584927, 0.019022352993488312, 0.01646611839532852, -0.06673496961593628, 0.004770892672240734, -0.009343946352601051, -0.04177291691303253, 0.025970173999667168, -0.019318798556923866, 0.016959298402071, -0.009517313912510872, -0.03332623839378357, -0.013117440044879913, -0.006338121369481087, -0.038109276443719864, 0.0520419180393219, -0.03175438567996025, 0.04539567232131958, 0.057005126029253006, 0.08957821130752563, -0.016041036695241928, -0.015438150614500046, -0.02516942285001278, -0.0012538861483335495, -0.0015798978274688125, -0.004515382926911116, -0.021537210792303085, -0.011024055071175098, -0.01799250952899456, 0.04451052471995354, -0.020071931183338165, -0.08181019872426987, -0.03649025782942772, 0.05524930730462074, 0.007232932839542627, 0.06753907352685928, -0.05285143479704857, 0.03544924035668373, -0.012981208972632885, -0.04745660722255707, -0.014591434970498085, -0.03090479224920273, 0.013449369929730892, -0.022762758657336235, -0.008550966158509254, 0.0014302663039416075, -0.0011301396880298853, 0.05750969424843788, -0.00681369099766016, 0.011562704108655453, 0.023765891790390015, 0.006085523404181004, 0.023357179015874863, -0.028943754732608795, -0.03665861114859581, -0.03469981625676155, 0.0065157790668308735, -0.06685083359479904, -0.02751912549138069, -0.021568691357970238, 0.005957388319075108, -0.0028281575068831444, 0.011083937250077724, 0.012339596636593342, -0.00159742112737149, 0.03288521245121956, -0.039593350142240524, 0.04379253461956978, 0.09633226692676544, 0.025077499449253082, 0.004104814492166042, 0.03160760924220085, 2.394445175468718e-07, 0.05452623963356018, 0.037637654691934586, 0.006608530879020691, 0.010164954699575901, 0.01045018807053566, -0.02667100727558136, -0.04067590460181236, 0.03504033014178276, -0.057747166603803635, 0.0016699954867362976, 0.009738806635141373, -0.0008624172187410295, 0.006695075426250696, 0.014653729274868965, 0.00038596842205151916, 0.03401152417063713, -0.046308230608701706, 0.010230488143861294, -0.033881641924381256, -0.015595576725900173, -0.043099578469991684, 0.01032287161797285, 0.006183762103319168, 0.016825517639517784, 0.00873977318406105, 0.11029554903507233, -0.008994085714221, 0.002218627603724599, 0.0010674161603674293, 0.029866306111216545, 0.052405763417482376, -0.005529898684471846, -0.019999640062451363, -0.06280908733606339, -0.039757680147886276, 0.0002835154882632196, -0.058442726731300354, 0.015505902469158173, 0.02341311424970627, 0.06395215541124344, 0.05195053294301033, -0.0069601512514054775, 0.011288379319012165, -0.03480647876858711, -0.024154575541615486, 0.058030519634485245, 0.014819366857409477, -0.027227718383073807, -0.03585772588849068, -0.004863550420850515, 0.013143210671842098, -0.022434551268815994, 0.008563741110265255, -0.003269900567829609, -0.01300609391182661, -0.028178637847304344, 0.03414388373494148, -0.016021158546209335, 0.04847964271903038, -0.015506099909543991, -0.06376341730356216, 0.06302590668201447, -0.02293069288134575, 0.02183409407734871, 0.008111239410936832, -0.015900930389761925, -0.025670567527413368, 2.552868376961283e-34, 0.03813451528549194, -0.024098852649331093, -0.040056224912405014, -0.00797081645578146, 0.008921279571950436, -0.029445771127939224, 0.04257006198167801, 0.019728662446141243, -0.03836372122168541, -0.06259565055370331, -0.020213522017002106], "b6b0ec4b-ec86-4351-b63f-6bd042d13ec2": [0.03470674902200699, -0.04141080006957054, -0.02190549112856388, -0.01563088223338127, -0.031033892184495926, 0.03687441721558571, 0.04220778867602348, 0.03237253054976463, -0.015638526529073715, -0.02051001787185669, 0.00394041184335947, 0.012046023271977901, 0.045139629393815994, 0.0012258407659828663, -0.01277598924934864, 0.025069117546081543, 0.028864698484539986, -0.005739911925047636, 0.031095849350094795, 0.00038625573506578803, 0.014118358492851257, 0.02473239228129387, 0.006042276043444872, -0.00559281324967742, 0.024566369131207466, -0.030059142038226128, -0.0007156570791266859, 0.0004361265746410936, 0.031202223151922226, -0.012759813107550144, 0.022851968184113503, 0.040873583406209946, -0.0027718995697796345, 0.01095961220562458, 2.428188054182101e-06, -0.009208664298057556, -0.013907554559409618, 0.050923921167850494, 0.0031551236752420664, -0.009862884879112244, 0.05949665233492851, 0.04332603141665459, -0.03765321150422096, 0.03574281558394432, 0.019888082519173622, -0.023522891104221344, -0.015997543931007385, 0.10024543851613998, -0.01465689018368721, 0.017020151019096375, 0.018214011564850807, -0.016811909154057503, 0.002262500813230872, -0.0025541384238749743, 0.08498651534318924, -0.01988915167748928, -0.030245807021856308, 0.10566268116235733, 0.020450515672564507, 0.06383199989795685, 0.014945846050977707, 0.007349157240241766, -0.013851793482899666, -0.0296954233199358, 0.07075696438550949, 0.006649492308497429, 0.05076657980680466, -0.10605309158563614, 0.058711178600788116, 0.024354495108127594, 0.1345289945602417, -0.03313879296183586, 0.033129625022411346, 0.05880868062376976, -0.043070949614048004, 0.10660885274410248, -0.011709635145962238, 0.02440403774380684, -0.011811337433755398, -0.004424977116286755, -0.026177214458584785, -0.10057131946086884, -0.0019496302120387554, -0.0040569184347987175, 0.06633783131837845, -0.02770288661122322, -0.0036651212722063065, -0.03211306408047676, 0.009652581997215748, -0.05080489441752434, 0.009635346941649914, -0.023682434111833572, -0.03593966364860535, 0.0080114072188735, 0.02901449240744114, -0.03899155557155609, 0.04876936972141266, 0.003143158508464694, 0.057672902941703796, -0.02201147936284542, -0.01482165977358818, 0.0070598977617919445, -0.024754630401730537, -0.0060463761910796165, 0.04620778560638428, 7.880592420406174e-06, 0.01597754657268524, -0.03562429919838905, 0.0038792570121586323, 0.06589391827583313, -0.025501061230897903, -0.0010747670894488692, -0.021557366475462914, -0.016266437247395515, -0.018655121326446533, -0.0482933484017849, 0.012824560515582561, 0.023116938769817352, 0.038131728768348694, 0.051199983805418015, 0.015840429812669754, 0.007206397596746683, -0.07669343054294586, 0.020735790953040123, -0.02142718993127346, -0.06103581190109253, 0.019557004794478416, -0.03565487638115883, 0.013249151408672333, 0.026363268494606018, -0.019885031506419182, -0.011613392271101475, -0.01980755291879177, 0.010509108193218708, -0.03393701836466789, 0.06184006854891777, 0.024763718247413635, -0.008535806089639664, 0.04400152713060379, -0.003011261112987995, 0.026271453127264977, -0.018579671159386635, -0.014165331609547138, -0.014134732075035572, 0.024975234642624855, -0.019909393042325974, 0.013929516077041626, 0.00997520424425602, 0.005284279119223356, 0.02828255482017994, 0.009144261479377747, 0.017765726894140244, -0.022967621684074402, -0.0015264832181856036, 0.08350842446088791, 0.027400678023695946, -0.031783804297447205, -0.020581135526299477, -0.021015772596001625, -0.03156258165836334, 0.007100533228367567, 0.035884153097867966, 0.05904623866081238, -0.06764712184667587, 0.008661224506795406, -0.02686634473502636, 0.059592075645923615, 0.021105686202645302, 0.008757448755204678, 0.033755555748939514, -0.04536541551351547, 0.07249011099338531, -0.04101469740271568, 0.02479926310479641, -0.02300267666578293, 0.06986398994922638, 0.012400595471262932, 0.06221967190504074, -0.03618592396378517, 0.06594642996788025, 0.004497753456234932, -0.056965574622154236, -0.015465223230421543, 0.002703221281990409, -0.06989681720733643, -0.026854485273361206, -0.00500745652243495, -0.011028013192117214, 0.007142918184399605, -0.0077992998994886875, -0.04290851578116417, -0.006796606816351414, 0.020314332097768784, -0.04693501815199852, -0.013267857022583485, 0.0027125277556478977, -0.027141692116856575, -0.09911135584115982, 0.007573806215077639, 0.0017582725267857313, 0.00010530960571486503, -0.0022999513894319534, 0.08986696600914001, 0.04126857966184616, 0.05817440152168274, -0.032355185598134995, -0.0458214245736599, -0.04361091926693916, 0.00891233142465353, 0.01606232114136219, 0.05381842330098152, -0.0050635626539587975, -0.024474600329995155, -0.03734452277421951, -0.03193104267120361, -0.033416904509067535, -0.02607334591448307, -0.017205407842993736, -0.01230554934591055, 0.02154691144824028, 0.005595559254288673, -0.04909506067633629, -0.06024552136659622, 0.02402186207473278, 0.00469836825504899, 0.0078005315735936165, -0.038814183324575424, -0.0014903245028108358, 0.05442021042108536, 0.0011141704162582755, -0.026752494275569916, 0.023854099214076996, 0.01899382844567299, 0.033985432237386703, -0.04344899207353592, 0.011216536164283752, 0.01650127023458481, -0.009889507666230202, 0.043769486248493195, -0.11160866171121597, -0.0012011934304609895, 0.041071817278862, 0.02530566416680813, 0.01734703965485096, 0.009133526124060154, -0.019633067771792412, 0.022974764928221703, 0.01782912015914917, 0.0015412564389407635, 0.0355365164577961, 0.00786206778138876, 0.0046740383841097355, -0.002991187386214733, 0.008693162351846695, -0.009877272881567478, 0.0212231632322073, -0.08044266700744629, 0.029088856652379036, 0.001648402656428516, 0.01903233490884304, 0.011912756599485874, 0.009142270311713219, -0.017470626160502434, 0.02812996320426464, 0.009636001661419868, -0.007961844094097614, 0.002750435844063759, -0.043810248374938965, -0.014984067529439926, -0.006161179859191179, -0.007854308001697063, -0.01994880475103855, -0.027460046112537384, 0.0050797355361282825, 0.018012983724474907, 0.01188721228390932, -0.030698779970407486, -0.005984372925013304, -0.03589562699198723, -0.0002842467511072755, 0.01579378731548786, 0.041424404829740524, -0.028758421540260315, 0.009347507730126381, -0.010446812957525253, -0.004076199606060982, 0.033870209008455276, -0.01279221661388874, -0.025380460545420647, -0.016558339819312096, -0.009077241644263268, 0.03202339634299278, 0.006821503397077322, -0.04995770379900932, -0.0038997563533484936, 0.025673676282167435, 0.04963298141956329, -0.048192162066698074, -0.013089234009385109, 0.09291338175535202, 0.02070097252726555, 0.002473364816978574, -0.04876856878399849, -0.011754502542316914, -0.0003777499368879944, 0.025658318772912025, 0.0016445983201265335, -0.03503723815083504, -0.016403798013925552, -0.05675217881798744, 0.016658956184983253, 0.0004430046246852726, -0.055705130100250244, -0.018017802387475967, -0.007170329336076975, -0.007068478036671877, -0.02040909230709076, -0.07231350988149643, 0.017013942822813988, 0.039953507483005524, -0.030680781230330467, -0.011258752085268497, -0.02522452361881733, -0.025895707309246063, 0.0005929420585744083, -0.145418182015419, 0.0269075445830822, -0.01467773038893938, 0.03035062924027443, -0.03162646293640137, 0.0027128932997584343, 0.04085378348827362, 0.01240401528775692, 0.015259540639817715, -0.0075103482231497765, 0.025326302275061607, 0.01808207668364048, -0.030371878296136856, -0.01613517850637436, -0.008447364903986454, -0.016891976818442345, 0.07196293026208878, 0.017171014100313187, -0.007370600476861, 0.043547846376895905, -0.008265106938779354, -0.025510111823678017, 0.0006608360563404858, -0.021401455625891685, 0.015832852572202682, 0.05944523215293884, -0.017505109310150146, 0.05217356234788895, -0.021811025217175484, 0.008160365745425224, -0.06134805455803871, -0.0013302240986377, -0.011394698172807693, -0.009222852066159248, -0.04710834473371506, 0.020971614867448807, 0.038700271397829056, 0.00835508108139038, 0.0017773855943232775, 0.024171801283955574, -0.052649855613708496, -0.0042529902420938015, -0.0010476086754351854, 0.004004584159702063, -0.0010544877732172608, -0.020842017605900764, 0.012194106355309486, -0.01444365456700325, 0.05285635218024254, 0.04234812408685684, -0.07147950679063797, -0.013281792402267456, -0.05799395591020584, 0.03380247578024864, -0.024177532643079758, -0.007858937606215477, -0.04212256148457527, 0.08606290072202682, -0.0005610089283436537, 0.006606023758649826, -0.005862775724381208, 0.015655895695090294, 0.02215290442109108, 0.08449240028858185, -0.0014550285413861275, -0.012046420015394688, -0.03862925246357918, -0.029100531712174416, -0.003466986585408449, -0.01331128366291523, 0.009727958589792252, -0.005402514711022377, -0.030078690499067307, 0.006561888847500086, 0.016232624650001526, 0.002256781794130802, -0.04440203681588173, -0.03780537471175194, 0.006896366365253925, -0.00730954809114337, 0.04394252970814705, 0.021762918680906296, 0.04782351851463318, 0.04188605770468712, 0.08684042096138, 0.11723679304122925, 0.045562393963336945, -0.012896385043859482, -0.001347327372059226, 0.010574426501989365, -0.04332390055060387, 0.016081470996141434, -0.021198051050305367, -0.012148051522672176, -0.021240731701254845, -0.03597851097583771, -0.005887180101126432, 0.020345602184534073, -0.03212355449795723, 0.018593095242977142, -0.042706310749053955, 0.06414863467216492, -0.007220403291285038, 0.04820160195231438, -0.011964360252022743, 0.053998082876205444, -0.003912679385393858, -0.005365386605262756, 0.049899663776159286, 0.023250816389918327, 0.024960119277238846, -0.0718260332942009, -0.004373939707875252, -0.06110863387584686, -0.05764946714043617, -0.015850869938731194, -0.003935090731829405, 0.049026887863874435, -0.001194313750602305, 0.007088258396834135, 0.07438895106315613, 0.03586600720882416, 0.015421146526932716, -0.004293318372219801, -0.04949144273996353, -0.04115395247936249, -0.03827882930636406, -0.09546084702014923, -0.012755733914673328, -0.010275938548147678, -0.0025933198630809784, -0.01984543912112713, 0.0539579838514328, -0.013352703303098679, 0.017871983349323273, -0.008934387937188148, 0.03629687428474426, 0.03115690127015114, -0.038325343281030655, 0.012797976844012737, -0.01588699221611023, -0.04433904215693474, -0.061113081872463226, 0.01654285565018654, -0.0071212975308299065, 0.09933014959096909, -0.015452750958502293, -0.02285466529428959, -0.010872087441384792, -0.014475284144282341, -0.08564979583024979, -0.05827422812581062, -0.011939709074795246, -0.04149487242102623, -0.024547338485717773, -0.022630726918578148, -0.003978224471211433, 0.05047488957643509, -0.001119644264690578, -0.024186447262763977, 0.04581238701939583, -0.008179171942174435, 0.006315099541097879, -0.015088645741343498, 0.010528570041060448, 0.027551889419555664, -0.09428947418928146, 0.001280527445487678, 0.019473621621727943, -0.00835457257926464, 0.055521197617053986, -0.026462597772479057, 0.04278472065925598, 0.05633159726858139, 0.019300689920783043, 0.016770582646131516, -0.02955900877714157, -0.020584937185049057, -0.005031277891248465, -0.04713962599635124, -0.017588427290320396, -0.016228625550866127, 0.031853530555963516, 0.014562487602233887, -0.024765653535723686, 0.016259247437119484, -0.0032431005965918303, -0.07230160385370255, -0.07390625029802322, 0.05059510096907616, -0.029607225209474564, -0.04133671149611473, 0.02662007324397564, 0.061322398483753204, -0.008628913201391697, -0.002239009365439415, -0.02082010917365551, 0.06330914795398712, -0.01835787668824196, 0.013751879334449768, 0.042227603495121, 0.014583724550902843, 0.011596356518566608, -0.011418439447879791, 0.008325782604515553, -0.03495819494128227, -0.01850588619709015, 0.02514590509235859, -0.05089805647730827, -0.06228036433458328, -0.05341368913650513, -0.0006330282194539905, 0.019210318103432655, 0.016010692343115807, 0.0066271694377064705, 0.008082223124802113, -0.03400757536292076, -0.03341853991150856, 0.04126232489943504, 0.0008016080828383565, -0.008038711734116077, 0.053297415375709534, 0.028789978474378586, -0.008455058559775352, -0.06645674258470535, 0.008250494487583637, -0.010583184659481049, -0.052131641656160355, 0.023332465440034866, 0.008205609396100044, -5.893569781903964e-33, -0.02196498028934002, -0.027980053797364235, 0.004082531668245792, -0.018527699634432793, -0.027039343491196632, -0.08779500424861908, -0.04642152413725853, -0.015579593367874622, -0.046266406774520874, -0.006997907999902964, 6.235808541532606e-05, 0.009872818365693092, 0.009043258614838123, -0.019382432103157043, -0.000814644736237824, -0.023398475721478462, 0.010925163514912128, 0.0008047920418903232, -0.002324481261894107, 0.05544149503111839, -0.019287334755063057, -0.03049764223396778, -0.02611386403441429, 4.568430085782893e-05, -0.012677198275923729, -0.05481427535414696, -0.0019473469583317637, 0.0131152318790555, 0.009096437133848667, 0.03895112872123718, -0.07211951911449432, -0.023335009813308716, 0.008402573876082897, 0.03484618291258812, 0.02593638375401497, 0.032741378992795944, -0.016783026978373528, -0.0167377982288599, 0.003034819383174181, -0.027248810976743698, 0.045957569032907486, -0.04224466532468796, -0.012880627997219563, 0.0271742083132267, 0.029716020449995995, 0.03326084464788437, 0.03332658112049103, 0.0382329523563385, -0.024134837090969086, 0.03286092355847359, -0.11005573719739914, 0.02865094505250454, -0.03666074201464653, 0.036328256130218506, -0.004856783896684647, 0.003056165063753724, 0.07154764980077744, -0.0744682252407074, -0.015991145744919777, -0.04003607854247093, 0.000947464897762984, 0.008976299315690994, 0.005954008549451828, -0.02807079441845417, 0.008094965480268002, 0.001983796479180455, -0.05638489872217178, 0.08162816613912582, 0.019206009805202484, 0.014544341713190079, -0.016022857278585434, -0.007260325830429792, -0.027835626155138016, 0.0019029404502362013, -0.060240644961595535, -0.0032269444782286882, -0.017440922558307648, 0.04749450460076332, 0.04723205044865608, 0.10290225595235825, 0.017932789400219917, -0.01893334835767746, -0.03514119237661362, -0.012905042618513107, 0.0035426111426204443, 0.0418861024081707, -0.03188355639576912, -0.03772575408220291, -0.0335799902677536, 0.009267203509807587, 0.024616235867142677, -0.06507279723882675, -0.03509299457073212, 0.01660565659403801, 0.02280857414007187, 0.05313515663146973, -0.0005610105581581593, 0.012050846591591835, 0.01460179965943098, -0.048465654253959656, -0.06793956458568573, -0.023922013118863106, 0.0022167509887367487, 0.05118466168642044, 0.015947995707392693, -0.017434997484087944, -0.02807178907096386, 0.013139419257640839, -0.025932341814041138, 0.008633392862975597, -0.03049953281879425, -0.014992808923125267, -0.00742565281689167, 0.05202688276767731, -0.040805883705616, -0.005957599263638258, 0.006613105069845915, 0.05097946897149086, -0.07255696505308151, 0.015462292358279228, -0.0218791663646698, 0.06189076229929924, -0.010593779385089874, -0.05075506493449211, 0.005735920742154121, 0.02941867522895336, 0.019103091210126877, 0.08605832606554031, 0.10379044711589813, 0.043528687208890915, 0.0067547946237027645, -0.012756184674799442, 3.1119807886170747e-07, 0.03194842115044594, 0.050324589014053345, 0.0457376167178154, -0.03951278701424599, 0.019321750849485397, -0.02822534553706646, -0.018875690177083015, 0.03443178907036781, -0.002807604381814599, 0.026923498138785362, 0.027104929089546204, 0.028578223660588264, -0.0004730871005449444, 0.020945101976394653, 0.011476187035441399, -0.1415310651063919, -0.037411123514175415, -0.011077133938670158, -0.010617428459227085, 0.014414539560675621, 0.02763562835752964, 0.00040854240069165826, 0.0248414296656847, 0.01649811491370201, -0.051107097417116165, 0.08703666180372238, 0.0014472092734649777, -0.057574182748794556, -0.0012303340481594205, 0.04308120161294937, 0.003147996263578534, 0.05716189742088318, 0.006842534989118576, -0.08813188225030899, 0.011703882366418839, -0.051467616111040115, -0.07544991374015808, 0.0034438902512192726, 0.06055930256843567, -0.05183223634958267, 0.008025845512747765, 0.02995777688920498, -0.027285045012831688, -0.04629741236567497, 0.010515393689274788, 0.010232819244265556, -0.013638843782246113, 0.01019957847893238, -0.00497862184420228, -0.0063522737473249435, 0.04058288037776947, 0.016562698408961296, 0.0019986131228506565, 0.002259663539007306, -0.027747895568609238, -0.04818052798509598, 0.028031285852193832, -0.04563808813691139, 0.046882160007953644, 0.009050430729985237, -0.05805782228708267, -0.010556790977716446, 0.007153050974011421, 0.003930171951651573, 0.0064894394017755985, -0.01651374250650406, 0.0037033907137811184, 3.0973839925560525e-34, 0.04342271015048027, -0.054519761353731155, -0.01762198656797409, -0.022241970524191856, 0.007775811944156885, -0.00511175999417901, -0.009797158651053905, -0.011464468203485012, -0.03182096406817436, -0.04304834082722664, -0.03008599393069744], "4855e3ee-b3fc-46fc-a437-576b42bb2b5e": [0.04968910291790962, -0.08716969192028046, -0.031764574348926544, -0.015825238078832626, -0.002888923976570368, 0.06607071310281754, 0.0176320169121027, 0.05049597844481468, -0.022541457787156105, -0.04681866988539696, -0.02988729439675808, 0.04035307839512825, 0.027766073122620583, 0.04793725535273552, 0.009731066413223743, 0.003158132079988718, 0.02167874574661255, 0.0036224040668457747, 0.008976979181170464, -0.00024270606809295714, -0.001706303795799613, 0.011911788024008274, 0.014003779739141464, -0.0007461677305400372, 0.0628606304526329, -0.019581548869609833, -0.01762421801686287, 0.041573598980903625, -0.02317981980741024, -0.019248275086283684, 0.02051359973847866, 0.018578194081783295, 0.005354906897991896, -0.013241160660982132, 2.283476533193607e-06, -0.017955387011170387, -0.05927784740924835, 0.01325465738773346, -0.02849501557648182, 0.0005123326554894447, 0.016611186787486076, 0.0032942239195108414, -0.06001272425055504, -0.0158182755112648, 0.025904351845383644, -0.014101077802479267, -0.04244500771164894, 0.08571983873844147, -0.015232948586344719, 0.020722653716802597, 0.027407899498939514, -0.03559080883860588, 0.0015624531079083681, 0.0027796209324151278, 0.10599017888307571, 0.02166312374174595, -0.018253881484270096, 0.08953103423118591, 0.016184663400053978, 0.013902369886636734, -0.009844633750617504, 0.007504860870540142, -0.027465324848890305, 0.004197391215711832, 0.06523062288761139, -0.004225085489451885, 0.05361345410346985, -0.09371806681156158, 0.044816795736551285, 0.012307812459766865, 0.07680248469114304, -0.05404255539178848, 0.03338095545768738, 0.00493888882920146, -0.05959475412964821, 0.10698723047971725, -0.02993062138557434, 0.024066342040896416, -0.006316596642136574, -0.019409867003560066, -0.03393072262406349, -0.12565796077251434, -0.0018571842228993773, -0.010855387896299362, 0.011323555372655392, 0.00039639417082071304, 0.003163108369335532, -0.04770592972636223, 0.04250579699873924, -0.022618498653173447, 0.02187853306531906, -0.041099417954683304, -0.009276865050196648, 0.029386457055807114, 0.09560170769691467, -0.05253475904464722, -0.005599477794021368, -0.05232347175478935, 0.0510125458240509, 0.0039043601136654615, -0.03362790867686272, 0.004310529679059982, -0.01658027246594429, 0.009755698032677174, 0.023812666535377502, 0.011205898597836494, 0.009602227248251438, 0.004300445783883333, 0.008667109534144402, 0.09979739040136337, 0.0016571179730817676, 0.019464800134301186, -0.006356352940201759, -0.047389231622219086, -0.0602196604013443, -0.020144594833254814, 0.03630313277244568, 0.012368927709758282, 0.07400795817375183, 0.07314178347587585, 0.03520359471440315, -0.01144170481711626, -0.0555061511695385, -0.008039305917918682, -0.010382434353232384, -0.07713127881288528, 0.04550936818122864, -0.050640203058719635, -0.0002904953435063362, 0.007626304868608713, 0.0062355040572583675, -0.005139382556080818, 0.028353726491332054, 0.018428850919008255, -0.027163587510585785, 0.04944062605500221, 0.024535464122891426, -0.011296200565993786, 0.009457460604608059, -0.02201751619577408, 0.05611756816506386, 0.010815267451107502, -0.010088627226650715, -0.008145114406943321, 0.02717077173292637, 0.004922262858599424, 0.0019812574610114098, -0.006771317683160305, 0.004115991294384003, 0.026077162474393845, -0.057644717395305634, 0.01553383655846119, -0.0012856225948780775, -0.0068737841211259365, 0.07795751839876175, -0.0021461646538227797, -0.0581856369972229, -0.0534420907497406, 0.0021809786558151245, -0.013473177328705788, 0.03809429332613945, 0.03694770112633705, 0.030184825882315636, -0.025212042033672333, 0.01823711395263672, 0.022237634286284447, 0.07482977956533432, 0.017412053421139717, 0.05872297286987305, 0.008495397865772247, -0.016378944739699364, -0.0023907937575131655, -0.04932594299316406, 0.030365917831659317, 0.013673277571797371, 0.00905145425349474, 0.05033543333411217, 0.0224093459546566, 0.00616556778550148, 0.04851260036230087, 0.005240828264504671, -0.02907826565206051, -0.05309857428073883, -0.025000568479299545, -0.09625107049942017, -0.012978981249034405, -0.043072476983070374, -0.015689164400100708, 0.028408434242010117, 0.01957421563565731, -0.05295421555638313, 0.005648505408316851, 0.035565756261348724, -0.06060745567083359, 0.003470925847068429, 0.022969922050833702, -0.03271614760160446, -0.08095712959766388, 0.02105734869837761, 0.006706353276968002, 0.04339800402522087, 0.012478181160986423, 0.04032408818602562, 0.050491008907556534, 0.090652234852314, -0.022752949967980385, -0.018845969811081886, -0.04700694605708122, 0.001705672824755311, 0.0023499606177210808, 0.029143674299120903, -0.008145909756422043, -0.02903546392917633, -0.03842170163989067, -0.04122673347592354, -0.0655079260468483, -0.029326289892196655, -0.028906648978590965, 0.014447669498622417, -0.022788463160395622, 0.034085728228092194, -0.04058917984366417, -0.04776664823293686, 0.03235070779919624, -0.027309322729706764, -0.048024266958236694, -0.052781589329242706, 0.003095539752393961, 0.04423435032367706, -0.021279023960232735, -0.03387647122144699, 0.006763835437595844, 0.01129474863409996, 0.05329557880759239, -0.010823414660990238, -0.01242330763489008, 0.08532492071390152, -0.005935093853622675, 0.04435611143708229, -0.0714353621006012, -0.0034427575301378965, 0.014143438078463078, 0.016817739233374596, 0.030954021960496902, -0.013362477533519268, -0.017411988228559494, -0.000381529942387715, 0.01022821944206953, 0.02499554678797722, 0.05891202390193939, 0.026380805298686028, 0.002787595149129629, 0.03030848503112793, -0.006482365075498819, -0.04166986793279648, 0.03576996549963951, -0.03160032629966736, -0.013963007368147373, -0.00801839493215084, 0.029605533927679062, 0.01055462658405304, -0.0025502238422632217, -0.05141153186559677, 0.010748104192316532, 0.015790734440088272, 0.02013739012181759, -0.009099855087697506, 0.009103740565478802, 0.005026296712458134, -0.01704246737062931, 0.005318832583725452, 0.03802467882633209, -0.03847429156303406, -0.02557925134897232, 0.014101235195994377, 0.024551745504140854, -0.0024819474201649427, -0.04480742663145065, -0.012768534012138844, -0.03196149319410324, 0.010305553674697876, 0.023188406601548195, -0.02772361971437931, 0.0032642539590597153, -0.016331283375620842, -0.017701920121908188, -0.0013957606861367822, -0.0365331657230854, -0.018082981929183006, -0.02748907171189785, -0.028455108404159546, -0.004496254958212376, 0.013345315121114254, -0.05441983416676521, -0.03774512559175491, -0.006658342666924, 0.02992304414510727, 0.0034996590111404657, -0.040747690945863724, 0.06577644497156143, 0.05566956847906113, -0.048685722053050995, -0.0029168010223656893, 0.014838168397545815, 0.004077824763953686, 0.01625077612698078, -0.0071272896602749825, -0.048816535621881485, -0.023207515478134155, -0.06389058381319046, 0.044289376586675644, 0.037334829568862915, -0.0272374264895916, -0.01587957702577114, -0.005458328872919083, -0.030405936762690544, 0.010296888649463654, -0.014841927215456963, 0.01402332168072462, 0.06892410665750504, 0.005074622575193644, 0.005661599803715944, -0.04353303089737892, -0.030618546530604362, 0.009844526648521423, -0.08597883582115173, 0.02934061363339424, 0.004083083476871252, -0.015020579099655151, 0.009018989279866219, 0.00951549131423235, -0.015786565840244293, 0.017229272052645683, -0.01279133465141058, 0.024442512542009354, 0.03045034408569336, 0.0016839008312672377, -0.03547857701778412, -0.001049446756951511, -0.0151966018602252, -0.015895335003733635, 0.07725311070680618, 0.03333932161331177, 0.029909951612353325, 0.016582295298576355, -0.008646208792924881, -0.022992458194494247, -0.00649294164031744, -0.04132687672972679, 0.006849248893558979, 0.08048314601182938, 0.026588983833789825, 0.022225862368941307, -0.01107879914343357, -0.0167604498565197, -0.06144331023097038, 0.026649145409464836, -0.006528915837407112, -0.011716043576598167, -0.04668428748846054, 0.007355269975960255, 0.051149267703294754, -0.010805967263877392, -0.015645798295736313, 0.05270057171583176, 0.01778748445212841, -0.03789736330509186, -0.04693334177136421, 0.004380297381430864, 0.013408326543867588, -0.08181312680244446, 0.01305112149566412, -0.031146733090281487, 0.04162457212805748, 0.04235505312681198, -0.06663338840007782, -0.005415161605924368, -0.054900575429201126, -0.00993389543145895, -0.017388133332133293, -0.01661543734371662, -0.013830688782036304, 0.033173393458127975, 0.03606133908033371, 0.026351265609264374, 0.0031816584523767233, 0.02186293713748455, 0.055620890110731125, 0.10120806097984314, -0.04297463968396187, -0.011163601651787758, -0.02644497901201248, -0.019014347344636917, 0.03358295187354088, -0.029957016929984093, 0.010496508330106735, -0.03305177763104439, 0.002355234231799841, -0.0234331414103508, 0.010645809583365917, -0.03313397988677025, 0.02848650887608528, -0.0396563857793808, -0.0007322623860090971, 0.022902850061655045, 0.034120503813028336, 0.044863875955343246, 0.023524262011051178, 0.03246736526489258, 0.07283378392457962, 0.07969357073307037, 0.026414601132273674, -0.0033821105025708675, -0.02397890016436577, 0.04064364731311798, -0.03919214382767677, 0.04574713110923767, 0.0033435740042477846, 0.013240726664662361, 0.02391616813838482, -0.04717126861214638, 0.005397191271185875, 0.033660221844911575, -0.037829674780368805, 0.025368288159370422, -0.03375083580613136, 0.040449317544698715, 0.009799528867006302, 0.03443530946969986, -0.0016613370971754193, 0.050970837473869324, -0.007328019477427006, -0.033030614256858826, 0.027150124311447144, 0.07106148451566696, -0.004173832014203072, -0.041969455778598785, -0.07277607172727585, -0.048623185604810715, -0.0629521906375885, -0.022807160392403603, 0.03288766369223595, 0.003937984816730022, 0.04405635967850685, -0.03711625561118126, 0.06836346536874771, 0.018421098589897156, -0.028892839327454567, -0.04326539486646652, -0.03401695564389229, -0.025266334414482117, -0.05654684826731682, -0.11651073396205902, 0.04410303384065628, -0.05730484053492546, -0.00498179392889142, -0.00640422897413373, 0.11136136949062347, -0.008750226348638535, 0.031651128083467484, -0.025253115221858025, 0.03227340802550316, 0.004378636833280325, -0.012817470356822014, -0.044107213616371155, -0.014306181110441685, -0.06665394455194473, -0.09833216667175293, 0.0596182681620121, -0.005566931329667568, 0.07928915321826935, -0.017357973381876945, -0.018189650028944016, -0.06159486994147301, 0.0033834187779575586, -0.033595163375139236, -0.05162299424409866, 0.004848951939493418, 0.010181420482695103, -0.01800370216369629, 0.0093451589345932, 0.008531313389539719, 0.04988532513380051, 0.021668044850230217, -0.02568334899842739, 0.08319222927093506, -0.008747512474656105, 0.008408352732658386, 0.002229897538200021, 0.009493662044405937, 0.06605349481105804, -0.049520689994096756, -0.003927847370505333, 0.04522812366485596, 0.004256632179021835, 0.014125494286417961, -0.026386911049485207, 0.0016419360181316733, 0.001293978770263493, 0.030774282291531563, 0.030874943360686302, -0.04778692126274109, -0.03060065768659115, 0.04510778188705444, -0.04617396742105484, -0.03284445032477379, 0.0009385375888086855, 0.03395282104611397, 0.031166065484285355, -0.020570358261466026, -0.024705814197659492, -0.021375508978962898, -0.06979860365390778, -0.02474041096866131, 0.03126271814107895, -0.03023035079240799, -0.02610735408961773, -0.0011212565004825592, 0.0828947126865387, 0.034819502383470535, -0.024783385917544365, -0.02804909646511078, 0.015405019745230675, 0.020776307210326195, -0.008108497597277164, -0.0005175640108063817, 0.007459791377186775, 0.031031088903546333, 0.007186101283878088, 0.0010394862620159984, 0.010917432606220245, 0.01900506392121315, 0.013960132375359535, -0.022419026121497154, -0.04650365933775902, -0.02141217328608036, 0.022495537996292114, 0.03981452435255051, -0.013912421651184559, -0.03956688567996025, 0.020929642021656036, -0.014372501522302628, 0.009780152700841427, 0.06528378278017044, -0.00602870574221015, -0.002181279007345438, 0.02240430936217308, 0.011974602937698364, -0.019122611731290817, -0.06287790834903717, -0.009724513627588749, 0.03675064072012901, -0.034105461090803146, 0.04077407345175743, 0.021570298820734024, -5.691266469443479e-33, -0.028797095641493797, -0.00567517289891839, 0.006652663461863995, 0.03611428663134575, 0.03238397464156151, -0.0757596492767334, -0.06344793736934662, -0.055581577122211456, -0.010587734170258045, -0.015048798173666, -0.0007235914235934615, -0.017306335270404816, 0.013102823868393898, -0.043134644627571106, -0.00304577243514359, -0.012975645251572132, 0.028590405359864235, 0.0037295417860150337, -0.015311065129935741, 0.048662569373846054, -0.002366820350289345, -0.03029748611152172, 0.004837648943066597, 0.013222711160779, -0.019534500315785408, -0.09578600525856018, 0.00780132319778204, -0.02381901443004608, -0.01758570782840252, 0.04994184151291847, -0.06554266065359116, -0.08974484354257584, -0.008108589798212051, 0.03105948492884636, 0.012195461429655552, 0.005489890929311514, -0.023970499634742737, 0.006976118311285973, -0.012521930038928986, 0.03349657356739044, 0.07762573659420013, -0.03796752914786339, -0.02803598716855049, 0.013426254503428936, 0.02124042622745037, 0.012880968861281872, 0.022473841905593872, 0.0526910126209259, -0.026693878695368767, 0.02765548601746559, -0.08895542472600937, 0.02730846405029297, 0.005465496797114611, 0.04784555733203888, 0.01951741985976696, -0.03452109545469284, 0.0434178002178669, -0.017262950539588928, -0.028284374624490738, -0.05615681782364845, 0.0397641696035862, 0.015757089480757713, 0.02656400576233864, -0.0570560060441494, -0.001018249080516398, 0.006829555612057447, -0.03722647204995155, 0.050798796117305756, 0.005854310002177954, 0.04433209076523781, 0.007773431949317455, -0.035567473620176315, -0.03679296001791954, -0.013651685789227486, -0.03479709103703499, 0.02110910229384899, -0.02201302908360958, 0.03264372795820236, 0.020275481045246124, 0.11201727390289307, -0.02832900546491146, -0.027036409825086594, 0.013411379419267178, 0.007331650238484144, 0.009426411241292953, -0.01579662226140499, -0.051862433552742004, -0.010088944807648659, 0.009135671891272068, 0.012758155353367329, -0.035964105278253555, -0.04931587725877762, -0.051657143980264664, 0.03470440208911896, 0.024887287989258766, 0.07703561335802078, -0.018275244161486626, 0.028312774375081062, -0.014134163036942482, -0.0801386907696724, -0.03272699564695358, -0.025150803849101067, 0.0022053131833672523, -0.04548422992229462, 0.008616155944764614, -0.025110915303230286, -0.009815511293709278, 0.03341035917401314, -0.018892068415880203, 0.01923120953142643, 0.0027643025387078524, -0.03811447322368622, 0.00487776892259717, 0.0013440228067338467, -0.024825947359204292, -0.04433991760015488, -0.011972683481872082, -0.028378523886203766, -0.025309091433882713, 0.003010785672813654, -0.029349451884627342, 0.015396167524158955, 0.04239259660243988, -0.03201659396290779, 0.005339593626558781, 0.005547749809920788, -0.0007405299111269414, 0.04472171142697334, 0.07591836154460907, 0.01695881597697735, 0.010265681892633438, 0.03705080598592758, 2.953257478566229e-07, 0.04640981927514076, 0.07993282377719879, 0.029788382351398468, -0.04864799976348877, 0.02298368513584137, -0.0298579353839159, -0.051107749342918396, 0.004347512498497963, -0.01964123547077179, -0.02320496365427971, 0.04361117631196976, 0.002526870695874095, 0.0012426632456481457, 0.021457327529788017, 0.022926026955246925, -0.01164702046662569, 0.004007234238088131, -0.0045637693256139755, -0.026660481467843056, -0.01261705532670021, 0.007586236111819744, -0.024992506951093674, 0.017773717641830444, 0.019020846113562584, -0.0005241740727797151, 0.09020882844924927, -0.011275002732872963, -0.003691734978929162, 0.0378732793033123, 0.024736275896430016, 0.00792737491428852, 0.032996125519275665, -0.03381486237049103, -0.08792925626039505, -0.03874436765909195, -0.009131238795816898, -0.0642324909567833, 0.04893912002444267, 0.021085668355226517, 0.011271546594798565, 0.03351018577814102, -0.007671963423490524, 0.0027405458968132734, -0.028537550941109657, 0.0113822091370821, 0.045696187764406204, 0.018162641674280167, 0.044690318405628204, -0.04465349763631821, -0.027806317433714867, 0.02335268072783947, -0.005213236901909113, 0.0037332403007894754, 0.010261792689561844, -0.022410107776522636, -0.007158518303185701, 0.0016706574242562056, -0.032966285943984985, 0.05851154029369354, -0.014671919867396355, -0.04052571952342987, 0.015277859754860401, -0.016682252287864685, 0.05091561749577522, -0.005448050331324339, -0.015572142787277699, -0.025724129751324654, 3.136551372489955e-34, 0.01887686736881733, -0.033599838614463806, 0.0069090393371880054, -0.03813914209604263, 0.037400439381599426, -0.024167653173208237, 0.04308160021901131, -0.004464447498321533, -0.03654840961098671, -0.07805610448122025, -0.05605042353272438], "f020b5d1-5ac0-4c4d-83f6-ab67bc6dfb48": [0.08906924724578857, -0.14620806276798248, 0.001281391829252243, 0.011646654456853867, 0.05852053686976433, 0.08302602171897888, -0.028845928609371185, 0.01983279176056385, -0.09648540616035461, -0.021993933245539665, 0.027226688340306282, -0.025250215083360672, 0.07662499696016312, 0.005190757568925619, 0.0304942037910223, -0.019493328407406807, -0.015098975971341133, 0.007375260815024376, -0.02629614807665348, 0.033278074115514755, -0.015675969421863556, 0.002921688836067915, 0.013099712319672108, -0.0054951924830675125, 0.0027345779817551374, 0.019762113690376282, -0.024900196120142937, 0.06544602662324905, 0.0028821828309446573, -0.0633930042386055, 0.013913453556597233, 0.050145454704761505, 0.0007391247781924903, -0.019895004108548164, 2.170276502511115e-06, -0.02713920921087265, -0.031430065631866455, -0.004764867480844259, -0.010170187801122665, 0.004608457442373037, 0.030755488201975822, -0.006540481001138687, -0.031402938067913055, 0.0020304748322814703, 0.025157276540994644, -0.05479798838496208, -0.07276853919029236, 0.09334586560726166, 0.012448808178305626, 0.013478617183864117, 0.01427469402551651, -0.09646130353212357, 0.021113628521561623, -0.018519239500164986, 0.13014112412929535, -0.014529075473546982, -0.02249826304614544, 0.03899335861206055, -0.025305427610874176, 0.009246409870684147, 0.01270780898630619, -0.024847224354743958, 0.005680616945028305, 0.011682798154652119, 0.041518617421388626, -0.020288316532969475, 0.06725454330444336, -0.06516719609498978, 0.021500777453184128, 0.06529951095581055, 0.11101409047842026, -0.027339274063706398, 0.019832899793982506, -0.009335655719041824, -0.02842305414378643, 0.052892524749040604, -0.019233325496315956, 0.015078390948474407, 0.004150235094130039, -0.019629236310720444, 0.07707344740629196, -0.026067618280649185, -0.02680329419672489, -0.026399916037917137, -0.01673145219683647, 0.01482380647212267, -0.004692184738814831, -0.026938827708363533, 0.03381066396832466, -0.02104618400335312, 0.024900933727622032, -0.027914179489016533, -0.006631425581872463, 0.020116707310080528, 0.0781337171792984, -0.028462328016757965, 0.024476218968629837, -0.0352095365524292, 0.05640191212296486, -0.05513468384742737, -0.043115727603435516, -0.0032017927151173353, 0.02493453212082386, 0.003195214318111539, 0.056266240775585175, 0.016853895038366318, -0.007256491109728813, -0.027907362207770348, -0.03872302547097206, 0.0820712149143219, 0.046104468405246735, 0.0064337668009102345, 0.006289447192102671, -0.06487575173377991, -0.03365035355091095, -0.023635994642972946, 0.024251354858279228, -0.0025477642193436623, 0.049456868320703506, 0.05467085540294647, 0.03878295049071312, -0.028235243633389473, -0.007247116882354021, 0.008864142000675201, 0.0016941642388701439, -0.032586269080638885, 0.047301534563302994, -0.015076393261551857, 0.030381210148334503, 0.04293832182884216, 0.005110081750899553, -0.028168393298983574, -0.00048339334898628294, 0.024542344734072685, -0.02078922651708126, 0.1063103973865509, 0.020653950050473213, 0.013334433548152447, 0.010782244615256786, -0.007847890257835388, 0.08065124601125717, 0.02366388961672783, -0.022049004212021828, -0.026590239256620407, -0.02869369462132454, 0.061827726662158966, 0.021505722776055336, 0.03908051922917366, 0.025858627632260323, 0.010324912145733833, -0.05323474481701851, -0.019373569637537003, 0.014310818165540695, 0.02729535475373268, 0.048804521560668945, -0.006009267643094063, -0.01865186169743538, -0.004072817508131266, -0.0034824856556952, 0.02805764600634575, 0.025873295962810516, 0.041353534907102585, -0.007061231415718794, -0.0043783411383628845, 0.015051562339067459, 0.06895921379327774, 0.03898096829652786, -0.03843560069799423, 0.05577053874731064, 0.00656585767865181, -0.03214888274669647, -0.027886787429451942, -0.0410478375852108, 0.033187974244356155, 0.034794796258211136, -0.01741168089210987, 0.027197452262043953, -0.026922574266791344, 0.004176771268248558, -0.001345995580777526, -0.0046166651882231236, -0.0034970419947057962, -0.019043026491999626, -0.033532824367284775, -0.13398481905460358, -0.0044653513468801975, -0.026651112362742424, 0.021232087165117264, -0.011366835795342922, -0.015388100408017635, -0.06521094590425491, 0.015820927917957306, 0.03379067778587341, -0.0441964752972126, -0.012869915924966335, 0.018896983936429024, -0.05670370161533356, -0.07218581438064575, 0.004874727223068476, -0.008713353425264359, 0.008378350175917149, 0.07665808498859406, 0.04381179064512253, 0.06367071717977524, 0.05896966531872749, 0.00804817397147417, -0.015236558392643929, 0.0017233439721167088, -0.01662321761250496, -0.01350332796573639, 0.05033046752214432, -0.004574407823383808, -0.01337272860109806, -0.038745470345020294, -0.042907699942588806, -0.013011069037020206, -0.03304162994027138, -0.011296412907540798, -0.030125806108117104, -0.033674951642751694, 0.05262163281440735, 0.03915338218212128, -0.04469515383243561, 0.023955993354320526, 0.003971315920352936, -0.0768895223736763, -0.018613867461681366, -0.010124447755515575, 0.03468385338783264, -0.0161287821829319, -0.03661232441663742, -0.012481804005801678, 0.01255312841385603, 0.0666247010231018, -0.0009633909212425351, -0.03242231160402298, 0.04801226407289505, -0.02683386206626892, 0.011924877762794495, -0.02422201633453369, -0.00032396140159107745, 0.006931552663445473, -0.0201137512922287, -0.0009161810739897192, -0.039554938673973083, 0.01999066211283207, -0.02302761748433113, 0.022598566487431526, 0.03847998008131981, 0.06464028358459473, 0.020252825692296028, 0.0035572214983403683, 0.010356170125305653, -0.03333085775375366, -0.02224775403738022, 0.035231322050094604, 0.028714772313833237, -0.001846145954914391, -0.0013857127632945776, -0.0031642471440136433, -0.020809555426239967, -0.011135341599583626, -0.014072734862565994, 0.01164484303444624, 0.003631112864241004, 0.005832888651639223, 0.0145369628444314, 0.0042573572136461735, 0.011966482736170292, -0.027973249554634094, -0.020586049184203148, 0.012369189411401749, 0.0037648959551006556, -0.04439442977309227, -0.0014557052636519074, -0.019096272066235542, 0.04401285573840141, -0.030795302242040634, -0.020451193675398827, -0.012425843626260757, 0.03251844644546509, 0.05644426494836807, -0.026014473289251328, -0.00024658258189447224, -0.019015824422240257, -0.0024192004930227995, 0.003822416765615344, 0.005787975620478392, -0.002217987086623907, 0.014602957293391228, -0.03513332083821297, -0.025836264714598656, 0.010240079835057259, -0.08816511183977127, -0.008080015890300274, -0.015270467847585678, 0.051720116287469864, 0.013179583474993706, 0.021358922123908997, 0.07305005937814713, -0.009538981132209301, -0.02329965867102146, 0.03367018327116966, -0.01793290488421917, -0.032170236110687256, 0.04621783643960953, -0.015576041303575039, -0.04212076961994171, -0.009805118665099144, 0.022319454699754715, 0.0026566560845822096, 0.04669872671365738, -0.0356568843126297, 0.014225809834897518, 0.00987884309142828, 0.011339765042066574, 0.034568868577480316, 0.013727090321481228, 0.020285090431571007, 0.09131447970867157, 0.02207261323928833, 0.05098024755716324, -0.05022713541984558, -0.0332440547645092, 0.0013503640657290816, -0.05110844597220421, 0.016337599605321884, 0.005245373584330082, -0.006107206456363201, 0.027478329837322235, 0.02290455251932144, -0.005462891422212124, -0.00983786303550005, -0.01887405291199684, 0.01004461944103241, 0.02625907212495804, -0.004726567305624485, -0.020689884200692177, 0.014205834828317165, -0.01628628559410572, -0.005866458639502525, 0.048065587878227234, 0.02053418755531311, 0.0028295821975916624, 0.02048119716346264, 0.011228426359593868, -0.03427521511912346, 0.0012225358514115214, -0.023635806515812874, 0.015024365857243538, 0.037395503371953964, 0.03735872730612755, -0.011461586691439152, 0.016590937972068787, -0.043314866721630096, -0.0554848238825798, 0.022657886147499084, -0.010845396667718887, 0.04348767548799515, -0.05394769087433815, 0.01896245777606964, 0.0329715721309185, 0.039837345480918884, -0.03137945383787155, 0.030357725918293, 0.022422311827540398, -0.006374563556164503, -0.0341179333627224, -0.01979430764913559, 0.019598621875047684, -0.06591910868883133, 0.008131111040711403, 0.03847096487879753, 0.05608222261071205, 0.006606757175177336, -0.016606291756033897, 0.021199610084295273, -0.007533317431807518, 0.0031596545595675707, 0.018392156809568405, -0.030233487486839294, -0.02122284658253193, 0.022138742730021477, 0.010395098477602005, 0.004526589531451464, -0.004937118850648403, 0.03985955938696861, 0.0519467294216156, 0.07765701413154602, -0.005692742764949799, -0.001999149564653635, -0.059924665838479996, 0.018355021253228188, 0.026684798300266266, -0.05533543601632118, -0.04593978449702263, -0.04076814651489258, -0.0031713496427983046, -0.009597394615411758, 0.0014952179044485092, -0.025197789072990417, 0.07271448522806168, -0.05713222175836563, -0.010513518005609512, 0.03985713794827461, 0.06017164885997772, -0.01911270245909691, -0.01707194373011589, -0.028942938894033432, 0.029955482110381126, 0.039766713976860046, -0.023763226345181465, -0.04515369236469269, -0.045038849115371704, 0.026944026350975037, -0.00026427709963172674, 0.0089491605758667, -0.02610550820827484, -0.028709586709737778, 0.025613272562623024, -0.039607707411050797, 0.004255297128111124, -0.013298704288899899, -0.0021088006906211376, -0.0015537647996097803, -0.038009949028491974, 0.03927254676818848, 0.02419564500451088, 0.03195289894938469, 0.03704693913459778, 0.0670875683426857, -0.02379557304084301, -0.03624017909169197, 0.03661437705159187, 0.08975989371538162, 0.009943860583007336, -0.07032815366983414, -0.05666916072368622, -0.0516107901930809, -0.032341886311769485, -0.0050374967977404594, -0.0022207938600331545, 0.07036095857620239, 0.020904501900076866, 0.002485511591657996, 0.0028076686430722475, -0.008482260629534721, -0.01885707676410675, 0.0034931632690131664, 0.01981884427368641, -0.009446118958294392, -0.046159129589796066, -0.08992989361286163, 0.07110149413347244, -0.05306683108210564, -0.04474638029932976, -0.01606396958231926, 0.10525202751159668, -0.030367964878678322, 0.03265102952718735, 0.004487599246203899, 0.039979152381420135, -0.007200946565717459, -0.01191682368516922, -0.05569670721888542, 0.06510182470083237, -0.07432129979133606, -0.09836091101169586, 0.00704237399622798, -0.006073128432035446, 0.03230609372258186, 0.01649142988026142, -0.016102269291877747, -0.011087856255471706, 0.04914286732673645, -0.0327388159930706, -0.012296952307224274, -0.006080395542085171, -0.029882313683629036, -0.038036953657865524, 0.03702991455793381, -0.008395355194807053, 0.05561065301299095, 0.02927953563630581, -0.02996777929365635, 0.07439817488193512, 0.002846775110810995, 0.0022861051838845015, -0.0045537399128079414, 0.0027416616212576628, 0.02133563719689846, 0.008162802085280418, -0.024296559393405914, -0.05122371390461922, -0.0005817760247737169, 0.04206496477127075, -0.03166601434350014, -0.02776036597788334, -0.024379195645451546, 0.0755661353468895, 0.012729139067232609, -0.04329736903309822, -0.0020124977454543114, 0.027877507731318474, -0.014797262847423553, -0.02106611058115959, -0.00581639539450407, 0.04713199660181999, 0.018911056220531464, -0.020103424787521362, -0.0663921982049942, 0.033135849982500076, -0.08180386573076248, -0.020121553912758827, -0.0026094033382833004, -0.01658117026090622, -0.04286176338791847, -0.05519235134124756, 0.0825614184141159, 0.03579433262348175, 0.01017127837985754, 0.003628009231761098, 0.020655758678913116, -0.024800151586532593, -0.007208353374153376, 0.008669063448905945, 0.017948608845472336, 0.009732379578053951, -0.03337188437581062, -0.010201881639659405, 0.04628661647439003, -0.007197944913059473, 0.030986318364739418, -0.0023265057243406773, -0.026086313650012016, -0.00031434508855454624, 0.0842035561800003, 0.0279838927090168, -0.008272241801023483, -0.00460097985342145, -0.028000766411423683, -0.02190587855875492, -0.010819092392921448, 0.04308014735579491, 0.012736220844089985, -0.008546640165150166, 0.031647369265556335, 0.03177715837955475, 0.011787467636168003, -0.03625749424099922, -0.005302920006215572, -0.0276827160269022, -0.10854126513004303, 0.019129851832985878, 0.0887274220585823, -6.0669592394120825e-33, -0.035467728972435, 0.04824262857437134, -0.0007527740090154111, 0.08602730929851532, 0.026247479021549225, -0.03300006687641144, -0.04670671746134758, -0.026002652943134308, -0.01561227161437273, -0.007635836023837328, 0.00814592745155096, -0.03431757912039757, 0.02583875134587288, -0.05905626341700554, -0.030662793666124344, -0.006148019805550575, 0.010413908399641514, -0.0044193449430167675, -0.05757085606455803, 0.020456958562135696, -0.04576257988810539, -0.029527658596634865, 0.027481209486722946, -0.00012872478691861033, -0.042085785418748856, -0.056936100125312805, 0.014057066291570663, -0.02042769454419613, -0.06010593846440315, 0.04774462804198265, -0.012152306735515594, -0.05052252113819122, -0.001919314730912447, -0.012979160062968731, 0.02092598006129265, 0.0005627788486890495, -0.014036059379577637, -0.04780250042676926, 0.0273748766630888, 0.028236912563443184, 0.06137320026755333, -0.014444599859416485, -0.028258400037884712, 0.01036436203867197, 0.003727326635271311, -0.012372284196317196, 0.026598475873470306, 0.016858385875821114, -0.020334433764219284, 0.010751323774456978, -0.04480654001235962, 0.013488173484802246, 0.03467096388339996, 0.03811906278133392, -0.004776302259415388, -0.06342221051454544, 0.02600797265768051, -0.01968521811068058, -0.019015617668628693, -0.013792325742542744, 0.059514548629522324, 0.0018470346694812179, 0.0047185709699988365, -0.012729172594845295, 0.00825437530875206, -0.0037962812930345535, -0.07741337269544601, 0.08726828545331955, -0.007573396898806095, 0.02319519780576229, 0.013043530285358429, -0.013337988406419754, -0.012165993452072144, -0.020904352888464928, -0.009253553114831448, -0.005794932134449482, -0.051545653492212296, 0.050867244601249695, 0.03498794510960579, 0.058909058570861816, -0.05005819350481033, -0.0701122060418129, 0.013061496429145336, -0.007908515632152557, -0.07708525657653809, 0.00768430856987834, -0.03444531187415123, -0.005206676200032234, -0.00394805334508419, -0.006867858115583658, -0.06358753889799118, -0.04232165962457657, -0.047052111476659775, 0.03155965730547905, -0.006046390160918236, 0.10886242985725403, -0.03514811396598816, 0.03914497792720795, -0.0017605312168598175, -0.024275299161672592, -0.06680557876825333, -0.03524676337838173, 0.037075817584991455, -0.017232369631528854, -0.03887017443776131, -0.0027207823004573584, -0.02301974967122078, 0.016790298745036125, -0.023284194990992546, -0.004712426103651524, 0.022578412666916847, -0.0265834741294384, -0.010518452152609825, 0.0045520528219640255, -0.04044228419661522, -0.05866232514381409, -0.017620481550693512, -0.06368162482976913, -0.026130102574825287, -0.022207584232091904, -0.044989213347435, -0.03362484648823738, 0.031418781727552414, -0.022137649357318878, -0.011035994626581669, -0.00306784943677485, -0.015092561021447182, 0.03658036142587662, 0.09876786172389984, 0.04539945721626282, -0.022859765216708183, 0.015525043942034245, 2.8613564495572064e-07, 0.021763876080513, 0.03828941285610199, 0.03151572123169899, -0.016998346894979477, 0.002787728328257799, 0.014395252801477909, -0.06087281182408333, 0.019125305116176605, -0.041562847793102264, 0.014244882389903069, 0.017084265127778053, 0.012764474377036095, -0.023888584226369858, -0.012156756594777107, 0.04871414229273796, -0.014702976681292057, 0.030128054320812225, -0.028881460428237915, -0.04564949497580528, 0.002217833651229739, -0.022853903472423553, 0.007459517102688551, -0.0032961999531835318, -0.023574505001306534, -0.02806682325899601, 0.0889820009469986, 0.0028486335650086403, -0.025990668684244156, 0.04691604897379875, 0.006074294913560152, 0.019315196201205254, 0.03619961440563202, -0.017172949388623238, -0.06563661992549896, 0.01113463006913662, 0.03030294179916382, -0.025538230314850807, 0.004555013496428728, 0.002480430295690894, 0.02009817585349083, 0.0030605478677898645, -0.018185637891292572, 0.023184077814221382, -0.09248821437358856, -0.00405711168423295, 0.04188286513090134, -0.023084575310349464, -0.00496054207906127, -0.02384732849895954, -0.044273149222135544, 0.011049442924559116, 0.013391773216426373, 0.012017705477774143, 0.010255960747599602, 0.0005929348990321159, -0.019473139196634293, 0.006532726343721151, -0.016011573374271393, 0.03472088277339935, -0.007969210855662823, 0.013384091667830944, -0.008718442171812057, 0.011704436503350735, 0.019716886803507805, -0.014704780653119087, -0.002503465162590146, -0.03258535638451576, 3.261102345799269e-34, 0.03185335919260979, -0.06857496500015259, -0.00469215027987957, -0.03702622279524803, 0.025933926925063133, -0.014585121534764767, 0.013986915349960327, 0.04050379991531372, -0.01062309555709362, -0.0852113589644432, -0.032625071704387665], "c27977c8-8d38-420a-ae8a-cd48bd5d0f77": [-0.009147727862000465, -0.1297122836112976, -0.007322655525058508, -0.04762909933924675, 0.023110972717404366, 0.07014238834381104, -0.03412807360291481, 0.017297936603426933, -0.051249921321868896, -0.0352475680410862, 0.03411504626274109, 0.05473163351416588, 0.012786037288606167, 0.035514265298843384, 0.0510321743786335, -0.04723256453871727, 0.01251580286771059, 0.03632381558418274, -0.002671905793249607, 0.009055153466761112, 0.004898690152913332, -0.0048454999923706055, 0.03752405196428299, 0.008913373574614525, 0.00010739258141256869, -0.002145688747987151, -0.022176062688231468, 0.03489840775728226, -0.034354615956544876, -0.055760789662599564, -0.033572591841220856, -0.017441820353269577, 0.06796721369028091, -0.07750500738620758, 1.928032816067571e-06, 0.009981295093894005, -0.05833718180656433, 0.032087039202451706, -0.019562149420380592, -0.03484872356057167, -0.05366313084959984, -0.020710216835141182, -0.04721347615122795, 0.006945991422981024, -0.024300942197442055, -0.0431927852332592, -0.005241545382887125, 0.09550357609987259, 0.020782189443707466, 0.04598250612616539, 0.01530544739216566, -0.022571340203285217, -0.028732290491461754, -0.018547790125012398, 0.11809848248958588, 0.025800714269280434, -0.008233841508626938, 0.08598082512617111, 0.029155196622014046, -0.017241181805729866, 0.018131978809833527, 0.011751759797334671, 0.0023141060955822468, -0.04479530453681946, 0.04796789214015007, 0.0008153205853886902, 0.009881453588604927, -0.027586381882429123, 0.01209282223135233, 0.0025794177781790495, 0.08020287752151489, -0.04790445417165756, 0.03362327069044113, -0.008966485038399696, -0.006504124030470848, 0.0608113631606102, -0.0947735458612442, 0.01587727479636669, -0.0026327120140194893, 0.019319459795951843, -0.012815705500543118, -0.03564079478383064, 0.010021119378507137, -0.05364367738366127, 0.02594747394323349, 0.014102808199822903, -0.028381288051605225, -0.04739099740982056, -0.003668001154437661, -0.037853825837373734, 0.004461544565856457, -0.05346601828932762, -0.0011810968862846494, 0.03673678636550903, 0.1076655462384224, -0.022766057401895523, -0.0526951402425766, -0.09294276684522629, 0.04699622839689255, 0.04101236164569855, -0.03920726105570793, -0.017032602801918983, 0.0323026105761528, 0.02056766115128994, -0.013597468845546246, 0.015125313773751259, -0.02202712930738926, -0.011158679611980915, 0.01388128474354744, 0.06842271238565445, -0.02503863349556923, -0.035879284143447876, -0.03510727733373642, 0.00353801972232759, -0.03860311582684517, -0.01530531421303749, 0.03132326900959015, 0.05613505840301514, 0.011946719139814377, 0.03447587043046951, 0.06715700775384903, -0.03570014238357544, 0.02822823077440262, 0.03227665647864342, 0.04690036177635193, -0.07833534479141235, 0.04708802327513695, -0.026599876582622528, 0.027291258797049522, 0.005845360923558474, 0.0156078040599823, 0.04049631953239441, 0.014565466903150082, 0.016766957938671112, -0.02829061634838581, 0.0446670837700367, 0.027153106406331062, -0.002264989074319601, 0.04306495189666748, 0.016675811260938644, 0.03129933029413223, 0.0376623310148716, -0.03266780823469162, -0.0031252563931047916, -0.003144192975014448, 0.03441628813743591, -0.024462072178721428, -0.0033360386732965708, 0.01488130260258913, 0.033358003944158554, -0.05394997447729111, 0.016693739220499992, -0.056235410273075104, -0.002700172131881118, 0.014539686031639576, 0.01131901703774929, -0.011549622751772404, 0.0029929575975984335, 0.03707265853881836, -0.018844304606318474, 0.02284744754433632, 0.04302171617746353, -0.0049421521835029125, -0.03604412451386452, 0.02372591197490692, 0.06064809113740921, 0.045583080500364304, 0.044743940234184265, 0.08064448833465576, 0.02650061808526516, -0.03616185486316681, 0.012499983422458172, -0.050407856702804565, 0.04768779128789902, -0.0139986053109169, -0.005130561534315348, 0.03784143552184105, 0.019242513924837112, 0.04233445227146149, 0.02283255010843277, 0.015541584230959415, -0.015157924965023994, -0.031282760202884674, -0.024441814050078392, 0.0018854656955227256, -0.008037734776735306, 0.0018601618940010667, -0.04453154653310776, -0.0029992738272994757, -0.011396708898246288, -0.055831316858530045, 0.002629590919241309, 0.055475492030382156, -0.04688785970211029, -0.02534450590610504, -0.010650732554495335, -0.03160388395190239, -0.06732775270938873, -0.009518112987279892, 0.033117786049842834, 0.053923193365335464, 0.013948294334113598, 0.036797113716602325, 0.013843148946762085, 0.04884975403547287, -0.031230540946125984, -0.003966935444623232, -0.06265342980623245, 0.006521036382764578, -0.05063019320368767, 0.03294622525572777, -0.005347979720681906, -0.08051778376102448, -0.04267833009362221, 0.0019735898822546005, -0.07547328621149063, -0.012375899590551853, 0.005681827198714018, 0.020654594525694847, -0.02723478525876999, 0.05062413588166237, 0.03770056739449501, -0.03931139409542084, 0.02667449414730072, 0.0028447872027754784, -0.03524371236562729, -0.018621129915118217, -0.038596659898757935, 0.009846217930316925, -0.03829621896147728, -0.044735316187143326, 0.040884844958782196, 0.025332463905215263, 0.04574405029416084, -0.010377274826169014, 0.025471245869994164, 0.04174806550145149, -0.045442964881658554, 0.0030892190989106894, -0.06743806600570679, 0.008321736939251423, -0.01808653026819229, 0.04146333783864975, -0.017289716750383377, -0.028515851125121117, -0.013539090752601624, 0.013125545345246792, -0.02250111848115921, 0.009145728312432766, 0.05077175423502922, 0.015918513759970665, -0.007131279446184635, 0.01722012087702751, 0.004558240063488483, -0.0427662655711174, 0.07929115742444992, -0.0016335475957021117, -0.005779939703643322, 0.001153700752183795, -0.010327015072107315, 0.007669567596167326, 0.005984030663967133, -0.04034900665283203, 0.01850714161992073, 0.012895109131932259, 0.04195798188447952, 0.029874324798583984, 0.02284506894648075, 0.01494196243584156, -0.018194030970335007, 0.01844426803290844, 0.02784629724919796, -0.03265926241874695, -0.022911466658115387, -0.01615537703037262, -0.02155480533838272, -0.01365592610090971, -0.03530295565724373, 0.012308088131248951, -0.0032051382586359978, 0.058620940893888474, 0.056051429361104965, -0.00865631178021431, -0.02195398136973381, -0.023349333554506302, 0.016759930178523064, 0.024832546710968018, -0.02667330577969551, -0.008214152418076992, 0.01952708140015602, 0.03751173987984657, 0.001023216056637466, 0.00970291718840599, -0.05557294934988022, -0.009734109975397587, -0.02952936664223671, 0.009645671583712101, 0.002447864506393671, -0.030403492972254753, 0.0635501816868782, 0.045721348375082016, -0.014917737804353237, 0.02165919728577137, -0.001536757219582796, 0.002359867561608553, 0.07001903653144836, -0.04116324335336685, -0.012203444726765156, 0.005915622226893902, 0.01148296520113945, 0.05265294387936592, 0.03531717509031296, -0.026601623743772507, 0.0019109074492007494, 0.011397555470466614, 0.006623734720051289, 0.03423668444156647, -0.04393640533089638, 0.014200014062225819, 0.05617455393075943, 0.029396334663033485, 0.006301914341747761, -0.017978854477405548, -0.041634589433670044, -1.608276397746522e-05, -0.005249170586466789, 0.04769699275493622, -0.008007294498383999, -0.03248064965009689, 0.02943694032728672, -0.007426407653838396, -0.07372413575649261, 0.008453981950879097, 0.02935604564845562, -0.013903029263019562, 0.009487275034189224, 0.03840087726712227, -0.011632165871560574, 0.02350534312427044, -0.0003846308682113886, -0.018938416615128517, 0.0499563068151474, 0.022270604968070984, 0.02126455493271351, 0.022822938859462738, 0.04328447952866554, 0.027599632740020752, -0.013736293651163578, -0.01626722887158394, 0.013551580719649792, 0.061549559235572815, -0.005374291446059942, -0.03880136087536812, -0.0003881746088154614, -0.015268349088728428, -0.020021120086312294, 0.02259802259504795, -0.034543074667453766, 0.04584164172410965, -0.02936883643269539, 0.05832080915570259, 0.05019807443022728, -0.03602107614278793, 0.0315181128680706, 0.022556286305189133, 0.01923322305083275, -0.054227009415626526, -0.05046311765909195, -0.00011356973845977336, 0.013171132653951645, -0.04976770654320717, -0.020655324682593346, -0.003535584080964327, 0.03254471346735954, 0.034024618566036224, 0.006560822483152151, -0.005660282913595438, -0.0700664147734642, 0.019822528585791588, 0.04121365398168564, 0.005544750019907951, 0.010494956746697426, 0.03700832277536392, 0.047417622059583664, 0.004248540382832289, 0.005150738637894392, 0.05571442469954491, 0.058367181569337845, 0.07825350016355515, -0.002908621681854129, -0.015415438450872898, -0.025073830038309097, -0.0067870779894292355, 0.020356912165880203, -0.028956955298781395, 0.05191773548722267, -0.0519331619143486, 0.014811782166361809, -0.009724779054522514, -0.038465071469545364, -0.028474094346165657, -0.03475554287433624, -0.04208093509078026, -0.05183393508195877, 0.0157779548317194, 0.047482237219810486, 0.07431895285844803, -0.000698031042702496, -0.0060702115297317505, 0.04995209723711014, 0.020969482138752937, 0.02842026948928833, -0.019796017557382584, -0.033938512206077576, 0.0022008356172591448, -0.021777093410491943, 0.03587174043059349, 0.016781916841864586, 0.009338493458926678, 0.033914949744939804, -0.041816238313913345, -0.018846390768885612, 0.07042451947927475, -0.0577983595430851, 0.020245615392923355, -0.057078633457422256, 0.023385213688015938, 0.02552623488008976, 0.0050094048492610455, 0.04952951520681381, 0.045784447342157364, -0.03192000836133957, -0.022504955530166626, -0.010823347605764866, 0.022434676066040993, 0.02544492296874523, -0.0044807507656514645, -0.08128140866756439, -0.019085314124822617, -0.05002130568027496, -0.012040732428431511, 0.09577696770429611, 0.03669722378253937, 0.02310306206345558, -0.0099673205986619, -0.010369307361543179, -0.02946571633219719, -0.026749610900878906, -0.024834128096699715, 0.012563376687467098, -0.037328287959098816, -0.0040025790221989155, -0.07202034443616867, 0.053646404296159744, -0.09102819859981537, 0.03510025888681412, -0.06054623797535896, 0.03884617239236832, -0.014197313226759434, -0.0029733453411608934, -0.04123759642243385, 0.01934301108121872, 0.0566251240670681, -0.016529588028788567, -0.06173079460859299, -0.04679412767291069, -0.07864309102296829, -0.08638424426317215, 0.004042909946292639, 0.023111706599593163, 0.005983198527246714, 0.01331053301692009, -0.005788507405668497, -0.04577712342143059, -0.009487850591540337, -0.030673768371343613, -0.09148672223091125, -0.01155590545386076, 0.06838221848011017, 0.016864439472556114, 0.005497580394148827, -0.05003834888339043, 0.011526468209922314, -0.002163706813007593, -0.005021147895604372, 0.05796519294381142, -0.08198698610067368, -0.03859507292509079, -0.019745148718357086, 0.001559551223181188, 0.013630416244268417, 0.029333818703889847, -0.0035468721762299538, -0.006356590893119574, -0.03095911629498005, 0.02860594540834427, -0.04144591838121414, 0.07500489056110382, -0.051469586789608, 0.006360905710607767, 0.04824762046337128, -0.03931913897395134, -0.014632184989750385, 0.01743672601878643, -0.04715243726968765, -0.060451578348875046, -0.05423785001039505, 0.024760764092206955, 0.012223714962601662, -0.0103593859821558, 0.0010744498576968908, -0.03010377660393715, -0.035378746688365936, -0.0052971187978982925, 0.009445996023714542, -0.028301497921347618, -0.05018807575106621, -0.05615042522549629, 0.04370483011007309, 0.004690040368586779, -0.03795182332396507, -0.007224975619465113, -0.0024195455480366945, -0.0038016384933143854, -0.025711605325341225, 0.011916114948689938, 0.03014432266354561, 0.011467122472822666, -0.01916024461388588, -0.0033277461770921946, 0.006356206722557545, -0.011478814296424389, 0.02343226969242096, -0.028293026611208916, 0.004813851322978735, 0.03267735242843628, 0.09160471707582474, 0.03709936887025833, -0.005162585526704788, -0.07224534451961517, 0.03340007737278938, -0.02042088285088539, 0.030431922525167465, 0.06349007040262222, -0.016018345952033997, 0.052330274134874344, -0.021852051839232445, 0.011697792448103428, -0.003937147557735443, -0.024691615253686905, -0.03757224604487419, 0.017230141907930374, 0.0062136403284966946, 0.014072117395699024, 0.038853708654642105, -4.559484345424457e-33, -0.03365028649568558, 0.006854820530861616, 0.01687893643975258, 0.07988598942756653, 0.020278429612517357, -0.019187960773706436, -0.035178739577531815, -0.06626327335834503, 0.04731740057468414, 0.0024603786878287792, -0.0036128798965364695, -0.03254800662398338, -0.007790299132466316, -0.020258266478776932, -0.03835815191268921, -0.033951837569475174, 0.03446229547262192, 0.014874684624373913, 0.03106466867029667, 0.026849249377846718, 0.009783932939171791, -0.055334676057100296, 0.030999351292848587, 0.01957729645073414, -0.002602779073640704, -0.05300721898674965, -0.00430231774225831, -0.06980998069047928, -0.010563487187027931, 0.06994285434484482, -0.001836710493080318, -0.083852618932724, 0.009024723432958126, 0.0026947567239403725, 0.0028198857326060534, 0.043811898678541183, -0.054070327430963516, 0.002745571779087186, 0.0334588922560215, 0.014460260048508644, -0.014687475748360157, -0.03444056212902069, -0.03279797360301018, -0.025714635848999023, 0.0427728071808815, 0.01726352609694004, 0.02150500938296318, 0.022449014708399773, 0.001230684225447476, -0.033549752086400986, 0.009932045824825764, 0.04643118381500244, 0.02999335154891014, 0.04771113768219948, -0.007984989322721958, -0.05975346267223358, 0.014072644524276257, 0.035471346229314804, -0.017200825735926628, -0.013225562870502472, 0.03934059292078018, 0.04909829422831535, 0.0006944676861166954, -0.06110899895429611, 0.029957860708236694, 0.002687332918867469, -0.06170741096138954, 0.03303856775164604, -0.018280118703842163, 0.056942373514175415, 0.02233818732202053, -0.01811533421278, -0.0022559768985956907, -0.007901249453425407, -0.008106310851871967, 0.039561063051223755, -0.04104014113545418, 0.030901813879609108, -0.02567329816520214, 0.06618618220090866, -0.010389144532382488, -0.010961015708744526, -0.006827091798186302, 0.012887091375887394, -0.04794583097100258, -0.009114288724958897, -0.004641621373593807, -0.036916401237249374, -7.128273864509538e-05, 0.008165615610778332, -0.04875996708869934, 0.00541799096390605, -0.014739048667252064, 0.049252960830926895, 0.04227995127439499, 0.03587038815021515, -0.036446984857320786, 0.047841690480709076, -0.042825739830732346, -0.031283289194107056, 0.020836910232901573, -0.019322793930768967, 0.03161631524562836, -0.11252707242965698, 0.007365384139120579, 0.017885951325297356, 0.03741660714149475, 0.04932086542248726, -0.04611930251121521, -0.005797998048365116, 0.04644903168082237, 0.0249798484146595, 0.0012211980065330863, -0.019236940890550613, -0.004696427844464779, -0.032996512949466705, -0.02798089012503624, -0.04772182181477547, -0.01893913932144642, -0.05978367477655411, -0.019797325134277344, -0.045966509729623795, 0.009141836315393448, -0.01998196169734001, 0.0006325585418380797, 0.011603034101426601, -0.03298753499984741, 0.013359458185732365, 0.08235570043325424, 0.009943877346813679, 0.026243770495057106, 0.07260666787624359, 2.605173676784034e-07, 0.038763195276260376, 0.03949505463242531, 0.024249128997325897, -0.012911460362374783, 0.03579607233405113, -0.061460480093955994, -0.058836713433265686, -0.014934737235307693, -0.05480286106467247, -0.03921840339899063, 0.01657266542315483, 0.005086855497211218, 0.00536223454400897, -0.009781932458281517, -0.0021818322129547596, 0.10295597463846207, -0.012737882323563099, -0.0371830128133297, 0.015919506549835205, -0.04187096655368805, -0.006317926105111837, -0.014709969982504845, -0.003221177263185382, 0.0473572313785553, 0.012634183280169964, 0.08828868716955185, 0.015214038081467152, -0.005062675569206476, 0.0273442305624485, 0.008904279209673405, 0.02024371735751629, -0.02287454903125763, -0.016742607578635216, -0.03843601047992706, -0.042243149131536484, 0.015570210292935371, -0.024460403248667717, 0.04537427797913551, 0.010041624307632446, 0.059654731303453445, 0.015498991124331951, -0.02996293269097805, 0.00470006326213479, -0.033601533621549606, 0.01073272805660963, 0.03349359333515167, -0.004403432831168175, -0.06127791106700897, -0.06177903711795807, -0.02339835651218891, 0.011973835527896881, -0.014698307029902935, 0.04235125705599785, 0.015290609560906887, -0.052658624947071075, -0.07179206609725952, 0.01717696152627468, -0.023534687235951424, 0.004156255163252354, -0.05154915153980255, -0.0688457190990448, 0.04420088976621628, -0.03663320094347, 0.012059508822858334, 0.011594133451581001, -0.02158566191792488, -0.047243960201740265, 2.9346326670873797e-34, -0.004392415285110474, -0.024448085576295853, -0.020959001034498215, 0.00442499341443181, 0.023238884285092354, -0.03154836222529411, 0.010002821683883667, 0.031885597854852676, -0.010250034742057323, -0.06538344919681549, -0.03323621675372124], "2a44316f-12b9-4af9-9413-39ce6f9a126d": [0.08115001767873764, -0.10883354395627975, -0.029293855652213097, 0.018739841878414154, 0.02437274158000946, 0.05710672587156296, -0.034118156880140305, 0.09634681046009064, -0.09785669296979904, -0.01820923015475273, -0.0675525814294815, -0.0010678676189854741, 0.010135702788829803, 0.04143230617046356, 0.06817365437746048, -0.04229552298784256, -0.005316231865435839, 0.0166633203625679, -0.02902917191386223, 0.024408945813775063, -0.04008930176496506, 0.025085676461458206, 0.005785231012851, 0.04781407490372658, 0.03699922934174538, 0.0072584799490869045, -0.0023192698135972023, 0.04288999363780022, -0.05147688835859299, -0.05447869375348091, -0.014174393378198147, 0.012425473891198635, -0.008446239866316319, -0.04545622691512108, 2.109485649270937e-06, -0.03988254442811012, -0.036870840936899185, -0.045463692396879196, 0.000829574535600841, 0.005144025199115276, -0.0392627939581871, -0.03636043891310692, -0.07018544524908066, -0.02301732450723648, 0.012233654968440533, -0.05824028700590134, 0.015832077711820602, 0.10320058465003967, 0.010396772995591164, 0.06965622305870056, 0.019090579822659492, -0.00489229429513216, -0.012273198924958706, -0.057348523288965225, 0.13784006237983704, 0.024175360798835754, -0.016790391877293587, 0.006124543491750956, 0.06874772161245346, -0.04624404013156891, 0.01073281280696392, 0.036047887057065964, -0.04381433501839638, -0.028706295415759087, 0.05418917536735535, -0.004858256783336401, 0.028486570343375206, -0.059396907687187195, 0.02656383439898491, 0.04953746125102043, 0.0008067518938332796, 0.028335146605968475, 0.026607826352119446, 0.021541869267821312, -0.008868804201483727, 0.07468029111623764, -0.09358371794223785, 0.0049092406406998634, 0.015021724626421928, -0.020380008965730667, -0.046881355345249176, -0.09327992796897888, -0.019274763762950897, -0.04958799108862877, 0.052869826555252075, -0.02300046570599079, -0.03379248082637787, -0.04320139065384865, 0.03827032074332237, -0.08918534964323044, 0.0044222306460142136, -0.060630179941654205, -0.028303591534495354, 0.022229067981243134, 0.11420457810163498, -0.01698748767375946, -0.0037787326145917177, -0.027212785556912422, 0.08679884672164917, 0.03709758445620537, 0.017287934198975563, -0.00793616846203804, -0.05326087400317192, 0.0023873120080679655, -0.050590530037879944, 0.03805914893746376, -0.002259449800476432, -0.018253225833177567, 0.04910930246114731, 0.0723908394575119, 0.01231332216411829, 0.01956738904118538, -0.00970990676432848, -0.030379444360733032, -0.055012769997119904, 0.007951958104968071, 0.022754617035388947, 0.050613708794116974, 0.007133085280656815, 0.05008075758814812, 0.04456271603703499, -0.04462246969342232, 0.0027898207772523165, 0.009136070497334003, 0.026779819279909134, -0.049316734075546265, 0.0029264178592711687, -0.032305289059877396, -0.0029108149465173483, -0.0012848288752138615, -0.008685681968927383, 0.026065262034535408, 0.03223726898431778, 0.012377777136862278, -0.018325716257095337, 0.03545683994889259, 0.04611356928944588, -0.020825469866394997, -0.04240642115473747, -0.03257843852043152, 0.013754785060882568, 0.027752947062253952, -0.009242569096386433, -0.03585654869675636, -0.039670031517744064, -0.003223951207473874, 0.009371121414005756, -0.04707169160246849, 0.0014565150486305356, -0.018874984234571457, -0.06693396717309952, 0.02071310766041279, -0.03176577761769295, -0.0031192649621516466, -0.007834606803953648, 0.01701783575117588, -0.042828269302845, -0.020816873759031296, -0.005400284193456173, 0.005353210028260946, 0.055574674159288406, -0.028325442224740982, 0.03316187858581543, -0.010968649759888649, 0.0008047217270359397, 0.07157402485609055, 0.09331763535737991, -0.026060597971081734, 0.06507200002670288, -0.023428965359926224, -0.026957135647535324, 0.0004220538248773664, -0.06158655881881714, 0.004820848349481821, -0.03175264224410057, 0.0603361576795578, 0.0704457238316536, 0.06951393932104111, 0.041639555245637894, -0.0222548209130764, 0.0328310988843441, -0.033060409128665924, -0.03490987792611122, -0.0012814922956749797, -0.027843276038765907, 0.0014601550064980984, -0.022326262667775154, -0.01025269366800785, 0.017626645043492317, 0.020301079377532005, -0.0197979174554348, -0.010034876875579357, 0.027669882401823997, -0.0604373998939991, -0.0047789085656404495, -0.024411160498857498, -0.0703451856970787, -0.08513425290584564, -0.02486286498606205, -0.018198538571596146, 0.03756994381546974, 0.024258412420749664, 0.015779340639710426, 0.04235916957259178, 0.05559608340263367, 0.014151299372315407, -0.029994584619998932, -0.0712493434548378, -0.02128593437373638, -0.046929098665714264, 0.023917024955153465, 0.007757837418466806, -0.026683896780014038, -0.02334229275584221, -0.009770708158612251, -0.11029045283794403, -0.010471711866557598, 0.019387884065508842, -0.014131108298897743, -0.0329262912273407, 0.04803340882062912, 0.021741695702075958, -0.01109530683606863, 0.013672140426933765, 0.031733378767967224, -0.07005538046360016, -0.031135661527514458, -0.012499676086008549, 0.037767261266708374, -0.02980615571141243, -0.05515288561582565, 0.008632638491690159, 0.014242750592529774, 0.045422621071338654, 0.004130943678319454, 0.03591088578104973, 0.0759742334485054, -0.05520456284284592, 0.01894955337047577, -0.07330016046762466, 0.0011698734015226364, 0.02173772267997265, 2.137279989256058e-05, 0.013865218497812748, 0.012315760366618633, -0.0071360161527991295, -0.021969104185700417, -0.009718247689306736, 0.055423226207494736, 0.03586873784661293, 0.014162694104015827, 0.006492737215012312, 0.016195081174373627, 0.008174688555300236, -0.028253527358174324, 0.08750341087579727, -0.01981678418815136, 0.03675761818885803, -0.027135184034705162, 0.023198643699288368, 0.022237490862607956, -0.013622136786580086, -0.06336106359958649, 0.004387875087559223, 0.03803131356835365, 0.05459613353013992, -0.01545608602464199, -0.013903334736824036, -0.004702106583863497, 0.005306235980242491, -0.0002974159724544734, -0.008061492815613747, 0.0024212959688156843, -0.03494453430175781, 0.0025041098706424236, 0.025344695895910263, -0.015814177691936493, 0.0024978744331747293, -0.01826711930334568, -0.016509918496012688, 0.016987323760986328, -0.017986183986067772, 0.002265565562993288, -0.004816344473510981, -0.026128007099032402, -0.006450383458286524, -0.003898942144587636, -0.04823705181479454, -0.040308766067028046, 0.018807319924235344, 0.0011481874389573932, 0.0035603574942797422, 0.03709430992603302, -0.039070505648851395, -0.03410818800330162, 0.010647447779774666, 0.023033086210489273, 0.047368794679641724, -0.022333241999149323, 0.06587788462638855, 0.007922327145934105, -0.028351666405797005, -0.0008054604986682534, -0.014507831074297428, 0.016446663066744804, -0.008030574768781662, -0.058223042637109756, -0.04358523711562157, 0.03504740819334984, -0.013376174494624138, 0.05547378212213516, 0.04910998418927193, -0.012087206356227398, -0.020385311916470528, 0.011274492368102074, -0.016094546765089035, 0.06333054602146149, -0.019303617998957634, 0.019941773265600204, 0.06924000382423401, 0.030931120738387108, 0.012328704819083214, -0.015502922236919403, -0.035122327506542206, 0.012598713859915733, 0.0019943437073379755, 0.001427853130735457, -0.01191721297800541, 0.002655544551089406, -0.015512854792177677, 0.02141978032886982, 0.0012177693424746394, -0.007028508465737104, -0.01729109324514866, -0.0017481212271377444, -0.00493331253528595, 0.024467146024107933, 0.052734483033418655, 0.04257366806268692, -0.016232972964644432, -0.018855934962630272, 0.05177358537912369, 0.02367907389998436, -0.02388620749115944, 0.02900591678917408, -0.005336930509656668, 0.04724534600973129, -0.028369322419166565, -0.02734414115548134, 0.0498243048787117, 0.021241722628474236, 0.025186441838741302, 0.009459346532821655, -0.021661613136529922, 0.0027697288896888494, -0.008251655846834183, 0.00970897451043129, -0.062252290546894073, 0.008189688436686993, -0.012502722442150116, -0.018719621002674103, 0.046939488500356674, 0.01635061576962471, -0.0003067608049605042, 0.02126406878232956, 0.059715162962675095, -0.02928919531404972, -0.02788359671831131, 0.014772343449294567, -0.00022201109095476568, -0.05045730620622635, 0.01736828312277794, 0.018349505960941315, 0.07824547588825226, 0.02543349377810955, 0.025351444259285927, 0.025541994720697403, -0.04575136676430702, 0.031528256833553314, 0.022201010957360268, 0.013583989813923836, -0.03684832155704498, 0.029918884858489037, 0.03607872873544693, 0.025732247158885002, 0.01840433105826378, 0.02703225240111351, 0.021602440625429153, 0.06001996621489525, 0.0030118590220808983, 0.009512264281511307, 0.004483663942664862, -0.04702407866716385, 0.02691400609910488, -0.02231709472835064, 0.02965427190065384, -0.0898931547999382, 0.026284169405698776, -0.013643148355185986, -0.021166928112506866, -0.02936532348394394, 0.03043302334845066, -0.03489566594362259, 0.0010990221053361893, 0.011261854320764542, 0.05344719812273979, 0.080191470682621, 0.022036848589777946, 0.05032713711261749, 0.054923269897699356, 0.06623010337352753, 0.0423579066991806, -0.0033852264750748873, -0.012529549188911915, 0.061687469482421875, -0.019880639389157295, 0.027761906385421753, 0.06306098401546478, 0.03343171626329422, -0.025190379470586777, -0.04779250547289848, 0.016697613522410393, 0.027199506759643555, -0.051769107580184937, 0.012239946983754635, -0.04382747784256935, 0.040361445397138596, -0.015501963905990124, 0.028988739475607872, 0.0638277605175972, 0.0639052465558052, -0.027682946994900703, -0.06817366927862167, 0.005283172708004713, 0.0013555963523685932, -0.02388247288763523, -0.056722451001405716, -0.061430007219314575, 0.009270411916077137, -0.012668014504015446, 0.0009847591863945127, 0.06368175894021988, 0.025587832555174828, 0.007557912264019251, -0.01824899949133396, 0.004210344050079584, -0.003715535858646035, -0.011104393750429153, 0.010237452574074268, -0.008113815449178219, -0.02436220273375511, -0.0011225080816075206, -0.07421410828828812, 0.036351002752780914, -0.04085562750697136, 0.019438548013567924, -0.03041585348546505, 0.010707731358706951, 0.015077078714966774, -0.07306493073701859, -0.0398680604994297, 0.03632412850856781, 0.027528855949640274, -0.011334248818457127, -0.002699499484151602, -0.044440045952796936, -0.04867209494113922, -0.0854894295334816, 0.04633887857198715, -0.004643043503165245, 0.010830696672201157, 0.025795014575123787, -0.005547618493437767, -0.042891938239336014, 0.013945437036454678, -0.02337605692446232, -0.06355627626180649, 0.003862970508635044, 0.03593748062849045, -0.009810552932322025, -0.0028620713856071234, -0.035626351833343506, -0.002918177517130971, -0.06103554740548134, 0.005954435560852289, 0.04628812521696091, 0.011277865618467331, -0.005344127770513296, -0.006782748270779848, -0.010233993642032146, 0.04336733743548393, -0.004221830051392317, 0.01859927549958229, -0.02757258154451847, -0.016458487138152122, -0.0028391540981829166, -0.05513183772563934, 0.015944505110383034, -0.027664707973599434, -0.02872002311050892, 0.036404576152563095, -0.05498092994093895, 0.00130091595929116, 0.050194285809993744, -0.04031280800700188, -0.028372520580887794, -0.01726275309920311, -0.003301565768197179, -0.004969068802893162, -0.024867074564099312, -0.0018048204947263002, 0.005483315326273441, -0.03871682286262512, -0.030866658315062523, -0.0035545986611396074, -0.014702541753649712, 0.01167991291731596, -0.051396071910858154, 0.04627251252532005, 0.01409078761935234, -0.00039397116051986814, 0.025028446689248085, -0.03399723023176193, -0.0405588299036026, 0.002118312753736973, -0.015859408304095268, 0.003618868999183178, 0.0535680390894413, -0.04665488004684448, 0.03224324434995651, -0.041112273931503296, 0.0619063563644886, 0.04412543401122093, 0.003961020614951849, -0.023384075611829758, 0.0321231447160244, 0.008289721794426441, 0.018714435398578644, 0.016162410378456116, -0.05855246260762215, -0.000637291930615902, -0.03626461327075958, 0.0669158399105072, 0.004444192163646221, -0.0058361017145216465, 0.033944595605134964, 0.009213325567543507, 0.014083967544138432, -0.004021117463707924, -0.03566240891814232, -0.0009075579000636935, 0.0207294262945652, -0.022366009652614594, 0.021602239459753036, -0.009002776816487312, -5.166881378277534e-33, 0.0013042924692854285, -0.004403441213071346, -0.013721325434744358, 0.07635846734046936, 0.006321202497929335, -0.03791056573390961, -0.04229326918721199, -0.09582217037677765, 0.019062044098973274, -0.048385363072156906, 0.009577438235282898, -0.014722560532391071, -0.007603563833981752, -0.05086703598499298, -0.014158456586301327, 0.0011215260019525886, 0.011606968007981777, 0.009901737794280052, -0.02180291898548603, 0.013042116537690163, -0.009550088085234165, -0.025345247238874435, 0.03257723152637482, -0.0443938672542572, -0.05861499160528183, 0.007609512656927109, 0.02721557952463627, -0.03264458104968071, 0.06934180110692978, 0.0734448954463005, 0.013228530995547771, -0.08955300599336624, -0.008713277988135815, -0.032546017318964005, 0.021637190133333206, 0.02777911350131035, -0.05403768643736839, -0.013537436723709106, 0.02533007226884365, 0.00508715258911252, 0.0002737654431257397, -0.09568889439105988, -0.03198520094156265, -0.019013041630387306, 0.055049628019332886, 0.016763344407081604, 0.00048729227273724973, 0.017232319340109825, 0.03362235426902771, -0.01651245914399624, -0.03253490477800369, 0.03209986537694931, -0.013684611767530441, 0.01948474906384945, -0.013540223240852356, -0.013382283970713615, 0.04434983804821968, 0.004003738518804312, -0.022361138835549355, -0.024919312447309494, 0.07375409454107285, 0.03249068558216095, 0.0474357083439827, -0.016146210953593254, 0.018079735338687897, 0.007444858085364103, -0.0259856004267931, 0.040738534182310104, -0.013691690750420094, 0.01991070806980133, 0.018120013177394867, 0.04737721383571625, -0.013938162475824356, -0.031003983691334724, 0.02756069041788578, 0.05047999694943428, -0.015383802354335785, 0.03936590254306793, 0.002606250811368227, 0.10302723944187164, 0.013653694652020931, -0.013522381894290447, 0.03419431671500206, 0.027070602402091026, -0.007948695681989193, 0.0072551509365439415, -0.026558708399534225, -0.048090171068906784, 0.021594548597931862, -0.00021097593707963824, -0.0009889587527140975, 0.011637764982879162, 0.004912950098514557, 0.025954145938158035, 0.009858946315944195, 0.06967185437679291, -0.02333359234035015, 0.04453180357813835, -0.03300846740603447, -0.053470320999622345, 0.04933055490255356, -0.00019573695317376405, 0.021663367748260498, -0.051660243421792984, 0.01321530994027853, 0.029009554535150528, 0.01920335181057453, -0.0014182375743985176, -0.047522157430648804, -0.031115245074033737, 0.017856400460004807, -0.043265342712402344, -0.01823759824037552, -0.04665364697575569, -0.018482772633433342, -0.05134418606758118, -0.061487819999456406, -0.030963119119405746, 0.002512099454179406, -0.005622093100100756, 0.019829006865620613, -0.041509758681058884, 0.0376657098531723, -0.02652011066675186, -0.009368485771119595, -0.001552970614284277, -0.02300115115940571, 0.03773152455687523, 0.07914488017559052, 0.017933376133441925, 0.010675204917788506, 0.03983619436621666, 2.912276499955624e-07, 0.03687267750501633, 0.026585713028907776, 0.027925757691264153, -0.010713408701121807, -0.0050194296054542065, -0.057230498641729355, -0.06658142060041428, -0.10494109988212585, -0.03538032993674278, -0.005619660951197147, 0.03221840783953667, -0.011094636283814907, -0.002101705176755786, -0.005579558201134205, 0.019283942878246307, 0.020146820694208145, 0.01811286062002182, -0.0122789042070508, -0.023918509483337402, 0.0017268758965656161, 0.04432095214724541, 0.0016169996233657002, 0.027182532474398613, 0.032837554812431335, 0.009495963342487812, 0.0290567334741354, -0.02421027608215809, -0.03779005631804466, 0.047263242304325104, 0.03359456732869148, -0.01230991818010807, -0.007045311853289604, 0.000673506292514503, -0.06984908878803253, -0.023954810574650764, -0.013889129273593426, -0.04476835951209068, 0.018486393615603447, -0.004574645310640335, 0.05238121747970581, 0.0442238487303257, -0.001362707931548357, 0.000200775102712214, -0.049812041223049164, 0.02488444745540619, -0.008116194047033787, -0.00946780014783144, 0.0172928087413311, -0.06899692863225937, -0.0013877460733056068, -0.0063921548426151276, -0.023865247145295143, 0.02765645645558834, 0.005012620240449905, -0.010407284833490849, -0.05332648754119873, -0.02311054617166519, 0.000670872163027525, 0.038697801530361176, 0.009682031348347664, -0.025805501267313957, 0.003954536281526089, -0.03946051374077797, 0.04287334531545639, 0.014988231472671032, -0.01748095266520977, -0.05162139981985092, 3.512925148580318e-34, 0.018043790012598038, -0.044398367404937744, 0.007688025012612343, 0.01036270335316658, 0.04575289040803909, -0.044694844633340836, 0.0076575917191803455, 0.018073877319693565, -0.008591564372181892, -0.058908611536026, -0.05363140627741814], "cd8d3ab6-1259-40a0-a44b-7f679fee56d4": [0.03669242188334465, -0.04490483179688454, -0.06070138141512871, -0.043162573128938675, -0.01494502555578947, 0.04714728146791458, -0.00033011302002705634, 0.06335847824811935, -0.016053564846515656, -0.026636702939867973, -0.005052339751273394, 0.05298232659697533, 0.020153390243649483, 0.022343553602695465, -0.007383586838841438, 0.007716082502156496, 0.046920884400606155, 0.0130621287971735, 0.0060297115705907345, -0.011382706463336945, -0.011835780926048756, 0.022399095818400383, 0.03275037929415703, -0.02882174588739872, 0.06272812187671661, -0.019506331533193588, -0.017620109021663666, 0.007160340901464224, 0.003159287152811885, -0.033544786274433136, 0.012034730985760689, 0.029856441542506218, 0.011131287552416325, -0.014025641605257988, 1.9125545804854482e-06, -0.01969924569129944, -0.061404697597026825, -0.005714424420148134, -0.03440283611416817, -0.014286135323345661, 0.03894895687699318, 0.007657586131244898, -0.036262147128582, -0.0016048293327912688, 0.022202054038643837, 0.010210603475570679, -0.07005090266466141, 0.07875598967075348, -0.013470998033881187, 0.016632080078125, 0.03955470025539398, -0.06865060329437256, -0.0016017068410292268, -0.004481254145503044, 0.09178555756807327, 0.008503027260303497, -0.031230304390192032, 0.11510972678661346, 0.04632106050848961, 0.04178452864289284, 0.005054786801338196, 0.03977580368518829, -0.039900925010442734, -0.002873210236430168, 0.0946115031838417, -0.00040851475205272436, 0.06574206054210663, -0.07234395295381546, 0.0396806001663208, 0.02154311165213585, 0.05179310962557793, -0.05140358954668045, 0.04014211520552635, 0.020974311977624893, -0.05875643715262413, 0.06500459462404251, -0.028249850496649742, 0.041743647307157516, 0.01212087832391262, -0.003171042539179325, -0.04310530051589012, -0.08638323098421097, -0.021282408386468887, -0.004117634147405624, 0.07916276156902313, -0.05343488231301308, -0.01232849434018135, -0.08334705233573914, 0.06321729719638824, -0.03335161507129669, 0.01809629239141941, -0.037741828709840775, -0.025017568841576576, 0.02449226565659046, 0.06163626164197922, -0.047421637922525406, 0.00456535117700696, -0.035570722073316574, 0.06779745221138, 0.013037903234362602, -0.0441514290869236, -0.018801534548401833, -0.01712111197412014, 0.0318685881793499, -0.0020596999675035477, 0.048972539603710175, 0.03676905483007431, -0.01755612902343273, -0.016974829137325287, 0.09993311017751694, -0.04559483006596565, 0.016315273940563202, -0.001032012514770031, -0.04888773337006569, -0.01020346861332655, -0.008007844910025597, 0.016793984919786453, 0.0011124652810394764, 0.0608648881316185, 0.06203632801771164, 0.007243896368891001, -0.005871384404599667, -0.05207717418670654, 0.009001508355140686, 0.006734353955835104, -0.07108106464147568, 0.03539107367396355, -0.01671273447573185, -0.0016241545090451837, 0.05060470476746559, 0.007953055202960968, 0.013438774272799492, 0.010471305809915066, 0.04509005323052406, -0.016152571886777878, 0.06547480821609497, 0.017981644719839096, -0.029521919786930084, -0.017274267971515656, -0.022555356845259666, 0.05090498551726341, -0.012721637263894081, -0.023694509640336037, -0.02057795412838459, 0.013100812211632729, -0.005287183914333582, -0.0005360223585739732, 0.00397312780842185, 0.01921243965625763, 0.01450830977410078, -0.025311896577477455, 0.03228337690234184, 0.006540610454976559, 0.003993501886725426, 0.05706796050071716, 0.017020348459482193, -0.056915998458862305, -0.03283145651221275, -0.015428826212882996, -0.00505248224362731, 0.03161296993494034, 0.052103664726018906, 0.03468737378716469, -0.03466310352087021, -0.01136429701000452, 0.022933322936296463, 0.0670759305357933, 0.01154628861695528, 0.03131552040576935, 0.03280475363135338, -0.024313095957040787, 0.002072281902655959, -0.024243149906396866, 0.05256905034184456, -0.00043892691610381007, 0.060368895530700684, 0.04872298613190651, 0.04638279601931572, -0.00405636802315712, 0.06702614575624466, 0.010957798920571804, -0.04093058034777641, -0.010049560107290745, -0.015566837042570114, -0.08003109693527222, -0.01280965469777584, -0.07925958186388016, -0.015247104689478874, 0.028574183583259583, 0.0008276267326436937, -0.03577762842178345, -0.017230158671736717, 0.02359805814921856, -0.07020818442106247, 0.005090202670544386, 0.028331449255347252, -0.036486245691776276, -0.0892167016863823, -0.0001646732707740739, -0.0310561191290617, 0.04789331927895546, 0.01807042956352234, 0.0741288810968399, 0.023927511647343636, 0.07352475821971893, -0.0316765196621418, 0.0020281244069337845, -0.030427001416683197, 0.03182067722082138, -0.023698681965470314, 0.0051672086119651794, -0.0018541403114795685, -0.026903914287686348, -0.0336737222969532, -0.03993647173047066, -0.04747271165251732, -0.048397570848464966, -0.03852180391550064, 0.024293072521686554, -0.01118003111332655, 0.038617074489593506, -0.054968949407339096, -0.009775416925549507, 0.04386596009135246, -0.03041449747979641, -0.040724977850914, -0.04856381192803383, 0.007910521700978279, 0.04807418957352638, -0.021299690008163452, -0.030707908794283867, 0.007654435001313686, 0.023889251053333282, 0.03134552761912346, -0.04218648374080658, -0.01247809175401926, 0.07785329967737198, -0.03043452464044094, 0.00014971749624237418, -0.10850750654935837, 0.010655506514012814, 0.020163167268037796, 0.018711445853114128, 0.026742618530988693, -0.012818100862205029, 0.0072646611370146275, -0.040530070662498474, 0.021029489114880562, 0.0275815948843956, 0.02987452782690525, 0.025573594495654106, -0.020305635407567024, 0.07121042907238007, -0.015150303952395916, -0.005792400799691677, 0.01497950404882431, -0.05776116997003555, 0.013541150838136673, -0.03173418715596199, 0.03227560222148895, -0.006170067936182022, 0.006128477863967419, -0.035362619906663895, -0.0028693547938019037, 0.05504707247018814, 0.018696358427405357, -0.009272082708775997, -0.016456669196486473, -0.021478811278939247, -0.005053934175521135, -0.021121470257639885, -0.006435988005250692, -0.022903315722942352, -0.014241602271795273, 0.010613041929900646, 0.0029091460164636374, 0.01990295760333538, -0.018370309844613075, -0.049042362719774246, -0.014286721125245094, -0.0007271707290783525, 0.012103262357413769, -0.05012008175253868, 0.01371731236577034, -0.008661225438117981, -0.01188264973461628, 0.021807298064231873, 0.0009258317877538502, -0.03619113191962242, -0.05207901448011398, 0.005264538340270519, 0.05279374122619629, 0.02417452074587345, -0.006935518700629473, -0.010034032166004181, 0.026769543066620827, 0.038382429629564285, -0.04850207641720772, -0.014773599803447723, 0.0402529276907444, 0.056427858769893646, -0.02472444623708725, -0.0027504954487085342, 0.00861609447747469, 0.005310372915118933, 0.01675565168261528, 0.014397681690752506, -0.047972019761800766, -0.01865440607070923, -0.07806536555290222, 0.06283101439476013, 0.015109759755432606, -0.022425459697842598, -0.07352865487337112, -0.006013849750161171, -0.03420346602797508, 0.006809015292674303, -0.04404635727405548, 0.010892219841480255, 0.05804741010069847, 0.011984694749116898, -0.006740199867635965, -0.04681028425693512, -0.03260517120361328, 0.012754556722939014, -0.08496803045272827, 0.02828836999833584, -0.02351987734436989, 0.027648843824863434, 0.03528810292482376, -0.002079315949231386, 0.01900991052389145, 0.046721987426280975, -0.01748279109597206, 0.04863341897726059, 0.029142940416932106, 0.002817194676026702, -0.0186459980905056, 0.004214530345052481, -0.012237250804901123, 0.008008325472474098, 0.08952255547046661, -0.008676048368215561, -0.007888946682214737, 0.00579939316958189, -0.011138593778014183, 0.008860002271831036, 0.014442401006817818, -0.04405621066689491, 0.024059800431132317, 0.07708131521940231, 0.005171998403966427, 0.05231938511133194, -0.02754363603889942, -0.026632651686668396, -0.034521475434303284, 0.018480805680155754, -0.015832355245947838, -0.0259331613779068, -0.05796070024371147, 0.018872959539294243, 0.03096858784556389, 0.021810181438922882, 0.026168402284383774, 0.03649253398180008, 0.011210186406970024, -0.03317590430378914, -0.014055713079869747, 0.01748822256922722, -0.0052571771666407585, -0.0763033777475357, 0.026432842016220093, 0.0015857405960559845, 0.05162956938147545, 0.033289216458797455, -0.037592872977256775, 5.1887611334677786e-05, -0.03407466784119606, -0.016037458553910255, -0.039339471608400345, 0.0032602576538920403, -0.01670389622449875, 0.03864287585020065, 0.016167450696229935, 0.032056573778390884, -0.0027974029071629047, 0.043586064130067825, 0.022747186943888664, 0.09491194784641266, -0.023502632975578308, 0.006386175751686096, -0.029838530346751213, -0.036095988005399704, 0.0018153298879042268, -0.027690289542078972, -0.00525757996365428, -0.058292072266340256, -0.00207985145971179, -0.007908124476671219, -0.006629415787756443, -0.03923477604985237, 0.031406451016664505, -0.007948252372443676, 0.04438569396734238, 0.006177993491292, 0.014385512098670006, 0.053313247859478, 0.03188975155353546, 0.03821525722742081, 0.0819900631904602, 0.07880645245313644, 0.020578494295477867, -0.015038340352475643, -0.004014217760413885, 0.040849972516298294, -0.039875976741313934, 0.04077932611107826, -0.0043740663677453995, -0.010552410036325455, 0.0006962247425690293, -0.0512268953025341, 0.021581454202532768, 0.02557971701025963, -0.020038794726133347, 0.015521702356636524, -0.0399438701570034, 0.05989306792616844, -0.001152582815848291, 0.028204483911395073, -0.02062658779323101, 0.05042232945561409, 0.02710774540901184, 0.012211255729198456, 0.029653260484337807, 0.06012715399265289, 0.0035478738136589527, -0.02183074876666069, -0.08174120634794235, -0.022980188950896263, -0.06641367077827454, 0.006520976312458515, -0.027099059894680977, 0.011442139744758606, 0.034775108098983765, -0.01442187000066042, 0.08000826090574265, 0.0297829769551754, 0.010943878442049026, -0.05489868298172951, -0.025886762887239456, -0.012502843514084816, -0.058823611587285995, -0.10211613774299622, 0.022240344434976578, -0.06427740305662155, 0.0006504919729195535, -0.02486741915345192, 0.06811967492103577, 0.006682795938104391, 0.007368548773229122, -0.049872856587171555, 0.03611595556139946, -0.00309946876950562, -0.013693640008568764, -0.008185934275388718, -0.006765612401068211, -0.032706569880247116, -0.07514090836048126, 0.024091187864542007, -0.013814866542816162, 0.06539296358823776, -0.02019815891981125, -0.001046630903147161, -0.04967040568590164, 0.016530409455299377, -0.09594250470399857, -0.04908812791109085, -0.02954179048538208, -0.004305090289562941, -0.0260142982006073, -0.011044432409107685, -0.007008019834756851, 0.043161969631910324, 0.006392801646143198, -0.03342941775918007, 0.06083105504512787, 0.0003280222008470446, -0.02352365106344223, 0.009604274295270443, -0.012860101647675037, 0.07481098920106888, -0.0449896864593029, 0.025587040930986404, 0.00483978446573019, -0.011308063752949238, 0.004043744411319494, -0.031779129058122635, 0.016990596428513527, 0.0538647398352623, 0.04544573277235031, 0.0213125329464674, -0.0496586374938488, -0.022977421060204506, 0.041655320674180984, -0.0682697668671608, -0.04774577170610428, -0.003018222050741315, 0.01646144688129425, 0.023070909082889557, -0.018190188333392143, -0.04252272844314575, -0.046561215072870255, -0.06401874125003815, -0.030747003853321075, 0.028328606858849525, -0.026368336752057076, -0.029983503744006157, -0.03487579897046089, 0.07240717113018036, 0.011003546416759491, -0.004393952898681164, -0.012994921766221523, 0.03636204078793526, -0.016148539260029793, 0.009241189807653427, 0.0021811879705637693, 0.024482136592268944, 0.043263692408800125, 0.011593077331781387, 0.023737479001283646, 0.024036768823862076, -0.024939538910984993, 0.00963514018803835, -0.0441165529191494, -0.05399888753890991, -0.011213675141334534, -0.0021070665679872036, 0.03623337671160698, -0.0028233984485268593, 0.0036743655800819397, 0.01438426598906517, -0.0005604454199783504, 0.004024455323815346, 0.05469395965337753, 0.00282275234349072, 0.01992703415453434, 0.041835639625787735, 0.031009230762720108, -0.02510898932814598, -0.06887633353471756, -0.019590692594647408, 0.03436385467648506, -0.017273157835006714, 0.00039809837471693754, 0.024461863562464714, -4.952742307072207e-33, -0.022367356345057487, -0.009727537631988525, 0.005135555285960436, 0.03870823606848717, 0.027698293328285217, -0.07958447188138962, -0.06186426058411598, -0.055788397789001465, -0.03238709270954132, -0.03914304077625275, -0.007739614695310593, -0.05192888155579567, 0.010941414162516594, -0.042700231075286865, 0.03595603629946709, -0.0017327972454950213, 0.010418402031064034, 0.02087405137717724, -0.025649068877100945, 0.04303940385580063, -0.013387830927968025, -0.026833847165107727, -0.014334832318127155, 0.03709622845053673, -0.04052432253956795, -0.08787364512681961, -0.01309999544173479, -0.03605814650654793, -0.022960307076573372, 0.019821636378765106, -0.058680638670921326, -0.040318604558706284, -0.014002683572471142, 0.043687306344509125, 0.008820281364023685, -0.005198706407099962, -0.006078097969293594, -0.01635236106812954, -0.015926843509078026, 0.031117212027311325, 0.04707060754299164, -0.011651311069726944, -0.017273640260100365, -0.013200541958212852, 0.055254049599170685, 0.022707782685756683, 0.054028984159231186, 0.0450565405189991, -0.02699442394077778, 0.03511829301714897, -0.10309329628944397, 0.03136793524026871, -0.0019997498020529747, 0.03108159452676773, -0.00961222779005766, 0.006172161549329758, 0.04638703539967537, -0.033438000828027725, 0.015486606396734715, -0.03635143116116524, 0.03967459872364998, 0.021102270111441612, 0.026113195344805717, -0.04523048922419548, -0.014505469240248203, 0.009520281106233597, -0.033935558050870895, 0.04779602959752083, -0.00028668635059148073, 0.011337462812662125, -0.002176034264266491, -0.04401921480894089, -0.018201174214482307, 0.0013521496439352632, -0.025792667642235756, 0.007908879779279232, -0.03235626965761185, 0.02650565840303898, 0.04833473637700081, 0.13145998120307922, -0.04218107461929321, 0.0022681548725813627, -0.021181561052799225, 0.0034321960993111134, -0.00013726673205383122, -0.03570923954248428, -0.02005147933959961, -0.012891210615634918, 0.0008056297083385289, 0.02491406537592411, -0.01409052312374115, -0.0767718106508255, -0.0438263975083828, 0.04710054397583008, 0.020614920184016228, 0.06256316602230072, -0.02104073390364647, 0.01709761843085289, -0.008684058673679829, -0.06081164628267288, -0.05581839382648468, -0.0426667220890522, 0.010589350946247578, -0.038991134613752365, 0.005714426748454571, -0.014279461465775967, -0.012343733571469784, 0.023649344220757484, -0.003012870904058218, 0.004583135712891817, 0.012438647449016571, -0.06055913120508194, 0.022020453587174416, 0.0034542230423539877, -0.04767068475484848, -0.05156775191426277, -0.017116345465183258, -0.03020685538649559, -0.042741816490888596, -0.022939765825867653, -0.01634041778743267, 0.012808430008590221, 0.02299901843070984, -0.021151958033442497, -0.005511464551091194, 0.03495718538761139, 0.00997590459883213, 0.0350596159696579, 0.05580004304647446, -0.0006163301877677441, 0.012774151749908924, 0.029031038284301758, 2.6580261192066246e-07, 0.02971482276916504, 0.04352324455976486, 0.008086825720965862, -0.033707741647958755, -0.004867549054324627, -0.02694481797516346, -0.041221216320991516, 0.0015451230574399233, -0.02966252714395523, 0.002166963182389736, 0.03502584993839264, 0.010817231610417366, 0.003800190519541502, 0.04508474841713905, 0.004572341684252024, -0.049769818782806396, 0.01324150525033474, -0.015815844759345055, -0.027800127863883972, -0.03252965956926346, 0.0329003669321537, 0.008704840205609798, 0.06133094057440758, 0.014595276676118374, -0.02638222835958004, 0.05519996955990791, -0.013355161063373089, -0.015670979395508766, 0.048475246876478195, 0.012588915415108204, 0.02415723353624344, 0.03398473560810089, -0.05652102455496788, -0.06388062983751297, -0.037173375487327576, -0.014171436429023743, -0.030569160357117653, 0.004365595057606697, 0.05086052417755127, 0.027549900114536285, 0.061640698462724686, 0.03555672615766525, -0.038617536425590515, -0.026152970269322395, -0.00013969105202704668, 0.030305810272693634, 0.0548064187169075, 0.04170170798897743, -0.037785496562719345, -0.007857222110033035, 0.007658369839191437, 0.030946005135774612, -0.00885709747672081, 0.005178752355277538, -0.023568114265799522, -0.01011348981410265, 0.018254242837429047, -0.02587432786822319, 0.05248066782951355, 0.033607304096221924, -0.05593135952949524, 0.03221781179308891, 0.0014315416337922215, 0.0542532242834568, 0.019324153661727905, -0.027709363028407097, -0.006705130450427532, 2.9025953950751837e-34, 0.035271063446998596, -0.05953701585531235, 0.004891546443104744, -0.05256547033786774, 0.006916734389960766, -0.024042991921305656, 0.010990314185619354, 0.007030133623629808, -0.021474335342645645, -0.07138790190219879, -0.056933216750621796], "f215f5cf-5057-4b73-a09c-a6ef0b073beb": [0.04015761613845825, -0.011976595968008041, -0.03237148001790047, -0.03220776841044426, -0.001493387040682137, 0.02998245134949684, -0.007235740311443806, 0.04570614919066429, -0.04538678750395775, -0.017985640093684196, -0.01625952683389187, 0.02368413284420967, 0.016953112557530403, -0.0399898923933506, 0.008642164058983326, 0.026230361312627792, 0.025270501151680946, -0.013790345750749111, -0.012726479209959507, -0.01782338321208954, 0.013343434780836105, 0.030228901654481888, 0.03908176347613335, -0.035387683659791946, 0.027092209085822105, 0.0031128430273383856, 0.0014860837254673243, -0.00578137906268239, 0.010245605371892452, -0.0010553477331995964, 0.023035993799567223, 0.03105565905570984, 0.004095141310244799, 0.013175975531339645, 2.072061533908709e-06, -0.007132070139050484, -0.02120489813387394, 0.01651233807206154, 0.008650102652609348, -0.02869240753352642, 0.025815747678279877, -0.0011359081836417317, -0.05218735337257385, 0.006007734686136246, 0.027291322126984596, 0.0018959487788379192, -0.03609534353017807, 0.0684119388461113, 0.023785879835486412, 0.020759057253599167, 0.026001738384366035, -0.04517986625432968, -0.007413424085825682, -0.011771812103688717, 0.07257907837629318, 0.010864607989788055, -0.017522048205137253, 0.12088668346405029, 0.02949116937816143, 0.027891108766198158, 0.04251246899366379, 0.021126145496964455, -0.015462519600987434, 0.012948203831911087, 0.08887157589197159, -0.011541059240698814, 0.08036612719297409, -0.026059037074446678, 0.007999560795724392, 0.015513052232563496, 0.022828692570328712, -0.0247989259660244, 0.02779780514538288, 0.02332267537713051, -0.04469911381602287, 0.08749499917030334, -0.030466943979263306, 0.08499298989772797, 0.02989729680120945, 0.003087828168645501, -0.08755764365196228, -0.06668762117624283, -0.033397126942873, 0.01207446213811636, 0.05359957739710808, -0.02763882651925087, 0.011125712655484676, -0.06695447862148285, 0.01646074466407299, -0.021165885031223297, -0.04217775538563728, -0.05971367657184601, -0.04799250140786171, 0.024899320676922798, 0.08734270930290222, -0.0171052273362875, 0.0027869902551174164, -0.06083532050251961, 0.065405935049057, 0.05481015890836716, -0.08455147594213486, -0.01662386767566204, -0.0467965342104435, 0.03993494436144829, 0.009006423875689507, 0.03954970836639404, -0.0017571351490914822, 0.011106790974736214, 0.056401316076517105, 0.06554285436868668, -0.042600251734256744, 0.024866148829460144, -0.0033431886695325375, -0.030262576416134834, -0.04653608426451683, 0.0017358817858621478, 0.0370764285326004, 0.006695807445794344, 0.07620714604854584, 0.05738561600446701, 0.017299752682447433, -0.03137412294745445, -0.05879670009016991, -0.01669701747596264, 0.010951340198516846, -0.04870947450399399, 0.0227372869849205, -0.012480785138905048, -0.003094653831794858, 0.051817212253808975, -0.0038465354591608047, -0.0015882280422374606, 0.013270819559693336, 0.0150239747017622, -0.03527868911623955, 0.06606131047010422, 0.028694575652480125, -0.026677653193473816, 0.016106100752949715, -0.004785207565873861, 0.04889434576034546, -0.014022047631442547, -0.01997952349483967, -0.008014622144401073, -0.008106054738163948, -0.003961240407079458, 0.005540863610804081, -0.05297598987817764, -0.013284680433571339, -0.012648051604628563, 0.006793231703341007, 0.006900180596858263, -0.052312396466732025, -0.029109463095664978, 0.023954426869750023, 0.010204624384641647, -0.07988040894269943, -0.05749121308326721, -0.01981881633400917, 0.019138136878609657, 0.004918539430946112, 0.02356339804828167, 0.06084445118904114, -0.001266548759303987, 0.027690088376402855, 0.0332462452352047, 0.08713604509830475, 0.013822110369801521, 0.0701666846871376, 0.06039867922663689, 0.03193061798810959, 0.044848646968603134, -0.012052859179675579, 0.03655695170164108, 0.009193584322929382, 0.057308658957481384, 0.046178776770830154, 0.025983594357967377, 0.0004520758811850101, 0.07245013862848282, 0.007107637822628021, -0.0061370390467345715, -0.006344372406601906, -0.0371859185397625, -0.04503731429576874, -0.008588760159909725, -0.07637174427509308, 0.023144271224737167, 0.03634025901556015, 0.06234581395983696, -0.01605723425745964, -0.047762054949998856, -0.026804091408848763, -0.07037099450826645, -0.0007689204066991806, -0.002886303002014756, -0.00031377316918224096, -0.10417058318853378, 0.028591051697731018, -0.003561890684068203, 0.03469736874103546, -0.01995231583714485, 0.05027550086379051, -0.0174361914396286, 0.06730156391859055, -0.00511897960677743, 0.0433063842356205, -0.0340111218392849, 0.03315602242946625, 0.002505522221326828, -0.02703363448381424, 0.00822758674621582, -0.02769751287996769, -0.03244158625602722, -0.034944407641887665, -0.04397038742899895, -0.04982168227434158, -0.004705796483904123, 0.006449657958000898, -0.0060632373206317425, 0.027557216584682465, -0.028344249352812767, 0.051199816167354584, 0.0435064397752285, -0.02585637755692005, -0.06214730069041252, -0.08445028960704803, 8.210593477997463e-06, 0.062342580407857895, -0.03695250675082207, -0.06618312001228333, 0.006255368236452341, 0.004669310990720987, 0.04495653510093689, -0.06491200625896454, 0.07455747574567795, 0.0816580206155777, -0.012598857283592224, 0.01542788464576006, -0.07753859460353851, -0.017334651201963425, 0.0144571578130126, 0.009903600439429283, 0.054809872061014175, -0.007151163183152676, -0.02855217456817627, 0.0012839579721912742, 0.01755618117749691, 0.00868261605501175, -0.00113899155985564, 0.04591327905654907, -0.029043519869446754, 0.027056101709604263, -0.0014704983914270997, 0.005248790606856346, 0.03576147183775902, -0.05350496992468834, 0.01220559049397707, -0.026753274723887444, -0.01358713861554861, 0.0030473859515041113, 0.014710902236402035, -0.029082396999001503, -0.023364586755633354, 0.02766391448676586, -0.005261641461402178, -0.03316899389028549, 0.03896896541118622, -0.029086884111166, -0.0013213187921792269, -0.033171091228723526, -0.01719166897237301, -0.029899317771196365, 0.0027931262739002705, 0.0015332538168877363, 0.019990289583802223, -0.004943199455738068, -0.05428507179021835, -0.01949342153966427, -0.006373671814799309, 0.01919827051460743, 0.010116923600435257, -0.026574427261948586, 0.01035427488386631, -0.025385035201907158, -0.0008906784350983799, 0.017326045781373978, 0.052472203969955444, -0.05555711314082146, -0.0692986324429512, 0.0013327011838555336, 0.04327848181128502, 0.012075910344719887, -0.011320817284286022, -0.00814225897192955, 0.022737666964530945, 0.06158227473497391, -0.052131637930870056, 0.012833415530622005, 0.02174881473183632, 0.029646042734384537, -0.00473499670624733, -0.006333491764962673, -0.007179092150181532, 0.022878345102071762, -0.010778839699923992, 0.03342359885573387, -0.0303022563457489, -0.004124528728425503, -0.04322701320052147, 0.060705527663230896, 0.011788361705839634, -0.0405895859003067, -0.022407740354537964, -0.023903492838144302, -0.04698050022125244, -0.0064555746503174305, -0.03411708399653435, 0.023231618106365204, 0.06545410305261612, 0.047133684158325195, -0.003125774674117565, -0.058086004108190536, -0.04518384486436844, -0.005526625085622072, -0.04493279755115509, 0.02469310350716114, -0.029078248888254166, -0.02386438474059105, 0.04073679819703102, -0.025658516213297844, 0.0049374038353562355, 0.034823305904865265, -0.001991331810131669, 0.0038071656599640846, -0.021074768155813217, 0.030190767720341682, -0.05693284049630165, 0.034955184906721115, -0.02175125665962696, 0.013106114231050014, 0.03783833980560303, 0.030737485736608505, 0.00011525616719154641, -0.02430346980690956, -0.03442595154047012, -0.0036998235154896975, 0.017368005588650703, 0.005593326408416033, 0.004778037313371897, 0.053751200437545776, -0.03277963027358055, 0.03380897268652916, -0.03175988048315048, -0.046255968511104584, 0.011411520652472973, 0.016864709556102753, -0.010904754512012005, -0.015028604306280613, -0.022361407056450844, -0.030140647664666176, 0.03789621219038963, 0.05717780813574791, 0.009051509201526642, -0.019292820245027542, -0.004400529898703098, -0.04432003200054169, 0.029350485652685165, 0.022248581051826477, -0.01064357440918684, -0.05448899045586586, 0.021869780495762825, 0.04395268112421036, 0.038128454238176346, 0.03314467519521713, -0.02242293953895569, -0.009682214818894863, -0.054464712738990784, 0.022907206788659096, -0.036396048963069916, 0.007630209904164076, -0.024582482874393463, 0.043149374425411224, 0.02963673695921898, 0.0015984211349859834, 0.009553257375955582, 0.028086455538868904, 0.03693564608693123, 0.07546547055244446, -0.0066505190916359425, -0.007602863013744354, 0.007685400079935789, -0.022359570488333702, -0.006349633447825909, 0.02004636451601982, 0.0005019600503146648, -0.09008198231458664, 0.0024395363871008158, 0.017499621957540512, -0.003849850734695792, -0.02498181350529194, 0.009060581214725971, 0.01393128465861082, 0.059379056096076965, 0.0012311999453231692, 0.040390364825725555, 0.025838878005743027, 0.00445921067148447, 0.04993888735771179, 0.041367728263139725, 0.11827196180820465, 0.004787001293152571, -0.008896879851818085, 0.009480008855462074, 0.04354958236217499, -0.037315741181373596, 0.0037044561468064785, 0.01194859854876995, -0.003487134352326393, -0.04010371118783951, -0.06146503984928131, -0.004347491543740034, 0.04043978452682495, 0.0033054074738174677, 0.030877362936735153, -0.055789921432733536, 0.05136333405971527, 0.008000650443136692, 0.018438056111335754, -0.002506433054804802, 0.021208083257079124, 0.028910107910633087, 0.023196721449494362, 0.018140340223908424, 0.02809394709765911, -0.0002897882368415594, -0.026986954733729362, -0.011853809468448162, -0.04045257344841957, -0.04150107875466347, -0.00940625462681055, -0.04090442135930061, 0.02050785906612873, 0.036688704043626785, -0.049862608313560486, 0.06386614590883255, 0.04824512079358101, 0.0111722182482481, -0.014140283688902855, -0.012625264935195446, -0.015399103984236717, -0.029844125732779503, -0.08351261168718338, 0.01096696313470602, -0.07991380989551544, -0.03418698161840439, -0.07888144254684448, 0.019619880244135857, 0.021039750427007675, 0.025544272735714912, -0.05761009082198143, 0.026958804577589035, -0.022056475281715393, -0.02772417850792408, -0.03780166432261467, 0.001293078763410449, -0.04627184942364693, -0.11431708186864853, 0.03496865555644035, -0.0037108438555151224, 0.047540437430143356, -0.009459158405661583, -0.02938546985387802, -0.01967092975974083, 0.00865580327808857, -0.07458985596895218, -0.06971078366041183, -0.00824129767715931, 0.039544135332107544, -0.01482373010367155, 0.007401562761515379, -0.019196175038814545, 0.05444721877574921, 0.023011406883597374, -0.005579653196036816, 0.030511679127812386, 0.047496896237134933, -0.02200397104024887, -0.002606246853247285, -0.058252811431884766, 0.05716758221387863, -0.05942680686712265, 0.026586951687932014, -0.021580906584858894, 0.004893324337899685, -0.036435890942811966, -0.02136322297155857, -0.02458973228931427, 0.03798491507768631, 0.03733017295598984, 0.04326234385371208, -0.05295534431934357, -0.004154262598603964, -0.01079352293163538, -0.08257865905761719, -0.02228226698935032, 0.006157024297863245, -0.0314348004758358, 0.023245306685566902, -0.04691477119922638, -0.00815585907548666, -0.04566304013133049, -0.07109928131103516, -0.0036330237053334713, 0.02216367982327938, -0.018144357949495316, -0.0010497511830180883, -0.01567547209560871, 0.07270816713571548, 0.009080454707145691, -0.026522621512413025, -0.016964629292488098, 0.030536998063325882, -0.0006321856053546071, -0.007939553819596767, 0.025332069024443626, -0.009173327125608921, 0.025451049208641052, -0.010215681046247482, -0.011290648952126503, 0.04407656937837601, -0.00042946665780618787, 0.04021171107888222, -0.026564521715044975, -0.0407789871096611, -0.014612647704780102, -0.04001185670495033, -0.006774825043976307, 0.0011490631150081754, -0.00364325731061399, 0.03488580137491226, -0.01782839559018612, 0.0015366647858172655, 0.06792349368333817, -0.02884296327829361, 0.0167351346462965, 0.025974968448281288, 0.034855328500270844, -0.04511050134897232, -0.06157250329852104, -0.01598028466105461, 0.07798463851213455, 0.0072755226865410805, -0.019766444340348244, 0.03850081190466881, -4.5047570018700176e-33, -0.015440845862030983, 0.02305670827627182, 0.02738570235669613, 0.03317676857113838, -0.03509889543056488, -0.0357816256582737, -0.06655958294868469, -0.042602457106113434, -0.02318817563354969, 0.00026171584613621235, -0.03158330172300339, -0.028362544253468513, 0.0021208913531154394, -0.06271325051784515, 0.0524015799164772, -0.007959211245179176, -0.01861683838069439, 0.011855780147016048, -0.018337003886699677, 0.024986354634165764, -0.051647160202264786, -0.020971400663256645, -0.014849863946437836, 0.01470242626965046, -0.05620909854769707, -0.04307982325553894, -0.016839319840073586, -0.04400523006916046, 0.043820854276418686, 0.009186387993395329, -0.029749181121587753, 0.0009885246399790049, -0.012911592610180378, 0.03072386421263218, -0.016043217852711678, -0.012141132727265358, 0.019373927265405655, 0.022057626396417618, -0.0008085381123237312, 0.03934676945209503, 0.05553741380572319, -0.00833478569984436, -0.02571609988808632, -0.02327697165310383, 0.06092775985598564, 0.008614825084805489, 0.016961369663476944, 0.03576032817363739, -0.00810451339930296, 0.034419894218444824, -0.04851841554045677, 0.04756023734807968, -0.012685178779065609, 0.026842132210731506, 0.007245607674121857, -0.011567048728466034, 0.05761003866791725, 0.05055719614028931, 0.013588997535407543, -0.02179386280477047, 0.03452206403017044, 0.02683650702238083, -0.011788071133196354, -0.11128979921340942, -0.021668691188097, -0.026389772072434425, -0.07336641848087311, -0.0026702703908085823, -0.0438152477145195, 0.03585420548915863, 0.006057185586541891, -0.05075085908174515, -0.00528757506981492, 0.01268850453197956, -0.008512275293469429, 0.02639654651284218, -0.012323589064180851, 0.02527141012251377, 0.05908489227294922, 0.1524990200996399, -0.0034305022563785315, 0.018617883324623108, 0.009334311820566654, 0.019509295001626015, 0.017742110416293144, -0.011421671137213707, -0.02451852709054947, -0.027833035215735435, -0.020588643848896027, -0.0012706987326964736, 0.014362583868205547, -0.044512052088975906, -0.026534538716077805, 0.011014534160494804, 0.026789844036102295, 0.06700079888105392, -0.06643404811620712, 0.03637367859482765, -0.009657022543251514, -0.05486845597624779, -0.004317682236433029, -0.014967693015933037, 0.015832282602787018, -0.004224395379424095, 0.02641764096915722, 0.003591786604374647, 0.02454817295074463, 0.01177695207297802, -0.009705617092549801, -0.00990253034979105, -0.01165892742574215, -0.02247011475265026, 0.023692037910223007, -0.0028586804401129484, -0.03528217226266861, -0.029371989890933037, -0.026410628110170364, -0.0362071767449379, -0.06077145040035248, -0.042673397809267044, -0.0033904602751135826, 0.06975666433572769, 0.026245083659887314, -0.015450418926775455, -0.015180773101747036, 0.0061186375096440315, 0.020537305623292923, 0.06122816354036331, 0.05589691549539566, 0.0025131171569228172, 0.006770264357328415, -0.0179586298763752, 2.639087313127675e-07, 0.03359566256403923, 0.037681564688682556, -0.006100550293922424, -0.01748562417924404, 0.004228066187351942, -0.028895331546664238, -0.05557243898510933, 0.023750243708491325, -0.04331403970718384, 0.006021480541676283, 0.016061872243881226, 0.013048980385065079, 0.022033164277672768, 0.02525288425385952, -0.0014654712285846472, -0.08207057416439056, -0.03693032264709473, 0.01569664105772972, -0.00480812368914485, 0.025789853185415268, -0.016974469646811485, 0.019938478246331215, 0.04497350752353668, 0.01668340526521206, 0.011568552814424038, 0.08047454059123993, -0.010137808509171009, 0.00861766654998064, 0.044997189193964005, 0.044200390577316284, -0.020856214687228203, -0.005439626052975655, -0.0543157234787941, -0.05495788902044296, -0.03387632220983505, -0.04131050035357475, -0.06176735833287239, -0.005307828076183796, 0.03410310670733452, 0.03784855082631111, 0.028345132246613503, 0.049584902822971344, -0.020821286365389824, -0.04356885701417923, -0.017772652208805084, 0.01839948445558548, 0.02306198514997959, 0.008002428337931633, -0.034827228635549545, -0.0639093741774559, 0.010243816301226616, 0.021076466888189316, -0.04123274236917496, -0.022290268912911415, -0.026583973318338394, -0.005616538692265749, 0.018286796286702156, -0.02703380398452282, 0.0666147917509079, -0.02999293990433216, -0.061767030507326126, 0.022976260632276535, -0.03794196620583534, 0.06883992999792099, 0.04351115971803665, -0.010462772101163864, 0.01638694480061531, 2.594828933510831e-34, 0.05631141737103462, -0.058293405920267105, 0.007151704281568527, 0.0029867198318243027, 0.012369566597044468, -0.05028717592358589, 0.018255816772580147, -0.006766218692064285, -0.06322908401489258, -0.04860640689730644, -0.04458927735686302], "b5bdd873-3d71-45d3-b88d-06193ffb2cd0": [0.07210439443588257, 0.0034250395838171244, -0.038547713309526443, -0.012422125786542892, -0.003176497295498848, 0.03896249830722809, 0.03206712380051613, 0.0299155805259943, 0.03575900197029114, -0.03458964824676514, -0.004115906078368425, 0.05903591215610504, 0.00699183065444231, 0.0026585827581584454, 0.0002695480943657458, 0.04040699452161789, 0.027883276343345642, 0.031683217734098434, 0.031010137870907784, -0.0030270153656601906, -0.03560924530029297, 0.03239103779196739, 0.025896938517689705, 0.039894673973321915, 0.006319038569927216, -0.04326724633574486, 0.03515421971678734, -0.02131320908665657, 0.03709989786148071, -0.0075529031455516815, -0.011135607026517391, 0.05825304985046387, -0.02408444695174694, 0.0364663265645504, 2.2571471163246315e-06, -0.026084745302796364, -0.032740067690610886, -0.014823967590928078, -0.06064959242939949, -0.03871065378189087, 0.02363908290863037, 0.03550725802779198, -0.05836239084601402, -0.014869676902890205, 0.01602848991751671, 0.01803465001285076, -0.013810006901621819, 0.059103891253471375, -0.0348687507212162, 0.024245381355285645, 0.03910498321056366, 0.013404209166765213, 0.041437044739723206, 0.00943375751376152, 0.12513285875320435, 0.011626079678535461, -0.027133993804454803, 0.0390128418803215, 0.013527711853384972, 0.021473808214068413, 0.00517552113160491, 0.06814853101968765, -0.020439017564058304, -0.021542388945817947, 0.09500636160373688, -0.007826938293874264, 0.055803798139095306, -0.0721665546298027, 0.05044030398130417, 0.005126772914081812, 0.09326893836259842, -0.04110846668481827, 0.050368331372737885, 0.04466632008552551, -0.04695657640695572, 0.06466341018676758, -0.0028558301273733377, 0.03453758358955383, -0.00046478581498377025, -0.04988566040992737, -0.03074159286916256, -0.02814607508480549, 0.004710330627858639, -0.007218609564006329, 0.05687442049384117, -0.05445970594882965, -0.029496029019355774, -0.0314977690577507, 0.02152683027088642, -0.04519534483551979, -0.01945367082953453, -0.03578711301088333, 0.009363877587020397, 0.03037087991833687, 0.025296315550804138, -0.05524933338165283, 0.03482779860496521, -0.0825711339712143, 0.07474997639656067, 0.007306807208806276, -0.037456877529621124, -0.0018329164013266563, -0.05613080412149429, 0.052478376775979996, -0.025814896449446678, 0.06400565057992935, 0.015299813821911812, 0.006027861498296261, 0.00809240061789751, 0.059062659740448, -0.03800347074866295, -0.004253349266946316, -0.015069853514432907, -0.02977411448955536, 0.06940153986215591, -0.021346140652894974, 0.02890876494348049, 0.02840285561978817, 0.027010910212993622, 0.029101485386490822, 0.03098420612514019, -0.011591676622629166, -0.06384963542222977, 0.03336818516254425, -0.0062606194987893105, -0.09308356046676636, 0.0017868831055238843, -0.04152742028236389, -0.017437489703297615, 0.04149019345641136, -0.024054277688264847, 0.015264113433659077, 0.04838399216532707, 0.011954977177083492, 0.023923953995108604, 0.040666334331035614, 0.046571455895900726, -0.06072773411870003, 0.043107789009809494, -0.028202243149280548, 0.005766973830759525, 0.0010182129917666316, -9.763451816979796e-05, -0.018559202551841736, 0.029928812757134438, -0.0009756791405379772, 0.02709076553583145, -0.011029518209397793, -0.017313802614808083, -0.0017513320781290531, -0.03591698408126831, 0.012636694125831127, -0.011239957064390182, 0.0013367513893172145, 0.032939791679382324, -0.0012493622489273548, -0.05842483788728714, -0.023185569792985916, -0.004504578188061714, 0.01250458788126707, 0.014772449620068073, 0.05235014110803604, 0.021874023601412773, -0.03903578966856003, -0.007522770203649998, -0.0030951970256865025, 0.08044669032096863, -0.019101401790976524, 0.04705517739057541, 0.020940326154232025, -0.002549205906689167, 0.013411627151072025, -0.010864800773561, 0.0031932718120515347, -0.01725434698164463, 0.08117473125457764, 0.029070379212498665, 0.04360775649547577, 0.0033857286907732487, 0.008575567044317722, 0.03449809551239014, -0.04602472484111786, -0.022636746987700462, 0.006719343364238739, -0.06903675198554993, -0.059871528297662735, -0.02577587403357029, -0.007270703557878733, 0.033558089286088943, 0.010039751417934895, -0.011482148431241512, -0.030383797362446785, 0.04796168580651283, -0.04704486206173897, 0.013026720844209194, 0.02542859874665737, -0.0079434709623456, -0.11581143736839294, -0.01459179911762476, -0.03512472286820412, 0.02727639116346836, -0.031237881630659103, 0.10597372055053711, 0.012770604342222214, 0.0988171324133873, -0.04016360640525818, 0.025703707709908485, -0.027337072417140007, -0.026417013257741928, 0.010679923929274082, 0.00571519834920764, 0.003986256662756205, -0.05329221487045288, 0.014706918969750404, -0.06797725707292557, -0.004911914002150297, -0.005394280422478914, 0.005583847872912884, -0.008796554990112782, 0.007138380315154791, 0.0020986772142350674, -0.05282352492213249, -0.02086099237203598, 0.02930261567234993, 0.03179780766367912, -0.032309938222169876, -0.048944491893053055, 0.010915767401456833, 0.06198450177907944, 0.01838962361216545, 0.00029725211788900197, -0.007022349163889885, 0.019030405208468437, -0.00948256254196167, -0.08326886594295502, 0.01476181112229824, 0.05807609483599663, -0.014678063802421093, 0.020232781767845154, -0.0682477056980133, -0.02021503821015358, 0.04286898672580719, 0.04086347296833992, 0.009381243959069252, 0.018471308052539825, 0.000797890592366457, -0.029204973950982094, 0.007579240016639233, 0.017749527469277382, 0.020777123048901558, 0.003484878456220031, 0.0019337761914357543, 0.052610866725444794, 0.005887514445930719, -0.005730946082621813, 0.006759222596883774, -0.06209268048405647, 0.011136573739349842, -0.007766373921185732, 0.030485009774565697, 0.0038527122233062983, -0.005307440645992756, -0.008284368552267551, 0.022417733445763588, -0.0015487101627513766, 0.026677478104829788, -0.020327787846326828, -0.057644642889499664, -0.02987620048224926, -0.013006416149437428, -0.01883782632648945, -0.040670569986104965, -0.02503560297191143, 0.003120813984423876, 0.041221730411052704, -0.006317946594208479, -0.031604986637830734, -0.010985588654875755, -0.02963945083320141, 0.0014562428696081042, -0.023274270817637444, 0.01403068471699953, -0.02615142986178398, 0.03372471034526825, -0.04269053041934967, -0.002329801442101598, 0.06605264544487, -0.0794098824262619, 0.0029553337953984737, -0.02659137174487114, -0.02333359606564045, 0.01993612013757229, 0.011949559673666954, -0.043776243925094604, 0.0010548285208642483, 0.012875869870185852, -0.005979514680802822, 0.03110869601368904, -0.008842524141073227, 0.055883798748254776, 0.014242011122405529, 0.0010409880196675658, -0.04945957660675049, 0.012277595698833466, 0.027833037078380585, 0.01093712355941534, 0.0356978103518486, -0.028578946366906166, 0.014733116142451763, -0.08448893576860428, 0.03872348368167877, 0.00644341018050909, -0.05101945251226425, -0.046993423253297806, 0.002835022285580635, -0.047629524022340775, 0.0034063695929944515, -0.06752314418554306, 8.613024692749605e-05, 0.02663678303360939, 0.004150345455855131, 0.0014877956127747893, -0.0176064632833004, -0.03633549436926842, -0.005794810131192207, -0.06768419593572617, 0.015401922166347504, -0.0181661918759346, 0.06479382514953613, 0.05574264004826546, 0.02093697525560856, 0.01848408952355385, -0.0026472359895706177, 0.009767859242856503, 0.06544181704521179, 0.030976902693510056, -0.001952444203197956, -0.03117675706744194, 0.04088468849658966, -0.0003909228544216603, -0.013740583322942257, 0.09309907257556915, 0.006794552784413099, -0.052327439188957214, -0.01909048669040203, 0.006409855559468269, -0.01930597797036171, -0.04902740567922592, -0.05601886287331581, 0.022332655265927315, 0.05766313150525093, 0.011419370770454407, 0.024205993860960007, -0.021491631865501404, -0.04702045023441315, -0.08638854324817657, -0.0017339913174510002, 0.018423214554786682, -0.029343660920858383, -0.044390156865119934, -0.022974269464612007, 0.028126493096351624, 0.031142234802246094, -0.0074235848151147366, 0.01728871464729309, -0.029639439657330513, -0.011155281215906143, -0.012697293423116207, 0.013012771494686604, -0.011644021607935429, -0.04363395273685455, -0.025717586278915405, 0.03977115452289581, 0.0735582709312439, 0.02215348556637764, -0.08907093107700348, -0.0008652305696159601, -0.020147688686847687, -0.017268402501940727, -0.037441253662109375, -0.018099796026945114, -0.08553893864154816, 0.027395397424697876, 0.005768428090959787, -0.027951369062066078, -0.03468915820121765, -0.0013817751314491034, 0.026244107633829117, 0.09544979780912399, 0.020812388509511948, 0.0022266763262450695, -0.04001010209321976, -0.022412018850445747, -0.02215626649558544, -0.024036185815930367, -0.02512224204838276, -0.08279683440923691, -0.04287828877568245, 0.005732967518270016, 0.02027106285095215, -0.009260935708880424, 0.04605411738157272, 0.04802250489592552, 0.0394064299762249, -0.030193854123353958, 0.010611382313072681, 0.09119701385498047, 0.03969273343682289, 0.030735131353139877, 0.07505392283201218, 0.02508733794093132, 0.04321081563830376, 0.002152421046048403, 0.020299218595027924, 0.07733748853206635, -0.08933275192975998, 0.05069522559642792, 0.014617415145039558, -0.020322339609265327, -0.04828447848558426, -0.0076103308238089085, 0.028975825756788254, 0.041655730456113815, -0.005024275742471218, 0.027032528072595596, -0.016151266172528267, 0.028920991346240044, -0.024255096912384033, 0.032493747770786285, 0.012456033378839493, 0.03269082307815552, 0.030505767092108727, -0.002395654795691371, 0.04388255253434181, 0.06913173198699951, -0.029510052874684334, -0.047197651118040085, -0.056923940777778625, -0.0898057222366333, -0.0846724659204483, -0.006171589717268944, -0.023777401074767113, 0.03022814728319645, 0.03238813951611519, 0.026916058734059334, 0.03306226059794426, 0.041521988809108734, 0.026015402749180794, -0.003216365585103631, -0.07417145371437073, 0.011722730472683907, -0.054714854806661606, -0.0646493062376976, 0.012050663121044636, -0.018814027309417725, 0.0010512139415368438, -0.00739563163369894, 0.053613513708114624, -0.025358092039823532, 0.04416521638631821, -0.02861499972641468, 0.040882691740989685, 0.0026307650841772556, -0.04239411652088165, -0.025459464639425278, 0.0071604023687541485, 0.023487895727157593, -0.0664389580488205, 0.011670759879052639, 0.011884351260960102, 0.0274614617228508, -0.034798119217157364, -0.009140873327851295, -0.048410870134830475, 0.026675811037421227, -0.08823450654745102, -0.03503832593560219, -0.010487326420843601, -0.03134733438491821, -0.014515597373247147, 0.016436591744422913, -0.017092367634177208, 0.021761683747172356, 0.02842668816447258, -0.012242967262864113, 0.023460829630494118, 0.025308167561888695, 0.012577997520565987, -0.003932359628379345, 0.0198805034160614, 0.007393432781100273, -0.07466210424900055, 0.00514700822532177, -0.012652489356696606, -0.00856893602758646, 0.06280230730772018, -0.012221119366586208, 0.009100847877562046, 0.04197393357753754, 0.06688360124826431, -0.005329870618879795, -0.04034985229372978, -0.005516331177204847, 0.04590423032641411, -0.020729590207338333, -0.024864448234438896, -0.003316865535452962, 0.007333594840019941, 0.008526714518666267, -0.01861579716205597, -0.038456082344055176, 0.00569447036832571, -0.1086687445640564, -0.026822006329894066, 0.07296428829431534, -0.02417302131652832, 0.04166017845273018, 0.0143808051943779, 0.06122169643640518, -0.03219972550868988, 0.0012109687086194754, -0.014394918456673622, 0.031582310795784, -0.024907490238547325, 0.020525606349110603, -0.001498198020271957, 0.01250238623470068, 0.02440420351922512, -0.03260606527328491, 0.030947068706154823, -0.05269651859998703, 0.015556583181023598, -0.012757143937051296, -0.028950560837984085, -0.041376009583473206, -0.06035314500331879, -0.01327527780085802, 0.02904769964516163, 0.014890231192111969, 0.013622128404676914, 0.022027406841516495, -0.018120335415005684, 0.014052578248083591, 0.033100470900535583, -0.002318399725481868, -0.037411708384752274, 0.009138578549027443, 0.043345510959625244, -0.034211523830890656, -0.0981755256652832, -0.014782119542360306, 0.020647244527935982, -0.04189949482679367, 0.03991251066327095, 0.023492904379963875, -6.031589349079809e-33, -0.0230506993830204, -0.0721859410405159, -0.01782647892832756, 0.05799759551882744, 0.015469568781554699, -0.05892833694815636, -0.04019671678543091, -0.04103764519095421, -0.03265422582626343, -0.04575737565755844, -0.044622164219617844, -0.01596055179834366, 0.014244846999645233, -0.06609924137592316, 0.03239157423377037, -0.00932374782860279, 0.04270210862159729, 0.012256104499101639, -0.026153918355703354, 0.048594746738672256, 0.024413732811808586, -0.027249960228800774, -0.028302351012825966, 0.014667829498648643, 0.02289504185318947, -0.05154070630669594, -0.029694661498069763, -0.0010540528455749154, -0.027570361271500587, 0.03495924919843674, -0.04847332462668419, -0.04005330428481102, 0.0016043952200561762, 0.047344595193862915, 0.02860433980822563, -0.005041548982262611, -0.03307792544364929, -0.016408396884799004, -0.003594350768253207, 0.021593334153294563, 0.022111697122454643, -0.06255441159009933, -0.00801326148211956, 0.003483237000182271, 0.011010450311005116, 0.039188336580991745, 0.06211963668465614, 0.022474855184555054, -0.031470488756895065, 0.027705777436494827, -0.08003326505422592, 0.010756638832390308, -0.002047272864729166, 0.06202489882707596, -0.004322276450693607, 0.023496482521295547, 0.060618165880441666, -0.00980960763990879, -0.05181508883833885, -0.0485326424241066, 0.02095458097755909, -0.006204449571669102, 0.017383912578225136, 0.012606757692992687, -0.003458918770775199, 0.018741853535175323, -0.016499914228916168, 0.04004361853003502, 0.02103452757000923, 0.011063816025853157, -0.007502181455492973, -0.016108589246869087, 0.01945486292243004, 0.04983960837125778, -0.015706077218055725, -0.020388491451740265, 0.010004791431128979, 0.056498005986213684, 0.08585848659276962, 0.09257565438747406, -0.03507774695754051, -0.019336767494678497, -0.027930835261940956, 0.015541116707026958, -0.009046552702784538, -0.045608703047037125, -0.013436190783977509, -0.0386919304728508, -0.021456627175211906, -0.0010899421758949757, 0.001144472393207252, -0.09446657449007034, -0.03329715505242348, 0.003780180821195245, 0.03345273807644844, 0.04962960258126259, -0.005334298592060804, 0.030682742595672607, 0.009069005958735943, -0.07307791709899902, -0.037752628326416016, -0.010103754699230194, 0.01973995380103588, 0.0038615968078374863, 0.04140767827630043, -0.01660713367164135, 0.019489876925945282, 0.02607843093574047, -0.01393801998347044, -0.0014147371985018253, 0.002836084458976984, -0.05233149603009224, -0.011889643967151642, -0.004249495919793844, -0.010135265998542309, -0.044215068221092224, 0.002702773315832019, -0.002429620362818241, -0.026123609393835068, 0.017717532813549042, -0.046699486672878265, 0.05857735499739647, -0.0034832120873034, -0.04039578139781952, -0.035475414246320724, 0.017640184611082077, 0.023749113082885742, 0.009612970985472202, 0.09153269231319427, -0.014624632894992828, 0.022853929549455643, -0.030979974195361137, 3.0374826565093827e-07, 0.010355612263083458, 0.02412470616400242, 0.0287034772336483, -0.052890148013830185, 0.016603896394371986, 0.018622050061821938, -0.0076209246180951595, 0.007101245224475861, 0.01077677495777607, 0.03225492686033249, 0.04472045227885246, 0.0032931372988969088, 0.014835521578788757, -4.892512151855044e-05, -0.02196500450372696, -0.08464880287647247, -0.030080366879701614, -0.01557918544858694, -0.028410522267222404, 0.0024756670463830233, 0.012817648239433765, -0.0015773508930578828, 0.03323432803153992, 0.014779927209019661, -0.03627926856279373, 0.009703428484499454, -0.011034145951271057, -0.03659743815660477, 0.003227531211450696, 0.030059993267059326, 0.02377876453101635, 0.0026460555382072926, -0.01567133143544197, -0.03311164304614067, -0.005492820404469967, 0.011061321012675762, -0.010394587181508541, 0.009218759834766388, 0.03901030495762825, 0.031105274334549904, 0.021445313468575478, 0.01448105275630951, -0.002364975865930319, -0.016448264941573143, 0.03081517666578293, 0.041532620787620544, 0.03141520172357559, 0.005102668888866901, 0.008049245923757553, -0.026283204555511475, 0.013805509544909, 0.02457890845835209, 0.01679438352584839, -0.00012603792129084468, -0.030788112431764603, -0.030162859708070755, 0.022878745570778847, -0.039458636194467545, 0.01066302414983511, -0.049180928617715836, -0.0711594671010971, -0.01751365140080452, 0.013076086528599262, 0.004429472144693136, 0.026880361139774323, -0.05545463413000107, 0.008154601790010929, 3.4304915409302414e-34, 0.0345587283372879, -0.028696293011307716, 0.011620746925473213, -0.04403018206357956, 0.03816830366849899, -0.026717782020568848, 4.0090371840051375e-06, 0.028613686561584473, 0.018056407570838928, -0.06703688204288483, -0.05793183296918869], "ff919679-c51e-4f38-bf87-f5cabb8b85bb": [0.03610997274518013, -0.0511096753180027, -0.035297244787216187, -0.018862999975681305, -0.019291818141937256, 0.044659849256277084, -0.04514662176370621, 0.03342191129922867, -0.046027690172195435, -0.03698234260082245, -0.017034348100423813, -0.0024307805579155684, 0.03040139563381672, 0.05096660554409027, -0.007988146506249905, 0.04348134621977806, 0.02605263516306877, 0.0006130844703875482, 0.08577112853527069, 0.0329219289124012, -0.03512956202030182, 0.01984875276684761, 0.01376867014914751, 0.005747308023273945, 0.06279883533716202, -0.05598261579871178, 0.044309429824352264, -0.0155792823061347, 0.0031148334965109825, -0.007610836531966925, -0.005741467233747244, 0.05564359948039055, -0.03203759342432022, 0.04800545796751976, 2.4699343157408293e-06, -0.0011073523201048374, 0.010296016000211239, 0.005031616427004337, -0.0031113161239773035, -0.045990683138370514, 0.011977415531873703, -0.034012217074632645, -0.052969057112932205, -0.009913225658237934, 0.040428340435028076, -0.02181200496852398, -0.06136958301067352, 0.1110055148601532, 0.0012563614873215556, 0.019378092139959335, 0.029044456779956818, 0.018823986873030663, -0.044368959963321686, 0.0002161911834264174, 0.07304313033819199, 0.05471343919634819, -0.010971250012516975, 0.10538724809885025, 0.014035959728062153, 0.042959000915288925, 0.004112537484616041, 0.025500062853097916, -0.022055678069591522, -0.038877539336681366, 0.037923987954854965, -0.01965789869427681, 0.041168760508298874, -0.09646987169981003, 0.05999550223350525, 0.02078297547996044, 0.020474877208471298, -0.049380723387002945, 0.04182460904121399, 0.009506497532129288, -0.049229081720113754, 0.03926615044474602, 0.009261000901460648, 0.03495928645133972, 0.012016918510198593, -0.0275624580681324, -0.09436459094285965, -0.05048271268606186, 0.014099767431616783, 0.011706715449690819, 0.08130355924367905, -0.07695405185222626, -0.03219444304704666, -0.059492263942956924, 0.06870370358228683, 0.033948078751564026, 0.04716520756483078, -0.049144625663757324, -0.0409955158829689, -0.00498002115637064, 0.024617217481136322, -0.04675972834229469, 0.03284819424152374, -0.04542330279946327, 0.07404529303312302, -0.018333695828914642, 0.006562843453139067, -0.03294423222541809, -0.03317517787218094, 0.022095507010817528, -0.015914808958768845, 0.056602898985147476, 0.01647285185754299, 0.031184447929263115, 0.00029172320500947535, 0.07236042618751526, -0.01529247872531414, 0.0034959649201482534, 0.01873541623353958, -0.05943949893116951, 0.010616675019264221, 0.0068959989584982395, 0.048624273389577866, 0.010548513382673264, 0.02781652845442295, 0.05685010179877281, 0.028508339077234268, -0.005181728396564722, -0.03619249537587166, 0.02555950917303562, -0.013073993846774101, -0.050247713923454285, 0.03252698481082916, -0.0017675162525847554, -0.007072212640196085, 0.08490904420614243, -0.01938733085989952, 0.0032308120280504227, 0.00812531914561987, 0.01140265166759491, -0.007821621373295784, 0.03413819521665573, 0.061273038387298584, -0.0011634643888100982, 0.030094465240836143, -0.02408716268837452, 0.017525317147374153, -0.033159174025058746, -0.028727883473038673, 0.019081342965364456, 0.000549925200175494, -0.01705366186797619, 0.022675281390547752, -0.01596786081790924, -0.03364083543419838, 0.007914545014500618, -0.04493061080574989, -0.0014985059387981892, -0.00982945691794157, -0.023318277671933174, -0.029083633795380592, 0.03874380514025688, -0.07418752461671829, -0.02479219064116478, -0.013058588840067387, 0.03043573535978794, 0.0158687774091959, 0.012260641902685165, 0.04603322967886925, -0.0735224187374115, -0.012060497887432575, 0.007741854526102543, 0.06424705684185028, 0.013810363598167896, 0.005869628861546516, 0.0015368678141385317, 0.02623327262699604, 0.03112519159913063, -0.02458411082625389, 0.007727992720901966, 0.011262164451181889, -0.0005062831332907081, 0.06052242964506149, 0.02409738302230835, -0.0164885763078928, 0.036107826977968216, 0.002888111164793372, -0.025791555643081665, -0.0235806442797184, 0.006116288714110851, -0.041239816695451736, -0.01571391522884369, -0.09112608432769775, -0.024267898872494698, 0.03836441412568092, -0.016975928097963333, -0.04366182163357735, -0.00514159444719553, -0.0015293826581910253, -0.041971515864133835, -0.02552804723381996, 0.038060083985328674, -0.04773952066898346, -0.1421404778957367, 0.011349777691066265, -0.006785947363823652, 0.057457335293293, 0.008567250333726406, 0.07040146738290787, 0.03626919165253639, 0.07560717314481735, 0.01755390875041485, -0.012708745896816254, -0.030333103612065315, -0.0026609033811837435, -0.04346083104610443, 0.0431586429476738, -0.04390530288219452, -0.03664593771100044, 0.0002030393370660022, -0.07844375818967819, -0.02683432400226593, -0.03437155485153198, -0.03485275059938431, -0.01421048678457737, 0.030833393335342407, 0.014296555891633034, -0.06251826882362366, -0.05733456090092659, 0.026109784841537476, 0.07333406060934067, -0.014675835147500038, -0.03371595963835716, 0.014622936956584454, 0.050865426659584045, 0.026338839903473854, -0.010315502993762493, 0.005244938191026449, 0.01904778927564621, 0.056027911603450775, -0.030977200716733932, 0.01706804893910885, 0.07535722106695175, -0.0010938257910311222, 0.005482988432049751, -0.045963484793901443, -0.0073119574226439, 0.037652820348739624, 0.025721821933984756, 0.0033595915883779526, 0.022306395694613457, 0.009079711511731148, -0.0380503386259079, 0.022290006279945374, 0.005429609213024378, -0.004333678632974625, -0.015863623470067978, 0.0007175778737291694, -0.01256855670362711, 0.006332571152597666, -0.027794523164629936, -0.016620416194200516, -0.022708095610141754, -0.008017119020223618, -0.024500275030732155, 0.008329549804329872, 0.02529786340892315, 0.004605606198310852, -0.03492400795221329, 0.017175903543829918, 0.04741201549768448, 0.01197653729468584, -0.004039129242300987, 0.0336797870695591, -0.05040278285741806, 0.005413547623902559, 0.0212169848382473, 0.007517940364778042, -0.04325605556368828, 0.0016964968526735902, 0.013514749705791473, 0.026042943820357323, 0.0005759896012023091, 0.013694646768271923, -0.0540274940431118, -0.02172080986201763, 0.02504478022456169, 0.023039933294057846, -0.03215853497385979, 0.022727588191628456, -0.017996102571487427, 0.012087775394320488, 0.038133230060338974, -0.06074737384915352, -0.022203803062438965, -0.010849892161786556, -0.01068989746272564, 0.013903070241212845, 0.005008069798350334, -0.03771147504448891, 0.004176242742687464, 0.014584964141249657, 0.019902227446436882, -0.04672571271657944, -0.02110535092651844, 0.013873720541596413, 0.04879084601998329, -0.01827293075621128, -0.030439961701631546, -0.008975189179182053, 0.06181546300649643, 0.02807396650314331, 0.00540295522660017, 0.0053238943219184875, 0.02682305872440338, -0.062070827931165695, 0.037692002952098846, 0.0013472882565110922, -0.05041143670678139, -0.021729251369833946, -0.021387619897723198, -0.058561790734529495, 0.01917031779885292, -0.07391195744276047, 0.0009238063357770443, 0.03207362815737724, -0.012619364075362682, 0.004274304956197739, -0.030829433351755142, -0.01705821603536606, -0.0006280079833231866, -0.08678016066551208, 0.08113439381122589, 0.0056442986242473125, 0.04241082817316055, -0.0027605246286839247, -0.0022651376202702522, 0.001073656603693962, 0.036620885133743286, 0.03543323278427124, 0.03288488835096359, 0.005715107079595327, 0.015719017013907433, -0.036345306783914566, -0.00918104499578476, -0.00122296332847327, -0.001151694217696786, 0.08362361788749695, 0.019865840673446655, 0.03358245640993118, -0.020362500101327896, -0.013817880302667618, -0.04050394892692566, 0.01622888632118702, -0.039458926767110825, 0.018331315368413925, 0.029977889731526375, 0.0022600102238357067, 0.033993933349847794, -0.023335225880146027, -0.005858462769538164, -0.07584203034639359, -0.008216490969061852, -0.008490790612995625, 0.0016173974145203829, -0.025036588311195374, 0.03044053167104721, 0.034381892532110214, 0.035592805594205856, 0.017227018252015114, -0.019250327721238136, -0.017988579347729683, -0.029586227610707283, -0.013073444366455078, 0.022385690361261368, -0.010707903653383255, -0.058803457766771317, -0.04618939384818077, 0.007618542294949293, 0.05314837023615837, 0.00806045439094305, -0.09034891426563263, -0.004310042131692171, -0.005726804491132498, -0.05180661752820015, -0.0308406800031662, -0.004226259887218475, -0.03555900231003761, 0.017330916598439217, 0.02050822414457798, -0.01803532987833023, -0.01142724510282278, 0.0034264966379851103, 0.040247756987810135, 0.10985840857028961, 0.014514565467834473, -0.008541181683540344, 0.0027436446398496628, -0.07944226264953613, 0.006907646078616381, -0.008315508253872395, -0.015031461603939533, -0.06059954687952995, -0.008418047800660133, -0.0060623809695243835, 0.025291329249739647, -0.00792197696864605, 0.09250956028699875, 0.00832347385585308, 0.04642374441027641, -0.027533428743481636, -0.004595108795911074, 0.08206219971179962, -0.008824946358799934, 0.026573460549116135, 0.06482002139091492, 0.13932304084300995, -0.018277373164892197, 0.001841503195464611, -0.0030150252860039473, 0.033006180077791214, -0.03104875609278679, 0.04386035352945328, -0.014040189795196056, -0.048721808940172195, -0.033484239131212234, -0.02743947133421898, -0.0064198533073067665, 0.045052964240312576, -0.05196773633360863, -0.05156398192048073, -0.026739122346043587, 0.060155924409627914, -0.018413599580526352, 0.042507003992795944, -0.006864842958748341, 0.0365169532597065, 0.012916692532598972, 0.025537068024277687, 0.01511983573436737, 0.0229358933866024, -0.029124362394213676, -0.016880715265870094, 0.011980178765952587, -0.026039427146315575, -0.07470279932022095, -0.045857660472393036, -0.017198864370584488, 0.041944678872823715, 0.028988245874643326, -0.0018921749433502555, 0.033090151846408844, 0.0302842166274786, 0.04744848236441612, 0.026739751920104027, -0.030012620612978935, -0.005244735162705183, -0.03652739152312279, -0.06928560882806778, 0.03686390444636345, 0.009584645740687847, 0.00016966018301900476, -0.032665785402059555, 0.03677018731832504, 0.025487205013632774, -0.016233209520578384, -0.0021737338975071907, 0.03280921280384064, -0.0015485257608816028, -0.03301946073770523, -0.0006616641185246408, -0.029367750510573387, -0.07417633384466171, -0.05598707124590874, 0.004686553962528706, 0.02033170685172081, 0.00609630485996604, -0.007547765504568815, -0.02289239503443241, -0.05692668631672859, 0.011133764870464802, -0.037233252078294754, -0.05359850078821182, 0.0330415703356266, 0.0035251351073384285, -0.02821716107428074, -0.010714166797697544, 0.0019220359390601516, 0.040094099938869476, 0.05540262907743454, -0.016491176560521126, 0.027613133192062378, 0.008416314609348774, -0.0072977496311068535, -0.020355043932795525, -0.020943542942404747, 0.04235025867819786, -0.03811522573232651, -0.02739046700298786, 0.045104000717401505, -0.022631412371993065, 0.0035856463946402073, -0.044206175953149796, 0.039343204349279404, 0.05291850492358208, 0.04932454600930214, 0.012094498611986637, -0.039815355092287064, -0.01506612729281187, 0.04300505667924881, -0.04879061505198479, -0.04558086022734642, -0.010730640031397343, 0.007164511363953352, 0.013828697614371777, -0.012324529699981213, -0.028414404019713402, 0.029766002669930458, -0.060342490673065186, 0.03457038477063179, 0.030299291014671326, -0.05933285504579544, -0.02613052912056446, 0.004732595290988684, 0.05866219848394394, -0.007493925746530294, 0.0197285283356905, -0.02439519390463829, 0.02160581946372986, -0.0071989186108112335, 0.026661140844225883, 0.011789430864155293, 0.004585172515362501, 0.037958938628435135, -0.015237622894346714, 0.009549829177558422, -0.04857209324836731, -0.018869852647185326, -0.01263371855020523, -0.032033730298280716, -0.0241852980107069, -0.03598123788833618, -0.05207424610853195, 0.019442765042185783, -0.004198897164314985, -0.03800817206501961, 0.033348847180604935, -0.027439825236797333, 0.02163556031882763, 0.06461970508098602, 0.0501246377825737, 0.020256631076335907, 0.0024305996485054493, 0.051278047263622284, -1.637761488382239e-05, -0.07711590081453323, 0.002518672961741686, -0.0358927883207798, 0.032395340502262115, 0.0289047509431839, -0.03459925949573517, -6.109380993823336e-33, -0.0009732199250720441, -0.03468388319015503, -0.003036448499187827, 0.03533902391791344, -0.006795668043196201, -0.07021940499544144, -0.05430711433291435, -0.05078523978590965, -0.0197595227509737, -0.03077196329832077, -0.03488319367170334, 0.02291535958647728, -0.001848633517511189, -0.04163733124732971, 0.05732690170407295, -0.008998650126159191, 0.060654282569885254, -0.001130583113990724, -0.013230344280600548, 0.0241953507065773, -0.061726681888103485, -0.026259494945406914, -0.007907235063612461, 0.0005787393311038613, 0.01862158626317978, -0.021276315674185753, -0.027572955936193466, -0.03314777463674545, -0.016961609944701195, 0.038007840514183044, -0.04467484727501869, -0.04102398827672005, 0.030994633212685585, 0.025487130507826805, 0.0028254296630620956, -0.022726936265826225, -0.03750966116786003, 0.016802096739411354, 0.0006765796570107341, 0.03459703549742699, 0.03184235095977783, -0.023920001462101936, 0.029738998040556908, -0.005932425148785114, -0.017844004556536674, 0.040215227752923965, 0.004869712516665459, 0.013135167770087719, -0.00013291076174937189, -0.005487110000103712, -0.08732113242149353, 0.034392185509204865, -0.0036995988339185715, 0.055300790816545486, 0.009776975028216839, 0.014934533275663853, 0.05256880074739456, 0.04306727647781372, -0.03555082529783249, -0.038181524723768234, 0.029131578281521797, -0.007959654554724693, 0.03021259233355522, -0.01729665696620941, -0.010339691303670406, 0.004190725740045309, -0.0716005340218544, 0.04269813746213913, 0.013900753110647202, 0.02175906114280224, 0.02156234160065651, -0.04940319433808327, -0.010240553878247738, 0.0409260094165802, -0.04999660700559616, -0.0064362636767327785, -0.004579718224704266, 0.05110723152756691, 0.019007554277777672, 0.14333847165107727, -0.006229758262634277, -0.024693991988897324, 0.0034351146314293146, 0.02227773144841194, 0.013418775983154774, -0.1328052133321762, -0.03517498821020126, -0.012500287964940071, 0.0019581327214837074, 0.027176693081855774, 0.03310622274875641, -0.05872412398457527, -0.0525352917611599, -0.015523363836109638, 0.08944772183895111, 0.03096657246351242, -0.05001611262559891, 0.019460642710328102, 0.022241557016968727, -0.07733937352895737, -0.00934291910380125, 0.007957328110933304, 0.0350247398018837, 0.016518713906407356, 0.023837218061089516, -0.050069332122802734, 0.008874577470123768, 0.0072305453941226006, -0.023928232491016388, 0.007519987411797047, 1.1180751243955456e-05, -0.02079317532479763, 0.03231389820575714, 0.028214290738105774, -0.020002128556370735, -0.0469241663813591, 0.01326430682092905, -0.01745610311627388, -0.04123693332076073, 0.013072720728814602, -0.03765811398625374, 0.06783448159694672, -0.0006177516770549119, -0.02711745910346508, -0.006951150018721819, 0.0024834945797920227, 0.04808105155825615, 0.01873691938817501, 0.03794293478131294, -0.012220043689012527, 0.018118154257535934, 0.003888929495587945, 3.295428427918523e-07, 0.02420031651854515, 0.06154726445674896, -0.0016069553093984723, -0.08379045873880386, 0.03186773508787155, -0.019047999754548073, -0.06604240089654922, -0.003598973620682955, -0.00361614185385406, 0.009114941582083702, 0.038393400609493256, -0.013533580116927624, -0.0264431182295084, 0.013255969621241093, -0.011757065542042255, -0.04111647605895996, -0.02253246307373047, -0.026772722601890564, -0.014023754745721817, -0.03908988833427429, -0.01662241667509079, 0.00668561365455389, 0.0001293017849093303, 0.01990625262260437, -0.03143361955881119, 0.0016238978132605553, -0.02384827472269535, -0.01780039630830288, 0.03043607622385025, 0.02015720307826996, 0.08281523734331131, -0.013871080242097378, -0.006362508051097393, -0.0627623051404953, -0.01650814339518547, -0.002230454236268997, -0.04024140164256096, 0.04241756722331047, 0.05184806510806084, 0.0254993699491024, 0.010089199058711529, 0.000871596741490066, 0.03547702357172966, -0.012492134235799313, 0.02336220256984234, 0.047791700810194016, 0.014785485342144966, 0.008560193702578545, 0.01160198450088501, -0.028400009498000145, 0.02957715094089508, 0.04062531888484955, -0.024842755869030952, 0.01683804951608181, -0.019801056012511253, -0.02892199344933033, 0.027917059138417244, -0.04117865860462189, 0.027316391468048096, -0.005074590444564819, -0.032341621816158295, 0.010360421612858772, 0.03029770962893963, -0.012973817065358162, 0.010306407697498798, 0.028143014758825302, -0.002435729606077075, 3.143760229349617e-34, 0.04503769800066948, -0.05387961119413376, 0.020630693063139915, -0.09974056482315063, -0.015778323635458946, -0.02931341528892517, -0.0003070973325520754, -0.011378566734492779, -0.04025493189692497, -0.03708826005458832, -0.04217393696308136], "f32ce356-37da-4a43-a12d-8bf950636c30": [0.014919101260602474, -0.03942336142063141, -0.03659157082438469, -0.028866667300462723, -0.02260623686015606, 0.04499845206737518, -0.027410605922341347, 0.03207843378186226, -0.03232435882091522, -0.026311121881008148, 0.013641919940710068, -0.02099807932972908, 0.035658519715070724, -0.027678947895765305, 0.000570925185456872, 0.06802460551261902, 0.03272482007741928, -0.013389735482633114, 0.008106784895062447, 0.002781073795631528, -0.022380514070391655, 0.029276680201292038, 0.013767204247415066, -0.019620155915617943, 0.03012022189795971, -0.007835350930690765, -0.019789058715105057, 0.001116854720748961, 0.01853356882929802, -0.018633481115102768, -0.0006288273725658655, 0.06087031587958336, -0.04395218938589096, 0.06593813747167587, 2.3429256543749943e-06, -0.045479778200387955, 0.031246395781636238, 0.05263498052954674, -0.00858372263610363, -0.03790249675512314, 0.00557482847943902, -0.034317709505558014, -0.04086526483297348, 0.002135270508006215, 0.038818128407001495, -0.05416642129421234, -0.04755755513906479, 0.0936131477355957, 0.02406318113207817, 0.0289310235530138, 0.010570346377789974, 0.010492229834198952, -0.0055271293967962265, -0.009273978881537914, 0.08027610927820206, 0.01431315764784813, 0.03021189197897911, 0.10960141569375992, 0.017910677939653397, 0.041985053569078445, 0.03801047429442406, -0.0013917029136791825, 0.014273736625909805, -0.01667875610291958, 0.023905638605356216, -0.04449600353837013, 0.057765744626522064, -0.06269378960132599, 0.03522555157542229, 0.01813449151813984, 0.019655141979455948, -0.015450133010745049, 0.038428641855716705, 0.026408949866890907, -0.033966027200222015, 0.07073445618152618, 0.01790512539446354, 0.026796892285346985, 0.026709655299782753, -0.021782390773296356, -0.08264616876840591, -0.07460012286901474, -0.0002299293118994683, 0.008170217275619507, 0.03700754791498184, -0.04954272881150246, 0.003898648079484701, -0.049732912331819534, 0.025221193209290504, 0.02986905910074711, 0.003142934525385499, -0.07748971879482269, -0.06095311790704727, 0.0010311106452718377, 0.029903944581747055, -0.039919834583997726, -0.005050817504525185, -0.012796604074537754, 0.08322099596261978, 0.033299848437309265, -0.04283677041530609, -0.024848422035574913, -0.033237628638744354, 0.03438481688499451, 0.010934311896562576, 0.04125960171222687, 0.013119257986545563, 0.007147567812353373, 0.0266029741615057, 0.05949186161160469, -0.060630761086940765, -0.0014513481874018908, 0.010952108539640903, -0.05520876497030258, -0.03482047840952873, 0.005369189195334911, 0.03114296868443489, -0.006398739293217659, 0.031605903059244156, 0.07424129545688629, -0.0070914775133132935, -0.03889884799718857, -0.038224875926971436, 0.0132294911891222, -0.023739175871014595, -0.06493748724460602, 0.05609319359064102, 0.00505387457087636, 0.00693075405433774, 0.09329316765069962, -0.016611678525805473, -0.007884170860052109, -0.020571304485201836, -0.006271384656429291, -0.020486431196331978, 0.059400007128715515, 0.048388611525297165, -0.003614565823227167, 0.010659905150532722, -0.04196673631668091, 0.03452698513865471, -0.031018013134598732, -0.02633410133421421, -0.011133257299661636, -0.01273470651358366, -0.028843289241194725, 0.007806393317878246, -0.01735856384038925, -0.032327800989151, 0.004909350071102381, -0.01787099614739418, 8.014766353880987e-05, -0.011603659950196743, -0.008879455737769604, -0.022971684113144875, 0.020071271806955338, -0.06369563192129135, -0.02417779341340065, -0.047256190329790115, -0.004874666687101126, 0.015109039843082428, 0.040292833000421524, 0.03739331662654877, -0.032493289560079575, 0.014427505433559418, 0.030115794390439987, 0.08587050437927246, 0.007627787068486214, 0.025526102632284164, 0.04715967923402786, -0.0037001778837293386, 0.05167626217007637, -0.04394722357392311, -0.010463706217706203, -0.016072764992713928, 0.011811355128884315, 0.07116992026567459, -0.009916946291923523, 0.002696678740903735, 0.0635232925415039, -0.011500698514282703, 0.01170781534165144, -0.005645740311592817, -0.05245053023099899, -0.06504703313112259, -0.006112859584391117, -0.07279562205076218, 0.0146285779774189, 0.022699015215039253, -0.007771723438054323, -0.07287687808275223, -0.02406574971973896, -0.03365994244813919, -0.07166644930839539, 0.004063120111823082, 0.004350930452346802, -0.007086689583957195, -0.08339305222034454, 0.05094853416085243, -0.0011604120954871178, 0.01564597524702549, 0.011065414175391197, 0.06525637209415436, 0.0047332895919680595, 0.06667635589838028, 0.002425888553261757, -0.01161994133144617, -0.001813809503801167, -0.002288918010890484, -0.018917415291070938, 0.026492813602089882, -0.041584569960832596, -0.0194831732660532, -0.03838794678449631, -0.014167755842208862, -0.041708510369062424, -0.024346210062503815, -0.02775339037179947, -0.005903500132262707, 0.030430778861045837, 0.019642705097794533, -0.05618615821003914, -0.041166048496961594, 0.035313963890075684, -0.006213599815964699, -0.011804098263382912, -0.04567385092377663, 0.01021656859666109, 0.034192901104688644, 0.01501479372382164, -0.04000163450837135, 0.0023757722228765488, 0.022020338103175163, 0.04980585351586342, -0.042059898376464844, 0.05686204880475998, 0.09480707347393036, -0.025570034980773926, 0.05794600024819374, -0.05246607959270477, -0.040441758930683136, 0.041996363550424576, 0.007738519925624132, 0.009141894988715649, -0.017882229760289192, -0.041279833763837814, -0.013026723638176918, 0.026979735121130943, 0.0586232952773571, -0.011113409884274006, 0.017226792871952057, 0.005095493979752064, -0.023373909294605255, 0.0038822933565825224, -0.019754517823457718, 0.0036513640079647303, -0.0015636493917554617, 0.034129995852708817, -0.003342658979818225, -0.025739025324583054, 0.03780854120850563, 0.006800569593906403, -0.0361751988530159, -0.014262656681239605, 0.03199487552046776, -0.008464375510811806, -0.02571638859808445, 0.065941222012043, -0.027142053470015526, 0.015058716759085655, 0.016613703221082687, -0.015774650499224663, -0.07138869911432266, 0.01733805425465107, 0.008184314705431461, 0.05752266198396683, -0.0035699119325727224, -0.010970884934067726, -0.023207372054457664, 0.014887484721839428, 0.017617084085941315, 0.02292347326874733, -0.0242939256131649, 0.005601460114121437, -0.036118507385253906, 0.04788708686828613, 0.03192204236984253, 0.01107024122029543, -0.07677440345287323, -0.028612930327653885, -0.010488326661288738, 0.01584300585091114, 0.0022141323424875736, -0.005555855575948954, 0.001478643505834043, 0.00525282509624958, 0.07454074174165726, -0.07483641803264618, -0.0053346119821071625, -0.006347826682031155, 0.054286785423755646, -0.0024929302744567394, -0.043165262788534164, -0.03811018541455269, 0.0648212805390358, 0.015904849395155907, 0.002223253482952714, -0.013287386856973171, 0.0004919314524158835, -0.061451032757759094, -0.0037894397974014282, -0.028070202097296715, -0.05233284458518028, -0.023007860407233238, -0.026027008891105652, -0.030381835997104645, 0.03828119486570358, -0.08954682946205139, 0.022078972309827805, 0.018081851303577423, 0.01565738394856453, 0.0029836157336831093, -0.021911736577749252, -0.03765289485454559, 0.005756550468504429, -0.10959142446517944, 0.05819299444556236, -0.0064909555949270725, 0.02195909060537815, 0.00873034168034792, -0.040930066257715225, 0.018357452005147934, 0.0254809632897377, -0.005043383222073317, 0.030716726556420326, -0.008641681633889675, 0.046369995921850204, -0.04898893088102341, -0.018595365807414055, 0.0073541682213544846, 0.011444839648902416, 0.06780821830034256, 0.017670834437012672, 0.03985117748379707, -0.005449209362268448, -0.0018636493477970362, -0.041803501546382904, 0.017749253660440445, 0.0044348412193357944, 0.010504418984055519, -0.00030554935801774263, -0.009174490347504616, 0.04735100269317627, -0.04000870883464813, -0.021973729133605957, -0.02967054210603237, 0.018860479816794395, -0.023638034239411354, 0.04864088073372841, -0.04416796192526817, -0.013833572156727314, 0.02422778122127056, 0.05842374637722969, 0.02905411086976528, -0.05193433538079262, -0.05707145482301712, -0.040199294686317444, -0.015503224916756153, 0.033725690096616745, -0.013936381787061691, -0.048764199018478394, -0.020280931144952774, 0.01954943686723709, 0.040140729397535324, 0.024428604170680046, -0.037167325615882874, -0.008064385503530502, -0.03419014438986778, -0.033558208495378494, -0.03659588098526001, 0.02220509946346283, -0.05125737190246582, 0.03290531784296036, 0.0339815579354763, -0.03632533550262451, 0.012051758356392384, 0.014208466745913029, 0.05652328580617905, 0.053011439740657806, 0.0003582930366974324, -0.00647425651550293, 0.04864051565527916, -0.07914155721664429, 0.01895650289952755, 0.015726130455732346, 0.004771307576447725, -0.024002932012081146, 0.00364317768253386, 0.0021858138497918844, 0.00400934275239706, -0.013614143244922161, 0.037481311708688736, -0.02195141278207302, 0.05169682577252388, -0.022640233859419823, 0.002539735985919833, 0.0631835088133812, -0.023187603801488876, 0.04277481883764267, 0.007677310612052679, 0.17891524732112885, 0.004896983969956636, 0.004262300208210945, -0.02252153493463993, 0.03353257104754448, -0.0009723657858557999, 0.04739762842655182, 0.0007455644081346691, -0.03515934199094772, -0.008122771978378296, -0.041390348225831985, -0.03795235976576805, 0.019022313877940178, -0.02789214439690113, -0.04677736386656761, -0.06468852609395981, 0.06925410777330399, -0.025615643709897995, 0.015745745971798897, -0.012675083242356777, 0.027674976736307144, 0.00955593679100275, 0.04379139468073845, 0.013043157756328583, 0.04666675999760628, 0.02181149087846279, 0.006732349283993244, -0.011119993403553963, -0.03199455142021179, -0.06993904709815979, -0.05448674410581589, -0.029307246208190918, 0.06745311617851257, 0.001599811832420528, -0.02548607811331749, 0.04512249305844307, 0.005290881730616093, 0.02034551091492176, 0.03512831777334213, 0.012321565300226212, -0.01803407073020935, -0.0138738714158535, -0.05822083353996277, 0.02949119359254837, 0.0016494732117280364, 0.0011273130076006055, -0.019823579117655754, 0.002676905831322074, -0.0048646098002791405, 0.0020062695257365704, -0.025629419833421707, 0.029157022014260292, 0.0007143871625885367, -0.04492667689919472, 0.0002794981119222939, -0.052742261439561844, -0.028361208736896515, -0.0715678259730339, 0.028812453150749207, 0.01402878575026989, 0.02642822451889515, -0.0032573738135397434, -0.026760295033454895, -0.016345741227269173, -0.021955663338303566, -0.054172828793525696, -0.06996788084506989, 0.026491519063711166, 0.03671856224536896, -0.03413642942905426, 0.021428734064102173, 0.0017413748428225517, 0.07323915511369705, 0.0228690505027771, 0.007896344177424908, 0.04541655257344246, 0.05966629832983017, -0.020042307674884796, -0.010453675873577595, -0.047767605632543564, 0.023290134966373444, -0.04123872146010399, -0.009851539507508278, 0.05270863696932793, -0.021242234855890274, -0.018187163397669792, -0.04694150760769844, -0.012046032585203648, 0.049935538321733475, 0.06870555132627487, 0.052638668566942215, -0.047588832676410675, 0.006138534750789404, -0.03142014145851135, -0.06055789440870285, -0.016220880672335625, 0.003270962508395314, 0.0003736383805517107, 0.02087348699569702, -0.02904597856104374, -0.003312264569103718, -0.007506006862968206, -0.04225411266088486, 0.01617584191262722, 0.015314375050365925, -0.08646982163190842, -0.028173230588436127, 0.01278113666921854, 0.08967316895723343, -0.024859270080924034, -0.00889304094016552, -0.009176117368042469, 0.009896636940538883, -0.01254961732774973, 0.010661806911230087, 0.029442323371767998, -0.0069103483110666275, 0.043181512504816055, -0.0005557363037951291, -0.011923413723707199, -0.017342837527394295, 0.015449052676558495, -0.017644543200731277, -0.012107514776289463, -0.014895845204591751, -0.03005656786262989, -0.02703646942973137, -0.0180597435683012, -0.013876034878194332, -0.055781494826078415, 0.021004164591431618, -0.035173166543245316, 0.04220951348543167, 0.07165855914354324, 0.021871892735362053, 0.05395697057247162, 0.020755449309945107, 0.029841918498277664, 0.002503287745639682, -0.060785211622714996, 0.02210351638495922, -0.025656314566731453, 0.0188433900475502, 0.0011185315670445561, 0.008629377000033855, -5.288862059720378e-33, -0.010222576558589935, -0.035725511610507965, 0.01489201933145523, -0.03464360162615776, -0.03909687697887421, -0.03893192112445831, -0.07187026739120483, -0.04908367618918419, -0.024889783933758736, -0.0066765896044671535, -0.008180161938071251, 0.05177856609225273, -0.006488087587058544, -0.05444202572107315, 0.05854199081659317, -0.013416541740298271, 0.031051335856318474, 0.03415313735604286, -0.01804203726351261, -0.01522221788764, -0.061961714178323746, -0.016424056142568588, -0.012957744300365448, -0.016213832423090935, -0.018993588164448738, -0.03579328954219818, 0.0006499691517092288, -0.01865828037261963, -0.032036326825618744, 0.03173404186964035, -0.003934327978640795, -0.039236005395650864, 0.011496316641569138, 0.05427485704421997, -0.012441154569387436, -0.061514247208833694, 0.00534425675868988, -0.004529878497123718, -0.019509825855493546, -0.014074133709073067, 0.06381811201572418, 0.020306818187236786, 0.027464523911476135, -0.003497848054394126, 0.0022011937107890844, 0.0038229157216846943, -0.002019347157329321, 0.024994898587465286, 0.0006700181402266026, 0.03230578452348709, -0.09645424783229828, 0.05216006562113762, 0.001252452959306538, 0.04672888666391373, -0.0033558374270796776, 0.005769236478954554, 0.0743132084608078, 0.002230946673080325, -0.011409192346036434, -0.00937424786388874, 0.04350575804710388, -0.0017445830162614584, 0.018749335780739784, -0.09948845952749252, 0.016766520217061043, -0.007289998233318329, -0.07934565842151642, 0.012256436981260777, 0.0036976365372538567, 0.011398854665458202, 0.006953488569706678, -0.025898953899741173, -0.005419651512056589, 0.06795559823513031, -0.05994274467229843, 0.025520477443933487, -0.007458758540451527, 0.07047604769468307, 0.0523730143904686, 0.11561205238103867, -0.021281840279698372, 0.018816014751791954, -0.010096022859215736, 0.021283244714140892, -0.0058762868866324425, -0.044279761612415314, -0.017753351479768753, -0.021639881655573845, -0.020842526108026505, 0.02717757225036621, 0.04582406207919121, -0.03700372949242592, -0.04379133880138397, -0.006666251923888922, 0.05413161590695381, 0.006878879386931658, -0.07333728671073914, 0.0405932180583477, 0.016564777120947838, -0.0507221519947052, -0.005885077174752951, -0.017773985862731934, 0.06178376078605652, 0.02420344017446041, 0.05092049390077591, -0.030144818127155304, -0.004186162259429693, 0.002626461675390601, -0.019601961597800255, 0.016007712110877037, 0.003669353201985359, 0.00038946029962971807, -0.005126170348376036, -0.01474585197865963, -0.013677026145160198, -0.0005914451903663576, 0.007227269466966391, 0.012723156251013279, -0.05828453227877617, -0.014408531598746777, -0.03717520460486412, 0.10830023884773254, 0.017552290111780167, -0.02834268845617771, 0.018803631886839867, 0.01980164833366871, 0.0407702773809433, 0.06670989096164703, 0.06712822616100311, 0.021212900057435036, 0.022782793268561363, 0.025791509076952934, 2.9607326723635197e-07, 0.027859816327691078, 0.05872511863708496, 0.006914494093507528, -0.06221933662891388, 0.00807684101164341, -0.040186233818531036, -0.0812089741230011, -0.00504560861736536, -0.039980847388505936, 0.0474359504878521, 0.010051241144537926, -0.013640420511364937, 0.019822506234049797, 0.011984416283667088, 0.015547866933047771, -0.07844385504722595, -0.01129871141165495, -0.021099355071783066, -0.01991972140967846, -0.03334895893931389, -0.053267333656549454, -0.01529769692569971, -0.0032431785948574543, 0.024979133158922195, -0.012189183384180069, 0.04408477619290352, -0.030741257593035698, 0.008299645967781544, 0.013694793917238712, 0.04379764944314957, -0.0014731910778209567, -0.04120558127760887, 0.0015871361829340458, -0.028176913037896156, -0.03378203138709068, -0.019419953227043152, -0.07642126828432083, -0.003992835991084576, 0.03631965070962906, 0.016483789309859276, -0.0030066994950175285, 0.03009985387325287, 0.008127478882670403, -0.0095549700781703, -0.0009615884628146887, 0.033772919327020645, 0.014850201085209846, -0.023324893787503242, -0.0080910949036479, -0.037772562354803085, 0.020763063803315163, 0.05531282722949982, -0.001596397371031344, 0.026187080889940262, -0.04754289239645004, 0.002404610626399517, 0.044809695333242416, -0.050829388201236725, 0.07181993871927261, 0.002831425052136183, -0.04476192593574524, -0.02207370661199093, 0.014667180366814137, 0.0186284352093935, 0.024504585191607475, -0.026750871911644936, -0.003860253607854247, 2.877901978102002e-34, 0.04274908825755119, -0.037933167070150375, 0.016482235863804817, -0.0535542257130146, -0.003131213365122676, -0.02891802228987217, 0.008841861970722675, 0.014233640395104885, -0.05385742336511612, -0.02959810569882393, -0.012878443114459515], "176c89b9-abf7-4e55-bb1c-7af2ccf0f82b": [-0.0069234538823366165, -0.053883060812950134, -0.009461073204874992, -0.048342473804950714, -0.048106949776411057, 0.042623478919267654, -0.048281893134117126, -0.029966918751597404, -0.04230880364775658, -0.007862481288611889, 0.000907659123186022, -0.014903680421411991, 0.06341085582971573, 0.013041593134403229, -0.024214401841163635, 0.02812100388109684, 0.03163362666964531, -0.01897643692791462, 0.06169500946998596, 0.0261840783059597, -0.013107961043715477, 0.03059769794344902, 0.031760308891534805, -0.019832560792565346, 0.03572351485490799, -0.019101496785879135, -0.012791587971150875, -0.008144638501107693, 0.012770491652190685, 0.022312507033348083, -0.01719004474580288, 0.08254604786634445, -0.04003599286079407, 0.10184557735919952, 2.2332244498102227e-06, 0.004587753675878048, 0.008601503446698189, 0.04526849463582039, 0.035047609359025955, -0.06204117834568024, -0.0009059582371264696, -0.05805012583732605, -0.04287468269467354, 0.017037713900208473, 0.0272802896797657, -0.034303758293390274, 0.004679929930716753, 0.09322772920131683, 0.05140845850110054, -0.014176076278090477, 0.005333708133548498, -0.009668148122727871, -0.005405563395470381, 0.0037480751052498817, 0.07581572979688644, 0.011060643009841442, 0.019651740789413452, 0.06495317071676254, 0.015458698384463787, -0.0035665854811668396, 0.048295777291059494, 0.00028680861578322947, 0.0013494431041181087, -0.054135505110025406, 0.05972867086529732, -0.014116638340055943, -0.009795917198061943, -0.06795796751976013, 0.02853168174624443, 0.01568775437772274, 0.030403362587094307, -0.04081564396619797, 0.035062938928604126, 0.010232117958366871, -0.03780776634812355, 0.0417717769742012, -0.018838252872228622, -0.012630827724933624, 0.02028621733188629, -0.00024008563195820898, -0.08666914701461792, -0.07379622757434845, -0.016673916950821877, 0.0048447768203914165, 0.005433690268546343, -0.02451504021883011, 0.008278854191303253, -0.027652494609355927, 0.0021722300443798304, 0.017362268641591072, 0.008746941573917866, -0.07054144144058228, -0.04960191622376442, 0.006179828196763992, -0.04329650476574898, -0.03684353455901146, 0.015305832028388977, -0.06985416263341904, 0.04986049234867096, -0.022665275260806084, 8.29350101412274e-05, 0.00011138911213492975, -0.013408845290541649, 0.045808836817741394, 0.01609928160905838, 0.03980797156691551, -0.0003485772176645696, -0.013329913839697838, -0.010366616770625114, 0.019531629979610443, -0.04028359055519104, -0.0012877925764769316, 0.00533043360337615, -0.032767850905656815, -0.019750559702515602, 0.005235286429524422, 0.020253658294677734, 0.027333375066518784, 0.04375247657299042, 0.020947974175214767, 0.03907468542456627, -0.006209394428879023, -0.02626008912920952, -0.005779953673481941, -0.03129514306783676, -0.021117908880114555, 0.039180394262075424, -0.022062232717871666, 0.005522608757019043, 0.0791560560464859, -0.029025310650467873, -0.0013657233212143183, -0.003302676370367408, -0.012836217880249023, -0.03721962496638298, -0.02741922251880169, 0.03130156919360161, 0.02997627481818199, 0.014501657336950302, 0.0018465900793671608, 0.013418217189610004, -0.0006110196118243039, -0.0610429085791111, -0.012484850361943245, 0.029575973749160767, -0.047785352915525436, -0.004224975127726793, -0.0144128929823637, -0.04575672745704651, -0.0004832324630115181, 0.010420074686408043, 0.008174306713044643, -0.0747886598110199, 0.012901995331048965, 0.009992147795855999, 0.013877669349312782, -0.05230078846216202, 0.0007832672563381493, -0.04676535725593567, 0.023527853190898895, 0.003288106294348836, 0.01580771617591381, 0.027800025418400764, -0.06692484766244888, 0.005113614723086357, -0.00500792870298028, 0.09369251132011414, 0.0150771988555789, 0.0009915173286572099, 0.026106061413884163, -0.024081392213702202, 0.07224471122026443, -0.007910790853202343, -0.022080229595303535, 0.012344523333013058, 0.01967167668044567, 0.07955772429704666, 0.012206862680613995, -0.03338645398616791, 0.06024331972002983, -0.021333446726202965, -0.027450788766145706, 0.022965408861637115, 0.018542129546403885, -0.01013736892491579, -0.010813053697347641, -0.013539426028728485, 0.020495107397437096, -0.008168304339051247, -0.012906610034406185, -0.06660401076078415, -0.031013989821076393, -0.03576460853219032, -0.02954273298382759, -0.015879536047577858, 0.025977592915296555, -0.002079770667478442, -0.10408303141593933, 0.02097494527697563, 0.009253219701349735, 0.01174371037632227, -0.007566649466753006, 0.055269818753004074, 0.010828862898051739, 0.012429161928594112, 0.002468705642968416, -0.021544264629483223, -0.03602598235011101, 0.009431661106646061, -0.050961561501026154, 0.03331600874662399, -0.03857584297657013, -0.04213285073637962, -0.020809587091207504, -0.03329545259475708, 0.016031822189688683, -0.04814877733588219, -0.020348934456706047, -0.012535007670521736, -0.014186547137796879, 0.006306417752057314, -0.003400340210646391, -0.02034684829413891, 0.012802185490727425, 0.020961303263902664, 0.028048356994986534, -0.01377706415951252, -0.0033841498661786318, 0.08022300899028778, 0.03448735922574997, -0.03398419916629791, 0.027755076065659523, 0.02305932343006134, 0.05678194761276245, -0.0739249661564827, 0.047194704413414, 0.05807957053184509, 0.02432544343173504, 0.04917141795158386, -0.009384277276694775, -0.01877404749393463, -0.017861705273389816, 0.006369059905409813, -0.01458065863698721, -0.012319313362240791, -0.014425124041736126, 0.014478321187198162, 0.025322075933218002, 0.02153744548559189, -0.0003788903704844415, -0.03489937633275986, 0.026167521253228188, -0.04316474497318268, 0.02319137193262577, -0.05550391227006912, -0.018052110448479652, -0.04102552309632301, 0.02544313110411167, -0.0013390331296250224, -0.006453446578234434, 0.05310836806893349, 0.027408301830291748, -0.05383147671818733, -0.004285044502466917, 0.02658279985189438, -0.01794716715812683, -0.012394559569656849, -0.012637327425181866, -0.04736398532986641, 0.024584028869867325, 0.003601758973672986, -0.015324202366173267, -0.02137056365609169, 0.02569619007408619, 0.011102399788796902, 0.03332510590553284, 0.015815546736121178, -0.010182177647948265, -0.022585438564419746, 0.009784323163330555, 0.057141344994306564, 0.023079602047801018, -0.020014479756355286, 0.006118166726082563, -0.01030200906097889, 0.03127693384885788, 0.05055117979645729, -0.0721866637468338, -0.03743405640125275, -0.03355952724814415, -0.040054645389318466, 0.022041557356715202, 0.02485336922109127, -0.01115152332931757, 0.03125125914812088, -0.015968935564160347, 0.12636736035346985, -0.06142237037420273, 0.0016235728980973363, -0.00470433896407485, 0.03907451406121254, -0.008045128546655178, -0.01568561978638172, -0.02006417140364647, 0.05959389731287956, 0.017512233927845955, 0.04234442859888077, -0.0010485982056707144, 0.049390845000743866, -0.003576819086447358, -0.0048347096890211105, -0.027225805446505547, -0.09173145890235901, -0.026659345254302025, 0.0099288709461689, -0.006319723557680845, 0.050406478345394135, -0.10015416145324707, 0.021078895777463913, 0.045963045209646225, -0.043558087199926376, -0.031831204891204834, 0.008021820336580276, -0.03014145791530609, -0.011750023812055588, -0.0696951299905777, 0.06634475290775299, -0.03318466991186142, 0.057650644332170486, -0.028020521625876427, -0.005422230344265699, -0.018051255494356155, 0.027659939602017403, 0.02790435403585434, -0.03850175067782402, -0.004770579282194376, 0.05575985461473465, -0.04021251201629639, -0.030479207634925842, 0.027650095522403717, 0.005241475533694029, 0.06319867819547653, 0.03957127779722214, 0.02543872408568859, -0.03366021066904068, 0.0003383874718565494, -0.03816261887550354, -0.023252932354807854, 0.024600539356470108, 0.02887134626507759, 0.023587757721543312, -0.004884903784841299, 0.041398871690034866, -0.007564811035990715, 0.02355506829917431, -0.10170245915651321, 0.013701352290809155, 0.02052798867225647, -0.004945824854075909, -0.004755188710987568, 0.033117372542619705, 0.018961692228913307, 0.07595185935497284, 0.038209520280361176, -0.06388543546199799, -0.07943682372570038, -0.015586637891829014, -0.03969187289476395, -0.002580971922725439, -0.025839440524578094, -0.055070605129003525, 0.0010083604138344526, 0.046703193336725235, 0.024271158501505852, 0.01926438696682453, -0.05804271250963211, -0.015545938163995743, -0.04729849100112915, -0.0010789076332002878, -0.02751755341887474, 0.005344671662896872, -0.03029908798635006, 0.0310394037514925, -0.003921010531485081, -0.07884395867586136, 0.025348132476210594, -0.014239666983485222, 0.016156448051333427, 0.05807815492153168, -0.0013634711503982544, 0.009460394270718098, 0.021775497123599052, -0.06103793904185295, 0.016812315210700035, 0.01367606408894062, 0.014013306237757206, -0.031390830874443054, -0.011116353794932365, 0.003767596557736397, 0.007716609630733728, -0.02493797056376934, 0.07068448513746262, 0.010926884599030018, -0.036710381507873535, -0.03359593451023102, 0.03206487372517586, 0.10251587629318237, -0.0076449476182460785, 0.05006735771894455, 0.03519447147846222, 0.14231254160404205, 0.052019231021404266, 0.0009096265421248972, -0.02879270911216736, -0.011426214128732681, -0.029593925923109055, 0.044137224555015564, -0.00906815193593502, -0.04501159489154816, -0.0036167281214147806, -0.06296221911907196, -0.013668494299054146, 0.040153536945581436, -0.019530804827809334, -0.024689611047506332, -0.011690630577504635, 0.07323437929153442, -0.024412188678979874, 0.027599118649959564, -0.012938180938363075, 0.053981538861989975, 0.03701452910900116, 0.0265869852155447, 0.017919881269335747, 0.007472452707588673, 0.00366271217353642, -0.039091091603040695, 0.025691814720630646, -0.012047283351421356, -0.07402874529361725, -0.024612465873360634, 0.034956514835357666, 0.03619447350502014, 0.0198352113366127, 0.049016572535037994, 0.050220221281051636, 0.012139429338276386, 0.04679999500513077, 0.03509442135691643, 0.041537318378686905, -0.038027144968509674, -0.03403636813163757, -0.0936058908700943, 0.01759232021868229, 0.03324506804347038, 0.007232907693833113, -0.017636600881814957, 0.006046669092029333, -0.0076753064058721066, -0.019222954288125038, -0.006222248543053865, 0.01826256886124611, -0.02924923226237297, -0.005076233297586441, -0.04237066209316254, -0.05531536787748337, -0.0509912483394146, -0.06296495348215103, -0.011525990441441536, 0.0006008740747347474, 0.014512509107589722, 0.004605306778103113, -0.016538269817829132, -0.0033132126554846764, -0.06443481147289276, -0.01734825409948826, -0.05101117491722107, 0.012247738428413868, 0.012484720908105373, -0.009714479558169842, 0.006597858387976885, -0.013842853717505932, 0.015547177754342556, 0.01076835859566927, -0.02554742433130741, 0.021780703216791153, 0.0049113621935248375, 0.003824833780527115, -0.04523139446973801, -0.02792058326303959, -0.0013808297226205468, -0.07226739078760147, -0.010961731895804405, 0.08488619327545166, -0.05326540395617485, -0.037779346108436584, -0.004021321423351765, 0.043714068830013275, 0.018043799325823784, 0.054024506360292435, 0.03133828192949295, -0.02196667343378067, -0.020109975710511208, 0.014162464067339897, -0.0412885919213295, -0.031042685732245445, -0.02173149399459362, 0.01330684032291174, 0.01297338679432869, -0.006678955163806677, 0.023307450115680695, 0.03303022310137749, -0.04830428212881088, -0.05841865763068199, 0.011803485453128815, -0.04093062877655029, -0.05103415623307228, 0.06281080096960068, 0.0796966701745987, -0.00585523946210742, -0.011618933640420437, -0.024421866983175278, 0.037326108664274216, -0.03941428288817406, 0.03669428825378418, 0.007055332418531179, 0.004328845534473658, 0.026397844776511192, -0.03435376286506653, -0.024439698085188866, -0.09838339686393738, -0.049731239676475525, -0.008490842767059803, -0.024689465761184692, -0.005293696187436581, -0.04973398894071579, -0.04791474714875221, 5.375272303353995e-05, -0.03334016725420952, -0.04845611751079559, 0.024471884593367577, -0.009185783565044403, 0.022981952875852585, 0.048857804387807846, -0.012432949617505074, 0.06907755136489868, 0.014783111400902271, 0.021046580746769905, -0.015975719317793846, -0.05962025746703148, 0.022741766646504402, -0.029771413654088974, -0.007677252404391766, -0.032196078449487686, 0.0033011590130627155, -5.5306362684295675e-33, -0.008712087757885456, -0.03161130100488663, -0.001079715322703123, -0.023736821487545967, -0.012979485094547272, -0.05639773979783058, -0.059659603983163834, -0.0043652234598994255, -0.008818580769002438, -0.01700657792389393, -0.032342154532670975, 0.055058058351278305, 0.009719934314489365, -0.025878148153424263, 0.023247400298714638, 0.006633466575294733, 0.04282838851213455, 0.0002448144368827343, 0.02786117047071457, 0.014022644609212875, -0.0832393616437912, -0.02215070091187954, -0.029671309515833855, -0.005540131125599146, 0.02406216971576214, 0.002065428765490651, -0.016089022159576416, 0.022565841674804688, -0.028701746836304665, 0.049692556262016296, 0.005755015183240175, -0.044542524963617325, 0.0014756442978978157, 0.05186593532562256, -0.014523609541356564, 0.012890655547380447, 0.0036508182529360056, 0.020849566906690598, -0.027792593464255333, -0.02092396840453148, 0.027934392914175987, 0.007893159054219723, 0.005888264160603285, -0.011848345398902893, 0.01361467782407999, 0.006093015894293785, 0.019823219627141953, 0.04440303519368172, 0.006989730522036552, 0.05686673894524574, -0.07893849909305573, 0.0340036116540432, 0.0010361138265579939, 0.04425906389951706, 0.033715974539518356, -0.011579988524317741, 0.06475245952606201, 0.0014401073567569256, -0.012064093723893166, -0.0009942842880263925, 0.019661976024508476, -0.003581782802939415, 0.0011127096367999911, -0.05542735382914543, 0.02350042574107647, -0.0048734224401414394, -0.09463200718164444, 0.02919817715883255, -0.00928566511720419, 0.0324234701693058, -0.025312528014183044, 0.010029766708612442, 0.010101687163114548, 0.06678154319524765, -0.04359404742717743, 0.024436231702566147, -0.009767229668796062, 0.0712311714887619, 0.06192693114280701, 0.11157163977622986, -0.04249311983585358, 0.011371740140020847, 0.0037963157519698143, 0.01597093790769577, 0.03523366153240204, -0.06648698449134827, -0.012720893137156963, -0.025845816358923912, -0.014415931887924671, 0.006674090400338173, 0.04306389018893242, -0.020038975402712822, -0.011682803742587566, -0.006742242723703384, 0.07703616470098495, 0.006119288504123688, -0.02006473019719124, 0.05365871265530586, 0.025048119947314262, -0.032343264669179916, -0.0010397452861070633, 0.0035677559208124876, 0.0601254478096962, 0.04896413907408714, 0.04349961131811142, -0.005743819754570723, -0.00140002544503659, 0.02065785601735115, -0.022268639877438545, 0.031590767204761505, 0.009252367541193962, 0.005017272662371397, -0.023111116141080856, 0.00863184779882431, -0.021165886893868446, -0.004094122443348169, 0.02600591816008091, -0.0005408427678048611, -0.05657637491822243, -0.011367282830178738, -0.06381554901599884, 0.11890178918838501, 0.014643828384578228, -0.021694613620638847, 0.03470643237233162, -0.0016405177302658558, 0.05012797191739082, 0.020594865083694458, 0.10978259146213531, 0.0841338038444519, -0.011131652630865574, 0.01605219952762127, 2.920808697126631e-07, 0.028869593515992165, 0.020680444315075874, 0.015648532658815384, -0.06916311383247375, 0.0021367266308516264, -0.027215884998440742, -0.08384372293949127, 0.010816103778779507, -0.0015460773138329387, 0.04306371510028839, 0.027933692559599876, -0.012873389758169651, -0.0033281599171459675, 0.020207010209560394, -0.030695050954818726, -0.08772522211074829, -0.05073392391204834, -0.01248791255056858, -0.021376870572566986, -0.004559879656881094, -0.004611685406416655, -8.813814201857895e-05, 0.003793633310124278, 0.029836386442184448, -0.032565709203481674, 0.015499035827815533, 0.01194844301789999, -0.03559320792555809, 0.04081159457564354, 0.07122783362865448, -0.00916257780045271, -0.09903303533792496, -0.013517309911549091, -0.05094102770090103, -0.013348623178899288, -0.015480976551771164, -0.05956317484378815, 0.023526698350906372, 0.018830863758921623, 0.008419598452746868, -0.011934750713407993, 0.04749612882733345, 0.001085169380530715, -0.014226341620087624, -0.01275215856730938, -0.020001865923404694, -0.02953960746526718, -0.049931980669498444, 0.056794412434101105, -0.03858022019267082, 0.04515304043889046, 0.04532469063997269, 0.01778572052717209, 0.011076565831899643, 0.007658017333596945, -0.014114243909716606, 0.0033419178798794746, -0.0387374609708786, 0.005469730589538813, -0.00634965393692255, -0.053186796605587006, 0.010507349856197834, 0.0024976087734103203, -0.03319837525486946, 0.022622589021921158, -0.002326481742784381, 0.026501452550292015, 2.3193651485425707e-34, 0.015969300642609596, -0.04546903446316719, 0.028704596683382988, -0.024479050189256668, -0.0034095519222319126, -0.008410995826125145, -0.02356565371155739, -0.0013430779799818993, -0.01928737945854664, -0.014612868428230286, -0.026755433529615402], "e3729547-1eca-467b-9bb0-fe1804f9a874": [0.0035519138909876347, -0.05201967433094978, -0.04226863011717796, -0.009260640479624271, 0.0007651845808140934, 0.03222179040312767, 0.03162827715277672, 0.008126097731292248, 0.027887064963579178, -0.019140224903821945, 0.052200742065906525, 0.004424854181706905, 0.05760352686047554, 0.011508812196552753, 0.032067038118839264, -0.0374298132956028, 0.03343004360795021, 0.02120959199965, 0.02760058268904686, 0.023561106994748116, -0.01695251278579235, 0.02491292543709278, -0.017049089074134827, -0.0026201824657619, 0.053869739174842834, -0.05859776586294174, -0.008180919103324413, 0.03684760257601738, 0.0016526761464774609, -0.07330252975225449, 0.03570335730910301, 5.7628940339782275e-06, -0.006819139700382948, -0.036011721938848495, 2.252347940157051e-06, -0.04046756029129028, -0.07541889697313309, 0.019768517464399338, 0.018660105764865875, 0.040667008608579636, -0.012889936566352844, 0.021579530090093613, -0.024576738476753235, 0.04597696289420128, 0.017537003383040428, -0.035923462361097336, -0.02568201720714569, 0.11105484515428543, -0.004937583114951849, 0.041064634919166565, 0.02889435365796089, -0.08285390585660934, 0.02456432394683361, 0.008056055754423141, 0.051412440836429596, -0.0043502263724803925, -0.031870707869529724, 0.05421945080161095, -0.011061005294322968, 0.018046023324131966, 0.006457825191318989, 0.00617211451753974, -0.030100183561444283, -0.00804161000996828, 0.015847457572817802, -0.016238316893577576, 0.02318837121129036, -0.06329429894685745, 0.014177716337144375, 0.042925551533699036, 0.10496572405099869, 0.0015073093818500638, 0.04857289418578148, 0.06657199561595917, -0.049808356910943985, 0.0419355072081089, -0.035596441477537155, 0.045504260808229446, -0.01603081077337265, -0.0017896320205181837, -0.0321439765393734, -0.0598980076611042, -0.00345733854919672, -0.02537466213107109, 0.03534502163529396, 0.03464071452617645, -0.01571795716881752, -0.04559741169214249, 0.01505572535097599, -0.042064547538757324, -0.01341636385768652, -0.02126987650990486, -0.04408812150359154, -0.01352900080382824, 0.033303968608379364, -0.040138088166713715, -0.01288062334060669, 0.0187662523239851, 0.04612448066473007, 0.029932215809822083, 0.015024194493889809, 0.006776753347367048, 0.006659424863755703, -0.03157023340463638, 0.011572040617465973, 0.004800860770046711, 0.00984847079962492, -0.04011258855462074, -0.01102753821760416, 0.09604331851005554, 0.013835735619068146, -0.03265434131026268, 0.006369800306856632, -0.04003610461950302, 0.00620356434956193, -0.01680493727326393, -0.003844735911116004, 0.010918287560343742, 0.0529114231467247, 0.03113928809762001, -0.006040874402970076, -0.04370437189936638, -0.007251208648085594, 0.044542063027620316, 0.0032419287599623203, -0.06742170453071594, 0.058206766843795776, -0.012731816619634628, 0.02237490378320217, -0.0052536544390022755, -0.011662994511425495, 0.012199402786791325, -0.011662659235298634, 0.02288862317800522, -0.039331696927547455, 0.06043601781129837, 0.006331270094960928, 0.013881715945899487, 0.03362807258963585, -0.013359731994569302, 0.0419037826359272, 0.017800983041524887, 0.03323613852262497, -0.0026071302127093077, 0.00278298812918365, 0.013883096165955067, 0.025654714554548264, 0.013347307220101357, 0.022579113021492958, 0.04957130551338196, -0.04095645621418953, 0.015595612116158009, -0.025813348591327667, 0.03016059286892414, 0.017118649557232857, -0.011688689701259136, 0.014119496569037437, -0.039126183837652206, 0.015599706210196018, -0.02403782494366169, 0.07287739217281342, 0.03820439428091049, 0.020840996876358986, -0.046318914741277695, -0.03301601856946945, -0.0030746853444725275, -0.026569319888949394, 0.0030047360341995955, 0.03739224001765251, 0.04918981343507767, -0.0062716370448470116, 0.04374469071626663, -0.034741513431072235, 0.03746386617422104, -0.008742828853428364, 0.06252267956733704, 0.06809663027524948, 0.06400059908628464, -0.003376982407644391, 0.06252730637788773, 0.03765503689646721, -0.03528705611824989, -0.029168901965022087, -0.06983517855405807, -0.07686202973127365, 0.04112144559621811, -0.06046118587255478, 0.027241971343755722, 0.024120202288031578, -0.00586139177903533, -0.05422654747962952, 0.029820671305060387, 0.012472624890506268, -0.07480338960886002, -0.03186113387346268, -0.0060392580926418304, -0.05500994995236397, -0.05165717378258705, 0.00031246457365341485, -0.009157040156424046, 0.01673276722431183, 0.022707441821694374, 0.06038590148091316, 0.08756899833679199, 0.06637699902057648, -0.01970769464969635, 0.01163911446928978, -0.039450328797101974, 0.034665342420339584, 0.014861887320876122, 0.0398770347237587, 0.009024808183312416, 0.02188992127776146, -0.05349348857998848, -0.03657342121005058, -0.014432589523494244, -0.005663812626153231, -0.04818996787071228, -0.03685089573264122, -0.0005795655306428671, 0.05238978937268257, -0.012325930409133434, -0.0515349879860878, 0.06382187455892563, 0.018956070765852928, -0.013905763626098633, -0.07179460674524307, 0.008377840742468834, -0.032416075468063354, -0.007741841487586498, -0.05940929427742958, 0.021677274256944656, -0.016161268576979637, 0.01207368541508913, 0.02220517210662365, -0.018144628033041954, -0.009708459489047527, -0.0479855053126812, 0.03597887605428696, -0.10365266352891922, 0.05230926349759102, 0.06615260243415833, 0.01608417183160782, 0.014734605327248573, -0.04279296472668648, -0.021368898451328278, 0.03257027268409729, 0.019806737080216408, 0.00877730455249548, 0.041443683207035065, -0.004151659552007914, -0.002533807884901762, -0.010541585274040699, -0.0032152505591511726, -0.031018953770399094, -0.00014340841153170913, -0.0661027580499649, 0.030118752270936966, -0.0006248961435630918, 0.0012328393058851361, 0.07264219224452972, 0.016303136944770813, 0.00046942385961301625, 0.02369227260351181, 0.05546567961573601, -0.003964991774410009, 0.006766113452613354, -0.012843400239944458, 0.028235523030161858, 0.010253066197037697, -0.005615300498902798, -0.036007706075906754, -0.048372019082307816, -0.03807958588004112, 0.015696924179792404, 0.019041435793042183, -0.01767103187739849, -0.05462653934955597, -0.022915689274668694, 0.02975473180413246, -0.010113625787198544, -0.05240520462393761, -0.06192590296268463, -0.049326710402965546, -0.009518265724182129, 0.0019979423377662897, 0.03974121809005737, 0.002042511012405157, -0.06500064581632614, -0.012801277451217175, 0.01230006106197834, 0.009528905153274536, 0.0022754231467843056, -0.06838909536600113, -0.018102774396538734, 0.0010496072936803102, 0.014733990654349327, -0.0011803910601884127, 0.01119124423712492, 0.04639946296811104, 0.04220700263977051, 0.008406457491219044, -0.01723615452647209, -0.009316482581198215, 0.0052089081145823, 0.04196249321103096, 0.01580497808754444, -0.044481467455625534, 0.010635187849402428, -0.03635888919234276, 0.00716148316860199, -0.017218485474586487, -0.014016946777701378, -0.06233716756105423, 0.0002988628693856299, -0.008685857057571411, -0.03873031958937645, -0.037657834589481354, -5.157267878530547e-05, 0.06381925940513611, 0.01734250970184803, 0.016676515340805054, -0.027703961357474327, -0.02054530568420887, 0.0027497797273099422, -0.10220709443092346, 0.0453629195690155, -0.04492399841547012, -0.01114402525126934, -0.0003854046226479113, -0.013784791342914104, 0.06257673352956772, -0.03300635516643524, -0.01887660287320614, 0.012501178309321404, 0.02816525101661682, 0.01733209937810898, 0.015252160839736462, -0.006637128069996834, -0.03796352073550224, -0.012345496565103531, 0.05870884656906128, -0.008437936194241047, -0.019523046910762787, 0.039982445538043976, 0.001631839550100267, 0.00722604850307107, -0.008058587089180946, -0.04019709303975105, 0.010159621946513653, 0.07933425158262253, 0.003659404581412673, 0.0026582875289022923, -0.011641624383628368, -0.030478540807962418, -0.019061997532844543, 0.04969101771712303, -0.02978387661278248, 0.01489030010998249, -0.06728288531303406, 0.02315467596054077, 0.02376646362245083, -0.033714666962623596, 0.0314144603908062, 0.002568315714597702, -0.00836132187396288, 0.008161511272192001, -0.01877417601644993, -0.04093208536505699, 0.0308652613312006, -0.04695646092295647, -0.021331148222088814, 0.019864747300744057, 0.06713633984327316, 0.0034251424949616194, -0.002332551870495081, 0.011462366208434105, -0.0462932251393795, 0.029036030173301697, -0.019706150516867638, 0.0054217055439949036, 0.019283844158053398, 0.051325827836990356, 0.0003573543217498809, 0.05206451192498207, 0.028216542676091194, 0.05958296358585358, 0.03026881068944931, 0.07774858921766281, -0.04001936316490173, 0.03263326734304428, -0.04486718028783798, -0.04783228039741516, -0.0036474205553531647, -0.05287041887640953, 0.007844521664083004, 0.01287120021879673, 0.009562553837895393, -0.0421619638800621, 0.01045504305511713, 0.005528791807591915, -0.046160709112882614, -0.022810950875282288, -0.006505531724542379, -0.011849966831505299, 0.029974868521094322, 0.07687940448522568, 0.04448481649160385, -0.006953238509595394, 0.03800145536661148, 0.09766217321157455, -0.04583613574504852, 0.0034838104620575905, -0.018092481419444084, 0.012408243492245674, -0.027725042775273323, 0.0402328297495842, -0.019022265449166298, -0.029548009857535362, -0.0027591318357735872, -0.02932794764637947, 0.041549764573574066, 0.03626836836338043, 0.002905170898884535, -0.031811606138944626, -0.08276017010211945, 0.08289547264575958, -0.038135986775159836, 0.03238901495933533, -0.032064612954854965, 0.046442337334156036, -0.04831977188587189, -0.03124483861029148, 0.03524289280176163, 0.010786275379359722, 0.023353058844804764, -0.03696000576019287, -0.09019134193658829, -0.05858801677823067, -0.05606141313910484, -0.0259410310536623, -0.026976430788636208, 0.0709720104932785, 0.026630738750100136, -0.01251834724098444, 0.0316525436937809, 0.03606155514717102, 0.008251863531768322, -0.060469795018434525, -0.01621152088046074, -0.01869899220764637, -0.029416296631097794, -0.029367130249738693, 0.017125772312283516, -0.008402086794376373, 0.02476741559803486, -0.04935266077518463, 0.10191523283720016, -0.027012571692466736, 0.02900829166173935, -0.0034904752392321825, 0.0361940898001194, 0.00549625139683485, -0.012947751209139824, -0.03850968927145004, -0.03426492586731911, 0.004593479447066784, -0.04459475725889206, 0.017170140519738197, 0.01275769341737032, 0.05178496986627579, 0.009908734820783138, -0.021316125988960266, -0.003976344130933285, -0.006669125519692898, -0.10251675546169281, -0.043087881058454514, -0.037610605359077454, -0.03545565903186798, -0.02211584709584713, 0.016311652958393097, -0.004382417071610689, 0.020922668278217316, 0.03456776589155197, -0.0330515056848526, 0.044911064207553864, -0.048580896109342575, 0.0035276575945317745, -0.0064658550545573235, 0.0353989340364933, 0.015362161211669445, -0.007631066720932722, -0.010026398114860058, -0.004596503917127848, -0.010586475022137165, 0.03809932619333267, -0.03371794521808624, 0.03990006074309349, 0.009082777425646782, 0.07058873772621155, 0.021239420399069786, -0.044326040893793106, -0.038458939641714096, 0.02318219654262066, -0.06804941594600677, -0.0453711673617363, -0.019326280802488327, 0.04724457487463951, 0.02023799903690815, -0.016876954585313797, -0.08952741324901581, -0.007183764595538378, -0.031471312046051025, -0.0008733321446925402, 0.029507815837860107, -0.02896961197257042, -0.04923335835337639, -0.024742044508457184, 0.06818976998329163, 0.012189282104372978, 0.006783497519791126, -0.018610164523124695, 0.0734892189502716, -0.014633391983807087, 0.015809664502739906, 0.006000544410198927, 0.0479714572429657, -0.01628813147544861, -0.04072146117687225, 0.04205896705389023, 0.06342778354883194, -0.03262912854552269, -0.00036875257501378655, -0.07453213632106781, -0.03648468852043152, 0.001872671884484589, 0.04677663743495941, 0.027956584468483925, 0.013869845308363438, -0.018465008586645126, 0.011021814309060574, -0.009813159704208374, 0.02152266912162304, 0.05581287667155266, 0.042426884174346924, 0.021207017824053764, 0.013564316555857658, 0.03958049789071083, 0.015620484948158264, -0.09826154261827469, 0.004159227944910526, -0.006697002798318863, -0.024471860378980637, 0.025112664327025414, 0.003026357851922512, -5.4256374395942745e-33, -0.023221321403980255, 0.0012226734543219209, -0.01756777986884117, 0.019755443558096886, -0.06118838116526604, -0.06812568753957748, -0.04436400160193443, -0.053539980202913284, 0.003119906410574913, -0.0015180561458691955, -0.0165413711220026, -0.003921667579561472, 0.010215871967375278, -0.011689540930092335, -0.010088229551911354, -0.0464029498398304, 0.03408753499388695, 0.036267414689064026, 0.003799976548179984, -0.02744765393435955, -0.022869519889354706, -0.019366294145584106, 0.014266974292695522, 0.02013191394507885, -0.03992839157581329, -0.09247107803821564, -0.018438907340168953, -0.012063998728990555, -0.00706118019297719, 0.022511379793286324, -0.012939020991325378, -0.04626976698637009, 0.01760697364807129, 0.06585761159658432, -0.003534157993271947, 0.025097446516156197, -0.023281659930944443, -0.034477349370718, -0.0056556700728833675, 0.012407653965055943, -0.006979863625019789, -0.03630531579256058, -0.00818789005279541, -0.009478611871600151, 0.03332902491092682, -0.011374438181519508, 0.05989307910203934, -0.01885121688246727, -0.030350474640727043, -0.015362868085503578, -0.033107317984104156, 0.008660538122057915, -0.01594497263431549, 0.07685403525829315, -0.021160904318094254, 0.02173631265759468, 0.03430202230811119, -0.06850786507129669, -0.0010339831933379173, -0.038932982832193375, 0.03551402688026428, 0.024946268647909164, 0.0062516857869923115, 0.010139694437384605, 0.017101580277085304, 0.021580224856734276, -0.022702621296048164, 0.08381479978561401, 0.008070784620940685, 0.008643764071166515, 0.007827416062355042, -0.03956408426165581, -0.07658130675554276, -0.018526814877986908, -0.040757916867733, -0.014228840358555317, -0.038971658796072006, 0.06432879716157913, 0.05202150717377663, 0.08393771201372147, -0.030918531119823456, 0.02738618664443493, -0.043173354119062424, -0.03350731357932091, -0.020383374765515327, -0.01547257974743843, 0.009229270741343498, -0.01884119212627411, 0.005732923746109009, 0.0025832941755652428, 0.004408007953315973, -0.01752232201397419, -0.044922273606061935, 0.028024354949593544, 0.026618367061018944, 0.02564907819032669, -0.04075927659869194, -0.003941662143915892, -0.04281577095389366, -0.055331796407699585, -0.04468118026852608, -0.06227988749742508, 0.016309062018990517, -0.045560117810964584, 0.02919301763176918, -0.018998613581061363, -0.01044030487537384, 0.03038937598466873, -0.029948275536298752, -0.01752621680498123, 0.030187536031007767, -0.04310760274529457, 0.03375077620148659, -0.01759173534810543, -0.026353152468800545, -0.030139144510030746, -0.009186367504298687, 0.012917578220367432, -0.0309021957218647, -0.021222474053502083, 0.01810525171458721, 0.031255580484867096, 0.048360392451286316, -0.017009060829877853, -0.008993115276098251, 0.011930711567401886, 0.004527796991169453, 0.034570563584566116, 0.05858142673969269, -0.0004762914904858917, -0.025934439152479172, 0.008319860324263573, 2.8949122565791185e-07, 0.02273400127887726, 0.0490521639585495, 0.06028835475444794, 0.012878116220235825, -0.009449275210499763, -0.026541629806160927, 0.02379857935011387, 0.036302946507930756, -0.04268377646803856, 0.0486038401722908, 0.020172839984297752, 0.015149719081819057, 0.005778323393315077, -0.007660024333745241, -0.007518871687352657, -0.021063556894659996, 0.0010121457744389772, -0.004097238648682833, -0.029679717496037483, -0.032240454107522964, 0.06198583170771599, -0.02626185677945614, 0.037252750247716904, 0.029553601518273354, -0.022950686514377594, 0.0545993372797966, -0.0334053672850132, -0.05790144205093384, 0.01398354023694992, 0.041084811091423035, 0.09160518646240234, 0.010800357908010483, -0.013349298387765884, -0.025247938930988312, 0.007712455466389656, -0.014232493937015533, 0.026720959693193436, 0.04893146827816963, 0.06636293977499008, 0.04394342377781868, 0.029401741921901703, 0.0012982620391994715, -0.021534474566578865, -0.05141662061214447, 0.0473475307226181, 0.10962375998497009, 0.02179444581270218, 0.030279291793704033, -0.05485013872385025, -0.030499238520860672, 0.01094849407672882, -0.0036198918242007494, 0.014445682056248188, 0.015527772717177868, -0.03836757689714432, -0.07555380463600159, 0.033690858632326126, -0.014625784009695053, 0.00213508284650743, 0.0579681470990181, -0.04280902072787285, 0.018388984724879265, 0.017533693462610245, 0.05999245494604111, 0.04058433324098587, -0.04431578144431114, -0.029927661642432213, 3.579180556049722e-34, 0.007421914953738451, -0.10152573138475418, -0.0014932714402675629, -0.01536740642040968, 0.002931968541815877, -0.019581105560064316, 0.01171194575726986, 0.008419324643909931, -0.023418812081217766, -0.06817043572664261, -0.033117979764938354], "b33cd473-ff1c-4fd5-9e29-3957daf45389": [0.007114476524293423, -0.056043338030576706, -0.012512565590441227, -0.047868289053440094, 0.02065700851380825, 0.05439898744225502, -0.021097611635923386, 0.050626304000616074, -0.0021248061675578356, -0.027212433516979218, 0.012364400550723076, 0.030698135495185852, 0.015109029598534107, -0.007641362491995096, 0.04347426816821098, 0.0063286288641393185, -0.02176152914762497, 0.005956847220659256, 0.02193303406238556, -0.000642558210529387, 0.03225521370768547, 0.03590182214975357, 0.020594025030732155, -0.0020784714724868536, 0.0029607899487018585, -0.05806496739387512, 0.0021075494587421417, 0.013256415724754333, -0.02773311920464039, -0.03914041817188263, 0.03179282695055008, 0.03554129600524902, 0.003728830721229315, -0.039147138595581055, 2.1213304535194766e-06, -0.014734895899891853, -0.033872611820697784, 0.05020461231470108, 0.030330626294016838, -1.4804781130806077e-05, -0.00728677399456501, -0.031114695593714714, -0.031104374676942825, 0.02428864687681198, 0.00952719897031784, -0.0820431113243103, -0.05001652240753174, 0.11377478390932083, 0.0059519438073039055, 0.008439986035227776, 0.03643922135233879, -0.028672324493527412, 0.009249605238437653, 0.014649681746959686, 0.057364676147699356, 0.011133035644888878, -0.03981085866689682, 0.15036717057228088, 0.013184870593249798, 0.017293542623519897, 0.017909912392497063, 0.023779895156621933, -0.024033041670918465, -0.043231334537267685, 0.005342929624021053, -0.03739076107740402, 0.020443281158804893, -0.012090027332305908, 0.01573875918984413, 0.025981053709983826, 0.10268646478652954, -0.01904628425836563, 0.026360226795077324, 0.04389744624495506, -0.020828839391469955, 0.08529528975486755, -0.04325326159596443, 0.05674169212579727, 0.008041429333388805, -0.004354527220129967, -0.1032271608710289, -0.07824385911226273, -0.01236909069120884, 0.0030676727183163166, 0.0557568334043026, 0.031938184052705765, -0.006627969443798065, -0.02897942066192627, 0.0034150120336562395, -0.03264756500720978, -0.037408892065286636, -0.044207800179719925, -0.040502484887838364, -0.0019789421930909157, 0.0678640604019165, -0.041665270924568176, -0.024021869525313377, -0.010397238656878471, 0.04061538726091385, 0.07453848421573639, 0.013309016823768616, 0.005746175069361925, -0.012730610556900501, -0.00599498488008976, 0.013120447285473347, 0.016665177419781685, 0.007143233437091112, -0.05149998515844345, 0.025629762560129166, 0.0491531603038311, -0.017621442675590515, -0.0018512572860345244, 0.01043262705206871, -0.02054273709654808, -0.025998638942837715, -0.007900972850620747, 0.02846701815724373, 0.03869878500699997, 0.053054288029670715, 0.05728946998715401, 0.045199137181043625, -0.03110729157924652, -0.03505922108888626, -0.0007141547976061702, 0.01789301261305809, -0.05798850208520889, 0.06340119987726212, -0.020371248945593834, 0.00028089137049391866, 0.04399435594677925, -0.004020996391773224, 0.02439061552286148, 0.008668902330100536, -0.003078828100115061, -0.055574893951416016, 0.03903108090162277, 0.03623182699084282, 0.028960715979337692, 0.033057063817977905, -0.007000421639531851, 0.04982531815767288, 0.018520968034863472, -0.0030827296432107687, 0.011277783662080765, -0.04799243435263634, 0.0007753968238830566, 0.025736285373568535, -0.039696067571640015, -0.015209795907139778, -0.0007863460341468453, -0.03254304081201553, 0.003750003408640623, -0.05728454142808914, -0.023668786510825157, 0.008462334051728249, -0.022897372022271156, -0.019427884370088577, -0.016378046944737434, 0.004735538735985756, -0.013951514847576618, 0.032548293471336365, 0.0010191978653892875, 0.028695695102214813, -0.011544715613126755, -0.0005653141997754574, 0.04040880501270294, 0.01583305187523365, -0.00029226404149085283, 0.07150023430585861, 0.05481689050793648, 0.04533342272043228, 0.03291581571102142, -0.03959723562002182, 0.028087282553315163, 0.014099564403295517, 0.03638235107064247, 0.10015664249658585, -0.026296988129615784, 0.02199544943869114, 0.04647008702158928, 0.017093468457460403, -0.03451414406299591, 0.003009471110999584, -0.07734829932451248, -0.07223718613386154, 0.03821566700935364, -0.05888509005308151, 0.01822534389793873, 0.010616394691169262, 0.022935617715120316, -0.07862211018800735, 0.004683909472078085, -0.0129353366792202, -0.06353998184204102, -0.02296954020857811, 0.01638081669807434, -0.0006265373667702079, -0.06518441438674927, 0.03997822850942612, 0.0497424341738224, 0.02276531606912613, 0.0021000357810407877, 0.04753698781132698, 0.02400040067732334, 0.07948406040668488, -0.012372243218123913, 0.011107009835541248, -0.04379025846719742, 0.0598294660449028, 0.02765541896224022, -0.002494854386895895, -0.012455066666007042, -0.019235705956816673, -0.053476616740226746, -0.02730911783874035, -0.05005930736660957, -0.018809601664543152, -0.038453612476587296, -0.022733209654688835, 0.009380560368299484, 0.016779499128460884, -0.02650688961148262, -0.06562680751085281, 0.06474103778600693, -0.005329695530235767, -0.01756497472524643, -0.023883657529950142, -0.04450671374797821, 0.0010847349185496569, -0.023458542302250862, -0.09480760991573334, 0.04410988837480545, 0.0007623169221915305, 0.024615522474050522, -0.01582116261124611, 0.025840403512120247, 0.06503665447235107, -0.07536056637763977, 0.047180451452732086, -0.049023497849702835, -0.01208503544330597, 0.021770233288407326, 0.012762493453919888, 0.026897335425019264, -0.00805592443794012, -0.0361751988530159, 0.03495726361870766, 0.012417945079505444, 0.007768654730170965, 0.05607079714536667, 0.016234837472438812, -0.020248690620064735, -0.01931200735270977, -0.02620646171271801, -0.07811252772808075, 0.020173275843262672, -0.0048687392845749855, 0.012338142842054367, 0.0033428017050027847, 0.004785073455423117, 0.03677049279212952, 0.031967002898454666, -0.02546333335340023, 0.01479003019630909, 0.058091964572668076, 0.0007498841150663793, 0.015760179609060287, 0.020237207412719727, 0.025878317654132843, 0.004704065155237913, 0.007922789081931114, -0.016877060756087303, -0.05096200853586197, -0.0037755786906927824, -0.00792053621262312, 0.01774144358932972, -0.028241805732250214, -0.04567519575357437, 0.0027653141878545284, -0.0036484617739915848, -0.026497211307287216, -0.0009175239829346538, -0.027129152789711952, -0.038246821612119675, 0.005475491285324097, -0.0018303978722542524, -0.006697724107652903, 0.06463781744241714, -0.07959926128387451, -0.07932639122009277, 0.0058824848383665085, 0.006141512654721737, -0.0027002000715583563, -0.040981780737638474, 0.0038354983553290367, 0.0009088426013477147, 0.055457424372434616, -0.03178729861974716, 0.015409465879201889, 0.02928057126700878, 0.02113715000450611, 0.010416463948786259, -0.03253733739256859, -0.016782674938440323, 0.00013192329788580537, 0.01614539325237274, 0.04085259884595871, -0.04422163963317871, 0.002026815665885806, -0.055296964943408966, 0.007969989441335201, 0.003196896519511938, -0.053951196372509, -0.032558489590883255, 0.013633624650537968, -0.04766803979873657, 0.02623276226222515, -0.0263826847076416, 0.02742352895438671, 0.047356802970170975, 0.052373338490724564, 0.004399217665195465, -0.037397872656583786, -0.03081458806991577, -0.020480096340179443, -0.049780141562223434, 0.05056179687380791, -0.007268382702022791, -0.0347653292119503, 0.035619303584098816, -0.02549363113939762, 0.0003930897219106555, -0.004752304404973984, 0.007401732727885246, -0.00671673659235239, 0.025559352710843086, 0.037184376269578934, -0.012945196591317654, -0.009294630959630013, -0.01223473809659481, 0.0021349687594920397, 0.04584083706140518, 0.046921681612730026, 0.010370527394115925, 0.03162901848554611, 0.00833879504352808, -0.01921791583299637, -0.03192949667572975, 0.01480215322226286, 0.036518558859825134, 0.06286872178316116, -0.0009674082975834608, 0.006798130925744772, -0.03260992467403412, -0.02239242196083069, -0.013817071914672852, 0.03090846911072731, -0.04728283733129501, 0.021567530930042267, -0.0205159280449152, 0.015620911493897438, 0.03490174934267998, -0.012829845771193504, 0.00245131878182292, -0.02380451187491417, 0.00725256884470582, -0.01308393757790327, 0.02663685567677021, -0.011470458470284939, 0.02142617106437683, -0.0075631532818078995, 0.01557515561580658, 0.01371731236577034, 0.06725823134183884, -0.003999258857220411, -0.017448417842388153, 0.014546138234436512, -0.05252508819103241, 0.06731986999511719, -0.022347863763570786, -0.0004005492082796991, 0.012092351913452148, 0.029508082196116447, 0.03081539273262024, 0.03504284471273422, 0.02936125546693802, 0.030854644253849983, 0.06200408190488815, 0.09274512529373169, -0.02520398609340191, 0.0013250494375824928, -0.016527973115444183, -0.0788792297244072, 0.026021767407655716, -0.033282116055488586, 0.05140805244445801, 0.022991055622696877, -0.0034035227727144957, -0.01551970187574625, 0.01771632768213749, -0.0014645258197560906, -0.07918071001768112, -0.05384109914302826, 0.00692602526396513, -0.003322267672047019, 0.06348865479230881, 0.0748320072889328, -0.0011993373045697808, 0.03425176814198494, 0.031982697546482086, 0.09262678027153015, -0.008728890679776669, 0.0052504586055874825, -0.043902650475502014, 0.008782337419688702, -0.019154347479343414, 0.0015189581317827106, -0.0029006204567849636, -0.012185911647975445, -0.019131360575556755, -0.008820918388664722, 0.008228767663240433, 0.025875303894281387, -0.022188646718859673, -0.011799292638897896, -0.07277143746614456, 0.04390546679496765, -0.01057716365903616, 0.012860646471381187, 0.006657250225543976, 0.021800393238663673, -9.880696597974747e-05, -0.033549413084983826, 0.02376585640013218, 0.02261284925043583, -0.017732486128807068, -0.030620034784078598, -0.09000114351511002, -0.07543710619211197, -0.06901071965694427, -0.04331958293914795, 0.0017600436694920063, 0.05764080956578255, -0.008444126695394516, -0.009359084069728851, -0.01775328256189823, 0.018391964957118034, 0.006316097918897867, -0.002577245468273759, -0.02448147162795067, -0.025613566860556602, -0.043183907866477966, -0.08342580497264862, 0.046606648713350296, -0.05517033115029335, 0.028046002611517906, -0.04616529494524002, 0.06464303284883499, -0.014713113196194172, 0.018204111605882645, -0.008682227693498135, 0.0277565848082304, 0.02153024449944496, -0.016518818214535713, -0.06385190039873123, -0.04691925272345543, -0.027902672067284584, -0.06222624331712723, 0.03780190646648407, 0.011554711498320103, 0.04946795105934143, 0.011004500091075897, 0.0020492433104664087, -0.007521739695221186, 0.018551677465438843, -0.015280218794941902, -0.06998471170663834, -0.026634521782398224, 0.05481114611029625, -0.009588542394340038, 0.0183657668530941, -0.014507598243653774, 0.037318918853998184, 0.012789533473551273, 0.0068343570455908775, 0.010070915333926678, -0.05430587753653526, -0.02163682132959366, -0.04175952449440956, 0.027458196505904198, 0.03346644341945648, -0.011379782110452652, -0.01562889665365219, 0.05262693390250206, -0.00718360161408782, 0.02828473225235939, -0.0412919744849205, 0.01031520962715149, 0.02826164849102497, 0.07134085148572922, 0.055426474660634995, -0.059895552694797516, -0.03662586957216263, 0.013214174658060074, -0.06332731992006302, -0.04075267165899277, -0.0059333727695047855, 0.028803005814552307, 0.029441922903060913, -0.008898133412003517, -0.020381439477205276, -0.0038454257883131504, -0.038540180772542953, 0.002056955825537443, 0.03526823967695236, -0.05994437262415886, -0.05320443958044052, -0.007939622737467289, 0.0893055722117424, 0.008451354689896107, -0.008383997716009617, -0.029209179803729057, 0.036184534430503845, 0.016354285180568695, 0.022304639220237732, 0.008505591191351414, 0.014339067041873932, 0.0016033941647037864, -0.03023350052535534, 0.03649241104722023, 0.08915098756551743, 0.009204715490341187, -0.011624736711382866, -0.07839421182870865, -0.01694885641336441, -0.012558105401694775, 0.059971388429403305, 0.008748441003262997, 0.006413932889699936, -0.012102894484996796, 0.007750545162707567, -0.029145851731300354, 0.008608696982264519, 0.03901029750704765, -0.03240380436182022, 0.015305530279874802, -0.002612791955471039, -0.0009133383282460272, 0.010751920752227306, -0.05022578313946724, -0.01996839977800846, 0.040373705327510834, 0.012187221087515354, 0.014423146843910217, 0.0182013101875782, -5.3114208983386115e-33, -0.02637447416782379, -0.017764363437891006, -0.004558084532618523, 0.0077534886077046394, -0.022800514474511147, -0.03767913952469826, -0.03192781284451485, -0.061481405049562454, -0.0029724868945777416, 0.026924705132842064, -0.028086289763450623, -0.023003023117780685, -0.007016877178102732, -0.014595222659409046, 0.04698439687490463, -0.015311392955482006, -0.0014618299901485443, -0.005442905239760876, 0.012686938978731632, 0.009199517779052258, -0.019414255395531654, -0.024522198364138603, 0.020067809149622917, 0.012785589322447777, -0.03967653587460518, -0.024425527080893517, -0.009021899662911892, -0.031064892187714577, -0.009374509565532207, 0.037685927003622055, -0.028495309874415398, -0.05823580548167229, 0.009830141440033913, 0.07395113259553909, -0.02370251715183258, -0.031734541058540344, 0.0023237208370119333, -0.02948262169957161, -0.029674015939235687, 0.01797299087047577, 0.015615671873092651, 0.015590876340866089, 0.02847691811621189, -0.017113614827394485, -0.00024015497183427215, -0.009260661900043488, 0.008764298632740974, 0.015677062794566154, -0.06083429232239723, -0.03041117452085018, -0.013353046961128712, 0.03520292043685913, -0.009506491012871265, 0.057985272258520126, 0.0018960960442200303, -0.04331231862306595, 0.05441810563206673, -0.0027852701023221016, -0.019165106117725372, -0.05777517333626747, 0.0015416679671034217, 0.015964092686772346, -0.0223209448158741, -0.02310565486550331, 0.018132144585251808, -0.005109977442771196, -0.09639772027730942, 0.07960730791091919, -0.013169622048735619, 0.031001174822449684, 0.027595924213528633, -0.06002814695239067, -0.04180220142006874, 0.027299437671899796, -0.04507378116250038, 0.05340716987848282, 0.000819241744466126, 0.051167044788599014, 0.06547041982412338, 0.12545600533485413, -0.030409717932343483, 0.03593118116259575, -0.020416775718331337, -0.004607712849974632, -0.02914857305586338, -0.010043683461844921, -0.0007946877740323544, -0.006889570504426956, -0.020354464650154114, -0.015858512371778488, -0.013396311551332474, -0.006370390299707651, -0.05740661919116974, 0.04102567583322525, -0.005272600334137678, 0.010324525646865368, -0.06391151994466782, 0.021614106371998787, -0.02060380019247532, -0.033609744161367416, -0.021621478721499443, -0.03045066073536873, 0.020667465403676033, -0.044346440583467484, 0.01959020085632801, -0.0019806819036602974, 0.02407963015139103, 0.04196666181087494, -0.034366339445114136, -0.018477939069271088, 0.02032509259879589, 0.007504656445235014, 0.036561813205480576, -0.04560995101928711, -0.025365186855196953, -0.06129316985607147, -0.026759736239910126, -0.0038841457571834326, -0.025111937895417213, -0.03927387297153473, 0.04278065264225006, 0.03553186357021332, 0.06676381081342697, -0.05526312440633774, -0.02843853458762169, -0.004003838170319796, -0.02030564844608307, 0.04265008866786957, 0.1020989641547203, 0.042765937745571136, -0.0028681575786322355, -0.0054567488841712475, 2.779646024464455e-07, 0.052526701241731644, 0.0421799011528492, 0.032406631857156754, -0.04114650562405586, 0.05130386725068092, -0.027414197102189064, -0.028087882325053215, 0.036434829235076904, -0.03321544826030731, -0.005305756814777851, 0.0005054387147538364, -0.009357812814414501, 0.021432524546980858, -0.020242910832166672, 0.015519834123551846, -0.03630949184298515, -0.0023190928623080254, -0.00017292726261075586, -0.011987061239778996, -0.03668077662587166, -0.03934846073389053, -0.03472434729337692, 0.025486215949058533, 0.03559674695134163, 0.007888078689575195, 0.07247856259346008, -0.009774960577487946, -0.031819943338632584, 0.04799313843250275, 0.018774811178445816, 0.05352817475795746, -0.028736380860209465, -0.036217812448740005, -0.022948075085878372, -0.023968825116753578, -0.03670782968401909, -0.008302990347146988, 0.02804420329630375, 0.013816257007420063, 0.08201045542955399, 0.007869748398661613, -0.006115947384387255, -0.00488989008590579, -0.01909152790904045, 0.03753095492720604, 0.08826436847448349, -0.023215729743242264, -0.04148130863904953, -0.03594445437192917, -0.038233838975429535, 0.012568756006658077, -0.009208500385284424, -0.0063762059435248375, 0.020642487332224846, -0.04550176113843918, -0.024503441527485847, 0.02908119186758995, -0.05363854765892029, 0.05613775923848152, -0.04284825548529625, -0.06755836308002472, 0.029263509437441826, -0.013774518854916096, 0.07681292295455933, 0.027773112058639526, -0.03219548240303993, -0.022125741466879845, 3.370997062687989e-34, 0.025027018040418625, -0.0680631473660469, 0.006022842600941658, 0.02038465440273285, 0.047851864248514175, -0.03672872483730316, 0.051556359976530075, 0.01743554137647152, -0.014452616684138775, -0.11139874905347824, -0.04583388939499855], "142c2d96-ae16-4cf2-9256-dd7251e34c94": [0.04028325527906418, 0.05833185464143753, -0.05384863540530205, 0.018427660688757896, 0.0012392452917993069, 0.0475134514272213, 0.012519700452685356, 0.05177273973822594, -0.038020744919776917, -0.0019351420924067497, 0.001577228307723999, 0.042685557156801224, 0.00869123637676239, -0.012949643656611443, -0.035529449582099915, 0.02808539755642414, 0.03778768703341484, 0.05965091288089752, -0.006144995801150799, -0.02013627253472805, -0.06763944774866104, 0.011364909820258617, 0.026379909366369247, -0.003921085968613625, 0.04378907382488251, 0.029681263491511345, 0.02885311283171177, 0.0006047200295142829, -0.017049768939614296, -0.011850446462631226, -0.013340589590370655, 0.05214637145400047, -0.0567031167447567, -0.012765904888510704, 2.0955167201464064e-06, 0.020026572048664093, -0.051601625978946686, -0.02608341909945011, -0.01233209203928709, 0.004648820497095585, 0.01210905984044075, 0.03784146532416344, -0.0646224319934845, -0.018174367025494576, -0.0182800255715847, -0.0036953615490347147, -0.0641806498169899, 0.07623529434204102, -0.06644478440284729, 0.03896690160036087, 0.062055930495262146, -0.024614565074443817, 0.0025691573973745108, -0.021816207095980644, 0.16724176704883575, 0.012249798513948917, -0.029956890270113945, 0.04463101178407669, 0.008206097409129143, -0.01767786219716072, -0.007794801611453295, 0.09171443432569504, -0.05996136739850044, -0.014342719689011574, 0.07222560793161392, 0.01856767013669014, 0.05399607494473457, -0.057439353317022324, 0.08262192457914352, 0.01232982985675335, 0.07404506206512451, -0.020779652521014214, 0.060258250683546066, 0.04495975747704506, -0.07282733917236328, 0.05142848938703537, -0.010860170237720013, 0.04202848672866821, -0.013627552427351475, -0.0008478377130813897, -0.041470423340797424, -0.0021072898525744677, -0.0042007057927548885, -0.002803245559334755, 0.05158311873674393, -0.03288847953081131, -0.06690377742052078, -0.05027010664343834, 0.029184754937887192, -0.02191339246928692, 0.04066571593284607, -0.02967371605336666, 0.0010450772242620587, 0.016801245510578156, 0.04859026148915291, -0.04074583202600479, 0.02822224795818329, -0.07457336783409119, 0.07199061661958694, 0.0035789774265140295, -0.05123288556933403, -0.0571482814848423, -0.00912753026932478, 0.015016678720712662, -0.01589578203856945, 0.02856060490012169, 0.006149538792669773, -0.017158199101686478, 0.006363186053931713, 0.07118351012468338, -0.03027760423719883, 0.006380668841302395, -0.003838771488517523, -0.03105434775352478, 0.019376076757907867, 0.013864205218851566, 0.04844106733798981, 0.0027538922149688005, -0.012418393976986408, 0.06837901473045349, 0.0413992665708065, -0.002238285029307008, -0.02636794000864029, 0.05471266061067581, 0.0024418234825134277, -0.0552845261991024, 0.019040770828723907, -0.025602959096431732, -0.03100527450442314, 0.03233146294951439, -0.010827387683093548, 0.02037082239985466, 0.024430014193058014, 0.007041941396892071, 0.011638347990810871, 0.04986870661377907, 0.026442594826221466, -0.03972188010811806, 0.030485674738883972, -0.05660064518451691, 0.017758360132575035, -0.011072886176407337, -0.010251801460981369, -0.004455961287021637, 0.025896333158016205, -0.0007347324280999601, 0.02748914062976837, -0.05587469041347504, 0.015647757798433304, 0.026400672271847725, -0.07901149988174438, 0.03751875087618828, -0.02071729488670826, 0.03223792091012001, 0.032898228615522385, 0.02046847902238369, -0.009116155095398426, -0.04270923510193825, 0.03570205718278885, 0.0010039256885647774, 0.004323519300669432, 0.06718036532402039, -0.01686808094382286, -0.060100410133600235, 0.007941876538097858, 0.0031529974658042192, 0.0911598950624466, 0.011090817861258984, 0.03360850736498833, 0.056712571531534195, 0.01920372247695923, -0.03233768418431282, 0.0019377019489184022, 0.04865767061710358, 0.008681660518050194, 0.05298978090286255, 0.025256792083382607, 0.05820789188146591, -0.03876505047082901, 0.0016743693267926574, 0.012789198197424412, -0.04941634088754654, -0.0177316777408123, -0.017882024869322777, -0.005027208011597395, -0.045308127999305725, -0.040733128786087036, -0.015736421570181847, 0.026795193552970886, 0.00016547070117667317, -0.013398373499512672, -0.00026757901650853455, 0.029239047318696976, -0.036438778042793274, 0.007419699337333441, 0.012182062491774559, -0.03450741991400719, -0.11086586862802505, -0.032124873250722885, -0.05608608201146126, 0.0844716802239418, 0.02671634964644909, 0.07908293604850769, -0.004894398618489504, 0.04924430325627327, -0.04772637411952019, 0.01718028448522091, -0.02097153849899769, 0.020550591871142387, -0.035182200372219086, -0.005020100623369217, 0.005287534557282925, -0.05122533068060875, 0.027043407782912254, -0.0608898289501667, 0.04317571595311165, -0.020088065415620804, 0.003646849188953638, 0.015854328870773315, -0.009787474758923054, 0.036633431911468506, -0.04309508949518204, -0.006488905753940344, 0.028269782662391663, 0.025040490552783012, 0.011336230672895908, -0.03466711565852165, -0.020402930676937103, 0.05360829830169678, 0.010594955645501614, -0.012372450903058052, 0.010955937206745148, 0.03747130185365677, 0.00036722433287650347, -0.04583122953772545, -0.008932686410844326, 0.05084250494837761, -0.034608639776706696, -0.03619913384318352, -0.09544888883829117, 0.0026922046672552824, 0.015112743712961674, 0.03727127984166145, 0.009894585236907005, 0.029456520453095436, 0.007038351148366928, -0.06504739075899124, 0.036657631397247314, 0.008346477523446083, 0.01797831803560257, -0.010303006507456303, -0.007267559878528118, 0.08658342063426971, -0.0018816745141521096, -0.0024153869599103928, 0.03160194307565689, -0.08245866745710373, -0.010336972773075104, -0.056328028440475464, 0.048711784183979034, 0.007546298671513796, 0.003090890822932124, -0.02398829162120819, 0.027685213834047318, 0.016878226771950722, 0.00999457947909832, -0.01763634942471981, -0.03156952187418938, -0.0028563402593135834, 0.006093223113566637, -0.009905646555125713, -0.028108950704336166, -0.0008108316687867045, -0.01640527881681919, 0.025306787341833115, -0.015256349928677082, -0.06462138146162033, 0.006273901090025902, -0.038479577749967575, 0.003591925837099552, 0.009471429511904716, 0.019501319155097008, -0.047000039368867874, 0.016692915931344032, -0.029490720480680466, -0.015828153118491173, 0.04102092608809471, -0.07316207885742188, 0.04501255229115486, -0.06118738278746605, -0.014062773436307907, 0.030186180025339127, 0.03588628023862839, -0.02034144289791584, -0.0189265888184309, 0.026763800531625748, -0.0367705412209034, 0.006510062143206596, 0.020311182364821434, 0.07972300797700882, 0.02044513449072838, -0.017950667068362236, 0.003447117516770959, 0.02452348917722702, -0.0030198581516742706, 0.012506998144090176, 0.047232527285814285, -0.035352662205696106, 0.009843232110142708, -0.07660281658172607, 0.058696724474430084, 0.030206263065338135, -0.04048449546098709, -0.05568908154964447, -0.012849943712353706, -0.0020758684258908033, 0.01067090779542923, -0.025142604485154152, 0.017458491027355194, 0.03503895923495293, 0.01766645349562168, 0.044355109333992004, -0.056349411606788635, 0.013664358295500278, 0.01657424308359623, -0.0033567571081221104, 0.0296246949583292, -0.014586734585464, 0.011316708289086819, 0.05015740543603897, 0.03042127750813961, 0.0034451778046786785, 0.008252286352217197, -0.030351320281624794, 0.08080261200666428, 0.02092936635017395, -0.01190781220793724, 0.026266390457749367, 0.03306996077299118, -0.023216180503368378, 0.004671529401093721, 0.07426924258470535, 0.026400262489914894, -0.06314568221569061, 0.005839964374899864, 0.01340027991682291, 0.007630371022969484, -0.0044045220129191875, -0.05504567548632622, -0.02186446636915207, 0.04645026475191116, -0.007116052322089672, 0.027786681428551674, -0.03525929898023605, -0.046971164643764496, 0.007812714204192162, -0.0183393694460392, -0.03828107938170433, -0.0307902954518795, -0.04224999621510506, -0.019112400710582733, 0.034373484551906586, 0.022988785058259964, 0.024542951956391335, 0.034789055585861206, 0.05242495983839035, -0.04241003468632698, -0.027282310649752617, -0.01511031948029995, -0.023361612111330032, -0.09460635483264923, 0.007548693101853132, 0.031011082231998444, 0.061542704701423645, 0.01752944104373455, -0.01648237183690071, 0.019798165187239647, 0.004251258447766304, -0.020652156323194504, -0.029001062735915184, 0.007633230183273554, -0.014893092215061188, 0.03867316618561745, -0.01137024536728859, 0.014787569642066956, -0.032186109572649, -0.01420341432094574, -0.01196270901709795, 0.0750206708908081, -0.020656732842326164, -0.0017778178444132209, -0.026836523786187172, -0.02097826451063156, -0.04181346297264099, -0.031179189682006836, -0.04751322418451309, -0.05750827118754387, 0.024635259062051773, 0.00881949719041586, 0.013712778687477112, -0.015478064306080341, 0.03632088005542755, 0.016089024022221565, 0.06808727234601974, -0.011094235815107822, 0.014631879515945911, 0.07762056589126587, 0.05371696129441261, 0.017272599041461945, 0.08624663949012756, 0.02446199767291546, -0.007338513620197773, 0.011889494955539703, 0.006656188052147627, 0.11625159531831741, -0.08218096941709518, 0.03626739978790283, -0.01346338726580143, -0.06932776421308517, -0.03041088953614235, -0.030402962118387222, 0.020904066041111946, 0.04005670174956322, -0.000247065385337919, 0.03352228179574013, -0.012167544104158878, 0.04886439070105553, -0.05922732502222061, 0.00624981289729476, -0.008661167696118355, 0.030490275472402573, 0.0240701325237751, 0.02352225035429001, 0.01245817355811596, 0.05683046206831932, 0.01638760231435299, -0.002929863752797246, -0.06287992000579834, -0.004133680369704962, -0.04856262356042862, -0.034422386437654495, -0.0128398472443223, 0.008186882361769676, -0.0027231837157160044, 0.05319593474268913, 0.005942071322351694, 0.0015128373634070158, 0.011022948659956455, -0.021288705989718437, -0.05521812289953232, -0.025511223822832108, -0.016207808628678322, -0.06195442005991936, -0.002233108738437295, -0.03971531614661217, 0.04240943118929863, 0.002666672458872199, 0.01889042928814888, -0.0019065605010837317, -0.027179110795259476, -0.05679010599851608, 0.046317923814058304, -0.024408314377069473, -0.028088705614209175, -0.026821255683898926, -0.033093564212322235, -0.02576998993754387, -0.04578107222914696, 0.025413691997528076, -0.026154717430472374, -0.013026493601500988, -0.00045799033250659704, 0.021249590441584587, -0.028535770252346992, 0.00917785707861185, -0.06357810646295547, -0.05111841484904289, -0.020590201020240784, 0.006232777610421181, -0.04745868965983391, 0.026636196300387383, 0.037755586206912994, 0.013768642209470272, -0.01895737461745739, -0.004969997797161341, 0.02599259838461876, -0.031887318938970566, -0.0014279714087024331, 0.022798195481300354, -0.010671521537005901, 0.012639660388231277, 0.010091862641274929, -0.01360312756150961, -0.015390574000775814, -0.0030434713698923588, 0.039242442697286606, -0.05560005456209183, 0.0016504265367984772, 0.035967230796813965, -0.021620726212859154, 0.023573216050863266, -0.04624885320663452, -0.015169169753789902, 0.026439907029271126, -0.01994522660970688, -0.05921511352062225, -0.0017471633618697524, -0.03225811570882797, 0.010011866688728333, -0.009976093657314777, -0.05862914025783539, -0.0103633226826787, -0.11147329956293106, -0.013163816183805466, 0.036033857613801956, -0.03399912267923355, -0.018984761089086533, -0.01334703341126442, 0.04063303768634796, 0.006997460499405861, 0.02916952408850193, 0.021091822534799576, 0.03232455253601074, 0.0022049478720873594, 0.011855128221213818, 0.014190379530191422, 0.012894951738417149, 0.02877957373857498, 0.028553424403071404, 0.06701342761516571, 0.004525735508650541, -0.02382584474980831, -0.006324402522295713, -0.008188754320144653, -0.01799280382692814, 0.027792854234576225, 0.011219813488423824, -0.007326136808842421, -0.008398875594139099, -0.03054042160511017, 0.03613187000155449, -0.00782128144055605, 0.04632502421736717, 0.03993937000632286, 0.031007809564471245, 0.011090194806456566, 0.014103136025369167, 0.02389652468264103, -0.01709314063191414, -0.07217568904161453, -0.018817352131009102, -0.018191255629062653, -0.039388660341501236, 0.012742181308567524, 0.05875525623559952, -5.9256438799501195e-33, -0.05720236524939537, -0.04694339632987976, -0.010326474905014038, 0.051986657083034515, -0.01689661666750908, -0.03604138270020485, -0.029733480885624886, -0.0372837670147419, -0.04596823826432228, -0.06635282933712006, -0.035625532269477844, -0.009720069356262684, 0.00872527714818716, -0.05904610455036163, 0.024705421179533005, -0.03851626440882683, 0.011469261720776558, 0.02196071296930313, -0.009977380745112896, 0.03673707693815231, -0.025563307106494904, -0.04422362148761749, -0.033960577100515366, 0.040600765496492386, -0.0063703302294015884, -0.028417447581887245, -0.04036721959710121, -0.038854435086250305, 0.01440151035785675, -0.0082198241725564, -0.06450687348842621, -0.04555799067020416, -0.00486761424690485, 0.006790385581552982, 0.005368633195757866, -0.04963706433773041, -0.07501682639122009, 0.005044135730713606, -0.011170584708452225, 0.019427265971899033, 0.04684298485517502, -0.014334045350551605, 0.01065532211214304, -0.0028093557339161634, 0.011984709650278091, -0.01284667570143938, 0.06997063755989075, 0.006565375253558159, -0.038774069398641586, 0.0017446876736357808, -0.037040986120700836, 0.022575676441192627, -0.0013198793167248368, 0.08245297521352768, -0.0004852467682212591, 0.003681978676468134, 0.03819427639245987, 0.003886252408847213, -0.014211020432412624, -0.0634111687541008, 0.03119446523487568, 0.006018495187163353, 0.04119454324245453, -0.003060148097574711, 0.027241885662078857, -0.0072030373848974705, -0.005305709782987833, 0.0787263736128807, -0.012312619015574455, 0.0095303850248456, -0.00864291749894619, -0.03726766258478165, 0.005078696180135012, 0.027928045019507408, -0.034167565405368805, -0.012498280964791775, -0.03704842925071716, 0.0345146469771862, -0.004872303456068039, 0.09998021274805069, -0.01113018486648798, -0.0011306285159662366, 0.0026026947889477015, 0.005183764733374119, 0.0015510993544012308, -0.06805016845464706, 0.004088527522981167, -0.03323341906070709, -0.005367451347410679, -0.021393215283751488, 0.032903049141168594, -0.04000258818268776, -0.07343162596225739, 0.015325888060033321, 0.014029964804649353, 0.0791238471865654, -0.03665206581354141, 0.009783766232430935, -0.05023053660988808, -0.07214485853910446, -0.022103022783994675, -0.0028018318116664886, 0.000202432376681827, -0.010788902640342712, 0.03484926372766495, 0.008598136715590954, 0.02494700253009796, -0.020238876342773438, -0.022885940968990326, -0.03585045784711838, -0.0004177982045803219, -0.021416105329990387, 0.008153501898050308, 0.0053515322506427765, -0.026620252057909966, -0.04793546348810196, -0.020628299564123154, -0.03383582830429077, 0.014859880320727825, 0.03442656993865967, -0.0009961160831153393, -0.009237987920641899, -0.009332206100225449, -0.058086082339286804, 0.0006722898106090724, 0.024120280519127846, 0.0327218733727932, 0.02631724625825882, 0.044910233467817307, -0.03565056249499321, 0.019747357815504074, -0.010604298673570156, 2.861716836832784e-07, 0.04818568006157875, 0.01728995144367218, 0.01705493964254856, -0.04696888476610184, -0.031439848244190216, -0.034278471022844315, -0.03771539032459259, 0.028195982798933983, -0.03603387624025345, 0.01962888240814209, 0.06356403976678848, 0.0010351217351853848, 0.02095743641257286, 0.025519460439682007, 0.03231814503669739, -0.07410445809364319, -0.014539184980094433, -0.026389898732304573, -0.009939995594322681, -0.015336846001446247, 0.05577436834573746, -0.01859261654317379, 0.04467662051320076, 0.01743542216718197, -0.03817395865917206, 0.02302338369190693, -0.023952879011631012, -0.08021533489227295, 0.013885365799069405, -0.001228812849149108, 0.028035104274749756, -0.03390441834926605, -0.04304533451795578, -0.016734277829527855, -0.011557227000594139, 0.0012625508243218064, 0.00024778390070423484, -0.0057624164037406445, 0.04999503120779991, 0.05381688475608826, 0.036509737372398376, -0.042509399354457855, -0.0007260021520778537, -0.061275459825992584, 0.025382233783602715, 0.05509112775325775, 0.03470966964960098, 0.11521392315626144, -0.030409613624215126, -0.014971585012972355, 0.029812399297952652, 0.04199071601033211, -0.0013414649292826653, -0.005629640072584152, -0.025444021448493004, -0.030696474015712738, 0.001800738857127726, -0.03985124081373215, 0.006888135336339474, 0.00967938918620348, -0.052152231335639954, -0.009207378141582012, 0.05057217553257942, 0.0552029050886631, 0.03727710619568825, -0.010121935047209263, 0.001932130428031087, 3.2246606433913357e-34, 0.01073845848441124, -0.03279807046055794, 0.03936212882399559, -0.06005420535802841, 0.03117804229259491, -0.009336965158581734, -0.0037759030237793922, 0.012082080356776714, 0.013773376122117043, -0.06785706430673599, -0.032916922122240067], "4acae13b-0545-456d-b97b-aa278ff7ef96": [0.05630036070942879, 0.011345978826284409, -0.05801893770694733, 0.029690172523260117, -0.02371896430850029, 0.03677154332399368, -0.0028853313997387886, 0.050096191465854645, -0.03897536173462868, -0.01860620081424713, 0.008882438763976097, 0.02096450887620449, 0.0042362213134765625, 0.03451034426689148, -0.03762238845229149, -0.0035843870136886835, 0.03856956586241722, 0.02236025594174862, 0.08370936661958694, -0.009585735388100147, -0.059820517897605896, 0.026627296581864357, 0.008603985421359539, -0.02295731194317341, 0.058187466114759445, 0.011255626566708088, 0.021799767389893532, 0.004960939753800631, 0.016897886991500854, -0.016458764672279358, -0.03297070041298866, 0.020442429929971695, -0.047011446207761765, 0.010479285381734371, 2.119381406373577e-06, -0.015182285569608212, -0.021637916564941406, 0.009422479197382927, 0.010772556066513062, -0.015601473860442638, -0.00805036723613739, 0.0205967016518116, -0.11289140582084656, -0.024161959066987038, -0.011566237546503544, -0.013257850892841816, -0.032070647925138474, 0.09529763460159302, 0.015502404421567917, 0.055672720074653625, 0.020154930651187897, 0.004009160678833723, 0.019262224435806274, -0.02782612480223179, 0.15876933932304382, -0.0032051648013293743, -0.012140092439949512, 0.060608115047216415, 0.01607835479080677, 0.04776238650083542, 0.007951225154101849, 0.03974316641688347, -0.018963458016514778, 0.003908952232450247, 0.0528118796646595, 0.024986859411001205, 0.058593180030584335, -0.06799059361219406, 0.041836753487586975, 0.033245474100112915, 0.01879740133881569, 0.012394013814628124, 0.01760237105190754, 0.04168862849473953, -0.09097389131784439, 0.009659525007009506, -0.028581704944372177, 0.07515058666467667, 0.020646987482905388, 0.0011703200871124864, -0.0577898807823658, -0.021484266966581345, -0.027493750676512718, 0.017851421609520912, 0.039188675582408905, -0.020214220508933067, -0.03547399863600731, -0.05377916246652603, 0.021382654085755348, -0.02567072957754135, 0.048782143741846085, -0.06219825893640518, -0.013951449654996395, 0.022106874734163284, 0.06820383667945862, -0.04943465441465378, 0.01650501787662506, -0.061202891170978546, 0.07740744948387146, 0.03536665812134743, -0.042462803423404694, -0.039416760206222534, -0.04019547253847122, 0.028092732653021812, -0.03280652314424515, 0.04113039746880531, 0.005974039435386658, 0.0034489633981138468, 0.03136688098311424, 0.07773163169622421, -0.03720611706376076, -0.018886443227529526, -0.003816634649410844, -0.05675557255744934, -0.015810221433639526, 0.013951707631349564, 0.014025985263288021, 0.03776788339018822, 0.01981978304684162, 0.03529766574501991, 0.027690812945365906, -0.02552805282175541, -0.02906089276075363, 0.042211469262838364, -0.015753518790006638, -0.03277279809117317, 0.0032256594859063625, 0.003242103848606348, -0.002949092071503401, 0.04526711255311966, -0.012524193152785301, 0.04527445137500763, 0.04385682940483093, -0.002101329853758216, -0.01920991763472557, 0.061926040798425674, 0.03490870073437691, -0.029505567625164986, 0.045060351490974426, -0.06497953087091446, 0.025270910933613777, -0.020223207771778107, -0.0035544054117053747, -0.0094376802444458, 0.0021062996238470078, -0.01865740679204464, 0.009298386983573437, -0.036454956978559494, 0.008212491869926453, 0.011648721061646938, -0.08677033334970474, 0.040622737258672714, -0.0574328675866127, -0.010879164561629295, 0.005426445510238409, 0.0035772293340414762, -0.039501339197158813, -0.05887584015727043, 0.015799585729837418, 0.02541329711675644, 0.016552269458770752, 0.03933560475707054, 0.03462616726756096, -0.043093521147966385, -0.017269669100642204, -0.017410501837730408, 0.0984855592250824, -0.00012288244033697993, 0.009740989655256271, 0.03808697313070297, 0.045724667608737946, 0.0011397914495319128, -0.01858864724636078, 0.013011837378144264, -0.0019957106560468674, 0.11141456663608551, 0.027269592508673668, 0.028353653848171234, -0.020606886595487595, 0.03232167288661003, -0.004510641563683748, -0.046410027891397476, 0.009739669039845467, -0.027370715513825417, 0.0032225518953055143, -0.006218094378709793, -0.03263305500149727, -0.003550104331225157, 0.04114789143204689, 0.020931322127580643, -0.0029118310194462538, -0.01697179675102234, -0.04737820476293564, -0.0671251118183136, 0.02208852581679821, -0.0030137086287140846, -0.04042666777968407, -0.09444044530391693, 0.007212871685624123, -0.010716764256358147, 0.06201633810997009, -0.016217518597841263, 0.06041574478149414, -0.06308066844940186, 0.04624776169657707, -0.018185364082455635, 0.03163473308086395, -0.027205366641283035, -0.007444469258189201, -0.0025447681546211243, 0.0037087448872625828, -0.004272188059985638, -0.06450856477022171, 0.013575352728366852, -0.03780488669872284, 0.024274490773677826, -0.028822036460042, -0.0019469871185719967, -0.0004959320649504662, -0.023526443168520927, 0.03352766111493111, -0.03150056302547455, -0.010607065632939339, 0.00473987078294158, 0.02897784672677517, -0.02826402522623539, -0.06579642742872238, -0.023472392931580544, 0.03951072692871094, -0.006282205693423748, -0.04083143547177315, 0.03415616229176521, 0.07124599069356918, 0.019905095919966698, -0.03998812660574913, 0.049653664231300354, 0.03821440041065216, -0.03084363043308258, -0.011714659631252289, -0.08197420835494995, -0.011945574544370174, 0.038414373993873596, 0.022721920162439346, 0.010213063098490238, 0.03472880274057388, -0.02630777098238468, -0.005668435711413622, 0.01496824063360691, 0.0018533957190811634, -0.0008385452092625201, -0.010745822452008724, -0.042123593389987946, 0.029286956414580345, 0.04215700924396515, -0.007573346141725779, 0.010017002932727337, -0.08527935296297073, -0.014260190539062023, -0.06033274903893471, 0.02167677693068981, 0.06817759573459625, 0.00763369258493185, -0.05447433888912201, 0.022648463025689125, 0.027885006740689278, -0.0068544428795576096, -0.026958981528878212, 0.008852815255522728, -0.06359785050153732, 0.014390824362635612, 0.007014261092990637, 0.0017272398108616471, 0.0007257717661559582, -0.0114187803119421, -0.001999752828851342, -0.005742470733821392, -0.0851340964436531, 0.02981441095471382, -0.02618866041302681, 0.012133549898862839, 0.04342281445860863, 0.0017546676099300385, -0.031164372339844704, 0.024037322029471397, -0.06201951205730438, 0.0024328429717570543, 0.043675895780324936, -0.04653478041291237, -0.026102041825652122, -0.052214402705430984, -0.010347908362746239, 0.03532709926366806, 0.016815267503261566, -0.026981035247445107, -0.014144840650260448, 0.02586689591407776, 0.016423488035798073, -0.011158970184624195, 0.03535730391740799, 0.05957183986902237, 0.008915840648114681, 0.006129316985607147, 0.0006740898825228214, -0.005461327265948057, -0.002159459749236703, -0.0018424538429826498, 0.0399763248860836, -0.034880828112363815, 0.030411284416913986, -0.042744893580675125, 0.05482861027121544, 0.025325872004032135, -0.0027002538554370403, -0.02901993691921234, -0.02736043557524681, -0.014752582646906376, 0.014661380089819431, -0.05732553079724312, -0.0007614611531607807, 0.07213250547647476, 0.015168060548603535, -0.0047134291380643845, -0.02811848372220993, 0.017551852390170097, 0.011082206852734089, -0.044622309505939484, 0.04553236812353134, -0.024003205820918083, 0.01577080972492695, 0.02808283641934395, 0.035306885838508606, -0.012559423223137856, 0.009906278923153877, -0.009549153037369251, 0.033239271491765976, -0.02060387097299099, 0.025398842990398407, -0.022569244727492332, 0.03283620998263359, -0.009647790342569351, 0.001774770556949079, 0.05628630891442299, 0.025052811950445175, -0.04347474128007889, -0.009757677093148232, -0.014569551683962345, -0.0498233288526535, -0.0023845171090215445, -0.07537131011486053, -0.0026124941650778055, 0.027536114677786827, 0.007385981269180775, 0.004558292683213949, -0.039469826966524124, -0.03621548414230347, 0.03684363141655922, 0.01974506676197052, -0.022477146238088608, 0.0026244819164276123, -0.03333725035190582, -0.004895136691629887, 0.07994098216295242, 0.04904484003782272, 0.04053153470158577, -0.0014063079142943025, 0.05194085091352463, -0.040575575083494186, -0.04118826985359192, 0.02467195875942707, -0.02005869708955288, -0.06169745698571205, 0.017406849190592766, 0.022789252921938896, 0.06444744020700455, 0.029662655666470528, -0.03097514435648918, 0.02386259101331234, -0.03592155501246452, -0.0326729342341423, -0.028237972408533096, 0.017399800941348076, 0.013860171660780907, 0.047176066786050797, 0.010667623020708561, -0.004400830715894699, 0.005462617613375187, -0.000846622686367482, -0.011643614619970322, 0.026165008544921875, 0.01297328993678093, 0.009906685911118984, -0.012201192788779736, -0.09249070286750793, -0.018473327159881592, -0.0160710196942091, 0.017945226281881332, -0.08061389625072479, 0.03421730920672417, 0.01963244192302227, -0.0102471224963665, -0.02506396360695362, 0.052420444786548615, 0.0198537465184927, 0.0876871719956398, -0.008035203441977501, 0.010146965272724628, 0.08939149975776672, 0.035236332565546036, 0.02951137162744999, 0.020914718508720398, 0.11054433882236481, 0.03472638875246048, 0.013577287085354328, 0.012424567714333534, 0.0808936357498169, -0.06093510612845421, 0.011569143272936344, -0.021801764145493507, -0.05107010528445244, -0.07705443352460861, -0.07128830999135971, 0.017429549247026443, 0.08584988117218018, 0.021077819168567657, 0.02066485583782196, -0.04288506507873535, 0.07191263884305954, -0.07435479760169983, 0.005839499644935131, -0.03794579207897186, 0.023510493338108063, 0.012865884229540825, -0.0008568058838136494, 0.025596193969249725, 0.010293180122971535, -0.011354566551744938, -0.017623702064156532, -0.018951568752527237, -0.02582417242228985, -0.0717616155743599, -0.028493648394942284, -0.006203171797096729, 0.048036202788352966, -0.010002844035625458, -0.0029729590751230717, 0.0617254264652729, 0.016978807747364044, 0.03581194207072258, -0.002052303869277239, -0.010703804902732372, -0.03403641656041145, -0.04758320748806, -0.06918787211179733, 0.008588177151978016, -0.00761188380420208, 0.007689422462135553, -0.024676363915205002, 0.008902636356651783, -0.008659019134938717, -0.03409717604517937, -0.05127400532364845, 0.060837965458631516, -0.04249655827879906, -0.020343096926808357, 0.008250241167843342, -0.051715586334466934, -0.03167586401104927, -0.053507741540670395, 0.027404775843024254, -0.009488821029663086, 0.013942667283117771, -0.008463242091238499, -0.011900650337338448, -0.011980239301919937, 0.038072552531957626, -0.06593552976846695, -0.04464632645249367, -0.010538768954575062, 0.015071426518261433, -0.05193174257874489, 0.024922292679548264, 0.003507050918415189, 0.024203255772590637, -0.01267274096608162, -0.019306248053908348, -0.002389841480180621, -0.0067573729902505875, 0.020968399941921234, 0.006900624372065067, -0.026932917535305023, 0.013453287072479725, -0.007867781445384026, -0.006992538925260305, -0.012638605199754238, -0.040060464292764664, -0.01057862862944603, -0.06350024044513702, -0.01556171290576458, 0.03916645422577858, 0.01801900565624237, 0.023741241544485092, -0.07144661247730255, 0.005007655825465918, 0.0027109161019325256, -0.0723971277475357, -0.018120963126420975, 0.0024696604814380407, -0.03182798624038696, 0.002672059228643775, -0.030116619542241096, -0.017899466678500175, -0.00528321648016572, -0.13046742975711823, -0.006310372147709131, 0.022923659533262253, -0.04900384694337845, -0.012629901058971882, -0.013370751403272152, 0.03750201314687729, 0.015083640813827515, 0.02005583792924881, 0.02536381036043167, 0.033635128289461136, -0.007713604718446732, 0.005140557885169983, 0.008498932234942913, 0.015392954461276531, 0.012062001042068005, 0.042268361896276474, 0.03664705902338028, -0.009337141178548336, 0.008605859242379665, 0.0046614790335297585, -0.02312137745320797, -0.0259171761572361, -0.0035085349809378386, -0.02589716576039791, -0.009048336185514927, 0.0016104381065815687, -0.02704068087041378, 0.04222831875085831, -0.03358454257249832, 0.06496085226535797, 0.03824928030371666, 0.04329201579093933, 0.04072422906756401, 0.004159154836088419, 0.06517864018678665, -0.020654983818531036, -0.0740228071808815, 0.01669880375266075, 0.003930416889488697, -0.016657337546348572, -0.0009267805726267397, 0.03736187145113945, -5.559307677672077e-33, -0.007414038758724928, -0.019646627828478813, -0.03598734736442566, 0.028530234470963478, -0.04347086325287819, -0.01054854691028595, -0.040835920721292496, -0.050084490329027176, -0.024442896246910095, -0.06034062057733536, -0.0048865159042179585, -0.05161735415458679, 0.00898092333227396, -0.03343130275607109, 0.019001338630914688, -0.009686414152383804, -0.02029019594192505, 0.017274178564548492, 0.003267566906288266, 0.0028312383219599724, -0.022871244698762894, -0.028428837656974792, -0.000207520613912493, 0.06014309823513031, -0.00233455584384501, 0.011026833206415176, -0.0381682887673378, -0.01398288644850254, 0.06039205938577652, 0.034695643931627274, -0.028763148933649063, -0.02822551317512989, -0.0019156241323798895, 0.029369473457336426, -0.034593649208545685, 0.00983364600688219, -0.04514024034142494, 0.003411552170291543, -0.05203203856945038, 0.003182139480486512, 0.020528137683868408, 0.017226174473762512, -0.011163795366883278, -0.03103410266339779, 0.036657996475696564, 0.007256404962390661, 0.04762038588523865, 0.003203597152605653, 0.0063377986662089825, -0.001189938629977405, -0.050182294100522995, 0.03448135778307915, -0.026120144873857498, 0.07897336781024933, -0.016261113807559013, 0.03634420037269592, 0.07084272056818008, 0.05129387229681015, -0.013286493718624115, -0.03486025705933571, 0.04014851897954941, 0.013903021812438965, 0.045947302132844925, -0.032692860811948776, 0.002931449096649885, 0.006155837327241898, -0.054784275591373444, 0.050440508872270584, -0.021164264529943466, 0.03530533239245415, 0.0015279286308214068, -0.0325050875544548, -0.01871819794178009, -0.010840783827006817, -0.022861678153276443, 0.00037341343704611063, -0.03820398077368736, 0.05861835926771164, 0.041257958859205246, 0.14199665188789368, 0.031109584495425224, 0.005750040058046579, 0.032155610620975494, 0.02720489166676998, 0.00015654023445677012, -0.07161406427621841, -0.015122046694159508, -0.020491229370236397, -0.00012241833610460162, -0.019810911267995834, 0.030041558668017387, -0.020362067967653275, -0.043970197439193726, -0.01030018087476492, 0.011487829498946667, 0.030142484232783318, -0.07457952946424484, 0.01120181567966938, -0.07092530280351639, -0.06857670098543167, 0.0034558179322630167, -0.018081683665513992, 0.03008987195789814, 0.010682936757802963, 0.0382716991007328, -0.00712575763463974, 0.020423725247383118, -0.025172235444188118, -0.0753592997789383, -0.03322920948266983, -0.015040555968880653, -0.0006489905063062906, 0.025134587660431862, 0.04873903840780258, -0.005350570194423199, -0.02923424169421196, -0.02952197752892971, -0.0031739294063299894, -0.021692467853426933, 0.002957155229523778, -0.0093010775744915, 0.08088972419500351, -0.032838042825460434, -0.012715642340481281, -0.02462785504758358, -0.023796575143933296, 0.03677855059504509, 0.031054018065333366, 0.02191627398133278, -0.040010709315538406, 0.022690286859869957, 0.006250070873647928, 2.736832982463966e-07, 0.014313963241875172, 0.03919026255607605, 0.028951536864042282, -0.04837062582373619, -0.008241036906838417, -0.02867625467479229, -0.03214290738105774, 0.008254606276750565, -0.015585326589643955, 0.03252452611923218, 0.001605741330422461, 0.01205244567245245, -0.0008797055925242603, 0.010329260490834713, -0.017884474247694016, -0.08549966663122177, -0.0337035171687603, 0.004506720695644617, 0.0008758410695008934, -0.0009722132235765457, 0.0759463831782341, 0.039396483451128006, 0.056699734181165695, 0.02579604461789131, -0.026340767741203308, 0.011723232455551624, -0.0450570322573185, -0.043510474264621735, 0.01227799616754055, 0.005952218547463417, -0.038429662585258484, -0.04664093628525734, -0.05006575584411621, -0.025612568482756615, -0.008397003635764122, -0.0037732943892478943, -0.018207931891083717, 0.021260371431708336, 0.026255778968334198, 0.02829417772591114, 0.023310048505663872, 0.013571086339652538, 0.02283339761197567, -0.03500670939683914, 0.00640606926754117, 0.04633757099509239, -0.005870329216122627, -0.00032940765959210694, -0.05875936150550842, -0.02521299570798874, 0.025972899049520493, 0.023827603086829185, -0.02333778887987137, 0.023278549313545227, -0.03529601916670799, -0.04199356958270073, 0.015089347027242184, -0.03340743109583855, 0.01822524704039097, -0.01672855205833912, -0.05355365574359894, 0.0035965130664408207, 0.023166300728917122, 0.07375632971525192, 0.07217792421579361, 0.015074199065566063, 0.015480887144804, 2.889844725199868e-34, 0.03696129843592644, -0.03388569876551628, 0.020520858466625214, -0.02041756734251976, 0.01885593682527542, -0.015921367332339287, 0.03274717926979065, 0.03285131976008415, -0.011228210292756557, -0.06698689609766006, -0.03593211621046066], "5ae511d6-d49d-4ddd-80eb-25edd5a56437": [0.05887337028980255, 0.004336616024374962, -0.06028938293457031, 0.025690380483865738, -0.02162092924118042, 0.03673423081636429, -0.00576443737372756, 0.04870867356657982, -0.03702060133218765, -0.02211240865290165, 0.005693952087312937, 0.020535215735435486, -0.0011318580945953727, 0.02242087386548519, -0.036791540682315826, -0.003917592577636242, 0.04428413510322571, 0.015418288297951221, 0.07843067497015, -0.0061536324210464954, -0.05463253706693649, 0.022307971492409706, 0.002285477938130498, -0.029452988877892494, 0.05538805201649666, 0.019348537549376488, 0.015545832924544811, 0.009282178245484829, 0.02089134231209755, -0.011027965694665909, -0.028684690594673157, 0.01526575069874525, -0.04148474335670471, 0.008508598431944847, 2.0433210465853335e-06, -0.007102173753082752, -0.022428998723626137, 0.01057386863976717, 0.022482525557279587, -0.013381707482039928, -0.01120735239237547, 0.00908130407333374, -0.1165657564997673, -0.028810884803533554, -0.0026362433563917875, -0.0007973479223437607, -0.026633895933628082, 0.09839066118001938, 0.01973925717175007, 0.05441971495747566, 0.019444677978754044, 0.005717417690902948, 0.014670304022729397, -0.02252265065908432, 0.15151534974575043, -0.009047403931617737, -0.004651089198887348, 0.07185172289609909, 0.018771713599562645, 0.03917642682790756, 0.008769094944000244, 0.037141505628824234, -0.024874428287148476, 0.0011627995409071445, 0.05659012869000435, 0.02311529405415058, 0.05194055289030075, -0.0645131766796112, 0.045317888259887695, 0.03806062042713165, 0.008612660691142082, 0.01519416831433773, 0.01702846959233284, 0.031486183404922485, -0.08730465173721313, 0.015059217810630798, -0.028563452884554863, 0.0789857804775238, 0.02166464366018772, 0.006457279436290264, -0.056006912142038345, -0.02433200553059578, -0.031211817637085915, 0.020332220941781998, 0.03636889532208443, -0.017999770119786263, -0.03740151226520538, -0.0688818171620369, 0.024155478924512863, -0.02669842354953289, 0.05119430273771286, -0.05819025635719299, -0.008878706954419613, 0.020162731409072876, 0.06937180459499359, -0.04146195948123932, 0.010484060272574425, -0.07123777270317078, 0.07893984764814377, 0.0253959558904171, -0.04901520162820816, -0.03805648908019066, -0.04342726245522499, 0.026152368634939194, -0.03137902170419693, 0.0433017872273922, -0.0005626940401270986, 0.0016736789839342237, 0.037122681736946106, 0.07818093150854111, -0.04189789667725563, -0.013450337573885918, -0.004448615480214357, -0.054748665541410446, -0.030882729217410088, 0.010949448682367802, 0.016921205446124077, 0.03854518011212349, 0.020404253154993057, 0.03426513075828552, 0.02772381342947483, -0.031489159911870956, -0.026659470051527023, 0.04455844685435295, -0.003371102036908269, -0.027210654690861702, 0.009130324237048626, 0.0037587564438581467, -0.008948255330324173, 0.05267959088087082, -0.012965980917215347, 0.05577218905091286, 0.04505181685090065, -0.006456287577748299, -0.021293267607688904, 0.060521092265844345, 0.03383713215589523, -0.034080542623996735, 0.037925783544778824, -0.06143360957503319, 0.016618888825178146, -0.018758602440357208, -0.0106488773599267, -0.008200434036552906, -0.002648813184350729, -0.017853276804089546, 0.0019935041200369596, -0.036470673978328705, 0.016023673117160797, 0.008857828564941883, -0.09209679067134857, 0.03929322957992554, -0.05987849086523056, -0.01739336922764778, 0.0008044781279750168, 0.007193341851234436, -0.03353501483798027, -0.060350023210048676, 0.013846088200807571, 0.024500248953700066, 0.014590381644666195, 0.04306376725435257, 0.026577865704894066, -0.041794318705797195, -0.011843912303447723, -0.02024943009018898, 0.10687430202960968, -0.0001884330704342574, 0.016346817836165428, 0.04652076214551926, 0.0518486462533474, 0.0030655707232654095, -0.01643669418990612, 0.008222679607570171, 0.0005704274517484009, 0.10332158207893372, 0.023991892114281654, 0.02552037127315998, -0.02293342351913452, 0.03866500034928322, 0.0002933453943114728, -0.034987639635801315, 0.014554985798895359, -0.02794739231467247, 0.01034647785127163, -0.012879269197583199, -0.027872977778315544, 0.0020152213983237743, 0.04627254977822304, 0.023288339376449585, -0.007193881087005138, -0.015415959060192108, -0.04293125122785568, -0.07799137383699417, 0.02809007465839386, -0.005302885081619024, -0.04524534195661545, -0.09395969659090042, 0.015533809550106525, -0.015453972853720188, 0.06308518350124359, -0.010064723901450634, 0.05120954290032387, -0.06984373182058334, 0.05547047033905983, -0.023794811218976974, 0.018204668536782265, -0.019472913816571236, 0.0001657632674323395, -0.006165487691760063, -0.0028282462153583765, -0.009190649725496769, -0.06186598911881447, 0.008723399601876736, -0.03951573371887207, 0.018479518592357635, -0.03169379010796547, 0.000552307115867734, -0.0029588136821985245, -0.03804619237780571, 0.03657420352101326, -0.035515863448381424, -0.015268306247889996, 0.006620738189667463, 0.02164076454937458, -0.021532606333494186, -0.06524604558944702, -0.021004661917686462, 0.043280355632305145, -0.006884753238409758, -0.04955179616808891, 0.02910720929503441, 0.07120691984891891, 0.0240248404443264, -0.037641558796167374, 0.0557851605117321, 0.04361099749803543, -0.03156751021742821, -0.00729374447837472, -0.08054538816213608, -0.0043380046263337135, 0.0329267643392086, 0.02386651560664177, 0.016911042854189873, 0.034723445773124695, -0.022844523191452026, -0.02294144593179226, 0.01829332858324051, 0.0017733988352119923, -0.004798270761966705, -0.00468955934047699, -0.04380256310105324, 0.030434392392635345, 0.04216519743204117, -0.004419602453708649, 0.015371520072221756, -0.0789303407073021, -0.008984599262475967, -0.06713273376226425, 0.020921289920806885, 0.07016102224588394, 0.006415756419301033, -0.06466539949178696, 0.022234130650758743, 0.02910422533750534, -0.006307282950729132, -0.02673482336103916, 0.012674832716584206, -0.061379000544548035, 0.018384123221039772, 0.01740863360464573, -0.0017121658893302083, -0.00193993397988379, -0.010789154097437859, -0.0052624954842031, -0.007175376173108816, -0.07924794405698776, 0.026522187516093254, -0.027718719094991684, 0.01715610921382904, 0.04456672444939613, 0.010843881405889988, -0.029594892635941505, 0.025268426164984703, -0.06275768578052521, -0.006414064206182957, 0.03581254556775093, -0.04520898684859276, -0.020509200170636177, -0.05718185380101204, -0.014505269937217236, 0.03400649502873421, 0.012645658105611801, -0.02163950353860855, -0.015594443306326866, 0.025287143886089325, 0.023345060646533966, -0.019427184015512466, 0.04158136621117592, 0.06012435257434845, 0.009276621043682098, 0.002586579183116555, 0.007776710670441389, -0.004467846360057592, 0.003074685810133815, 0.00927349366247654, 0.03381314501166344, -0.035022810101509094, 0.03947430104017258, -0.031127605587244034, 0.05488554760813713, 0.031117156147956848, -0.005508457776159048, -0.02362516149878502, -0.030123190954327583, -0.016110649332404137, 0.021992363035678864, -0.06681136041879654, 0.002705973107367754, 0.0678883045911789, 0.017119988799095154, 0.0012121273903176188, -0.028137339279055595, 0.013559876941144466, 0.0076805902644991875, -0.04326600208878517, 0.04217105358839035, -0.03315911069512367, 0.005870564375072718, 0.03117804415524006, 0.03534786403179169, -0.008295074105262756, 0.0051824599504470825, -0.017033588141202927, 0.042506441473960876, -0.019307170063257217, 0.026408934965729713, -0.029192598536610603, 0.03362428396940231, -0.007364954333752394, -0.0030801959801465273, 0.05922609195113182, 0.023849306628108025, -0.030594883486628532, -0.0013546940172091126, -0.016004566103219986, -0.039125099778175354, -0.0022349944338202477, -0.07787809520959854, 0.0006767746526747942, 0.029562296345829964, -0.0009689537691883743, 0.0059209358878433704, -0.03418118134140968, -0.03632136806845665, 0.05652308464050293, 0.005143981426954269, -0.02385905012488365, 0.00523817865177989, -0.02320268750190735, -0.009009113535284996, 0.08546341210603714, 0.041816189885139465, 0.03295901417732239, 0.00040711730252951384, 0.050806328654289246, -0.0457620769739151, -0.0379321351647377, 0.02439594268798828, -0.02984754741191864, -0.05847411975264549, 0.01759248413145542, 0.019276602193713188, 0.05990798771381378, 0.036014292389154434, -0.019480997696518898, 0.019632456824183464, -0.04447431117296219, -0.03082457184791565, -0.030051875859498978, 0.02096983976662159, 0.006069466937333345, 0.04598493501543999, 0.013146655634045601, -0.0013907119864597917, 0.00270661199465394, -0.0010402054758742452, -0.006143705919384956, 0.037829216569662094, 0.020825879648327827, 0.0032960628159344196, 0.007224980741739273, -0.08608376979827881, -0.020666884258389473, -0.010378475300967693, 0.018331468105316162, -0.07574782520532608, 0.03624914214015007, 0.025178438052535057, -0.015850473195314407, -0.022970762103796005, 0.04294371232390404, 0.012955405749380589, 0.08564376831054688, -0.003492728341370821, 0.009105850011110306, 0.08943203836679459, 0.03998304530978203, 0.03232087567448616, 0.02719532698392868, 0.10558170825242996, 0.024203460663557053, 0.01616826094686985, 0.005808962043374777, 0.08583768457174301, -0.05643535032868385, 0.021523982286453247, -0.02091927081346512, -0.048623085021972656, -0.06796471774578094, -0.07866177707910538, 0.014513437636196613, 0.0892961323261261, 0.01403255295008421, 0.014576529152691364, -0.05035775899887085, 0.07043647021055222, -0.06563423573970795, 0.005505491979420185, -0.03342602774500847, 0.021727822721004486, 0.020507967099547386, 0.003213563933968544, 0.015153725631535053, 0.008571832440793514, -0.009458462707698345, -0.01767895743250847, -0.023394901305437088, -0.014781198464334011, -0.07582592964172363, -0.030591100454330444, -0.003415997140109539, 0.04755547642707825, -0.010661964304745197, -0.007029983680695295, 0.04593511298298836, 0.014881578274071217, 0.03498927503824234, -0.008689207956194878, 0.0014150934293866158, -0.034830428659915924, -0.04663090035319328, -0.0728830024600029, 0.013647174462676048, -0.022274058312177658, 0.008082152344286442, -0.021909566596150398, 0.0044984156265854836, -0.013245963491499424, -0.038703933358192444, -0.062070224434137344, 0.05644570663571358, -0.037080638110637665, -0.019580380991101265, 0.004824734292924404, -0.038628723472356796, -0.032914988696575165, -0.054848574101924896, 0.029494239017367363, -0.003542177611961961, 0.004375622142106295, -0.006770133040845394, -0.003248901106417179, -0.00968897808343172, 0.038995128124952316, -0.063706174492836, -0.03883014991879463, -0.002690473571419716, 0.02365684136748314, -0.049062054604291916, 0.026875734329223633, 0.00036095536779612303, 0.02658231370151043, -0.020442837849259377, -0.028331182897090912, 0.0010276274988427758, -0.010242576710879803, 0.015716349706053734, 0.0037023897748440504, -0.02362976036965847, 0.016417447477579117, 0.0004768970829900354, -0.00248876865953207, -0.007856054231524467, -0.040752340108156204, -0.030400050804018974, -0.05740795284509659, -0.010897357948124409, 0.04767417162656784, 0.010756487026810646, 0.029632117599248886, -0.06970533728599548, 0.009512281976640224, -0.0028257244266569614, -0.07696212828159332, -0.0217073205858469, 0.0043455627746880054, -0.03300300985574722, 0.009897843934595585, -0.026857292279601097, -0.016211770474910736, -0.014182431623339653, -0.12111252546310425, 0.0029281452298164368, 0.015843389555811882, -0.04626825079321861, -0.013268131762742996, -0.013032924383878708, 0.04256843775510788, 0.008871187455952168, 0.0154426796361804, 0.033445585519075394, 0.029408132657408714, -0.011847085319459438, 0.005488739348948002, 0.008113457821309566, 0.012243366800248623, 0.014185675419867039, 0.04979313164949417, 0.03165150433778763, -0.009940673597157001, 0.007394952699542046, 0.00881032645702362, -0.022548213601112366, -0.023341482505202293, -0.0029015522450208664, -0.02337370626628399, 0.0009360543335787952, -0.0059828609228134155, -0.026586003601551056, 0.03769022971391678, -0.024881819263100624, 0.06234307587146759, 0.041285622864961624, 0.03657761588692665, 0.03755686432123184, -0.002934650518000126, 0.06485679000616074, -0.01703440211713314, -0.06508007645606995, 0.016032584011554718, 0.0005267306696623564, -0.01826830580830574, -0.007033654488623142, 0.03163768723607063, -5.3397363531980126e-33, -0.009991819970309734, -0.018921291455626488, -0.033952366560697556, 0.029685037210583687, -0.041089531034231186, -0.00984544213861227, -0.041921466588974, -0.05401650071144104, -0.021450906991958618, -0.05898745730519295, -0.004334644880145788, -0.05154171586036682, 0.004043716937303543, -0.041189391165971756, 0.022199589759111404, 0.0002452046610414982, -0.020529208704829216, 0.021898021921515465, 0.00022624482517130673, 0.007329312618821859, -0.02642313949763775, -0.02526729367673397, 0.0053000436164438725, 0.056367427110672, -0.004235944710671902, 0.018817158415913582, -0.032280273735523224, -0.0203878004103899, 0.06644654273986816, 0.024188462644815445, -0.029437636956572533, -0.025593891739845276, -0.0036143900360912085, 0.03461804986000061, -0.03363916277885437, 0.000901160528883338, -0.04141736775636673, 0.013653011992573738, -0.050613883882761, 0.008255775086581707, 0.01947680488228798, 0.020755423232913017, -0.005098830442875624, -0.03005528263747692, 0.04379607364535332, 0.00590776652097702, 0.0476040244102478, 0.0074595496989786625, 0.010923325084149837, -0.0020175096578896046, -0.053011659532785416, 0.03988067805767059, -0.03288211300969124, 0.0781368538737297, -0.01428081002086401, 0.02679779939353466, 0.06995972245931625, 0.059640541672706604, -0.004697329830378294, -0.03171278163790703, 0.05050141364336014, 0.016213098540902138, 0.04579773172736168, -0.049552395939826965, -0.002551156096160412, 0.005605530459433794, -0.04849658161401749, 0.048957858234643936, -0.01675722375512123, 0.033218927681446075, 0.005684195086359978, -0.03175779804587364, -0.022270657122135162, -0.01204978208988905, -0.017286457121372223, 0.01167699322104454, -0.036188047379255295, 0.05929169803857803, 0.03740902617573738, 0.14154170453548431, 0.023996347561478615, 0.014130325987935066, 0.03767974674701691, 0.030949028208851814, 0.004266350995749235, -0.07027647644281387, -0.008657511323690414, -0.033405181020498276, -2.0902762116747908e-05, -0.020171888172626495, 0.032884977757930756, -0.017634317278862, -0.04323196783661842, 0.0002849844458978623, 0.022349609062075615, 0.03509625047445297, -0.08155132085084915, 0.009928560815751553, -0.07422089576721191, -0.07280122488737106, -0.001254248432815075, -0.017532451078295708, 0.026228828355669975, -0.002850064542144537, 0.03770469129085541, -0.01085489522665739, 0.021627264097332954, -0.023175479844212532, -0.06481923907995224, -0.03347852826118469, -0.01158719602972269, -0.0021491877268999815, 0.023626262322068214, 0.06275796890258789, -0.008613702841103077, -0.03953786939382553, -0.03333312273025513, -0.01286060456186533, -0.012232317589223385, -0.0025706375017762184, -0.0031598773784935474, 0.06400910019874573, -0.03446658328175545, -0.014614919200539589, -0.03061395138502121, -0.025609616190195084, 0.0334470197558403, 0.031064629554748535, 0.014709807932376862, -0.04760199040174484, 0.023033507168293, 0.012778147123754025, 2.666645571025583e-07, 0.014951992779970169, 0.04687939211726189, 0.027139747515320778, -0.053677212446928024, -0.009728612378239632, -0.03984137251973152, -0.042531441897153854, 0.0022471740376204252, -0.019779745489358902, 0.03525590896606445, 0.013678121380507946, 0.002868870971724391, -0.0036251584533602, 0.010817320086061954, -0.01882185786962509, -0.07561960071325302, -0.03372056409716606, 0.0011517577804625034, -0.0021631731651723385, -0.006216005887836218, 0.06077900528907776, 0.0406351275742054, 0.05012140050530434, 0.02521626651287079, -0.024722032248973846, 0.014804257079958916, -0.04422806575894356, -0.03443824499845505, 0.01791776902973652, 0.004956557881087065, -0.03599464148283005, -0.05126538500189781, -0.05809714272618294, -0.02411075122654438, -0.016322650015354156, -0.0016746551264077425, -0.025873927399516106, 0.0131149897351861, 0.0236193910241127, 0.038512978702783585, 0.025531770661473274, 0.016170160844922066, 0.027307646349072456, -0.031100383028388023, 0.0003758062666747719, 0.04116647318005562, -0.009869247674942017, 0.007729799952358007, -0.06187771260738373, -0.020088449120521545, 0.013316337019205093, 0.027058051899075508, -0.02256280928850174, 0.021993054077029228, -0.04346567019820213, -0.03813932463526726, 0.01138724759221077, -0.04255039244890213, 0.019174009561538696, -0.019705327227711678, -0.05023164674639702, 0.0034259273670613766, 0.021761009469628334, 0.07442594319581985, 0.07054609805345535, 0.011385784484446049, 0.019991498440504074, 2.85281917862511e-34, 0.03809328004717827, -0.031762052327394485, 0.01373961940407753, -0.012915942817926407, 0.019217664375901222, -0.01396872941404581, 0.026385538280010223, 0.03354398533701897, -0.020187202841043472, -0.06131841614842415, -0.03453405946493149], "99d4167f-919f-4a15-bc13-70656440d6a8": [0.03629843890666962, -0.0036729336716234684, -0.06685508042573929, 0.020871194079518318, -0.010278676636517048, 0.028299836441874504, 0.01178763248026371, 0.061034321784973145, -0.042225927114486694, -0.02386484295129776, 0.01316042523831129, 0.028476271778345108, 0.003471511183306575, 0.015176267363131046, -0.03296232968568802, -0.012064767070114613, 0.057085730135440826, 0.010379240848124027, 0.05073903501033783, 0.0008472378831356764, -0.055340684950351715, 0.018875712528824806, 0.009012141264975071, -0.01674584485590458, 0.04797225072979927, 0.003014764515683055, 0.01693630777299404, -0.0054939622059464455, 0.023102523759007454, -0.036195848137140274, -0.033371713012456894, 0.014550382271409035, -0.044036317616701126, 0.012960033491253853, 2.2657011413684813e-06, -0.0291708055883646, -0.03061758540570736, 0.01456508506089449, 0.013844750821590424, 0.006542930379509926, -0.010964684188365936, 0.029149048030376434, -0.10701186954975128, -0.006340771913528442, -0.007132738828659058, -0.010158911347389221, -0.010387585498392582, 0.08691373467445374, 0.00657842680811882, 0.05458374693989754, 0.018966078758239746, 0.010656223632395267, 0.050271209329366684, -0.015430353581905365, 0.15891845524311066, -0.020022038370370865, -0.010680630803108215, 0.06671226769685745, 0.006461833603680134, 0.04307347536087036, 0.008906563743948936, 0.017352504655718803, -0.017662929370999336, 0.005611914210021496, 0.0697585791349411, 0.019890720024704933, 0.0681493729352951, -0.06947515904903412, 0.03537334129214287, 0.0461900420486927, 0.03212446719408035, -0.001294582150876522, 0.0070830779150128365, 0.046949852257966995, -0.0878155380487442, -0.002323102904483676, -0.018195221200585365, 0.07453642785549164, 0.019976558163762093, 0.002699112519621849, -0.025044692680239677, -0.024931518360972404, -0.028509734198451042, 0.011667650192975998, 0.03088877722620964, 0.014644211158156395, -0.02499857172369957, -0.06071505695581436, 0.005648234859108925, -0.052440792322158813, 0.042833130806684494, -0.05443727225065231, -0.011659570038318634, 0.018863419070839882, 0.04819708690047264, -0.04155283421278, 0.017385637387633324, -0.06786003708839417, 0.08847340941429138, 0.029656361788511276, -0.025343572720885277, -0.022543160244822502, -0.038992322981357574, 0.029665708541870117, -0.02430848404765129, 0.05234195664525032, 0.000921773025766015, -0.008812823332846165, 0.022728268057107925, 0.07501968741416931, -0.039801184087991714, -0.020070046186447144, -0.008690263144671917, -0.05617200955748558, -0.017516814172267914, 0.010387741029262543, 0.00046535072033293545, 0.049132443964481354, 0.007923353463411331, 0.03474009782075882, 0.026523014530539513, -0.030889198184013367, -0.03679337352514267, 0.04693620279431343, -0.013780729845166206, -0.04675573110580444, -0.007225063629448414, -0.008519074879586697, -0.010624644346535206, 0.046188246458768845, -0.009739424102008343, 0.04680626839399338, 0.025486018508672714, -0.0036267307586967945, -0.035717979073524475, 0.07149016112089157, 0.0431746169924736, -0.02823641709983349, 0.054787129163742065, -0.06443903595209122, 0.02231997437775135, -0.01685217022895813, 0.006556208711117506, -0.024532247334718704, -0.01534692570567131, -0.019883647561073303, 0.010309995152056217, -0.03863406553864479, 0.015279415994882584, 0.0055091846734285355, -0.05128289386630058, 0.054303061217069626, -0.06949629634618759, -0.01510254293680191, 0.00847212690860033, 0.003519695717841387, -0.02988801710307598, -0.049056895077228546, 0.014344424940645695, 0.003909907769411802, 0.024245379492640495, 0.049706242978572845, 0.04000506177544594, -0.05379417538642883, -0.02365259826183319, -0.026501141488552094, 0.08889136463403702, -0.015249649062752724, 0.02507302165031433, 0.0398574098944664, 0.037566930055618286, 0.0128609798848629, -0.026108121499419212, 0.007841086946427822, -0.014565822668373585, 0.11614109575748444, 0.046538155525922775, 0.03124600276350975, -0.014401020482182503, 0.03300353139638901, -0.008257772773504257, -0.04113994538784027, 0.017428811639547348, -0.02334708161652088, -0.019301259890198708, -0.006438625510782003, -0.03505150228738785, 0.007682685274630785, 0.036943621933460236, 0.006238994654268026, -0.011938270181417465, -0.010751570574939251, -0.03887283056974411, -0.09343304485082626, 0.030202500522136688, -0.007554122246801853, -0.0410185307264328, -0.07832407206296921, 0.01982823573052883, -0.02070096880197525, 0.04124867543578148, -0.018639586865901947, 0.05996071919798851, -0.061793696135282516, 0.0492476150393486, -0.048010051250457764, 0.017010292038321495, -0.021422581747174263, -0.01929694041609764, -0.0068004741333425045, 0.02018022909760475, -0.0033565012272447348, -0.053667061030864716, -0.003870653687044978, -0.029994001612067223, 0.0238829143345356, -0.02836468629539013, -0.0014949510805308819, -0.012984185479581356, -0.019972622394561768, 0.033027708530426025, -0.0459536612033844, -0.008393323048949242, 0.011856441386044025, 0.029957180842757225, -0.03891462832689285, -0.074918232858181, -0.006836844142526388, 0.03236498683691025, -0.0018641769420355558, -0.043865714222192764, 0.03193719685077667, 0.07655276358127594, 0.02879427559673786, -0.028490910306572914, 0.044625718146562576, 0.01806328445672989, -0.0321047306060791, 0.007759844418615103, -0.09333556890487671, -0.012044359929859638, 0.044990792870521545, 0.023296518251299858, 0.015813065692782402, 0.03055151365697384, -0.025353049859404564, 0.0019125329563394189, 0.0025078272446990013, 0.014586910605430603, -0.0052560013718903065, -0.004133576527237892, -0.03402881324291229, 0.026102827861905098, 0.03783199191093445, -0.005892791319638491, 0.008067670278251171, -0.08068084716796875, -0.004742089658975601, -0.07397177815437317, 0.010561392642557621, 0.07185497879981995, 0.00961667113006115, -0.054175104945898056, 0.03298778831958771, 0.04316851496696472, -0.0068452428095042706, -0.03603881597518921, -0.007752654608339071, -0.049250662326812744, 0.013785111717879772, 0.014551538974046707, 0.0017236490966752172, -0.004411385394632816, -0.005267496220767498, 0.0011980845592916012, -0.005285546649247408, -0.06933466345071793, 0.02903129532933235, -0.03950210288167, 0.013110837899148464, 0.02602633275091648, -0.010447075590491295, -0.021530088037252426, 0.01628141477704048, -0.06650299578905106, -0.010192926041781902, 0.031299199908971786, -0.053631506860256195, -0.04526020959019661, -0.051328789442777634, -0.005198225378990173, 0.04683754965662956, 0.016705870628356934, -0.028972381725907326, -0.009842224419116974, 0.033558811992406845, 0.020194951444864273, -0.012797391973435879, 0.035288840532302856, 0.07766319066286087, 0.015212909318506718, 0.02296924777328968, -0.007537100464105606, -0.009972218424081802, -0.004586393479257822, 0.011851998046040535, 0.041972704231739044, -0.032374098896980286, 0.0203862227499485, -0.018543168902397156, 0.029210930690169334, 0.02303631417453289, 0.0020875846967101097, -0.030976856127381325, -0.021833445876836777, -0.010207735933363438, 0.002997754141688347, -0.06234675645828247, -0.006221309769898653, 0.07609739154577255, 0.014670091681182384, -0.015009641647338867, -0.021959347650408745, 0.005701171699911356, 0.01779571920633316, -0.06187392398715019, 0.03981049358844757, -0.0373302660882473, 0.02778615616261959, 0.03482915461063385, 0.049473412334918976, 0.003965017385780811, -0.0028058544266968966, -0.010458673350512981, 0.026567649096250534, -0.0276161041110754, 0.017608700320124626, -0.007932990789413452, 0.0398079976439476, -0.009448619559407234, 0.003377360524609685, 0.0338924340903759, 0.01066387165337801, -0.025658689439296722, 0.010514768771827221, -0.005893397610634565, -0.046316344290971756, -0.009529167786240578, -0.07542914897203445, 0.0019076402531936765, 0.03314637392759323, 0.011700354516506195, 0.02441592514514923, -0.0380902923643589, -0.045450933277606964, 0.0328608900308609, 0.015733113512396812, -0.02084575593471527, 0.0017507642041891813, -0.02862965688109398, 0.012984315864741802, 0.08749917894601822, 0.03182386979460716, 0.045103732496500015, -0.0010716707911342382, 0.0529351644217968, -0.04142630100250244, -0.041294630616903305, 0.00735562713816762, -0.013213873840868473, -0.042100660502910614, 0.02544432133436203, 0.011353393085300922, 0.05470732972025871, 0.02897961251437664, -0.038328323513269424, 0.03269616514444351, -0.03406005725264549, -0.006333629600703716, -0.021016938611865044, 0.022214293479919434, -0.006197942886501551, 0.0572698637843132, 0.011856787838041782, 0.0012443120358511806, -0.006043882574886084, 0.019901886582374573, -0.006735938601195812, 0.016349922865629196, 0.012272189371287823, 0.020174996927380562, -0.01824568584561348, -0.1020788848400116, -0.018618164584040642, -0.023281292989850044, 0.028844770044088364, -0.05725029110908508, 0.034002482891082764, 0.01587892882525921, -0.0288164634257555, -0.027133723720908165, 0.020057063549757004, 0.02424609288573265, 0.08069775253534317, -0.0020964592695236206, 0.04125691577792168, 0.07945793122053146, 0.0482533760368824, 0.034303318709135056, 0.014000090770423412, 0.11423850059509277, 0.03826731815934181, 0.010823609307408333, 0.005244431085884571, 0.058092232793569565, -0.051804736256599426, 0.01770945079624653, -0.026262395083904266, -0.04600333422422409, -0.0719328448176384, -0.08969416469335556, 0.019007811322808266, 0.09006673097610474, 0.02224334515631199, 0.028844397515058517, -0.05251972749829292, 0.07755203545093536, -0.07273118942975998, 0.0037725300062447786, -0.0339311808347702, 0.02952297404408455, 0.0009671244770288467, -0.016249606385827065, 0.026014110073447227, 0.0022959106136113405, 0.0029818895272910595, -0.025318609550595284, -0.028963206335902214, -0.03179408982396126, -0.08074260503053665, -0.018118703737854958, -0.003398179542273283, 0.06275708973407745, -0.015883971005678177, -0.0034279574174433947, 0.062018655240535736, 0.007242513354867697, 0.03356204554438591, 0.0020007614511996508, -0.007138008717447519, -0.028155680745840073, -0.0554184652864933, -0.0730581283569336, -0.012327589094638824, -0.014938144013285637, -0.0031320650596171618, -0.030998485162854195, 0.025556987151503563, -0.018819939345121384, -0.01660032942891121, -0.03388900309801102, 0.06657388806343079, -0.038981907069683075, -0.03588948771357536, 0.008900422602891922, -0.034726377576589584, -0.027642853558063507, -0.05270793288946152, 0.03762660175561905, -0.006511143874377012, 0.001214033574797213, -0.006513627246022224, -0.0190780907869339, -0.00265315268188715, 0.03414207696914673, -0.07775813341140747, -0.028568845242261887, -0.015167245641350746, 0.009501681663095951, -0.05026017129421234, 0.029743291437625885, 0.005254155024886131, 0.03271277993917465, -0.007462277077138424, -0.036199722439050674, 7.834464486222714e-05, -0.019516443833708763, 0.025220835581421852, 0.0038233832456171513, -0.007333059795200825, -0.005831977352499962, -0.011858412995934486, -0.0033640663605183363, -0.01695326343178749, -0.03981490060687065, -0.018484726548194885, -0.04023934155702591, -0.013252804055809975, 0.04669635370373726, 0.017507905140519142, 0.03539681434631348, -0.07096710801124573, 0.006843911483883858, 0.010493719018995762, -0.06807249039411545, -0.017755484208464622, 0.001832235837355256, -0.019685355946421623, 0.0027563401963561773, -0.01921275444328785, -0.037098612636327744, -0.015336859971284866, -0.12321387976408005, -0.0254617091268301, 0.01452356856316328, -0.03153342008590698, 0.0008043322013691068, 0.006166041363030672, 0.038969580084085464, 0.001895157154649496, 0.02659623511135578, 0.03063412941992283, 0.04165579006075859, -0.007651724386960268, 0.011421801522374153, 0.008352944627404213, 0.01921153999865055, 0.011244436725974083, 0.03892064094543457, 0.03894922882318497, 0.006315638776868582, 0.019271790981292725, -0.0014567371690645814, -0.03123008832335472, -0.034719549119472504, 0.004158272873610258, -0.011763636022806168, 0.0032406565733253956, -0.008807993493974209, -0.015077188611030579, 0.02210892364382744, -0.03295242041349411, 0.06309254467487335, 0.056886397302150726, 0.04539892077445984, 0.023916002362966537, 0.010105160064995289, 0.03535181283950806, -0.020471015945076942, -0.08254831284284592, 0.026310577988624573, -0.0060875751078128815, -0.023563791066408157, -0.00616677338257432, 0.03506743535399437, -5.816528616835041e-33, -0.020190158858895302, -0.022323962301015854, -0.03919467702507973, 0.03692129999399185, -0.046982184052467346, -0.019695455208420753, -0.036824002861976624, -0.03477668762207031, -0.013537133112549782, -0.05899342522025108, 0.0040092021226882935, -0.04896323010325432, 0.006714549381285906, -0.037060756236314774, -0.002777916844934225, 0.00227926904335618, -0.016568109393119812, 0.02560725435614586, -0.00814590323716402, 0.0005198369035497308, -0.0168163925409317, -0.02728041261434555, 0.01842120662331581, 0.06809647381305695, -0.00930666085332632, 0.01745763048529625, -0.031104350462555885, -0.013079713098704815, 0.034747712314128876, 0.05261797830462456, -0.027378858998417854, -0.014971223659813404, -0.006538986228406429, 0.03386089950799942, -0.038948167115449905, 0.034034185111522675, -0.05422500893473625, -0.014383289031684399, -0.04676487669348717, -0.007342218421399593, 0.017887622117996216, 0.010340108536183834, -0.02711477130651474, -0.024024300277233124, 0.03029286488890648, 0.01855337619781494, 0.04572020098567009, 0.014615255407989025, -0.010318977758288383, -0.00834672525525093, -0.06311292946338654, 0.038494277745485306, -0.029268622398376465, 0.08558467030525208, -0.030898641794919968, 0.015902351588010788, 0.06641463935375214, 0.0050738174468278885, -0.025881808251142502, -0.03704821690917015, 0.055696096271276474, 0.021114906296133995, 0.04277292266488075, -0.03091910295188427, -0.002919982885941863, 0.018191009759902954, -0.03386271744966507, 0.0550343319773674, -0.011376196518540382, 0.016553595662117004, 0.0005309671396389604, -0.025044558569788933, -0.03653654456138611, -0.02670346386730671, 0.009107311256229877, -0.015316558070480824, -0.046286869794130325, 0.06811226904392242, 0.037717901170253754, 0.14186063408851624, 0.03243667632341385, 0.011163254268467426, 0.012774321250617504, 0.01741410605609417, -0.025606824085116386, -0.04531408101320267, -0.015280669555068016, -0.011992530897259712, -0.0052535925060510635, -0.025996966287493706, 0.04090212658047676, -0.01596655510365963, -0.03415437042713165, -0.001190823852084577, 0.019563939422369003, 0.037467796355485916, -0.05941380187869072, 0.008443060331046581, -0.07275987416505814, -0.05860847979784012, -0.006425434723496437, -0.04162070155143738, 0.012512926012277603, 0.012784638442099094, 0.04894699901342392, 0.0032700393348932266, 0.02030632644891739, -0.011493868194520473, -0.08223140984773636, -0.026255205273628235, -0.013093204237520695, -0.006294611841440201, 0.023047776892781258, 0.04795891419053078, 0.005192060023546219, -0.034730859100818634, -0.02072748914361, 0.01065896451473236, -0.017597047612071037, -0.010176088660955429, -0.004677445627748966, 0.08040633797645569, -0.016991671174764633, -0.003965793643146753, -0.033177830278873444, -0.025365294888615608, 0.009556070901453495, 0.03510214388370514, 0.05215071886777878, -0.024211561307311058, 0.011572588235139847, 0.011105182580649853, 2.8682327979367983e-07, 0.02018720842897892, 0.054184023290872574, 0.035211291164159775, -0.036393821239471436, -0.006738261319696903, -0.036184534430503845, -0.02326175570487976, 0.01351334247738123, -0.011673664674162865, 0.03373913839459419, 0.0036263344809412956, 0.004115744959563017, -0.005231791641563177, 0.010135487653315067, -0.012902796268463135, -0.09219076484441757, -0.02615121565759182, 0.02173667773604393, -0.012911817990243435, 0.015045895241200924, 0.07652401924133301, 0.04536745697259903, 0.0560685470700264, 0.02222890965640545, -0.024092474952340126, 0.02114584669470787, -0.02743237465620041, -0.05032964423298836, 0.03340451791882515, -0.005807269364595413, -0.021373312920331955, -0.05105869099497795, -0.04490041360259056, -0.017806924879550934, -0.0021759646479040384, 0.00034099220647476614, -0.027384497225284576, 0.031997136771678925, 0.0107496976852417, 0.026782767847180367, 0.03796141967177391, 0.00977332703769207, -0.0009140479960478842, -0.031313151121139526, 0.002069551730528474, 0.057975973933935165, -0.0135026965290308, 0.0021931780502200127, -0.04770888388156891, -0.013287369161844254, 0.008084352128207684, 0.01511753536760807, -0.015094461850821972, 0.02222600020468235, -0.03066335991024971, -0.043209463357925415, 0.00947357527911663, -0.042424507439136505, 0.022233102470636368, -0.006096661556512117, -0.05670327693223953, -0.01401759497821331, 0.025510607287287712, 0.08134447038173676, 0.08172918111085892, -0.01061274204403162, 0.0047308276407420635, 3.402406639083945e-34, 0.03775140270590782, -0.038684017956256866, 0.015268372371792793, -0.02074258029460907, 0.024239245802164078, -0.024418946355581284, 0.04113379120826721, 0.03349052742123604, -0.009340186603367329, -0.07620088756084442, -0.04825585335493088], "c9459fc0-9e0f-456d-8450-323acb47ce30": [0.059508707374334335, 0.008921368978917599, -0.06016680225729942, 0.025712555274367332, -0.020404258742928505, 0.04138259217143059, -0.014129888266324997, 0.05033159255981445, -0.03981725126504898, -0.016973283141851425, 0.0034809818025678396, 0.02427234873175621, -0.0074392943643033504, 0.021722108125686646, -0.039975229650735855, -0.0027734062168747187, 0.04469282552599907, 0.02369585819542408, 0.0749204084277153, -0.008000747300684452, -0.0642242357134819, 0.02184079773724079, -0.00028906503575854003, -0.03107122704386711, 0.06285057216882706, 0.021118130534887314, 0.015182005241513252, 0.008312219753861427, 0.015826432034373283, -0.015118606388568878, -0.026059670373797417, 0.013896938413381577, -0.04020069167017937, 0.005898646544665098, 2.0288516680011526e-06, -0.011019404046237469, -0.02252877503633499, 0.005821848753839731, 0.01844172552227974, -0.019673962146043777, -0.01575164496898651, -0.0006786033627577126, -0.11501115560531616, -0.033967435359954834, 0.0018565072678029537, -0.0028491730336099863, -0.03318621963262558, 0.09967593103647232, 0.017858900129795074, 0.058042947202920914, 0.020731698721647263, 0.0025780759751796722, 0.012826052494347095, -0.025989005342125893, 0.14496588706970215, -0.010074462741613388, -0.0036328863352537155, 0.06840582937002182, 0.01752510480582714, 0.034501973539590836, 0.00941185001283884, 0.037103038281202316, -0.026540201157331467, 0.003977132961153984, 0.05584153160452843, 0.019352691248059273, 0.049018748104572296, -0.06031648814678192, 0.050850335508584976, 0.036721181124448776, 0.0035385657101869583, 0.018468448892235756, 0.01715146377682686, 0.031822800636291504, -0.08629166334867477, 0.007742271758615971, -0.02908247336745262, 0.07597610354423523, 0.024923719465732574, 0.003451649798080325, -0.05295869708061218, -0.021925663575530052, -0.03083198145031929, 0.02205701917409897, 0.035770755261182785, -0.017555484548211098, -0.03666019067168236, -0.06784180551767349, 0.03195587173104286, -0.026762936264276505, 0.04877981171011925, -0.05424182116985321, -0.00986911728978157, 0.023252444341778755, 0.057894714176654816, -0.043401364237070084, 0.009915093891322613, -0.07433027774095535, 0.07925602048635483, 0.027514051645994186, -0.04776555299758911, -0.0418793149292469, -0.038560397922992706, 0.02420024387538433, -0.02510852739214897, 0.036221519112586975, 0.005148331634700298, 0.0005412533646449447, 0.03405161574482918, 0.08013541996479034, -0.034968748688697815, -0.011927079409360886, -0.0020227201748639345, -0.05998212844133377, -0.03740696609020233, 0.01458829827606678, 0.01973842829465866, 0.03345056623220444, 0.02164480648934841, 0.030942443758249283, 0.0259682759642601, -0.027852818369865417, -0.026651546359062195, 0.03834015503525734, -0.008047223091125488, -0.020227869972586632, 0.006445864215493202, 0.006706858519464731, -0.01091141626238823, 0.056550443172454834, -0.011198136024177074, 0.058941084891557693, 0.04974687099456787, -0.006409274879842997, -0.018972644582390785, 0.06904788315296173, 0.03618964925408363, -0.03223560005426407, 0.03251444548368454, -0.06526250392198563, 0.019574329257011414, -0.020296446979045868, 0.00024109995865728706, -0.0006485071498900652, -0.001603619079105556, -0.012711239978671074, 0.0034366887994110584, -0.026200732216238976, 0.01268389355391264, 0.006558822467923164, -0.09466391056776047, 0.042582448571920395, -0.05231715366244316, -0.012682609260082245, 0.006995352450758219, 0.0004823768394999206, -0.03542889654636383, -0.05813268944621086, 0.005312441382557154, 0.019271323457360268, 0.01248928252607584, 0.03930523246526718, 0.022459005936980247, -0.03706891089677811, -0.011026914231479168, -0.02482333965599537, 0.10212249308824539, 0.002284919610247016, 0.009557168930768967, 0.04313255101442337, 0.057677630335092545, -0.006214167922735214, -0.014424032531678677, 0.004859677515923977, -0.0005520574632100761, 0.10654015094041824, 0.021954409778118134, 0.024262819439172745, -0.025320550426840782, 0.03539072722196579, -0.002418854273855686, -0.03042103722691536, 0.015305202454328537, -0.029342960566282272, 0.013826237991452217, -0.005692840553820133, -0.02475479245185852, -0.0006285590934567153, 0.04787231981754303, 0.024862729012966156, 0.0015171152772381902, -0.016792336478829384, -0.04377346858382225, -0.07897159457206726, 0.0288249384611845, -0.007757347542792559, -0.049617018550634384, -0.09080740064382553, 0.018919410184025764, -0.014107380993664265, 0.06363677233457565, -0.005110605154186487, 0.04585348069667816, -0.06803666055202484, 0.05413220822811127, -0.019276658073067665, 0.008670112118124962, -0.02006969228386879, -0.00032088905572891235, -0.007485814858227968, -0.0012641437351703644, -0.012013111263513565, -0.06294114887714386, 0.011660804972052574, -0.03783364221453667, 0.017093032598495483, -0.030432166531682014, -0.004671480040997267, 0.002214667620137334, -0.03923023119568825, 0.03516388684511185, -0.040624458342790604, -0.011347373016178608, 0.004736697766929865, 0.022918744012713432, -0.026199495419859886, -0.06382112205028534, -0.01701560616493225, 0.043344344943761826, -0.011699885129928589, -0.04844921827316284, 0.03351124748587608, 0.07207481563091278, 0.02284192107617855, -0.035860560834407806, 0.058388419449329376, 0.041461281478405, -0.03115176223218441, -0.0070266700349748135, -0.07310222834348679, -0.011238066479563713, 0.03417850658297539, 0.023227307945489883, 0.015696648508310318, 0.032640207558870316, -0.020050082355737686, -0.02652273327112198, 0.02109946683049202, 0.006221362855285406, -0.00252421828918159, -0.004461811855435371, -0.043928906321525574, 0.03515953943133354, 0.04449057579040527, -0.010243283584713936, 0.014869983308017254, -0.07631347328424454, -0.009423275478184223, -0.0679510161280632, 0.02289947308599949, 0.06476696580648422, 0.0037428003270179033, -0.06678813695907593, 0.023225024342536926, 0.027143005281686783, -0.008329429663717747, -0.025008289143443108, 0.01672586426138878, -0.062148939818143845, 0.019436586648225784, 0.019015725702047348, 0.0037534241564571857, -0.0015361420810222626, -0.01389588974416256, -0.00549834780395031, -0.008606623858213425, -0.07714357227087021, 0.033861491829156876, -0.027935612946748734, 0.018439140170812607, 0.043108679354190826, 0.010327471420168877, -0.026851831004023552, 0.027572480961680412, -0.06348517537117004, -0.0061082784086465836, 0.028083907440304756, -0.05039403215050697, -0.018105432391166687, -0.051856108009815216, -0.012568527832627296, 0.03695766255259514, 0.014310489408671856, -0.020805316045880318, -0.017577745020389557, 0.024528274312615395, 0.01680772192776203, -0.012671520933508873, 0.0473921075463295, 0.061747219413518906, 0.0047418903559446335, -0.0034619357902556658, 0.01311679370701313, -0.0018582199700176716, -0.0018650352722033858, 0.008812041021883488, 0.031182441860437393, -0.031852658838033676, 0.048980388790369034, -0.03388288617134094, 0.05120318755507469, 0.03423623368144035, 0.0018612685380503535, -0.038112446665763855, -0.026121243834495544, -0.013456303626298904, 0.024614784866571426, -0.05946534126996994, 0.0013442585477605462, 0.06577897071838379, 0.019924411550164223, 0.007197418250143528, -0.030309481546282768, 0.025631872937083244, 0.011097797192633152, -0.047915343195199966, 0.04431476071476936, -0.031015785411000252, 0.008351322263479233, 0.02858642488718033, 0.042316071689128876, -0.009585919789969921, 0.007757598999887705, -0.015719439834356308, 0.039151452481746674, -0.02040654979646206, 0.02929576300084591, -0.025468217208981514, 0.03384139761328697, -0.007971934974193573, -0.0026251566596329212, 0.06064475327730179, 0.021774906665086746, -0.03632929176092148, -0.0017214688705280423, -0.015204996801912785, -0.044008880853652954, -0.003061012364923954, -0.08744937926530838, -0.00408871890977025, 0.019424183294177055, 0.0013177689397707582, 0.005187474191188812, -0.03435148671269417, -0.036675479263067245, 0.061953093856573105, 0.01453098189085722, -0.02137027308344841, 0.006598462350666523, -0.022161802276968956, -0.004545192699879408, 0.0893590897321701, 0.0457492396235466, 0.03488346189260483, 0.0037544425576925278, 0.05436704307794571, -0.04855953902006149, -0.04231467470526695, 0.02531605027616024, -0.031108783558011055, -0.06287629902362823, 0.011959637515246868, 0.022641228511929512, 0.061890844255685806, 0.0330008789896965, -0.021361161023378372, 0.021667709574103355, -0.04156628996133804, -0.03474809601902962, -0.03250720351934433, 0.022872984409332275, 0.01337928045541048, 0.04193257540464401, 0.01566242054104805, -0.001603389740921557, 0.005445793736726046, -0.0012855322565883398, -0.009918604977428913, 0.024837862700223923, 0.018635684624314308, 0.004930084105581045, 0.010079440660774708, -0.08563947677612305, -0.021080881357192993, -0.013647908344864845, 0.01762753166258335, -0.07051282376050949, 0.038335464894771576, 0.02870047092437744, -0.018340567126870155, -0.02277328073978424, 0.05529392510652542, 0.01038947980850935, 0.09051204472780228, -0.004415981005877256, 0.004893171135336161, 0.0906517282128334, 0.03922675549983978, 0.03481653332710266, 0.025240745395421982, 0.11244526505470276, 0.0347173772752285, 0.015225729905068874, 0.011850286275148392, 0.08270610868930817, -0.054520368576049805, 0.01666724495589733, -0.01913720928132534, -0.043238136917352676, -0.07428812980651855, -0.07381810247898102, 0.014308423735201359, 0.08719479292631149, 0.018088581040501595, 0.019274061545729637, -0.04839097335934639, 0.06630068272352219, -0.06950964033603668, 0.005010254215449095, -0.03479829058051109, 0.019715968519449234, 0.022132275626063347, 0.0047409567050635815, 0.01734413392841816, 0.0139969103038311, -0.004386252257972956, -0.01325171533972025, -0.027724506333470345, -0.016971277073025703, -0.07306314259767532, -0.03373038396239281, -0.001241077552549541, 0.05017007514834404, -0.0132329436019063, -0.004257973283529282, 0.04525243490934372, 0.010381476022303104, 0.0364074669778347, -0.006332209799438715, 0.0011442104587331414, -0.03535791113972664, -0.04303945228457451, -0.07045237720012665, 0.010851380415260792, -0.01083652675151825, 0.00625518849119544, -0.022240066900849342, 0.0034487685188651085, -0.016875091940164566, -0.04556562751531601, -0.05835120752453804, 0.05629929155111313, -0.03988095745444298, -0.021585404872894287, 0.011026324704289436, -0.04099486395716667, -0.02464684657752514, -0.06173323467373848, 0.02646707370877266, -0.00759603176265955, 0.005552347749471664, -0.006900313310325146, -0.00031214041518978775, -0.005215349607169628, 0.0436149425804615, -0.06723186373710632, -0.030591202899813652, -0.002643333515152335, 0.025128552690148354, -0.04964695870876312, 0.024004902690649033, 0.00010139344522031024, 0.020725803449749947, -0.024087388068437576, -0.025962917134165764, -0.0009794320212677121, -0.012691323645412922, 0.012687341310083866, 0.008914349600672722, -0.022139694541692734, 0.008779541589319706, 0.0017635244876146317, -0.003926228266209364, -0.009881679899990559, -0.03609233722090721, -0.027360502630472183, -0.06413646787405014, -0.02144777961075306, 0.04703103378415108, 0.007359303999692202, 0.026907168328762054, -0.07101868838071823, 0.014315471053123474, -0.009518133476376534, -0.07071111351251602, -0.021165501326322556, 0.003399154171347618, -0.036320243030786514, 0.007027589250355959, -0.024281993508338928, -0.01651640608906746, -0.01680930145084858, -0.11804032325744629, 0.007455694489181042, 0.013811659067869186, -0.05077731981873512, -0.014484112150967121, -0.021396571770310402, 0.04559188336133957, 0.010959508828818798, 0.01518111489713192, 0.03199625760316849, 0.023261165246367455, -0.011433360166847706, 0.010105416178703308, 0.0070047941990196705, 0.011637142859399319, 0.012333185411989689, 0.05137452483177185, 0.03481677547097206, -0.013599816709756851, 0.013821256347000599, 0.012698514387011528, -0.02312200888991356, -0.02505543641746044, -0.0034434646368026733, -0.026492254808545113, -0.0026796702295541763, -0.0021390782203525305, -0.026873363181948662, 0.03645969182252884, -0.026181906461715698, 0.060542572289705276, 0.03626211732625961, 0.03497790917754173, 0.03379166126251221, -0.008146856911480427, 0.06776963919401169, -0.017790567129850388, -0.058301590383052826, 0.016126450151205063, 0.0023209655191749334, -0.023932769894599915, -0.008090117014944553, 0.03196372464299202, -5.3311996928171504e-33, -0.00619348231703043, -0.022332092747092247, -0.031182821840047836, 0.02011587843298912, -0.03641263768076897, -0.010571897029876709, -0.04016325622797012, -0.05582430958747864, -0.01953449472784996, -0.05770739167928696, -0.002224919619038701, -0.057531315833330154, 0.00466427905485034, -0.038453347980976105, 0.022977162152528763, 0.0068512787111103535, -0.024624446406960487, 0.017514027655124664, 1.828550739446655e-05, 0.0038578733801841736, -0.022958893328905106, -0.022798314690589905, 0.007172547280788422, 0.052984077483415604, -0.005823015701025724, 0.02109675481915474, -0.02801140956580639, -0.018532173708081245, 0.0766608864068985, 0.021052297204732895, -0.028803635388612747, -0.02778577245771885, -0.003996934741735458, 0.02730472944676876, -0.035934027284383774, -0.004923708736896515, -0.05026073753833771, 0.013203561305999756, -0.05331283435225487, 0.010046178475022316, 0.02750694938004017, 0.023134024813771248, -0.004587442614138126, -0.027647851034998894, 0.045989204198122025, 0.004390541464090347, 0.0439537838101387, 0.005175130441784859, 0.012658732943236828, -0.0004729518841486424, -0.0493190661072731, 0.039361484348773956, -0.0323619581758976, 0.07418561726808548, -0.018838053569197655, 0.0342981331050396, 0.07079339027404785, 0.0590924434363842, 0.006512311287224293, -0.030359139665961266, 0.048229772597551346, 0.016050834208726883, 0.05099504068493843, -0.05237407237291336, 0.0012580871116369963, 0.01090260036289692, -0.049979858100414276, 0.0453750416636467, -0.015963148325681686, 0.03267207369208336, 0.002361647319048643, -0.031186744570732117, -0.03246329352259636, -0.014572761952877045, -0.016460683196783066, 0.008465483784675598, -0.03662391006946564, 0.06278122216463089, 0.036626238375902176, 0.13656987249851227, 0.027935011312365532, 0.01414255890995264, 0.04103776812553406, 0.03074328973889351, 0.004529617261141539, -0.06535045802593231, -0.007657269015908241, -0.029054412618279457, 0.0025310865603387356, -0.01969539187848568, 0.027263833209872246, -0.013459760695695877, -0.045377667993307114, 0.0007875603041611612, 0.012953298166394234, 0.038551703095436096, -0.08256728202104568, 0.003499701851978898, -0.07595527917146683, -0.07463221251964569, 0.0051737879402935505, -0.018206242471933365, 0.02576557546854019, -0.0018944005714729428, 0.031767670065164566, -0.005445477552711964, 0.01889367215335369, -0.027914494276046753, -0.06384307146072388, -0.03136300668120384, -0.014234572649002075, -0.004224729724228382, 0.02682197466492653, 0.06131293624639511, -0.0012326741125434637, -0.04262006655335426, -0.03248056396842003, -0.014355952851474285, -0.009041066281497478, 0.005238890182226896, -0.001949299592524767, 0.0662572979927063, -0.03336166962981224, -0.011254006996750832, -0.025437520816922188, -0.029167668893933296, 0.035425059497356415, 0.019013769924640656, 0.01011141762137413, -0.044477201998233795, 0.025239471346139908, 0.009660462848842144, 2.6504147854211624e-07, 0.014246021397411823, 0.04065040126442909, 0.02698029950261116, -0.05170765146613121, -0.012373236939311028, -0.035330165177583694, -0.04009684547781944, -0.00022632871696259826, -0.020941797643899918, 0.03317830339074135, 0.010895110666751862, 0.004933580756187439, -0.004090858157724142, 0.010836870409548283, -0.020083846524357796, -0.07146414369344711, -0.03033272549510002, 0.001596661051735282, -0.0028037417214363813, -0.00482994643971324, 0.059795890003442764, 0.03847601264715195, 0.0465213879942894, 0.020647816359996796, -0.023481449112296104, 0.010508333332836628, -0.05020331218838692, -0.03548366203904152, 0.010365160182118416, 0.0008326355018652976, -0.037493713200092316, -0.05642016977071762, -0.05791596323251724, -0.023907843977212906, -0.016431158408522606, 0.0015201957430690527, -0.024206161499023438, 0.01585041545331478, 0.02309107966721058, 0.029864391312003136, 0.02792077697813511, 0.013545417226850986, 0.027446260675787926, -0.02931945212185383, 0.0020892482716590166, 0.045406803488731384, -0.013582030311226845, 0.0019359337165951729, -0.06323150545358658, -0.015390588901937008, 0.00989845022559166, 0.025316307321190834, -0.026513421908020973, 0.022956155240535736, -0.040037479251623154, -0.0375538095831871, 0.012621556408703327, -0.04296352341771126, 0.01568617857992649, -0.019618604332208633, -0.04868433624505997, 0.005374799948185682, 0.024423135444521904, 0.07537704706192017, 0.07214508950710297, 0.0183902345597744, 0.020091479644179344, 2.887617484829296e-34, 0.038487572222948074, -0.0294385626912117, 0.014588838443160057, -0.016109826043248177, 0.023455264046788216, -0.01784481853246689, 0.023630665615200996, 0.03878070041537285, -0.015834111720323563, -0.06424374133348465, -0.034970782697200775], "eabb7bb4-3083-4b5f-9f00-68211f7e32b9": [0.05026359483599663, 0.007570634596049786, -0.07127846777439117, 0.029200349003076553, -0.014870988205075264, 0.039131201803684235, 0.015966467559337616, 0.04704069346189499, -0.031711168587207794, -0.0301444660872221, 0.0014823429519310594, 0.02373300865292549, -0.0036679143086075783, 0.018568912521004677, -0.035503894090652466, -0.017411483451724052, 0.05100729316473007, 0.004513036925345659, 0.0461914986371994, -0.003257351228967309, -0.04992339387536049, 0.016220685094594955, 0.0035612895153462887, -0.03100336343050003, 0.046184439212083817, 0.026978831738233566, 0.013379383832216263, 0.010306645184755325, 0.02075737714767456, -0.021959617733955383, -0.021108021959662437, 0.0128145981580019, -0.036983832716941833, 0.003146605333313346, 2.110176637870609e-06, -0.01608838327229023, -0.04083893075585365, 0.0070203980430960655, 0.02419169805943966, -0.0007745370385237038, 0.006502556148916483, 0.025792399421334267, -0.11259978264570236, -0.03360388055443764, -0.006474912632256746, -0.0023185110185295343, -0.01957346685230732, 0.09136819839477539, 0.0125648258253932, 0.060565002262592316, 0.024929583072662354, -0.00609588623046875, 0.03459056466817856, -0.017624855041503906, 0.14830900728702545, -0.027239937335252762, -0.0022363888565450907, 0.07542340457439423, 0.015372134745121002, 0.030187241733074188, 0.00789534393697977, 0.03995439410209656, -0.031181156635284424, -0.0030910184141248465, 0.07388696074485779, 0.022968187928199768, 0.06529036909341812, -0.061112336814403534, 0.040306027978658676, 0.04656579717993736, 0.019571732729673386, 0.009632828645408154, 0.02124733477830887, 0.03413344919681549, -0.087579146027565, 0.01059368159621954, -0.03553933650255203, 0.07239655405282974, 0.028981681913137436, 0.0021624709479510784, -0.04249085113406181, -0.012880278751254082, -0.02787708304822445, 0.015480227768421173, 0.022826679050922394, 0.01074886228889227, -0.030980229377746582, -0.07289738208055496, 0.014889311976730824, -0.05390390753746033, 0.033904388546943665, -0.05639844015240669, 0.0026465407572686672, 0.024661170318722725, 0.06399652361869812, -0.03210490569472313, 0.004384906962513924, -0.08006596565246582, 0.07874231785535812, 0.03803997486829758, -0.045166075229644775, -0.03765889257192612, -0.03009980171918869, 0.032773565500974655, -0.036715034395456314, 0.051748812198638916, -0.011304651387035847, -0.003783257445320487, 0.028150632977485657, 0.07224800437688828, -0.04458306357264519, -0.01181160006672144, -0.019904613494873047, -0.05556126683950424, -0.03007027693092823, 0.014789327047765255, -0.0009873666567727923, 0.03830106556415558, 0.016712330281734467, 0.0370744951069355, 0.02254362218081951, -0.030853334814310074, -0.02093079313635826, 0.0461026132106781, -0.005817249417304993, -0.0315571166574955, 0.006485631689429283, -0.012776864692568779, -0.004635737743228674, 0.044161152094602585, -0.003286139341071248, 0.06307734549045563, 0.038539819419384, -0.011616156436502934, -0.02884054183959961, 0.06412333995103836, 0.046099670231342316, -0.04361914098262787, 0.05286761373281479, -0.06737358868122101, 0.01413211040198803, -0.02197113074362278, -0.008038979955017567, -0.024738658219575882, -0.015455908142030239, -0.014218758791685104, 0.005672895815223455, -0.048895157873630524, 0.023342961445450783, -0.0021723825484514236, -0.08418069779872894, 0.053199440240859985, -0.07135458290576935, -0.016506657004356384, 0.009798365645110607, 0.008675065822899342, -0.03324214369058609, -0.05945635586977005, 0.020274154841899872, 0.009442816488444805, 0.017318682745099068, 0.04314339905977249, 0.02246810682117939, -0.04152785614132881, -0.01837165467441082, -0.03447277471423149, 0.10015232115983963, -0.00896675419062376, 0.03831177577376366, 0.04803964123129845, 0.03781714290380478, -0.0029727756045758724, -0.02491632103919983, 0.010365263558924198, -0.013178985565900803, 0.11289862543344498, 0.03552603721618652, 0.03340723365545273, -0.025915145874023438, 0.031236037611961365, 0.014119528234004974, -0.033217962831258774, 0.020495817065238953, -0.019535643979907036, 0.007980620488524437, -0.006356337107717991, -0.04313772916793823, 0.023540709167718887, 0.04166380688548088, 0.014085635542869568, -0.0043295277282595634, -0.016438037157058716, -0.026705939322710037, -0.08016394823789597, 0.03679414466023445, -0.006592841818928719, -0.0462971031665802, -0.08539054542779922, 0.014357238076627254, -0.0287779550999403, 0.05041443929076195, -0.009516125544905663, 0.0466289259493351, -0.06988449394702911, 0.0639113113284111, -0.043290410190820694, 0.021713893860578537, -0.01558039989322424, -0.003226935863494873, -0.009085037745535374, 0.00014504157297778875, 0.000819188600871712, -0.06428557634353638, -0.012121863663196564, -0.038353871554136276, 0.018963897600769997, -0.03402426093816757, 0.008089575916528702, -0.010134698823094368, -0.0362498015165329, 0.041632868349552155, -0.02859334647655487, -0.000349219364579767, 0.010857137851417065, 0.0061922091990709305, -0.02076711878180504, -0.07670149207115173, -0.009872962720692158, 0.037851542234420776, -0.005194381810724735, -0.05586491525173187, 0.027981620281934738, 0.07904060184955597, 0.01535334438085556, -0.04211337864398956, 0.05410236492753029, 0.036123160272836685, -0.04019970819354057, -0.00032486251438967884, -0.09814828634262085, -0.010474651120603085, 0.025711804628372192, 0.026227286085486412, 0.0263089407235384, 0.03795608505606651, -0.011952606961131096, -0.022247744724154472, 0.007609171327203512, 0.012654743157327175, -0.006918077357113361, 0.003900754963979125, -0.04709963500499725, 0.04422035813331604, 0.03618888556957245, 0.0045652794651687145, 0.03526344895362854, -0.08063565194606781, -0.00010394809214631096, -0.06513243913650513, 0.012074164114892483, 0.0538720078766346, 0.006904555018991232, -0.06242389604449272, 0.020903265103697777, 0.028181133791804314, -0.007791793905198574, -0.03611055389046669, 0.007743660360574722, -0.04591571167111397, 0.01788623072206974, 0.020572582259774208, -0.0010229985928162932, -0.002121440600603819, -0.005878538824617863, -0.011865755543112755, -0.009406083263456821, -0.07034469395875931, 0.01885746233165264, -0.03570273146033287, 0.027310311794281006, 0.02479773387312889, -0.013985546305775642, -0.029418904334306717, 0.0189156923443079, -0.06251455098390579, -0.0011989460326731205, 0.03683700039982796, -0.048307064920663834, -0.02880098856985569, -0.06797517091035843, -0.010048595257103443, 0.03825943544507027, 0.01710369624197483, -0.013113057240843773, -0.014398309402167797, 0.03125186637043953, 0.02282286249101162, -0.006817467510700226, 0.03571139648556709, 0.07758273929357529, 0.008120519109070301, 0.0028259134851396084, 0.011961262673139572, -0.0029228555504232645, 0.0004693049704656005, 0.021591102704405785, 0.03858252242207527, -0.03952636942267418, 0.03538935258984566, -0.013028060086071491, 0.039452049881219864, 0.0322222001850605, 0.009773645550012589, -0.035852450877428055, -0.028368305414915085, -0.017615988850593567, 0.017720820382237434, -0.06752433627843857, -0.0017025511479005218, 0.07071464508771896, 0.021029280498623848, 0.0015576620353385806, -0.02509200945496559, 0.0016545042162761092, 0.007153596729040146, -0.04294077679514885, 0.03314169496297836, -0.040588125586509705, -0.00320972828194499, 0.04150998219847679, 0.04584791511297226, -0.0009444269817322493, -0.001295165391638875, -0.01859349012374878, 0.04419872164726257, -0.02176760323345661, 0.011671362444758415, -0.018034324049949646, 0.048984136432409286, -0.0020651461090892553, 0.004998035728931427, 0.04975418001413345, 0.013035329058766365, -0.025346847251057625, 0.01054463628679514, -0.007829959504306316, -0.023717327043414116, 0.0024857257958501577, -0.09168398380279541, 0.002607895527034998, 0.03027019277215004, -0.0058743711560964584, 0.0155512485653162, -0.03612223640084267, -0.041347648948431015, 0.07632460445165634, 0.00486158998683095, -0.030515242367982864, -0.002253885380923748, -0.0336235947906971, -0.010189349763095379, 0.0835873931646347, 0.03241395950317383, 0.042418472468853, -0.007101211231201887, 0.05726158246397972, -0.03759537264704704, -0.03600028529763222, 0.01566813513636589, -0.020699860528111458, -0.04647339880466461, 0.03143266588449478, 0.02979290671646595, 0.06050176918506622, 0.03809582442045212, -0.016858140006661415, 0.014873805455863476, -0.047373395413160324, -0.023179542273283005, -0.02245611883699894, 0.027039164677262306, -0.00941986683756113, 0.043371208012104034, 0.009479920379817486, -0.008437021635472775, -0.006082892417907715, 0.01054666843265295, -0.0058842916041612625, 0.03815428167581558, 0.01819581538438797, 0.016088983044028282, -0.017207659780979156, -0.09022261947393417, -0.022353284060955048, -0.0210775937885046, 0.011928774416446686, -0.07252570241689682, 0.04139740765094757, 0.01861673779785633, -0.03153826668858528, -0.025829557329416275, 0.029162494465708733, 0.024172818288207054, 0.0736108273267746, -0.01113969273865223, 0.029942624270915985, 0.0891246646642685, 0.0547383651137352, 0.0409243181347847, 0.011958123184740543, 0.08971341699361801, 0.026106173172593117, 0.01744537428021431, -0.0019007198279723525, 0.08471381664276123, -0.05244980752468109, 0.020840739831328392, -0.02528306655585766, -0.04971572011709213, -0.05545909330248833, -0.0849960520863533, 0.0069629838690161705, 0.08448789268732071, 0.020374720916152, 0.03150869160890579, -0.05599725618958473, 0.06356103718280792, -0.06860429793596268, 0.0008632728131487966, -0.02236439287662506, 0.02985997311770916, 0.01112971268594265, -0.0100927809253335, 0.021238932386040688, 0.0111512690782547, 0.0027446309104561806, -0.016690142452716827, -0.04458484798669815, -0.016969013959169388, -0.06618954241275787, -0.006528162397444248, -0.00846318993717432, 0.04843808338046074, -0.006890397984534502, -0.006513590924441814, 0.03825473040342331, 0.007876590825617313, 0.02535334601998329, -0.011537511833012104, -0.003181090112775564, -0.01932482048869133, -0.040130503475666046, -0.06968756765127182, 0.008632035925984383, -0.03074413165450096, 0.00420883484184742, -0.023900862783193588, -0.0061724064871668816, -0.017689187079668045, -0.03717910870909691, -0.05657586082816124, 0.0611371286213398, -0.03613361343741417, -0.02617647871375084, -0.0075427452102303505, -0.030938412994146347, -0.030557848513126373, -0.04538769647479057, 0.03245716542005539, -0.013319467194378376, -0.0176065806299448, -0.009725412353873253, -0.0029034153558313847, 0.0010543455136939883, 0.03388170525431633, -0.06985976547002792, -0.03885619714856148, 0.0007191388285718858, 0.01609879732131958, -0.05144849047064781, 0.0363701730966568, 0.009493821300566196, 0.028988566249608994, -0.024936635047197342, -0.033296309411525726, 0.002547024516388774, -0.011278728954494, 0.020848819985985756, 0.007520301733165979, -0.02175900898873806, 0.006738236173987389, 0.00934585090726614, 0.0032271367963403463, -0.015287556685507298, -0.03249569237232208, -0.029766634106636047, -0.059078313410282135, -0.0074854651466012, 0.05020999163389206, 0.01174962893128395, 0.0341508649289608, -0.06465613096952438, 0.014164120890200138, 0.008615280501544476, -0.0676816925406456, -0.015727689489722252, -0.0008850058657117188, -0.03043067269027233, 0.004159760661423206, -0.017118941992521286, -0.020860910415649414, -0.01884041354060173, -0.11809014528989792, -0.0037817726843059063, 0.003032777924090624, -0.023624608293175697, 0.003572924295440316, -0.005128141492605209, 0.051724229007959366, 0.007093825377523899, 0.019834095612168312, 0.0368291474878788, 0.03902524337172508, -0.0055331760086119175, 0.010639608837664127, 0.0073371329344809055, 0.015978755429387093, 0.015209117904305458, 0.04145755618810654, 0.03684088960289955, 0.0003657095367088914, 0.00839175097644329, 0.0020956117659807205, -0.024547558277845383, -0.022576838731765747, 0.021398227661848068, -0.00178245035931468, 5.3359486628323793e-05, -0.021588046103715897, -0.0245614405721426, 0.02466340735554695, -0.019536273553967476, 0.06447132676839828, 0.053086552768945694, 0.03516249731183052, 0.03738648071885109, -0.006558083929121494, 0.04623918607831001, -0.009722743183374405, -0.07712847739458084, 0.017994435504078865, 0.004753568209707737, -0.020272187888622284, -0.01650261878967285, 0.04820375517010689, -5.575931004502627e-33, -0.015231478027999401, -0.024809861555695534, -0.03359811380505562, 0.04669603705406189, -0.04453334957361221, -0.02173059806227684, -0.03447047993540764, -0.04919924959540367, -0.016067517921328545, -0.0646519586443901, 0.0009067297214642167, -0.05922916531562805, 0.005395474378019571, -0.050391506403684616, 0.0032359613105654716, 0.00720023550093174, -0.015975816175341606, 0.030000541359186172, -0.009442067705094814, 0.0025324621237814426, -0.02742050774395466, -0.012728613801300526, 0.0153230931609869, 0.0556916780769825, -0.01773603819310665, 0.017558643594384193, -0.023977546021342278, -0.027119405567646027, 0.04980167746543884, 0.0377323143184185, -0.02022780105471611, -0.021377824246883392, -0.010654834099113941, 0.026570754125714302, -0.03829381614923477, 0.010533749125897884, -0.0688306987285614, 0.007318112999200821, -0.04524611681699753, 0.014978068880736828, 0.019331596791744232, 0.010891527868807316, -0.013670540414750576, -0.036554478108882904, 0.04587135463953018, 0.009236098267138004, 0.058169301599264145, 0.006984731648117304, -0.005705076735466719, 0.007809528149664402, -0.052916519343853, 0.0340597964823246, -0.03186754882335663, 0.07824864238500595, -0.009138685651123524, 0.017315713688731194, 0.0640796646475792, 0.04533638432621956, -0.010334428399801254, -0.0245773084461689, 0.05693354830145836, 0.018524928018450737, 0.043183159083127975, -0.04179065674543381, 0.0037785605527460575, 0.01189764216542244, -0.019837884232401848, 0.043457407504320145, -0.010091620497405529, 0.011224704794585705, 0.009506626054644585, -0.017943888902664185, -0.0312384981662035, -0.02657497115433216, 0.015009225346148014, -0.001040081842802465, -0.04805610328912735, 0.05946069583296776, 0.03210022300481796, 0.12983468174934387, 0.0185780581086874, 0.01591336540877819, 0.03128300607204437, 0.024865172803401947, -0.007473567966371775, -0.047423992305994034, -0.011766084469854832, -0.029548315331339836, -0.003686214331537485, -0.025580480694770813, 0.022772807627916336, -0.0011330900015309453, -0.03777167946100235, 0.0013040706980973482, 0.014931007288396358, 0.03556152433156967, -0.06412047147750854, 0.01688040792942047, -0.08055810630321503, -0.06361784785985947, 0.0012525730999186635, -0.037380658090114594, 0.017787843942642212, -0.006515910848975182, 0.04357319697737694, -0.004365000873804092, 0.029120363295078278, -0.021893512457609177, -0.064993716776371, -0.037060100585222244, -0.006294952239841223, -0.01579410769045353, 0.02982962876558304, 0.04707060381770134, -0.00917777419090271, -0.04049185663461685, -0.031218841671943665, -0.011395636014640331, -0.001933000748977065, -0.0039922501891851425, -0.0035560561809688807, 0.046743907034397125, -0.025502176955342293, -0.017163842916488647, -0.03519360348582268, -0.0211974885314703, 0.012190242297947407, 0.022945020347833633, 0.00971684418618679, -0.04019580036401749, 0.010926737450063229, 0.015521196648478508, 2.698989476357383e-07, 0.024284375831484795, 0.05187131464481354, 0.03185529634356499, -0.038318995386362076, -0.011267916299402714, -0.04916300252079964, -0.048703067004680634, 0.009689039550721645, -0.01662852242588997, 0.03568875417113304, 0.01659669354557991, -0.0020143757574260235, 0.0075571476481854916, 0.01713375933468342, -0.007285695057362318, -0.0679168850183487, -0.019349606707692146, -0.005827152635902166, -0.009110216051340103, 0.004251424223184586, 0.07705400139093399, 0.037187088280916214, 0.04732620716094971, 0.017791494727134705, -0.02495080977678299, 0.01834930293262005, -0.022735241800546646, -0.03269944712519646, 0.02972259186208248, -0.0031355945393443108, -0.029226085171103477, -0.05401523783802986, -0.06260126829147339, -0.010909530334174633, -0.010647225193679333, -0.0013954598689451814, -0.012157264165580273, 0.019787071272730827, 0.016125060617923737, 0.058850422501564026, 0.04947269335389137, 0.012411512434482574, 0.010210052132606506, -0.03138788416981697, -0.0007962070521898568, 0.03913109004497528, -0.006426743231713772, 0.005289074499160051, -0.0686582401394844, -0.014692192897200584, 0.011841188184916973, 0.020879385992884636, -0.023124882951378822, 0.02109876461327076, -0.03502996638417244, -0.04362935945391655, -0.0012521450407803059, -0.03594660386443138, 0.02436314895749092, -0.01365142222493887, -0.04413798451423645, -0.009095358662307262, 0.022635942324995995, 0.07866160571575165, 0.08053772896528244, -0.0063045574352145195, 0.018642554059624672, 3.136418899786747e-34, 0.04069209843873978, -0.04274982586503029, 0.015130245126783848, -0.0022720384877175093, 0.023574145510792732, -0.019129138439893723, 0.02774767391383648, 0.028254587203264236, -0.02271748147904873, -0.07981481403112411, -0.03695106878876686], "9a202e7f-1c69-4845-aca0-5fd6aa403053": [0.05585141107439995, 0.006253352388739586, -0.07198432832956314, 0.02060624212026596, -0.013441714458167553, 0.04340730607509613, 0.001989358104765415, 0.050069358199834824, -0.032414328306913376, -0.028161436319351196, -0.008784915320575237, 0.019218720495700836, -0.005420331843197346, 0.018872618675231934, -0.031979650259017944, -0.014204640872776508, 0.053908057510852814, 0.007594855036586523, 0.045713603496551514, -0.0010833959095180035, -0.04707522690296173, 0.019099626690149307, -0.004513902124017477, -0.03144385293126106, 0.042039524763822556, 0.030821649357676506, 0.0072078946977853775, 0.013270328752696514, 0.016478070989251137, -0.027311263605952263, -0.023782091215252876, 0.004888757131993771, -0.03190188854932785, 0.005015818402171135, 1.9680583136505447e-06, -0.009715970605611801, -0.03094724379479885, 0.001764573622494936, 0.024708766490221024, -0.011536548845469952, 0.007038172334432602, 0.010627937503159046, -0.11755292117595673, -0.04138239100575447, 0.010167503729462624, -0.0024112218525260687, -0.020074570551514626, 0.09510543942451477, 0.004317683633416891, 0.05949174612760544, 0.024985281750559807, -0.009434325620532036, 0.018987545743584633, -0.025130001828074455, 0.14215631783008575, -0.016562391072511673, 0.0008251866092905402, 0.07513852417469025, 0.02240326814353466, 0.025019163265824318, 0.0037850907538086176, 0.04163508862257004, -0.03526239097118378, -0.003535733325406909, 0.06605048477649689, 0.028420371934771538, 0.06647112220525742, -0.0621194951236248, 0.044038861989974976, 0.04743751510977745, 0.007779494859278202, 0.011081255041062832, 0.013391521759331226, 0.0223159808665514, -0.08750726282596588, 0.0099667739123106, -0.03593192994594574, 0.07548966258764267, 0.025404740124940872, 0.005072144325822592, -0.043235816061496735, -0.011860989034175873, -0.02524370700120926, 0.01776162162423134, 0.03498155251145363, -0.0162175465375185, -0.031670283526182175, -0.08171302825212479, 0.02208157815039158, -0.037473246455192566, 0.03656957671046257, -0.054572150111198425, -0.0015221430221572518, 0.02152092382311821, 0.06595435738563538, -0.033370766788721085, -0.0011720826150849462, -0.08773596584796906, 0.08471013605594635, 0.031109299510717392, -0.05300723388791084, -0.04660720378160477, -0.037030477076768875, 0.021596025675535202, -0.03519592806696892, 0.04592011868953705, -0.008794538676738739, -0.0029147707391530275, 0.030168630182743073, 0.07222875207662582, -0.04635892063379288, -0.010522785596549511, -0.012860876508057117, -0.05849736928939819, -0.04441586509346962, 0.008922241628170013, 0.014399372972548008, 0.03498101234436035, 0.02020067535340786, 0.03111780248582363, 0.018064195290207863, -0.0319206640124321, -0.01601582206785679, 0.046430736780166626, -0.000659628480207175, -0.021565357223153114, 0.007120208349078894, 0.00041663250885903835, -0.01036064513027668, 0.05728330835700035, -0.0019771018996834755, 0.07021543383598328, 0.038249190896749496, -0.004882266744971275, -0.01713087595999241, 0.06558627635240555, 0.04248865693807602, -0.043198682367801666, 0.047414008527994156, -0.06197836250066757, 0.01270321011543274, -0.025158461183309555, -0.012170203030109406, -0.012312289327383041, -0.008031832054257393, -0.004751720931380987, 0.0035525006242096424, -0.03352920338511467, 0.027889270335435867, -0.0014768579276278615, -0.08832897245883942, 0.044712115079164505, -0.05665072053670883, -0.01359024178236723, 0.019357293844223022, 0.007158332969993353, -0.034261103719472885, -0.06642746925354004, 0.014802624471485615, 0.01689092442393303, 0.016227778047323227, 0.040640003979206085, 0.02430143766105175, -0.04032330587506294, -0.017325585708022118, -0.02921375446021557, 0.10451573878526688, 0.0065405964851379395, 0.036009542644023895, 0.05355970188975334, 0.04638632386922836, -0.003841435071080923, -0.023494595661759377, 0.011531018652021885, -0.01091841608285904, 0.11932317167520523, 0.027494018897414207, 0.031074078753590584, -0.025796111673116684, 0.027183543890714645, 0.005933491978794336, -0.034978874027729034, 0.022084727883338928, -0.026281209662556648, 0.01741108112037182, -0.004356972873210907, -0.04017828404903412, 0.011548032984137535, 0.04960421472787857, 0.019569993019104004, -0.00321766990236938, -0.016316991299390793, -0.02361501380801201, -0.08322423696517944, 0.02911456860601902, -0.013288895599544048, -0.05560825392603874, -0.08959175646305084, 0.011394374072551727, -0.027038423344492912, 0.053134411573410034, -0.0003805581945925951, 0.0478631928563118, -0.07612025737762451, 0.06957703083753586, -0.027918901294469833, 0.014987329952418804, -0.02440311759710312, -0.008508584462106228, -0.01667964458465576, -0.005647440906614065, -0.004923173692077398, -0.0660504624247551, -0.004843371920287609, -0.030951524153351784, 0.01701803132891655, -0.03969862312078476, 0.00831492431461811, -0.0016442725900560617, -0.040651701390743256, 0.04581107944250107, -0.02445402927696705, -0.0005859696539118886, 0.009031789377331734, 0.013689097948372364, -0.021754950284957886, -0.0662560760974884, -0.01932772807776928, 0.043977443128824234, -0.010587978176772594, -0.05811848118901253, 0.030481092631816864, 0.08151544630527496, 0.02176474966108799, -0.03681791573762894, 0.056585393846035004, 0.043970391154289246, -0.03385847806930542, -0.016401473432779312, -0.08368837088346481, -0.0036313217133283615, 0.019046427682042122, 0.031483862549066544, 0.025821654126048088, 0.03341321274638176, -0.008952943608164787, -0.038550056517124176, 0.013281483203172684, 0.007078442722558975, -0.007389494683593512, 0.0032850902061909437, -0.04841482639312744, 0.04307929798960686, 0.04457459971308708, 0.0006697347271256149, 0.031327586621046066, -0.06375787407159805, -0.0004762500466313213, -0.06336231529712677, 0.011651858687400818, 0.05546094849705696, 0.006114304531365633, -0.06399938464164734, 0.018633516505360603, 0.02257377654314041, -0.0023470597807317972, -0.03369123116135597, -0.005583713762462139, -0.05021660029888153, 0.023973841220140457, 0.020422711968421936, -0.00215544318780303, -0.006024930160492659, -0.011843333020806313, -0.011915884912014008, -0.009579815901815891, -0.0714450255036354, 0.02915138006210327, -0.03261294960975647, 0.024884846061468124, 0.029704339802265167, 0.00170162005815655, -0.032237228006124496, 0.0238413754850626, -0.059839095920324326, -0.007065868005156517, 0.03313827142119408, -0.05089806020259857, -0.02089613303542137, -0.0712696760892868, -0.006829545833170414, 0.03718427196145058, 0.017670689150691032, -0.010525143705308437, -0.01696617901325226, 0.0320243276655674, 0.008546161465346813, -0.008146136067807674, 0.03913818672299385, 0.07205767184495926, 0.010839534923434258, -0.00013197536463849247, 0.01977001130580902, 0.0011485314462333918, 0.0030917120166122913, 0.026933472603559494, 0.028954925015568733, -0.028689134865999222, 0.04520387575030327, -0.020920898765325546, 0.04903577268123627, 0.03840858116745949, 0.017995046451687813, -0.04332790896296501, -0.03521360829472542, -0.012444374151527882, 0.02362837642431259, -0.07221086323261261, 0.000437271868577227, 0.0641758069396019, 0.022346075624227524, 0.008693340234458447, -0.030893100425601006, 0.0028471434488892555, 0.0030284328386187553, -0.045157987624406815, 0.0365183986723423, -0.04108399152755737, -0.007770276162773371, 0.03294754773378372, 0.044617149978876114, -0.007917697541415691, 0.0027727936394512653, -0.01672624610364437, 0.039015576243400574, -0.023933392018079758, 0.02539917826652527, -0.025550395250320435, 0.047466445714235306, -0.003414066508412361, 0.0012308924924582243, 0.05520646646618843, 0.017409346997737885, -0.02910378761589527, 0.008182389661669731, -0.00983484461903572, -0.018821341916918755, 0.003598386188969016, -0.0915999785065651, 0.00242877216078341, 0.02468787506222725, -0.009464878588914871, 0.0077865575440227985, -0.033173441886901855, -0.03574175760149956, 0.08478383719921112, -0.006325803231447935, -0.030926398932933807, 0.002094835741445422, -0.0332714207470417, -0.018947968259453773, 0.09181111305952072, 0.02220250852406025, 0.04032429680228233, 0.0061099836602807045, 0.057898182421922684, -0.047562189400196075, -0.03454192355275154, 0.014162372797727585, -0.03315801918506622, -0.05244148150086403, 0.022862406447529793, 0.033889561891555786, 0.05818277597427368, 0.0369698591530323, -0.013745341449975967, 0.013888715766370296, -0.049726299941539764, -0.033319391310214996, -0.024337973445653915, 0.02541295252740383, 0.004104732535779476, 0.03801959753036499, 0.014809392392635345, -0.005571930203586817, -0.005527476314455271, 0.01469509582966566, -0.0031205753330141306, 0.044653549790382385, 0.023620549589395523, 0.011395114473998547, -0.001123740104958415, -0.07409720867872238, -0.021688714623451233, -0.01937512308359146, 0.014077712781727314, -0.06944604963064194, 0.04565373808145523, 0.02437087520956993, -0.034458715468645096, -0.022924302145838737, 0.03854238614439964, 0.025194136425852776, 0.08227662742137909, -0.00387519015930593, 0.026386389508843422, 0.08311755955219269, 0.04621575027704239, 0.03711942210793495, 0.023685170337557793, 0.0895286574959755, 0.025827474892139435, 0.02167935110628605, 0.005558491218835115, 0.07842206954956055, -0.04438847675919533, 0.028485257178544998, -0.01876824162900448, -0.05239732563495636, -0.055083248764276505, -0.07998954504728317, 0.01744544878602028, 0.07536467164754868, 0.014899014495313168, 0.02812262810766697, -0.05784418433904648, 0.06205471232533455, -0.0724906399846077, -0.004025934264063835, -0.029024049639701843, 0.03126802667975426, 0.01358014065772295, 0.002722557168453932, 0.015161805786192417, 0.01899060048162937, 0.007517871912568808, -0.01588917151093483, -0.042679738253355026, -0.015717193484306335, -0.06474301218986511, -0.020190319046378136, 0.0031582943629473448, 0.052357640117406845, -0.0082878228276968, -0.006625596433877945, 0.026319924741983414, 0.00922037661075592, 0.03170563280582428, -0.011669183149933815, 0.009271576069295406, -0.026797328144311905, -0.039690062403678894, -0.06296639144420624, 0.01040951069444418, -0.03478437289595604, 0.0094118881970644, -0.01626497320830822, -0.013413545675575733, -0.013240710832178593, -0.04967478662729263, -0.07235065847635269, 0.053799282759428024, -0.03280635550618172, -0.02307155355811119, -0.0014510416658595204, -0.033921774476766586, -0.045498814433813095, -0.044015225023031235, 0.02853817120194435, -0.008739852346479893, -0.011793520301580429, -0.005171375349164009, -0.004678450059145689, 0.003621595911681652, 0.0365745909512043, -0.06393491476774216, -0.0436430349946022, 0.002985989674925804, 0.021018899977207184, -0.04904809966683388, 0.038478728383779526, 0.009771398268640041, 0.019960392266511917, -0.0275080855935812, -0.03676534444093704, 0.0022141363006085157, -0.01897307299077511, 0.019810372963547707, 0.011777532286942005, -0.029111549258232117, 0.01758914813399315, 0.010711757466197014, 0.0016437105368822813, -0.021276943385601044, -0.036449410021305084, -0.04250957444310188, -0.059356335550546646, -0.009666749276220798, 0.048955630511045456, 0.004212960135191679, 0.037343960255384445, -0.06860896944999695, 0.009395314380526543, -0.005700961221009493, -0.07074860483407974, -0.018305452540516853, -0.005228916648775339, -0.03124985843896866, 0.004317358136177063, -0.020249877125024796, -0.016386115923523903, -0.020667077973484993, -0.10342340916395187, -0.001072063110768795, -0.0040635825134813786, -0.025515057146549225, -0.003082291455939412, -0.01517535001039505, 0.048299141228199005, 0.004591038916260004, 0.012169156223535538, 0.03913344070315361, 0.03432966023683548, -0.012547505088150501, 0.011052316054701805, 0.005630901083350182, 0.011172058060765266, 0.013428725302219391, 0.046304307878017426, 0.03275109454989433, -0.0025650805328041315, 0.005484606605023146, 0.011780821718275547, -0.022869979962706566, -0.019388539716601372, 0.025534242391586304, -0.0026055979542434216, 0.0022727970499545336, -0.017490720376372337, -0.02165742963552475, 0.036675985902547836, -0.014369293116033077, 0.06523580849170685, 0.04442767798900604, 0.02517203614115715, 0.03917636722326279, -0.008729414083063602, 0.05654068663716316, -0.006869360338896513, -0.06297184526920319, 0.012916229665279388, -0.0002680193283595145, -0.02016257494688034, -0.01739618182182312, 0.036022085696458817, -5.135026950738188e-33, -0.006183390039950609, -0.019197363406419754, -0.025792649015784264, 0.03450491279363632, -0.043238185346126556, -0.02063317596912384, -0.03197505325078964, -0.052784718573093414, -0.012457164004445076, -0.060544297099113464, -0.0013033171417191625, -0.06180989369750023, 0.0030307539273053408, -0.04798984155058861, 0.0112418532371521, 0.013127166777849197, -0.020085694268345833, 0.028682230040431023, -0.005767601542174816, 0.0032319200690835714, -0.027637647464871407, -0.0203117523342371, 0.015651065856218338, 0.05415543541312218, -0.015504807233810425, 0.017648261040449142, -0.026808535680174828, -0.0337006039917469, 0.0628744512796402, 0.030750686302781105, -0.020914535969495773, -0.023316528648138046, -0.009615489281713963, 0.027284646406769753, -0.03234107047319412, -0.004257287830114365, -0.05957260727882385, 0.014834272675216198, -0.04697924479842186, 0.014374906197190285, 0.025323186069726944, 0.02103191800415516, -0.007438692729920149, -0.03267629072070122, 0.058292001485824585, 0.01832941547036171, 0.04822751507163048, 0.0066351620480418205, 0.0016331268707290292, 0.009602844715118408, -0.05556926876306534, 0.03590931370854378, -0.03503575548529625, 0.07323650270700455, -0.012933201156556606, 0.023938963189721107, 0.05943039804697037, 0.050354454666376114, 0.0037537887692451477, -0.02673964574933052, 0.05087938904762268, 0.021171830594539642, 0.0496089942753315, -0.04811684787273407, 0.0031071591656655073, 0.003256889060139656, -0.020091233775019646, 0.0374317392706871, -0.01170500461012125, 0.01465764082968235, 0.003584194229915738, -0.02606329880654812, -0.02439650520682335, -0.02498007006943226, -0.002165562938898802, 0.007347847335040569, -0.03787793964147568, 0.058030370622873306, 0.029486842453479767, 0.12854906916618347, 0.019607296213507652, 0.021096602082252502, 0.030547957867383957, 0.030200017616152763, 0.001895118854008615, -0.05785992369055748, -0.005651799496263266, -0.0309685580432415, 0.00012885600153822452, -0.019640548154711723, 0.023342689499258995, -0.006400115322321653, -0.03739285096526146, 0.0057300073094666, 0.019152319058775902, 0.03420369699597359, -0.07452887296676636, 0.014941789209842682, -0.08441390097141266, -0.07779886573553085, 0.0007713512168265879, -0.025944940745830536, 0.01839822344481945, -0.014780968427658081, 0.039499904960393906, -0.00388468150049448, 0.018816545605659485, -0.028913605958223343, -0.05990136042237282, -0.034947652369737625, -0.0023673265241086483, -0.01068729069083929, 0.033568691462278366, 0.04794084280729294, -0.010799984447658062, -0.04843955487012863, -0.03457071632146835, -0.014037932269275188, 0.0012113150442019105, -0.0004853792197536677, -0.003896471578627825, 0.03521396219730377, -0.028765464201569557, -0.01866794377565384, -0.03564353659749031, -0.024114925414323807, 0.021155519410967827, 0.021564718335866928, 0.00662194425240159, -0.04569816216826439, 0.017790891230106354, 0.02359277755022049, 2.5601633524274803e-07, 0.03110303170979023, 0.05082397907972336, 0.02767924964427948, -0.03870977833867073, -0.01259161252528429, -0.042200084775686264, -0.048651404678821564, 0.0035618231631815434, -0.02626519277691841, 0.05063899978995323, 0.02385498769581318, -0.004694751929491758, 0.006631804164499044, 0.02225608378648758, -0.008220240473747253, -0.05263334512710571, -0.03323542699217796, -0.0007968924473971128, -0.006657618097960949, -0.004962426144629717, 0.0656675472855568, 0.04036007076501846, 0.03916942700743675, 0.023477360606193542, -0.022614434361457825, 0.016994809731841087, -0.03789202868938446, -0.025889454409480095, 0.02635018713772297, -0.007115357089787722, -0.022055884823203087, -0.05041841045022011, -0.06379333138465881, -0.01672898605465889, -0.015052717179059982, -0.0040034218691289425, -0.021646136417984962, 0.013339678756892681, 0.014007925055921078, 0.04551317170262337, 0.04385724291205406, 0.01694037951529026, 0.02133898250758648, -0.04369065538048744, -0.0019138252828270197, 0.04423591494560242, 0.001479423139244318, 0.00252479943446815, -0.0646943524479866, -0.011591955088078976, 0.013501746580004692, 0.019939308986067772, -0.03166240081191063, 0.018315523862838745, -0.04179868474602699, -0.04261993616819382, 0.00010902596841333434, -0.035346485674381256, 0.023637693375349045, -0.018303368240594864, -0.0421016551554203, 0.0022980570793151855, 0.02403402328491211, 0.07654599845409393, 0.07869717478752136, 0.006154677830636501, 0.0178602933883667, 2.8806676040687997e-34, 0.039774343371391296, -0.03871740400791168, 0.01319016795605421, -0.002789900405332446, 0.025314882397651672, -0.020772729068994522, 0.030141709372401237, 0.026524225249886513, -0.026715105399489403, -0.07073395699262619, -0.0335363894701004], "53c234b1-1bef-41e7-8d0f-81e4a2e21a09": [0.05277588218450546, 0.012546055018901825, -0.06881441175937653, 0.02714432217180729, -0.015594961121678352, 0.03884909674525261, -0.0012447915505617857, 0.04912399873137474, -0.03465646132826805, -0.024255486205220222, 0.005698258988559246, 0.024174639955163002, -0.012159998528659344, 0.018301313742995262, -0.04110874980688095, -0.016209576278924942, 0.05664661526679993, 0.006288394797593355, 0.0506429448723793, 0.0003539612516760826, -0.0536218099296093, 0.015278630889952183, -0.004890576004981995, -0.03569957986474037, 0.04195483401417732, 0.029507983475923538, 0.00566183403134346, 0.01627902314066887, 0.021589910611510277, -0.03250880911946297, -0.03200244531035423, 0.007985791191458702, -0.04031400382518768, 0.004504851531237364, 2.0349737042124616e-06, -0.009860648773610592, -0.03541162237524986, 0.0011865574633702636, 0.01851125992834568, -4.030338823213242e-05, -0.00024124245101120323, 0.008974176831543446, -0.12226377427577972, -0.03820698708295822, 0.0006077320431359112, 0.003752342192456126, -0.012841937132179737, 0.08573286980390549, 0.017257073894143105, 0.06289572268724442, 0.02245383709669113, -0.0012490135850384831, 0.022686438634991646, -0.019324181601405144, 0.14105935394763947, -0.021410565823316574, 0.0031314659863710403, 0.07649096846580505, 0.00799580942839384, 0.030508510768413544, 0.005018213298171759, 0.04091011360287666, -0.0310810636729002, -0.005753916688263416, 0.071064293384552, 0.029049457982182503, 0.06289014220237732, -0.05253657326102257, 0.03643739968538284, 0.043072108179330826, 0.012382831424474716, 0.019630834460258484, 0.01991024613380432, 0.02292139083147049, -0.09018026292324066, -0.00048083087312988937, -0.03611701354384422, 0.0737743228673935, 0.030193841084837914, 0.003207265865057707, -0.04694441333413124, -0.011351876892149448, -0.0347469188272953, 0.012557717971503735, 0.01773757115006447, -0.0032499206718057394, -0.0357549674808979, -0.08307480067014694, 0.01577678695321083, -0.03543688729405403, 0.04420065879821777, -0.05908513814210892, 0.0005202316679060459, 0.023793989792466164, 0.06557217240333557, -0.0312623530626297, 0.001096460735425353, -0.07699951529502869, 0.08496467769145966, 0.034669749438762665, -0.041808199137449265, -0.038538772612810135, -0.030864998698234558, 0.025127720087766647, -0.035435643047094345, 0.04310357943177223, -0.008259179070591927, -0.0057155960239470005, 0.026732133701443672, 0.08307553082704544, -0.044393524527549744, -0.016548480838537216, -0.008788379840552807, -0.053437281399965286, -0.04004007205367088, 0.011033868417143822, 0.006481100805103779, 0.039386238902807236, 0.019957518205046654, 0.03595809265971184, 0.023054782301187515, -0.03174548223614693, -0.014257853850722313, 0.04844328761100769, -0.0024447559844702482, -0.024527903646230698, 0.00752965547144413, -0.0127003975212574, -0.006716401781886816, 0.05086812749505043, 0.0001758027938194573, 0.071849025785923, 0.042313940823078156, -0.004089986439794302, -0.024406015872955322, 0.0759374350309372, 0.03823395445942879, -0.04173559322953224, 0.0452008917927742, -0.0682104229927063, 0.004949607886373997, -0.017188621684908867, 0.0003474591067060828, -0.01293050404638052, -0.01590779423713684, -0.015547256916761398, 0.002936679171398282, -0.024758122861385345, 0.027600392699241638, 0.003235702868551016, -0.08053650707006454, 0.0555284209549427, -0.06642073392868042, -0.01500338688492775, 0.011574843898415565, 0.002796770539134741, -0.02650287188589573, -0.06517405062913895, 0.01396497618407011, 0.020305262878537178, 0.01923004537820816, 0.04203230142593384, 0.017532575875520706, -0.036298949271440506, -0.0259772427380085, -0.033634647727012634, 0.09730414301156998, -0.001056221197359264, 0.028723927214741707, 0.051064588129520416, 0.046385399997234344, -0.006272672675549984, -0.018973082304000854, 0.0050576780922710896, -0.005166355054825544, 0.11433244496583939, 0.01889416202902794, 0.036207038909196854, -0.021967176347970963, 0.029694266617298126, 0.002148612402379513, -0.030544186010956764, 0.021431250497698784, -0.026263652369379997, 0.011970741674304008, -0.0019504589727148414, -0.03527235984802246, 0.012224767357110977, 0.044568922370672226, 0.014828466810286045, -0.005348046775907278, -0.014461644925177097, -0.028230799362063408, -0.0842563807964325, 0.03567076474428177, -0.01515763346105814, -0.05294400453567505, -0.08587444573640823, 0.012357622385025024, -0.026885271072387695, 0.04506681114435196, -0.009343194775283337, 0.03433072566986084, -0.06591682881116867, 0.062251340597867966, -0.04214971140027046, 0.008795978501439095, -0.017044583335518837, 0.0023664648178964853, -0.010596035979688168, 0.005045876372605562, -0.0014936898369342089, -0.06223679706454277, -0.009581997990608215, -0.03276189789175987, 0.021963374689221382, -0.03678283840417862, 0.007187626324594021, -0.008988623507320881, -0.04657531902194023, 0.03965147212147713, -0.019260315224528313, -0.005990119650959969, 0.009444519877433777, 0.014914690516889095, -0.0206450168043375, -0.06475427001714706, -0.011183110065758228, 0.03662310913205147, -0.010187776759266853, -0.05472658574581146, 0.030303942039608955, 0.0859302505850792, 0.016742415726184845, -0.03415730968117714, 0.05014313384890556, 0.033879686146974564, -0.036944497376680374, -0.008623861707746983, -0.08724462240934372, -0.0035652609076350927, 0.02451128140091896, 0.024801308289170265, 0.023836467415094376, 0.03119361214339733, -0.016354404389858246, -0.03045504540205002, 0.01756414957344532, 0.011048094369471073, -0.00484752980992198, -0.010074621997773647, -0.0481976717710495, 0.04869236424565315, 0.04233502969145775, 0.0026751826517283916, 0.035411834716796875, -0.07964348793029785, -0.0003147644456475973, -0.07308143377304077, 0.013082349672913551, 0.05373270437121391, 0.0034938764292746782, -0.06912264972925186, 0.019559258595108986, 0.031031517311930656, -0.0018400525441393256, -0.039014577865600586, -0.00039643794298171997, -0.05980920046567917, 0.022620975971221924, 0.021892521530389786, -0.0005107754841446877, -0.0005991975194774568, -0.011652735061943531, -0.01679218001663685, -0.0067887376062572, -0.0707797035574913, 0.028800617903470993, -0.03135346993803978, 0.03188442066311836, 0.029483236372470856, -0.012509090825915337, -0.029974723234772682, 0.016105566173791885, -0.0635242611169815, -0.005579692777246237, 0.04127144441008568, -0.051360953599214554, -0.02629907615482807, -0.0681932121515274, -0.011747008189558983, 0.036396898329257965, 0.0126373041421175, -0.011853218078613281, -0.014722660183906555, 0.024505237117409706, 0.010177700780332088, -0.0020532263442873955, 0.042894136160612106, 0.07440508157014847, 0.0070780739188194275, 0.0028908506501466036, 0.021724609658122063, -0.00043751331395469606, 0.004416267387568951, 0.02524709515273571, 0.038174718618392944, -0.04373794049024582, 0.04613311216235161, -0.014996678568422794, 0.04689705744385719, 0.03855852037668228, 0.017495380714535713, -0.042017389088869095, -0.026378335431218147, -0.01086962129920721, 0.015747036784887314, -0.06502582877874374, -0.0033528355415910482, 0.06989049166440964, 0.019338395446538925, 0.006413108203560114, -0.023081183433532715, 0.004023286048322916, 0.007764756213873625, -0.03808873891830444, 0.034606896340847015, -0.041311971843242645, 0.0001057779008988291, 0.03731248527765274, 0.047721028327941895, 0.001565749989822507, -0.004792994353920221, -0.01587226614356041, 0.042432431131601334, -0.025960981845855713, 0.02131742425262928, -0.021111685782670975, 0.04033935070037842, -0.0028126747347414494, 0.0016381461173295975, 0.04858780279755592, 0.014051742851734161, -0.041297703981399536, 0.007788392715156078, -0.011903009377419949, -0.024206826463341713, -0.004360010381788015, -0.09774284064769745, 0.0027365414425730705, 0.02631514146924019, -0.004969250410795212, 0.009685056284070015, -0.033795423805713654, -0.035601481795310974, 0.07967180013656616, -0.005727541167289019, -0.027090689167380333, -0.0003138983156532049, -0.03163253515958786, -0.014905334450304508, 0.09158112853765488, 0.034448787569999695, 0.048054300248622894, 0.0012213477166369557, 0.05845009908080101, -0.048206914216279984, -0.03701331093907356, 0.01567874476313591, -0.027447950094938278, -0.049101006239652634, 0.02782357856631279, 0.02571193315088749, 0.05917654186487198, 0.036714106798172, -0.010122537612915039, 0.01883794367313385, -0.04547285661101341, -0.03436874970793724, -0.024827878922224045, 0.028979836031794548, -0.005005712620913982, 0.03769313171505928, 0.011827624402940273, -0.004829209763556719, -0.005786946974694729, 0.006959715858101845, -0.0103578120470047, 0.035148922353982925, 0.024823211133480072, 0.008861485868692398, -0.0065760831348598, -0.08323685079813004, -0.024468541145324707, -0.02510782890021801, 0.011477915570139885, -0.0677717998623848, 0.04256197810173035, 0.023328766226768494, -0.03736633062362671, -0.02288258820772171, 0.027517957612872124, 0.031036201864480972, 0.07647493481636047, 0.003350808285176754, 0.025042619556188583, 0.096331886947155, 0.051688309758901596, 0.03640937805175781, 0.01892978698015213, 0.0881962850689888, 0.025689098984003067, 0.027884414419531822, 0.004087412264198065, 0.08427567780017853, -0.042338479310274124, 0.018444648012518883, -0.02482299692928791, -0.05540747195482254, -0.05698046088218689, -0.08098858594894409, 0.020797772333025932, 0.07808596640825272, 0.01749412529170513, 0.029401034116744995, -0.0567043274641037, 0.07103477418422699, -0.06734996289014816, 0.0002588764764368534, -0.025629911571741104, 0.027110815048217773, 0.013360666111111641, -0.01168842427432537, 0.027807189151644707, 0.012234056368470192, 0.0077644032426178455, -0.016674501821398735, -0.04215850681066513, -0.011874563992023468, -0.07122330367565155, -0.01488961186259985, -0.0001826607040129602, 0.050019510090351105, -0.007085510529577732, -0.013421904295682907, 0.03344876691699028, 0.013008625246584415, 0.027530791237950325, -0.01880726031959057, -0.003015335649251938, -0.024374496191740036, -0.0423879511654377, -0.05844223126769066, 0.004272860009223223, -0.0251294132322073, 0.006685600616037846, -0.02536908909678459, -0.0025565242394804955, -0.018091736361384392, -0.04533569514751434, -0.0629538893699646, 0.05706756189465523, -0.03947804123163223, -0.01951288804411888, 0.0015494892140850425, -0.03242817148566246, -0.03448512405157089, -0.03810201585292816, 0.02798350155353546, -0.017144998535513878, -0.008611471392214298, -0.005138857290148735, -0.00605058902874589, 0.0021663045044988394, 0.036204744130373, -0.06500395387411118, -0.03258722648024559, -0.007952545769512653, 0.017962589859962463, -0.05064678192138672, 0.04513035714626312, -0.0007593492628075182, 0.02350085973739624, -0.032418325543403625, -0.033357519656419754, 0.0003365218290127814, -0.023967565968632698, 0.019161676988005638, 0.015115567483007908, -0.018589114770293236, 0.01007381733506918, 0.010338349267840385, -0.0004580611421260983, -0.011462856084108353, -0.046489693224430084, -0.03566630557179451, -0.05442596226930618, -0.015051147900521755, 0.04633055627346039, 0.00478432746604085, 0.03320356830954552, -0.06506790965795517, 0.009247511625289917, -0.0006485041230916977, -0.061666976660490036, -0.019117938354611397, -0.0022089665289968252, -0.03068765625357628, 0.00473824655637145, -0.022264791652560234, -0.024536168202757835, -0.018068639561533928, -0.10922017693519592, -0.006639139261096716, 0.00033392044133506715, -0.020078148692846298, -0.0057239169254899025, -0.004578057676553726, 0.0410923957824707, 0.0039043263532221317, 0.018079712986946106, 0.038771726191043854, 0.030077306553721428, -0.004206671845167875, 0.015022833831608295, 0.0004978051874786615, 0.01609036512672901, 0.011769757606089115, 0.037611983716487885, 0.03216974437236786, -0.0006564978393726051, 0.007286842912435532, 0.00948012713342905, -0.02684972807765007, -0.02736121229827404, 0.025965170934796333, -0.007501891348510981, 0.01182471215724945, -0.014392524026334286, -0.023705795407295227, 0.02908882312476635, -0.013720755465328693, 0.062057580798864365, 0.048241470009088516, 0.0344909206032753, 0.03408648818731308, -0.01146334782242775, 0.05221501737833023, -0.007812973111867905, -0.06095384061336517, 0.020330708473920822, -0.0013550152070820332, -0.017164254561066628, -0.017348941415548325, 0.0350305400788784, -5.395054750005725e-33, -0.011790460906922817, -0.025883695110678673, -0.03235705941915512, 0.03197980672121048, -0.038729842752218246, -0.013443009927868843, -0.02957198955118656, -0.04745374619960785, -0.009070548228919506, -0.06550897657871246, 0.005643665324896574, -0.06367746740579605, 0.008953660726547241, -0.04651336744427681, 0.009070494212210178, 0.016823746263980865, -0.01358883362263441, 0.028013771399855614, -0.006347104907035828, -0.004221344366669655, -0.026004644110798836, -0.012333638966083527, 0.018343912437558174, 0.06061222776770592, -0.01274965051561594, 0.022875845432281494, -0.021935556083917618, -0.020742489024996758, 0.06243295222520828, 0.026815149933099747, -0.02031112089753151, -0.02348436787724495, -0.008796323090791702, 0.030185887590050697, -0.036242056638002396, 0.005145072005689144, -0.06409967690706253, 0.009809893555939198, -0.05157451704144478, 0.007439258508384228, 0.026973187923431396, 0.018621208146214485, -0.0019161480013281107, -0.02976834587752819, 0.051171496510505676, 0.006254285108298063, 0.05830272287130356, 0.006928133312612772, 0.0015704850666224957, 0.008302856236696243, -0.054924849420785904, 0.03716536983847618, -0.038242872804403305, 0.07457482069730759, -0.015038206242024899, 0.0197517741471529, 0.06737357378005981, 0.04728352651000023, 0.002676062984392047, -0.020574092864990234, 0.05210622400045395, 0.021910591050982475, 0.053143151104450226, -0.039345014840364456, -0.002908184425905347, 0.01481762807816267, -0.020519359037280083, 0.04795993119478226, -0.01132040936499834, 0.00864703394472599, -0.00017471783212386072, -0.019923944026231766, -0.030609263107180595, -0.026772987097501755, 0.013500296510756016, 0.0033785258419811726, -0.04328346624970436, 0.06259171664714813, 0.026165343821048737, 0.12841926515102386, 0.02088269032537937, 0.018978700041770935, 0.028219806030392647, 0.031099125742912292, 0.0036792480386793613, -0.05434674024581909, -0.008758279494941235, -0.028983457013964653, 0.005447406321763992, -0.01850181631743908, 0.014448938891291618, 0.004135109018534422, -0.04033849015831947, 0.004271320533007383, 0.014643237926065922, 0.03696151822805405, -0.06984469294548035, 0.012975843623280525, -0.0903666764497757, -0.07639981061220169, 0.0009854825912043452, -0.03073803521692753, 0.020041940733790398, -0.012836913578212261, 0.03843844681978226, -0.002224491909146309, 0.01853156089782715, -0.023969929665327072, -0.07077325880527496, -0.037461504340171814, -0.005501626059412956, -0.009882068261504173, 0.027752190828323364, 0.045904215425252914, -0.004209406208246946, -0.04410120099782944, -0.03224075958132744, -0.013065516948699951, 0.0027998958248645067, -0.012566976249217987, 0.00010015151201514527, 0.0387556254863739, -0.0232135821133852, -0.0165950246155262, -0.037769295275211334, -0.026115572080016136, 0.025470273569226265, 0.016040198504924774, 0.006545152980834246, -0.04372292011976242, 0.012510266155004501, 0.024979449808597565, 2.632049529438518e-07, 0.029378144070506096, 0.05186399444937706, 0.03237764909863472, -0.041592538356781006, -0.009879127144813538, -0.041569534689188004, -0.04444205388426781, 0.002483643125742674, -0.02797434851527214, 0.04192259907722473, 0.02267257124185562, -0.007840028032660484, 0.0054259514436125755, 0.017226362600922585, -0.004344467539340258, -0.05797508358955383, -0.029389183968305588, -0.005012442357838154, -0.009030644781887531, -0.0012829171027988195, 0.08154985308647156, 0.033026859164237976, 0.038198769092559814, 0.017780961468815804, -0.022247178480029106, 0.012163467705249786, -0.03629891946911812, -0.03156919777393341, 0.028467686846852303, -0.009454221464693546, -0.02433495782315731, -0.05933127924799919, -0.06333654373884201, -0.011577693745493889, -0.012626251205801964, -0.003830983769148588, -0.018349578604102135, 0.026976250112056732, 0.01577405445277691, 0.0543808750808239, 0.04746434837579727, 0.012054715305566788, 0.02143986150622368, -0.025860905647277832, -0.0028388085775077343, 0.04034024849534035, -0.007952132262289524, 0.005617128219455481, -0.07151263952255249, -0.013096853159368038, 0.007156245410442352, 0.02371157333254814, -0.025334907695651054, 0.026417069137096405, -0.04183979704976082, -0.041339993476867676, -0.0025747693143785, -0.03833911195397377, 0.02017800882458687, -0.014990179799497128, -0.05209780111908913, -0.002565109869465232, 0.027962755411863327, 0.07812827825546265, 0.07477835565805435, 0.003483252367004752, 0.01786092109978199, 3.0066785321782854e-34, 0.030969912186264992, -0.033163413405418396, 0.01080971397459507, 0.0022871510591357946, 0.026157209649682045, -0.014745221473276615, 0.030686357989907265, 0.031611546874046326, -0.0244757030159235, -0.07583572715520859, -0.03282655403017998], "5e4128d2-0246-49c5-97ae-50b5363f547d": [0.0457424558699131, 0.006954250391572714, -0.06132251396775246, 0.01841382309794426, -0.023845087736845016, 0.03103340044617653, 0.0034184129908680916, 0.05160432681441307, -0.0450628399848938, -0.019978264346718788, 0.01423417218029499, 0.02802450954914093, -0.004490666091442108, 0.007096346002072096, -0.034991003572940826, -0.0018256362527608871, 0.054957371205091476, 0.009771612472832203, 0.06317445635795593, -0.00549048837274313, -0.0548069067299366, 0.012998856604099274, 0.011737564578652382, -0.0188384260982275, 0.04881245270371437, 0.005336049944162369, 0.014388962648808956, 0.008841623552143574, 0.02185015380382538, -0.012739764526486397, -0.050057101994752884, 0.02386365458369255, -0.05017964541912079, 0.0194522887468338, 2.2287372303253505e-06, -0.020138051360845566, -0.023967724293470383, 0.019168434664607048, 0.01835043355822563, 0.0015494872350245714, -0.015775229781866074, 0.029370101168751717, -0.10999294370412827, -0.008704626001417637, -0.01460599061101675, -0.01076924242079258, -0.011946265585720539, 0.077723927795887, 0.018658755347132683, 0.04982278123497963, 0.014721010811626911, 0.015189516358077526, 0.03611762449145317, -0.008163567632436752, 0.15872608125209808, -0.01160748302936554, -0.007061720825731754, 0.07759920507669449, 0.013237531296908855, 0.04192002862691879, 0.011086905375123024, 0.023484090343117714, -0.01518501341342926, 0.0022012784611433744, 0.07521430402994156, 0.017700327560305595, 0.07325440645217896, -0.058743249624967575, 0.03032180480659008, 0.04148465394973755, 0.0322740338742733, -0.002972267335280776, 0.01884160190820694, 0.04704130440950394, -0.08806133270263672, 0.012822763063013554, -0.01578201912343502, 0.07730148732662201, 0.020760202780365944, 0.0031731906346976757, -0.042332615703344345, -0.022861145436763763, -0.02741226926445961, 0.008898734115064144, 0.023595690727233887, 0.003254597308114171, -0.025212690234184265, -0.06103238835930824, 0.006186551880091429, -0.04117462784051895, 0.038113970309495926, -0.0587964691221714, -0.006372254807502031, 0.013702303171157837, 0.05873369798064232, -0.04412579536437988, 0.0166047140955925, -0.05572408810257912, 0.07902588695287704, 0.032084424048662186, -0.03379714861512184, -0.01998690888285637, -0.04247617721557617, 0.04316670447587967, -0.018990887328982353, 0.0533575601875782, -0.008652414195239544, -0.00956376176327467, 0.025906730443239212, 0.07133564352989197, -0.04776424542069435, -0.01994093507528305, -0.009846922010183334, -0.05395796149969101, -0.005971286911517382, 0.005750110372900963, -0.001715032267384231, 0.05090318247675896, 0.009321021847426891, 0.039914585649967194, 0.018350593745708466, -0.030882248654961586, -0.04076468572020531, 0.048198118805885315, -0.008615193888545036, -0.04690033942461014, -0.007630437146872282, -0.012469972483813763, -0.003591708606109023, 0.04380447044968605, -0.014987501315772533, 0.03787585347890854, 0.029217371717095375, -0.003852830734103918, -0.02812441997230053, 0.06950772553682327, 0.04382902756333351, -0.032407671213150024, 0.055842768400907516, -0.0653579905629158, 0.020927829667925835, -0.016628671437501907, 0.0051661222241818905, -0.028955796733498573, -0.011138580739498138, -0.019182853400707245, 0.00562681257724762, -0.04401557147502899, 0.0012322429101914167, 0.005076246801763773, -0.05290480703115463, 0.05449768528342247, -0.062421105802059174, -0.018309446051716805, -0.0016604360425844789, 0.007129531353712082, -0.04782422259449959, -0.05136042460799217, 0.014173162169754505, 0.011780965141952038, 0.01708407513797283, 0.042285941541194916, 0.04241875931620598, -0.04710683226585388, -0.024248115718364716, -0.021273475140333176, 0.09874428808689117, -0.017497502267360687, 0.02634437195956707, 0.039329152554273605, 0.0335322767496109, 0.0262688510119915, -0.02608727104961872, 0.009016353636980057, -0.011045768857002258, 0.11590252071619034, 0.03539044037461281, 0.04439917579293251, -0.003741441061720252, 0.03566054627299309, 0.008207684382796288, -0.022447925060987473, 0.017032168805599213, -0.016772780567407608, -0.018359564244747162, -0.015807485207915306, -0.032334741204977036, 0.005669832229614258, 0.034251581877470016, 0.010924816131591797, -0.006272397004067898, -0.015683384612202644, -0.03717699274420738, -0.08832098543643951, 0.03446244075894356, -0.004369969014078379, -0.0347307063639164, -0.09315019100904465, 0.021936748176813126, -0.019301287829875946, 0.04968533664941788, -0.0258798711001873, 0.054423049092292786, -0.06545747071504593, 0.06405331939458847, -0.04771445319056511, 0.027960753068327904, -0.013753070496022701, -0.013966950587928295, -0.00016309252532664686, 0.013219601474702358, -0.005721351597458124, -0.05919228494167328, 0.00031058426247909665, -0.03425634279847145, 0.026568936184048653, -0.025283193215727806, 0.003310788655653596, -0.012995591387152672, -0.022458095103502274, 0.027706904336810112, -0.040749531239271164, -0.0012926030904054642, 0.009296375326812267, 0.021646030247211456, -0.03175351023674011, -0.07570024579763412, -0.008852827362716198, 0.03684566542506218, 0.00018537291907705367, -0.047839488834142685, 0.03139679133892059, 0.07681865245103836, 0.027591561898589134, -0.04426911473274231, 0.05521326884627342, 0.02298884652554989, -0.028996216133236885, 0.014357306063175201, -0.10246925055980682, -0.009677758440375328, 0.04284846410155296, 0.020215408876538277, 0.014195258729159832, 0.03638753667473793, -0.02424635924398899, 0.004228999372571707, 0.0073255212046206, 0.017162147909402847, -0.009111187420785427, -0.01026010513305664, -0.03686550632119179, 0.02628949098289013, 0.039242878556251526, 0.006934712175279856, 0.021729476749897003, -0.09508723020553589, -0.0009823971195146441, -0.059349823743104935, 0.014136610552668571, 0.05633438006043434, 0.006563871167600155, -0.05752786248922348, 0.022838765755295753, 0.0388001948595047, -0.009171612560749054, -0.03668546304106712, 0.00814720056951046, -0.06059941276907921, 0.014921879395842552, 0.02093243971467018, -0.002255805768072605, -0.0007182957488112152, -0.0006142751080915332, -0.0022221871186047792, -0.0028365738689899445, -0.07270321249961853, 0.03138606995344162, -0.03889600560069084, 0.014382894150912762, 0.0338183268904686, -0.011433064937591553, -0.020859595388174057, 0.01928907446563244, -0.06795595586299896, -0.00031010789098218083, 0.039893463253974915, -0.0503787137567997, -0.04577285051345825, -0.052383821457624435, -0.018420401960611343, 0.04125293344259262, 0.01098395325243473, -0.02037690207362175, -0.004304835572838783, 0.02608126774430275, 0.026709318161010742, -0.019156524911522865, 0.03258804604411125, 0.0680721178650856, 0.010695366188883781, 0.020023705437779427, -0.009375054389238358, -0.015031860210001469, 0.0020743347704410553, 0.003783060936257243, 0.04171045869588852, -0.04046739637851715, 0.023270055651664734, -0.031189631670713425, 0.036767277866601944, 0.020951202139258385, -0.0084699597209692, -0.020952923223376274, -0.02543664164841175, -0.024768540635704994, 0.01027938537299633, -0.07253371179103851, -0.0021850711200386286, 0.07163412123918533, 0.01149970106780529, -0.013324379920959473, -0.01660029962658882, 0.0002823819231707603, 0.01655804179608822, -0.046361733227968216, 0.046358875930309296, -0.033163826912641525, 0.02683897688984871, 0.035370416939258575, 0.0401657335460186, -0.0004945705295540392, 0.0004893525037914515, -0.010968551971018314, 0.027472272515296936, -0.01764029450714588, 0.016243228688836098, -0.011465289629995823, 0.03300206735730171, -0.005651366431266069, 0.004686465486884117, 0.0405726321041584, 0.016124600544571877, -0.023923972621560097, 0.015197623521089554, -0.003941897768527269, -0.040217261761426926, -0.0033060917630791664, -0.07292116433382034, 0.005123995244503021, 0.04368608444929123, 0.0009231048752553761, 0.023424413055181503, -0.04394681006669998, -0.04195164889097214, 0.031198108568787575, 0.010673888958990574, -0.02269355021417141, 0.00012260227231308818, -0.02517656423151493, 0.0005203420878387988, 0.08950509876012802, 0.04099373146891594, 0.036701351404190063, -0.006055640056729317, 0.03992293402552605, -0.03586624190211296, -0.03595075383782387, 0.02469617687165737, -0.011924573220312595, -0.047883372753858566, 0.023775622248649597, 0.007268828805536032, 0.05268055573105812, 0.03711661323904991, -0.03698241710662842, 0.024653030559420586, -0.04254039749503136, -0.006900054402649403, -0.02271154336631298, 0.023602290078997612, -0.02300836332142353, 0.05738318711519241, 0.008888864889740944, -0.007422046735882759, -0.00448227021843195, 0.007171922363340855, -0.0073708402924239635, 0.023230137303471565, 0.021876337006688118, 0.01504222396761179, -0.018989425152540207, -0.09698683768510818, -0.018319863826036453, -0.016016174107789993, 0.02449573017656803, -0.07377876341342926, 0.036794669926166534, 0.010479935444891453, -0.01095131691545248, -0.026439640671014786, 0.0316196084022522, 0.03282371908426285, 0.0745713859796524, -0.009294153191149235, 0.026008261367678642, 0.07996407151222229, 0.04386826977133751, 0.03685729205608368, 0.01705073192715645, 0.11272953450679779, 0.037445493042469025, 0.010904057882726192, -0.0025935100857168436, 0.0650627538561821, -0.056419387459754944, 0.014361301437020302, -0.029789617285132408, -0.047223493456840515, -0.06624814867973328, -0.07557281106710434, 0.013066391460597515, 0.09232009202241898, 0.016229555010795593, 0.020544011145830154, -0.04370245710015297, 0.0687597244977951, -0.06523697078227997, 0.01598740927875042, -0.031752701848745346, 0.029498977586627007, 0.002610958879813552, -0.017045339569449425, 0.021711915731430054, 0.010906331241130829, -0.005412224680185318, -0.03516815975308418, -0.02774900756776333, -0.03105209581553936, -0.07831878215074539, -0.012951243668794632, -0.01831546239554882, 0.05633492395281792, -0.009035851806402206, -0.005655501037836075, 0.06865118443965912, 0.009312462992966175, 0.022267181426286697, -0.00086405617184937, -0.015608430840075016, -0.03426642715930939, -0.059965915977954865, -0.0746302381157875, 0.0072741261683404446, -0.021305274218320847, -0.005621630232781172, -0.04149913415312767, 0.023117996752262115, -0.018993902951478958, -0.016618723049759865, -0.03615308180451393, 0.06405028700828552, -0.038856204599142075, -0.031081056222319603, 0.009119118563830853, -0.026833292096853256, -0.024206211790442467, -0.055971886962652206, 0.041081417351961136, 0.0011359411291778088, 0.0013412515399977565, -0.015145708806812763, -0.013922983780503273, -0.009438264183700085, 0.03333641588687897, -0.06967677175998688, -0.03331673890352249, -0.01257052831351757, 0.0167543888092041, -0.04421425610780716, 0.0321233905851841, -0.0015531533863395452, 0.038228001445531845, 0.0071728648617863655, -0.027152638882398605, -0.00193056371062994, -0.011107884347438812, 0.023044804111123085, -0.00873656664043665, -0.018243473023176193, 0.004424850922077894, -0.0034374590031802654, -0.003319901879876852, -0.011002389714121819, -0.03991437703371048, -0.017203575000166893, -0.047102026641368866, -0.010124213062226772, 0.05232599750161171, 0.027490410953760147, 0.030385609716176987, -0.07526484876871109, 0.013725261203944683, 0.009844090789556503, -0.0669773668050766, -0.018241368234157562, -0.004416969604790211, -0.023571399971842766, 0.013136397115886211, -0.01407621055841446, -0.03267478197813034, -0.010017737746238708, -0.13402670621871948, -0.02048962004482746, 0.028508877381682396, -0.041203901171684265, 0.008816319517791271, 0.016302751377224922, 0.03832440823316574, -0.0038859685882925987, 0.021001577377319336, 0.028602616861462593, 0.041032202541828156, -0.00449469406157732, 0.004762279335409403, -0.0022618838120251894, 0.01421891525387764, 0.01607629843056202, 0.044800110161304474, 0.03582148253917694, -0.004137370269745588, 0.013443929143249989, -0.011904723010957241, -0.0327964723110199, -0.02981768362224102, -0.011720324866473675, -0.02601429633796215, -0.0006092507392168045, -0.005843736696988344, -0.023041941225528717, 0.027164673432707787, -0.035664819180965424, 0.055893152952194214, 0.060980137437582016, 0.04357091709971428, 0.02503957599401474, 0.012483036145567894, 0.04863527789711952, -0.018736457452178, -0.07882088422775269, 0.02036161534488201, 0.005354789085686207, -0.022805526852607727, -0.007927369326353073, 0.03644760698080063, -5.852999798437241e-33, -0.014993640594184399, -0.012431872077286243, -0.036605801433324814, 0.03951520845293999, -0.04370662942528725, -0.01951664127409458, -0.04229298233985901, -0.04063115268945694, -0.021030819043517113, -0.059047192335128784, -0.0036747208796441555, -0.03713355213403702, 0.004575063474476337, -0.046683378517627716, 0.006685925181955099, -0.001236160984262824, -0.013987584039568901, 0.02667824551463127, -0.010232137516140938, -0.0006237711058929563, -0.020715225487947464, -0.031470466405153275, 0.009775860235095024, 0.06784459203481674, -0.0140357231721282, 0.013726037926971912, -0.027766646817326546, -0.017964890226721764, 0.025049827992916107, 0.04258585721254349, -0.017831725999712944, -0.01871451362967491, -0.006839035078883171, 0.03141551837325096, -0.03348688781261444, 0.022672340273857117, -0.057142436504364014, -0.0001807850057957694, -0.044262830168008804, -0.006682080216705799, 0.017528709024190903, 0.012674486264586449, -0.016400525346398354, -0.02695300802588463, 0.023673048242926598, 0.02065417543053627, 0.04723966866731644, 0.014409082010388374, -0.009845753200352192, -0.013326975516974926, -0.05682849884033203, 0.03471635654568672, -0.030884163454174995, 0.09151627123355865, -0.025576364248991013, 0.014227978885173798, 0.06488263607025146, 0.025274867191910744, -0.025428293272852898, -0.02625562623143196, 0.058057885617017746, 0.01914183609187603, 0.03879568353295326, -0.04194771498441696, 0.0018277560593560338, 0.014112342149019241, -0.027893152087926865, 0.05229438096284866, -0.005074747838079929, 0.021318553015589714, -0.0018302417593076825, -0.030414661392569542, -0.02113020233809948, -0.015852509066462517, 0.012155303731560707, -0.0022097520995885134, -0.04370870068669319, 0.0615786537528038, 0.04787622392177582, 0.1445588767528534, 0.02806749753654003, 0.011595595628023148, 0.014491874724626541, 0.017726371064782143, -0.015288999304175377, -0.04635891690850258, -0.019349684938788414, -0.017713196575641632, -0.007715850602835417, -0.029233712702989578, 0.034308649599552155, -0.023161664605140686, -0.03274418041110039, -0.007384588476270437, 0.022458486258983612, 0.03773308917880058, -0.0657346174120903, 0.015667906031012535, -0.06770861893892288, -0.07020041346549988, -0.005543671548366547, -0.037847019731998444, 0.0261565949767828, 0.0152273653075099, 0.045843835920095444, -0.0014717186568304896, 0.022704001516103745, -0.016886679455637932, -0.07534168660640717, -0.03348496928811073, -0.014313533902168274, 0.0013140062801539898, 0.020460054278373718, 0.049043264240026474, 0.004053275566548109, -0.03473221883177757, -0.017085261642932892, -0.008437573909759521, -0.023295674473047256, -0.010139585472643375, -0.0064543974585831165, 0.08713549375534058, -0.03495175018906593, -0.009912418201565742, -0.02617659978568554, -0.02145957574248314, 0.019592072814702988, 0.04164029657840729, 0.04463859647512436, -0.03261684626340866, 0.011855105869472027, 0.007206637412309647, 2.863839654310141e-07, 0.01514917891472578, 0.04606851562857628, 0.04205097630620003, -0.044413335621356964, -0.0038590370677411556, -0.039434485137462616, -0.0397116094827652, 0.0069541106931865215, -0.0031709158793091774, 0.029962632805109024, 0.008921809494495392, 0.012551583349704742, -0.010458824224770069, 0.0022735539823770523, -0.015409148298203945, -0.09068740159273148, -0.03439318761229515, 0.01607252098619938, -0.0038074813783168793, 0.012557297945022583, 0.06614430248737335, 0.03897547349333763, 0.05609598383307457, 0.019237451255321503, -0.02561856247484684, 0.012733615934848785, -0.019981592893600464, -0.03818812593817711, 0.03554322198033333, 0.009159534238278866, -0.024999257177114487, -0.05269524082541466, -0.043172650039196014, -0.02260901778936386, -0.005432412028312683, -0.00646964879706502, -0.029043516144156456, 0.03209362179040909, 0.019540216773748398, 0.032084204256534576, 0.02553020603954792, 0.013562429696321487, 0.0027479203417897224, -0.014646961353719234, 0.0037381453439593315, 0.04745009168982506, -0.012831803411245346, 0.001864854246377945, -0.06281188130378723, -0.025429783388972282, 0.006762098986655474, 0.02576204016804695, -0.016614696010947227, 0.017441987991333008, -0.029748275876045227, -0.03524598479270935, 0.005611231550574303, -0.04244779050350189, 0.023893237113952637, -0.021708667278289795, -0.05655701458454132, -0.014014502055943012, 0.023165997117757797, 0.0885370746254921, 0.07051311433315277, -0.012399494647979736, 0.013146141543984413, 3.214800266168852e-34, 0.048262715339660645, -0.039925653487443924, 0.02061581052839756, -0.021320495754480362, 0.017673559486865997, -0.017544526606798172, 0.028373777866363525, 0.03383367881178856, -0.01592620275914669, -0.06582675129175186, -0.04371172934770584], "2b3d28a7-49c8-4f38-92b2-5e2f22c35763": [0.05808226019144058, 0.007144482806324959, -0.06112167239189148, 0.028087221086025238, -0.010404198430478573, 0.04040852561593056, 0.0011205676710233092, 0.057865265756845474, -0.033359330147504807, -0.01805591955780983, 0.005266114603728056, 0.02703144960105419, 0.0015233539743348956, 0.01964113861322403, -0.032653141766786575, -0.01207995880395174, 0.04390299692749977, 0.01909564435482025, 0.071417436003685, -0.010190396569669247, -0.06027344986796379, 0.021663226187229156, 0.00945234764367342, -0.02258409932255745, 0.05051778256893158, 0.011121414601802826, 0.0197598896920681, 0.005560928024351597, 0.01777701824903488, -0.02072572149336338, -0.029127884656190872, 0.014913897961378098, -0.04719454422593117, 0.010128667578101158, 2.1249675228318665e-06, -0.010665415786206722, -0.02293020859360695, 0.012234628200531006, 0.017967358231544495, -0.01290202047675848, -0.005404969211667776, 0.012325489893555641, -0.11783897876739502, -0.024328872561454773, -0.0009750325116328895, -0.009866692125797272, -0.02343415468931198, 0.10193368047475815, 0.013317952863872051, 0.05642762780189514, 0.02489350736141205, 0.00700318394228816, 0.026980703696608543, -0.02327660657465458, 0.15493595600128174, -0.015311986207962036, -0.01371300220489502, 0.07163108885288239, 0.009015095420181751, 0.03887961059808731, 0.003828692249953747, 0.0380689762532711, -0.026557330042123795, 0.006491789594292641, 0.05503144860267639, 0.027149518951773643, 0.06199697405099869, -0.07083498686552048, 0.05241464078426361, 0.041607778519392014, 0.01704881340265274, 0.011395114473998547, 0.010381783358752728, 0.040457360446453094, -0.08921805769205093, 0.01308897603303194, -0.021595142781734467, 0.0822802409529686, 0.02409939095377922, 0.0019359883153811097, -0.04297974705696106, -0.024403493851423264, -0.0276066642254591, 0.0180347990244627, 0.03632381930947304, -0.012213120236992836, -0.03570779412984848, -0.06338447332382202, 0.023572681471705437, -0.038750048726797104, 0.04493863508105278, -0.05520355701446533, -0.016620151698589325, 0.018291370943188667, 0.06530604511499405, -0.0383932925760746, 0.015252884477376938, -0.07370505481958389, 0.0790862888097763, 0.02819616161286831, -0.05128073692321777, -0.03156290203332901, -0.04486002027988434, 0.024476222693920135, -0.028870487585663795, 0.04372406750917435, 0.00478827441111207, 0.003963501658290625, 0.0360405370593071, 0.08108944445848465, -0.033804718405008316, -0.015074417926371098, -0.0034114690497517586, -0.06049390137195587, -0.026665756478905678, 0.011334948241710663, 0.017323732376098633, 0.04120763763785362, 0.019077729433774948, 0.03998852148652077, 0.02821030467748642, -0.024257861077785492, -0.04103455692529678, 0.04369213059544563, -0.010989753529429436, -0.033247046172618866, 0.0013796234270557761, 0.00020105579460505396, -0.013163653202354908, 0.0541524663567543, -0.009404435753822327, 0.05178879573941231, 0.03718879446387291, -0.006645194720476866, -0.021712031215429306, 0.06371234357357025, 0.03396470472216606, -0.02877410687506199, 0.044636595994234085, -0.0631825178861618, 0.019744671881198883, -0.020693372935056686, -0.006822186056524515, -0.011302388273179531, -0.00988250132650137, -0.015509223565459251, 0.011074556037783623, -0.027668241411447525, 0.013230200856924057, 0.006723904050886631, -0.08528058230876923, 0.04331931099295616, -0.0633075013756752, -0.01582329161465168, 0.010187841951847076, 0.006576607469469309, -0.02907678112387657, -0.06082795560359955, 0.015317295677959919, 0.017111321911215782, 0.019952278584241867, 0.0415901243686676, 0.020597657188773155, -0.044606853276491165, -0.016094595193862915, -0.021733883768320084, 0.1054544597864151, -0.007041836157441139, 0.018085455521941185, 0.04406600818037987, 0.04786064475774765, 0.0007373824482783675, -0.01964777521789074, 0.009073404595255852, -0.005071146879345179, 0.10070481896400452, 0.023921525105834007, 0.0295826755464077, -0.03374785929918289, 0.026590272784233093, -0.0047949026338756084, -0.03503933548927307, 0.013875686563551426, -0.02648746222257614, -0.0016538287745788693, -0.003686565440148115, -0.03120560012757778, 0.003479352220892906, 0.0425264909863472, 0.021934110671281815, -0.0070043602026999, -0.016266722232103348, -0.03535839542746544, -0.07704254984855652, 0.029861394315958023, -0.0015304567059502006, -0.04280869662761688, -0.08987022936344147, 0.014780777506530285, -0.013690478168427944, 0.05424357205629349, -0.010875261388719082, 0.05606136843562126, -0.06370522826910019, 0.05700451880693436, -0.025417473167181015, 0.017564816400408745, -0.015777191147208214, -0.008294674567878246, -0.005437076091766357, -0.003328431863337755, -0.005655641667544842, -0.06275700777769089, 0.008674345910549164, -0.03918606787919998, 0.020298650488257408, -0.03044879622757435, 2.0802341168746352e-05, -0.0024583409540355206, -0.026724282652139664, 0.03494173288345337, -0.0422314777970314, -0.011660945601761341, 0.006011503748595715, 0.024639513343572617, -0.022892143577337265, -0.07033085823059082, -0.015551956370472908, 0.04257543385028839, -0.007191548589617014, -0.05071742832660675, 0.02681468054652214, 0.07231598347425461, 0.023318812251091003, -0.03904356807470322, 0.05978811904788017, 0.03367871046066284, -0.04236278682947159, -0.002469288185238838, -0.09542414546012878, -0.007968760095536709, 0.043865032494068146, 0.020116576924920082, 0.01542807649821043, 0.037370044738054276, -0.024154802784323692, -0.022418495267629623, 0.011541738174855709, 0.008380824699997902, -0.006315624341368675, 0.0008485457510687411, -0.039366401731967926, 0.034656040370464325, 0.03975233435630798, -0.006880041677504778, 0.01815606839954853, -0.07213494926691055, -0.0055700065568089485, -0.0684008076786995, 0.011720567010343075, 0.07273358106613159, 0.008538249880075455, -0.05609942600131035, 0.030751308426260948, 0.032493218779563904, -0.008722975850105286, -0.02870825119316578, 9.82821366051212e-05, -0.057122524827718735, 0.014381499029695988, 0.010479222051799297, 0.0012658183695748448, -0.002115926705300808, -0.009610086679458618, -0.0013977509224787354, -0.007240627892315388, -0.07946374267339706, 0.02912813611328602, -0.028902363032102585, 0.016591627150774002, 0.0304759182035923, 0.010647574439644814, -0.02907574735581875, 0.02004316821694374, -0.06183285266160965, -0.0025163860991597176, 0.033812250941991806, -0.054550811648368835, -0.024095606058835983, -0.05394994467496872, -0.01564975082874298, 0.04090958088636398, 0.013999751769006252, -0.028479665517807007, -0.01793018728494644, 0.031297482550144196, 0.014072087593376637, -0.011701625771820545, 0.04179609939455986, 0.07433495670557022, 0.008402053266763687, 0.008445176295936108, 0.00662938691675663, -0.0026864418759942055, -0.0025098223704844713, 0.0035220279823988676, 0.042103756219148636, -0.03668002039194107, 0.031869299709796906, -0.041786931455135345, 0.05187966674566269, 0.029717253521084785, -0.0009911875240504742, -0.0327763594686985, -0.02831553854048252, -0.010815898887813091, 0.023798340931534767, -0.0604819692671299, 0.0011804270325228572, 0.06521368771791458, 0.01843958906829357, 0.003325162222608924, -0.03125481307506561, 0.01996583305299282, 0.013545239344239235, -0.04872040078043938, 0.04656383767724037, -0.03164990246295929, 0.008177081122994423, 0.03215860202908516, 0.042721476405858994, -0.002936791628599167, 0.006017330102622509, -0.01439861673861742, 0.0388583205640316, -0.019891539588570595, 0.02387847751379013, -0.030523527413606644, 0.04231679439544678, -0.01121832150965929, -0.0014264123747125268, 0.053900763392448425, 0.018668215721845627, -0.03520456328988075, 0.00047469179844483733, -0.01629607006907463, -0.04022533819079399, -0.0027318766806274652, -0.07871915400028229, -0.0034178858622908592, 0.027419639751315117, -0.00037338220863603055, 0.011174694634974003, -0.0388357937335968, -0.04161965101957321, 0.05070802941918373, 0.009321783669292927, -0.025281589478254318, 0.0036564823240041733, -0.026831233873963356, 0.003217287827283144, 0.08694222569465637, 0.0439121313393116, 0.035980504006147385, 0.0035221732687205076, 0.053996697068214417, -0.04233469441533089, -0.0346423014998436, 0.01596340723335743, -0.025456558912992477, -0.05523616820573807, 0.021524643525481224, 0.02462778612971306, 0.06210331618785858, 0.03257652372121811, -0.021498193964362144, 0.02386985905468464, -0.03746878728270531, -0.022499023005366325, -0.027461811900138855, 0.014708955772221088, 0.005434517748653889, 0.04617783799767494, 0.015493842773139477, -0.0028349219355732203, -0.0002224020572612062, 0.006322097033262253, -0.0012880739523097873, 0.028666945174336433, 0.013186684809625149, 0.008872766979038715, -0.002861484419554472, -0.09089110046625137, -0.015947863459587097, -0.017398426309227943, 0.018811838701367378, -0.06202707067131996, 0.0318896658718586, 0.02491137385368347, -0.019151583313941956, -0.022062450647354126, 0.040045544505119324, 0.01719152182340622, 0.08816257119178772, -0.006200940348207951, 0.014478694647550583, 0.08633037656545639, 0.04125172272324562, 0.03555674105882645, 0.02489660307765007, 0.10410777479410172, 0.038883160799741745, 0.018119048327207565, 0.008939826861023903, 0.08499360084533691, -0.062017325311899185, 0.016988364979624748, -0.01655658707022667, -0.052512701600790024, -0.07110964506864548, -0.07528450340032578, 0.008211088366806507, 0.08042934536933899, 0.018936196342110634, 0.021815361455082893, -0.04493766650557518, 0.07193920016288757, -0.07933405041694641, 0.003342800308018923, -0.03525348752737045, 0.02100191079080105, 0.013946929946541786, 0.00032844775705598295, 0.024531329050660133, 0.010930893942713737, -0.003113583428785205, -0.01600474677979946, -0.035623662173748016, -0.022173795849084854, -0.07667814940214157, -0.03026016242802143, -0.011456407606601715, 0.05056416243314743, -0.013008110225200653, -0.006870863493531942, 0.047174662351608276, 0.013486351817846298, 0.03506578505039215, -0.008849423378705978, -0.005189101677387953, -0.030531784519553185, -0.048830270767211914, -0.06821829825639725, 0.0004398549790494144, -0.018969420343637466, 0.006699143443256617, -0.015535776503384113, 0.010381722822785378, -0.011265313252806664, -0.04106247425079346, -0.05544891208410263, 0.05898137763142586, -0.04158205911517143, -0.025112122297286987, 0.001117587205953896, -0.03890847787261009, -0.029053013771772385, -0.0558956116437912, 0.0330815464258194, -0.0037143423687666655, 0.0003357483656145632, -0.007803623098880053, -0.009422942996025085, -0.0042837574146687984, 0.031529173254966736, -0.06733222305774689, -0.04306122660636902, -0.005158621352165937, 0.018529925495386124, -0.052891023457050323, 0.03068515658378601, 0.0019383449107408524, 0.025391260161995888, -0.015894444659352303, -0.02564569003880024, 0.004176777321845293, -0.007556395139545202, 0.015839751809835434, 0.007721480447798967, -0.01759026199579239, 0.014033046551048756, -0.004698718432337046, -0.005674780812114477, -0.010394450277090073, -0.0324455127120018, -0.025558579713106155, -0.05984582379460335, -0.024528197944164276, 0.04339824989438057, 0.01244724728167057, 0.029620900750160217, -0.0688382014632225, 0.007662251126021147, -0.004074743948876858, -0.06780052185058594, -0.022958975285291672, 0.005435027647763491, -0.031039921566843987, 0.008569779805839062, -0.027787385508418083, -0.018469976261258125, -0.014862443320453167, -0.12355116009712219, -0.007286209147423506, 0.01335922908037901, -0.04553991183638573, -0.00015097533469088376, -0.01371083315461874, 0.038639720529317856, 0.008453725837171078, 0.017826469615101814, 0.0330347940325737, 0.03261697664856911, -0.00450914865359664, 0.0025716577656567097, 0.009339556097984314, 0.010183694772422314, 0.013930292800068855, 0.04600389674305916, 0.03987725451588631, 0.0013727934565395117, 0.009946977719664574, 0.009370353072881699, -0.027364389970898628, -0.023341653868556023, 0.003933609463274479, -0.021600160747766495, -0.0018747132271528244, -0.004241473972797394, -0.028563525527715683, 0.036701563745737076, -0.034470174461603165, 0.062357693910598755, 0.04284770041704178, 0.03802502527832985, 0.037505391985177994, 0.0018599936738610268, 0.057942863553762436, -0.014030625112354755, -0.06859412044286728, 0.024044746533036232, -0.0022360633593052626, -0.020186157897114754, -0.00018368646851740777, 0.04124134033918381, -5.4833296003066784e-33, -0.01100507378578186, -0.020942550152540207, -0.03614036738872528, 0.027646122500300407, -0.0400514230132103, -0.015722298994660378, -0.04121186584234238, -0.044239915907382965, -0.02318701706826687, -0.05599617958068848, -0.004144762642681599, -0.053439315408468246, 0.0038847564719617367, -0.0388147234916687, 0.012956509366631508, 0.002453515073284507, -0.021814052015542984, 0.023250680416822433, -0.007157437968999147, 0.006771892309188843, -0.020263779908418655, -0.025832492858171463, 0.009512891061604023, 0.05445491150021553, -0.00782489962875843, 0.022021058946847916, -0.0294059868901968, -0.01936878263950348, 0.06483069807291031, 0.03219551965594292, -0.030014030635356903, -0.022288590669631958, -0.004629082046449184, 0.02859891764819622, -0.036329131573438644, 0.0013945575337857008, -0.0542171485722065, 0.006502341479063034, -0.04859095439314842, 0.014454184100031853, 0.024190764874219894, 0.01876240223646164, -0.01476537436246872, -0.03159571439027786, 0.04453393444418907, 0.007341334130614996, 0.04820077121257782, 0.0023918161168694496, 0.00204736040905118, -0.0058792270720005035, -0.055406730622053146, 0.03773936629295349, -0.034425217658281326, 0.0766453817486763, -0.02569502778351307, 0.027124611660838127, 0.0701519250869751, 0.047737967222929, -0.014797325246036053, -0.03626197949051857, 0.05183052644133568, 0.013434330001473427, 0.0472356416285038, -0.0441821925342083, -0.0024592343252152205, 0.005832563620060682, -0.046522680670022964, 0.04839857295155525, -0.015966888517141342, 0.03217046335339546, 0.006305611226707697, -0.024967925623059273, -0.027149120345711708, -0.016823314130306244, -0.009393366985023022, -0.003079853020608425, -0.042119789868593216, 0.06235402822494507, 0.03197254613041878, 0.1438024789094925, 0.031002730131149292, 0.01099739782512188, 0.027976442128419876, 0.023593813180923462, -0.0022019303869456053, -0.06029331684112549, -0.015886036679148674, -0.02325466088950634, -0.001980793895199895, -0.023318426683545113, 0.03171040862798691, -0.01712954044342041, -0.03980603814125061, -0.007644196506589651, 0.020568853244185448, 0.042648445814847946, -0.08115237951278687, 0.008667733520269394, -0.0741281658411026, -0.07015126198530197, -0.0015839047264307737, -0.02527582086622715, 0.022950084879994392, 0.008011715486645699, 0.038065504282712936, -0.009715290740132332, 0.028719566762447357, -0.02370491623878479, -0.06788036227226257, -0.031367119401693344, -0.014062788337469101, -0.007775690406560898, 0.024200497195124626, 0.055650945752859116, -0.006535478867590427, -0.03890259563922882, -0.03517888858914375, -0.011855252087116241, -0.008916235528886318, 0.0036521160509437323, -0.012410948053002357, 0.07151351124048233, -0.03430875018239021, -0.019524887204170227, -0.028388474136590958, -0.02207055501639843, 0.026132039725780487, 0.025953764095902443, 0.019778745248913765, -0.04448053240776062, 0.01638326235115528, 0.007254394702613354, 2.7313669193063106e-07, 0.016938550397753716, 0.04224336892366409, 0.031629327684640884, -0.04970387741923332, -0.007828781381249428, -0.031886886805295944, -0.03975829482078552, 0.012649639509618282, -0.018351301550865173, 0.03624913468956947, 0.007437666412442923, 0.007524800021201372, -0.0009027058840729296, 0.008586517535150051, -0.011700622737407684, -0.07582637667655945, -0.029871076345443726, 0.006154963746666908, -0.002802697941660881, 0.0017745128134265542, 0.06188694387674332, 0.040814995765686035, 0.047532934695482254, 0.019183680415153503, -0.021904155611991882, 0.013135811313986778, -0.03795497491955757, -0.033372338861227036, 0.015968741849064827, -0.001462295651435852, -0.03050041012465954, -0.042061492800712585, -0.05317385494709015, -0.025256672874093056, -0.010315889492630959, -0.006016959436237812, -0.023352280259132385, 0.010530473664402962, 0.021036503836512566, 0.028456436470150948, 0.02511744201183319, 0.013726488687098026, 0.019565606489777565, -0.03225119039416313, 0.004984662402421236, 0.056325268000364304, -0.014724301174283028, 0.005440229550004005, -0.056028928607702255, -0.020567486062645912, 0.020408427342772484, 0.019073160365223885, -0.02130277268588543, 0.025717411190271378, -0.033805396407842636, -0.04353632777929306, 0.009590604342520237, -0.03771024942398071, 0.019682126119732857, -0.01685328781604767, -0.05333638936281204, 4.211509076412767e-05, 0.027572227641940117, 0.07489112764596939, 0.07755729556083679, 0.011359317228198051, 0.016805598512291908, 3.024843593318336e-34, 0.04144332930445671, -0.030311673879623413, 0.015760233625769615, -0.0212569497525692, 0.023673830553889275, -0.021356886252760887, 0.033230431377887726, 0.02892029471695423, -0.014713604003190994, -0.06546252965927124, -0.04106057807803154], "d08eb6d7-705b-4369-ab85-17f47f9090b5": [0.057320524007081985, 0.007836990058422089, -0.06096028909087181, 0.019805604591965675, -0.020926062017679214, 0.03670797869563103, 9.61985278991051e-05, 0.05183449387550354, -0.04015064984560013, -0.020520279183983803, 0.0026213473174721003, 0.02103089541196823, 0.0005318629555404186, 0.018373027443885803, -0.039861422032117844, -0.005338861607015133, 0.039529021829366684, 0.01746681146323681, 0.0745423287153244, -0.011687131598591805, -0.053606774657964706, 0.02590177394449711, 0.0074758692644536495, -0.028917236253619194, 0.057297300547361374, 0.014553004875779152, 0.01989453099668026, 0.004928051494061947, 0.014235438778996468, -0.007094006519764662, -0.02667962945997715, 0.017829105257987976, -0.045366574078798294, 0.008917679078876972, 2.054809783658129e-06, -0.008326946757733822, -0.02099509723484516, 0.012054447084665298, 0.02024911344051361, -0.020000245422124863, -0.007039361167699099, 0.008169233798980713, -0.11512435227632523, -0.02547588385641575, -0.00795501284301281, -0.005704013165086508, -0.03286798670887947, 0.10291148722171783, 0.013863510452210903, 0.04807246848940849, 0.020808186382055283, 0.005226424895226955, 0.022595634683966637, -0.025196989998221397, 0.15574222803115845, -0.0067158956080675125, -0.011693882755935192, 0.07683424651622772, 0.014008661732077599, 0.04030654951930046, 0.007099864073097706, 0.03963625803589821, -0.020494457334280014, 0.004347939509898424, 0.060864731669425964, 0.023311883211135864, 0.06286193430423737, -0.0691695287823677, 0.04446176439523697, 0.03561785817146301, 0.017674298956990242, 0.009875833988189697, 0.008687864989042282, 0.031257662922143936, -0.08668100833892822, 0.01899820938706398, -0.024972105398774147, 0.0754668116569519, 0.026594683527946472, 0.0035771203693002462, -0.06017066910862923, -0.023193655535578728, -0.02837800234556198, 0.023037999868392944, 0.03922384977340698, -0.015820911154150963, -0.040925443172454834, -0.06231117248535156, 0.023961706086993217, -0.03219381347298622, 0.04381854087114334, -0.05384352430701256, -0.012926418334245682, 0.020945189520716667, 0.05976289510726929, -0.0471971370279789, 0.018109504133462906, -0.07769505679607391, 0.08224744349718094, 0.03157418593764305, -0.04706909507513046, -0.03947458043694496, -0.04928620904684067, 0.03074740804731846, -0.030732113867998123, 0.05268513038754463, 0.004376267082989216, -0.0013790861703455448, 0.035439152270555496, 0.06945755332708359, -0.040234677493572235, -0.012615046463906765, -0.00042864136048592627, -0.05919969454407692, -0.02286151982843876, 0.013208319433033466, 0.013447425328195095, 0.03936760872602463, 0.020070722326636314, 0.03312142938375473, 0.033154748380184174, -0.028908303007483482, -0.03772132098674774, 0.04180048778653145, -0.01317090354859829, -0.03193223103880882, 0.0037658726796507835, -0.0009682407835498452, -0.00929923728108406, 0.060731954872608185, -0.009584188461303711, 0.05040261149406433, 0.038964007049798965, -0.004817072302103043, -0.0222664512693882, 0.05753108859062195, 0.035217344760894775, -0.0327533520758152, 0.045741766691207886, -0.06006493791937828, 0.02237340435385704, -0.02566557005047798, -0.010444319806993008, -0.009776021353900433, -0.006152470596134663, -0.019237736240029335, 0.002581744221970439, -0.03653896972537041, 0.008701125159859657, 0.005853395909070969, -0.08398418873548508, 0.03764757513999939, -0.06095461919903755, -0.015564341098070145, 0.007123372983187437, 0.007995029911398888, -0.03801986575126648, -0.057660024613142014, 0.012789644300937653, 0.025826500728726387, 0.014963586814701557, 0.0480659194290638, 0.024039803072810173, -0.04670673981308937, -0.01536854449659586, -0.020379377529025078, 0.11003606021404266, -0.008684401400387287, 0.015125849284231663, 0.04357832670211792, 0.04090173542499542, 0.0016340585425496101, -0.01716080866754055, 0.012955301441252232, -0.004923409782350063, 0.10556396842002869, 0.03227080777287483, 0.0218840092420578, -0.02641669102013111, 0.032239943742752075, -0.002627229318022728, -0.03485336899757385, 0.015072496607899666, -0.02050868421792984, 0.00981844775378704, -0.013672402128577232, -0.032870277762413025, -0.0002842044923454523, 0.043665893375873566, 0.019030898809432983, -0.004203188233077526, -0.017955612391233444, -0.03864619880914688, -0.07231590896844864, 0.028232401236891747, 0.0020216938573867083, -0.039001595228910446, -0.09099818021059036, 0.017682699486613274, -0.012134031392633915, 0.05883343145251274, -0.00802780780941248, 0.05911991372704506, -0.06715501099824905, 0.05004802346229553, -0.023553859442472458, 0.01775498501956463, -0.012410893104970455, -0.0004611332551576197, -0.010782238095998764, 0.0002741629141382873, -0.006038430146872997, -0.06372415274381638, 0.006754722911864519, -0.03487873449921608, 0.019658856093883514, -0.03346367925405502, 0.001872602733783424, -0.0015469705685973167, -0.031062781810760498, 0.03380616009235382, -0.035764776170253754, -0.012867892161011696, 0.008202985860407352, 0.025387050583958626, -0.0211806558072567, -0.062145743519067764, -0.022130193188786507, 0.0424557663500309, -0.009738625958561897, -0.0467446930706501, 0.02569952793419361, 0.06866016238927841, 0.024387413635849953, -0.04375404864549637, 0.05317077040672302, 0.042750511318445206, -0.03649701178073883, -0.010043530724942684, -0.07813253253698349, -0.010270708240568638, 0.026353131979703903, 0.014974630437791348, 0.01405512634664774, 0.03937401995062828, -0.019200019538402557, -0.026097580790519714, 0.011973105370998383, -0.0008912729099392891, -0.00403968570753932, -0.00234141293913126, -0.04248770698904991, 0.03311906009912491, 0.03997854143381119, -0.012094353325664997, 0.01916474476456642, -0.07887211441993713, -0.011263596825301647, -0.06811940670013428, 0.02330242656171322, 0.07340488582849503, 0.00846037082374096, -0.06250552833080292, 0.025262538343667984, 0.03335873410105705, -0.0062910644337534904, -0.022068388760089874, 0.008243858814239502, -0.05966994911432266, 0.016599014401435852, 0.012870518490672112, -0.004176103975623846, 0.002677385462448001, -0.005546865984797478, 0.0013104835525155067, -0.009458798915147781, -0.0718647837638855, 0.028684698045253754, -0.03137665614485741, 0.016719261184334755, 0.041455429047346115, 0.016098923981189728, -0.027057504281401634, 0.02332156151533127, -0.059295982122421265, -0.00656271493062377, 0.03863753005862236, -0.04727089777588844, -0.019404254853725433, -0.060290154069662094, -0.013972969725728035, 0.039869051426649094, 0.01710478588938713, -0.0208356324583292, -0.012501759454607964, 0.02974909543991089, 0.025821218267083168, -0.01857149787247181, 0.0372312031686306, 0.06186246499419212, 0.008255856111645699, 0.009035640396177769, 0.0028989657294005156, -0.00726882042363286, 0.0016709942137822509, 0.003729483811184764, 0.0385681614279747, -0.03198985755443573, 0.03491316735744476, -0.043895233422517776, 0.04807461053133011, 0.029403679072856903, -0.009614616632461548, -0.02944595366716385, -0.03089207597076893, -0.016697602346539497, 0.03040936030447483, -0.0673944428563118, 0.0037176329642534256, 0.07127460092306137, 0.01965550146996975, -0.0009525353088974953, -0.02924427203834057, 0.0138664236292243, 0.00677462387830019, -0.044307973235845566, 0.03871440142393112, -0.03310353308916092, 0.01526575069874525, 0.03160582110285759, 0.03724271059036255, -0.008321613073348999, 0.01496159564703703, -0.016940200701355934, 0.032934416085481644, -0.01815854199230671, 0.02231098711490631, -0.031063495203852654, 0.03605470061302185, -0.006600010208785534, 0.004114262759685516, 0.05625409260392189, 0.02237405627965927, -0.02710786461830139, 0.00032707853824831545, -0.01050091814249754, -0.04782968759536743, 0.0012986712390556931, -0.07731277495622635, 0.0006985387881286442, 0.024223176762461662, 0.0023997812531888485, 0.01066596619784832, -0.03595735877752304, -0.038815032690763474, 0.04452633485198021, 0.008685518987476826, -0.025816529989242554, 0.0027456884272396564, -0.029449278488755226, -0.009312042035162449, 0.08351442962884903, 0.04398546367883682, 0.034958332777023315, -0.000868813309352845, 0.04899057000875473, -0.045365385711193085, -0.03189946711063385, 0.023422447964549065, -0.029127610847353935, -0.0597342774271965, 0.016058627516031265, 0.025817416608333588, 0.05999307334423065, 0.0313410758972168, -0.023469747975468636, 0.020654145628213882, -0.040401723235845566, -0.026197653263807297, -0.03282633796334267, 0.0223423819988966, 0.007905418053269386, 0.05065067112445831, 0.013579558581113815, -0.007119895424693823, -0.004887167364358902, 0.0029284111224114895, -0.007539974991232157, 0.03602704778313637, 0.017039302736520767, 0.006617867387831211, -0.000177838810486719, -0.08235127478837967, -0.015359810553491116, -0.018391400575637817, 0.015609589405357838, -0.07627937942743301, 0.03021610900759697, 0.027834055945277214, -0.015594524331390858, -0.026786373928189278, 0.04624836891889572, 0.012560635805130005, 0.09198760241270065, -0.00710345059633255, 0.008132037706673145, 0.08640896528959274, 0.038609232753515244, 0.033786602318286896, 0.023272952064871788, 0.11232504993677139, 0.039216019213199615, 0.01628989353775978, 0.0064767771400511265, 0.0821552723646164, -0.06347033381462097, 0.018366169184446335, -0.018541615456342697, -0.04990287870168686, -0.06694471091032028, -0.08094232529401779, 0.007091625593602657, 0.08700767904520035, 0.016535960137844086, 0.019428322091698647, -0.04769785329699516, 0.06971634924411774, -0.06668376922607422, 0.004034210462123156, -0.035516902804374695, 0.024217862635850906, 0.021834835410118103, 0.003553089452907443, 0.02244577184319496, 0.011556723155081272, -0.00862504355609417, -0.01597750000655651, -0.0279102586209774, -0.018239086493849754, -0.07561640441417694, -0.027730252593755722, -0.0051038493402302265, 0.05836042761802673, -0.012655656784772873, -0.0023925602436065674, 0.04397771507501602, 0.01121992152184248, 0.04021701589226723, -0.004664999898523092, 0.0011019251542165875, -0.02993983030319214, -0.03960293158888817, -0.07868335396051407, 0.012448858469724655, -0.019685368984937668, 0.004088298417627811, -0.025355512276291847, 0.01287069357931614, -0.010490343905985355, -0.0424673967063427, -0.05856586620211601, 0.05799267441034317, -0.04375837370753288, -0.020365681499242783, 0.00035222445148974657, -0.03435170650482178, -0.022671060636639595, -0.0603240467607975, 0.026740672066807747, -0.0030892633367329836, -0.0022182075772434473, -0.008798426948487759, -0.006734482012689114, -0.01062157191336155, 0.037617310881614685, -0.06440702080726624, -0.04202878475189209, -0.004457325208932161, 0.030195025727152824, -0.0526529885828495, 0.023147543892264366, 0.0003562687779776752, 0.026264088228344917, -0.019138678908348083, -0.024541880935430527, 0.005035229958593845, -0.003170374082401395, 0.019562067463994026, 0.0033914963714778423, -0.02383909747004509, 0.012361191213130951, -0.008068885654211044, -0.0032730752136558294, -0.007451283745467663, -0.03244207426905632, -0.023314515128731728, -0.058250054717063904, -0.01695248857140541, 0.051295049488544464, 0.009828099049627781, 0.029231635853648186, -0.0696583241224289, 0.004719513934105635, 0.0019457938615232706, -0.07047801464796066, -0.0247998908162117, 0.005604638252407312, -0.03197690099477768, 0.011753675527870655, -0.0241157878190279, -0.02101082354784012, -0.01767710968852043, -0.12617361545562744, 0.0002589646610431373, 0.020201362669467926, -0.044248323887586594, -0.00712314760312438, -0.009895929135382175, 0.04497319459915161, 0.010483916848897934, 0.018517469987273216, 0.030590709298849106, 0.027519725263118744, -0.012726161628961563, 0.0064528100192546844, 0.00801977701485157, 0.013151776045560837, 0.020310495048761368, 0.0523650199174881, 0.034426089376211166, -0.00685401214286685, 0.007548285182565451, 0.0006334937643259764, -0.020776743069291115, -0.022863730788230896, -0.003095183754339814, -0.022170329466462135, -0.007177409715950489, -0.0038804300129413605, -0.027646981179714203, 0.03804934024810791, -0.02779718115925789, 0.06974498182535172, 0.04570521414279938, 0.03731141984462738, 0.036295413970947266, 0.0017910015303641558, 0.05950809270143509, -0.017875980585813522, -0.06388156861066818, 0.02013499289751053, -0.003337262198328972, -0.019902583211660385, -0.006538999266922474, 0.03642695024609566, -5.3811894267957913e-33, -0.010843944735825062, -0.021206147968769073, -0.032430533319711685, 0.0377359502017498, -0.043438199907541275, -0.01591354049742222, -0.04361799359321594, -0.05302969738841057, -0.022170888260006905, -0.05812666192650795, -0.006844001356512308, -0.05327511206269264, 0.005219100043177605, -0.039237916469573975, 0.021392356604337692, 0.0016319772694259882, -0.01994539052248001, 0.016873249784111977, -0.00344523205421865, 0.012821514159440994, -0.025837121531367302, -0.02829837240278721, 0.002290981588885188, 0.06272522360086441, -0.009930568747222424, 0.020760737359523773, -0.029357045888900757, -0.017515400424599648, 0.05615205317735672, 0.030594883486628532, -0.027378462255001068, -0.02492343634366989, -0.006179878953844309, 0.028940344229340553, -0.03341684490442276, 6.020284854457714e-05, -0.0399782620370388, 0.006242335774004459, -0.0496988445520401, 0.011380516923964024, 0.01638495922088623, 0.022595476359128952, -0.010872232727706432, -0.02812093496322632, 0.041763853281736374, 0.008734817616641521, 0.04224757105112076, 0.009319036267697811, 0.009104538708925247, -0.004160044249147177, -0.051298629492521286, 0.03688637167215347, -0.026750339195132256, 0.08079180866479874, -0.013774072751402855, 0.027875451371073723, 0.06968911737203598, 0.054174866527318954, -0.00786112155765295, -0.03496401384472847, 0.05321193113923073, 0.015672076493501663, 0.04381326958537102, -0.04388494789600372, -0.0014368481934070587, 0.0028319954872131348, -0.05107778310775757, 0.04961831122636795, -0.01164786797016859, 0.031209388747811317, 0.008119753561913967, -0.026885297149419785, -0.021895017474889755, -0.007380755618214607, -0.016667721793055534, 0.01046182680875063, -0.03724270313978195, 0.05382489785552025, 0.03973466530442238, 0.14561019837856293, 0.02540605515241623, 0.014440487138926983, 0.03933194652199745, 0.027060719206929207, -0.002460560528561473, -0.06921359896659851, -0.010399888269603252, -0.028456158936023712, -0.0038534440100193024, -0.024254661053419113, 0.031920574605464935, -0.01703205518424511, -0.040494270622730255, -0.0027292799204587936, 0.017368121072649956, 0.03719441592693329, -0.07686677575111389, 0.009994733147323132, -0.06861498206853867, -0.06522966176271439, -0.001840431010350585, -0.02069651335477829, 0.026349566876888275, 0.008876063860952854, 0.037842072546482086, -0.005828018765896559, 0.029741140082478523, -0.022778289392590523, -0.06084146723151207, -0.03316812589764595, -0.011143448762595654, -0.0050027817487716675, 0.02360675111413002, 0.06579352915287018, -0.013003747910261154, -0.0363958403468132, -0.032753657549619675, -0.01313855778425932, -0.019826699048280716, -0.006182663608342409, -0.0070457737892866135, 0.07368027418851852, -0.033607982099056244, -0.016439570114016533, -0.03235951438546181, -0.02463388256728649, 0.03455385938286781, 0.02913760021328926, 0.02155456505715847, -0.03772084787487984, 0.021713824942708015, 0.012709632515907288, 2.6913443207376986e-07, 0.010731649585068226, 0.0455283485352993, 0.022878553718328476, -0.05127296969294548, -0.006337827071547508, -0.03863535448908806, -0.042461130768060684, 0.0016386107308790088, -0.012577138841152191, 0.030782150104641914, 0.008740756660699844, 0.005277777556329966, -0.004372766707092524, 0.013666009530425072, -0.01565013825893402, -0.07931660860776901, -0.03426414728164673, 0.004358688835054636, -0.0027651262935250998, -0.005074064247310162, 0.06139205023646355, 0.0415697880089283, 0.053460780531167984, 0.021840907633304596, -0.02634609304368496, 0.015355788171291351, -0.03692850098013878, -0.035656124353408813, 0.01691778562963009, 0.00535438721999526, -0.03459641709923744, -0.048515960574150085, -0.060477253049612045, -0.024607006460428238, -0.010583041235804558, -0.006688667926937342, -0.024653438478708267, 0.006982661783695221, 0.02456892840564251, 0.030351711437106133, 0.02854945696890354, 0.025678401812911034, 0.015231207013130188, -0.031445834785699844, 0.0007352471584454179, 0.037686217576265335, -0.01571991853415966, 0.0041288393549621105, -0.05471538379788399, -0.017942216247320175, 0.018358420580625534, 0.024561382830142975, -0.021206624805927277, 0.020213384181261063, -0.03466120734810829, -0.039453309029340744, 0.009414071217179298, -0.03411490470170975, 0.024586740881204605, -0.022214561700820923, -0.05242953076958656, 0.005120388697832823, 0.020374087616801262, 0.07560975849628448, 0.06679835170507431, 0.010015783831477165, 0.01828669384121895, 2.9172211161933054e-34, 0.04105156660079956, -0.03307947888970375, 0.01962619088590145, -0.019085122272372246, 0.01724318414926529, -0.015748873353004456, 0.0303692314773798, 0.031838733702898026, -0.019579412415623665, -0.06621865183115005, -0.03836246579885483], "ed3797f6-6391-46b7-8c12-723d805edd3f": [0.052458520978689194, -0.003978111315518618, -0.06569749116897583, 0.025934582576155663, -0.008190405555069447, 0.043732695281505585, 0.013289266265928745, 0.05939854681491852, -0.021320903673768044, -0.02738119848072529, -3.9163100154837593e-05, 0.017348283901810646, -0.003771021729335189, 0.017741097137331963, -0.0298538189381361, -0.011624994687736034, 0.054791975766420364, 0.010262907482683659, 0.05238708481192589, -0.00910905096679926, -0.051897428929805756, 0.019303645938634872, 0.006927936337888241, -0.024595627561211586, 0.04838563874363899, 0.02030918560922146, 0.016361666843295097, 0.0038309507071971893, 0.023493368178606033, -0.02310917153954506, -0.029534010216593742, 0.0020987570751458406, -0.03752831369638443, 0.0053940098732709885, 2.0998131731175818e-06, -0.015245099551975727, -0.035695794969797134, 0.01563366875052452, 0.020803088322281837, -0.01133060734719038, 0.005489517468959093, 0.01492131408303976, -0.1201823502779007, -0.024699052795767784, 0.0016691493801772594, -0.0020593658555299044, -0.018492456525564194, 0.09374742209911346, 0.0072503527626395226, 0.06213497370481491, 0.026944758370518684, 0.0071240938268601894, 0.040687743574380875, -0.020037589594721794, 0.16094329953193665, -0.024462174624204636, -0.015188089571893215, 0.07746077328920364, 0.016316941007971764, 0.030576683580875397, 0.007867105305194855, 0.040010906755924225, -0.029029501602053642, 0.005583870690315962, 0.05594634637236595, 0.02736523747444153, 0.06649108976125717, -0.07342460751533508, 0.047083958983421326, 0.044290121644735336, 0.022118033841252327, 0.012164891697466373, 0.008248182013630867, 0.045186255127191544, -0.08940914273262024, 0.012443170882761478, -0.027257824316620827, 0.0808589905500412, 0.01613479293882847, 0.0050303516909480095, -0.034320611506700516, -0.021462537348270416, -0.028143135830760002, 0.017922814935445786, 0.02763625606894493, -0.0017403987003490329, -0.03923806548118591, -0.07041037082672119, 0.017472578212618828, -0.04493289813399315, 0.03860475495457649, -0.04882330819964409, -0.008379142731428146, 0.024539628997445107, 0.06537513434886932, -0.032666079699993134, 0.00812054704874754, -0.06943289190530777, 0.08519109338521957, 0.03399499133229256, -0.05391569808125496, -0.03511565551161766, -0.040808312594890594, 0.024392487481236458, -0.03434211015701294, 0.04629708081483841, 0.0039548007771372795, -0.005966056603938341, 0.03509509563446045, 0.07820234447717667, -0.037028200924396515, -0.015434720553457737, -0.00882431399077177, -0.06141486391425133, -0.02561129257082939, 0.009326359257102013, 0.02123250812292099, 0.03834231570363045, 0.013585150241851807, 0.04059738665819168, 0.02613634057343006, -0.03311854973435402, -0.035224415361881256, 0.050953082740306854, -0.00837690383195877, -0.04203858971595764, 0.01554183941334486, -0.0052842688746750355, -0.01220775581896305, 0.04237539321184158, -0.008679354563355446, 0.050168104469776154, 0.030573030933737755, -0.003008381463587284, -0.021309925243258476, 0.06416846811771393, 0.040257394313812256, -0.0370706245303154, 0.04906950891017914, -0.062212005257606506, 0.018467627465724945, -0.02601040154695511, -0.015649480745196342, -0.01709454506635666, -0.01284367498010397, -0.006338351406157017, 0.01220857072621584, -0.028974616900086403, 0.023818379268050194, 0.006862001959234476, -0.08385762572288513, 0.04931767284870148, -0.07034140825271606, -0.019545303657650948, 0.012811961583793163, 0.006143668200820684, -0.019962569698691368, -0.053562991321086884, 0.0262927133589983, 0.00868078600615263, 0.01528191938996315, 0.05107158422470093, 0.01759801059961319, -0.05018148571252823, -0.013078863732516766, -0.0248765479773283, 0.10310525447130203, -0.0037814907263964415, 0.03777644410729408, 0.05158858746290207, 0.04011819511651993, -0.0005996179534122348, -0.019299974665045738, 0.011809645220637321, -0.012797747738659382, 0.101342111825943, 0.025830475613474846, 0.039333660155534744, -0.027605274692177773, 0.019780196249485016, 0.0035193064250051975, -0.03940119594335556, 0.018868830054998398, -0.02741152048110962, 0.006337644532322884, -0.004382587969303131, -0.034749586135149, 0.012108415365219116, 0.04335661977529526, 0.015407029539346695, -0.00952110905200243, -0.014388496056199074, -0.028267186135053635, -0.07880017161369324, 0.03269875422120094, -0.010024442337453365, -0.04728660732507706, -0.08158092200756073, 0.013483350165188313, -0.021842416375875473, 0.05138697102665901, -0.01206271257251501, 0.05492720752954483, -0.06018532067537308, 0.06017356738448143, -0.04089228808879852, 0.017630571499466896, -0.019739599898457527, -0.01000802032649517, -0.00544065423309803, 0.0033575906418263912, 0.00020161036809440702, -0.06246458366513252, -0.006490368861705065, -0.030598647892475128, 0.014910323545336723, -0.03199426829814911, 0.008887376636266708, -0.012825305573642254, -0.02475479431450367, 0.03843105584383011, -0.04133909195661545, -0.010060560889542103, 0.00677510816603899, 0.01940341293811798, -0.025804923847317696, -0.07872635871171951, -0.013834912329912186, 0.030768075957894325, -0.007195837330073118, -0.060165002942085266, 0.030815262347459793, 0.07755904644727707, 0.02341725304722786, -0.03197285905480385, 0.0598968043923378, 0.02704712189733982, -0.04623135179281235, -0.006563327740877867, -0.1054169088602066, -0.001485519576817751, 0.04736052080988884, 0.026471741497516632, 0.020763739943504333, 0.040605783462524414, -0.020192362368106842, -0.026701252907514572, 0.009069395251572132, 0.015597289428114891, -0.0031028243247419596, 0.0035508598666638136, -0.04254302754998207, 0.03564329445362091, 0.041186921298503876, 0.0013997169444337487, 0.017978375777602196, -0.06946637481451035, -0.008949617855250835, -0.07162412256002426, 0.01021138671785593, 0.07310189306735992, 0.011391978710889816, -0.05470794066786766, 0.026795921847224236, 0.024824339896440506, -0.00199214369058609, -0.03840960934758186, -0.006709956098347902, -0.047135163098573685, 0.014400368556380272, 0.015044484287500381, -0.0007156866486184299, -0.005029377527534962, -0.010828090831637383, -0.003623123047873378, -0.010463396087288857, -0.08390745520591736, 0.03317854180932045, -0.034240275621414185, 0.019591074436903, 0.023813413456082344, 0.00021786718571092933, -0.03290879726409912, 0.014408818446099758, -0.060515396296978, -0.002789226360619068, 0.04404408112168312, -0.05142180621623993, -0.04072214663028717, -0.0620344877243042, -0.012530185282230377, 0.04425013065338135, 0.01791432872414589, -0.017310595139861107, -0.01932547800242901, 0.03273647651076317, 0.01232585497200489, -0.0007577515789307654, 0.03561679646372795, 0.08797141164541245, 0.018970437347888947, 0.01941261999309063, 0.006086272653192282, -0.0043802266009151936, -0.001418482861481607, 0.015292663127183914, 0.04392167180776596, -0.03581459820270538, 0.03763139620423317, -0.031136691570281982, 0.0396152064204216, 0.026218894869089127, 0.01022751722484827, -0.020275168120861053, -0.028888016939163208, -0.005945097655057907, 0.023801924660801888, -0.07054823637008667, 0.0005241803009994328, 0.06810668855905533, 0.02236294373869896, -0.004196284804493189, -0.02743072621524334, 0.011563052423298359, 0.011908925138413906, -0.0657544955611229, 0.036082495003938675, -0.03591061383485794, 0.0036836916115134954, 0.0351630337536335, 0.04538309574127197, 0.0002682452031876892, -0.0007592614274471998, -0.014381888322532177, 0.03741723299026489, -0.017411205917596817, 0.01982920803129673, -0.021310850977897644, 0.046772610396146774, -0.00563812768086791, -0.0029858918860554695, 0.045694101601839066, 0.01521869096904993, -0.03160645440220833, 0.0007567088468931615, -0.011227722279727459, -0.026730338111519814, 0.00012437898840289563, -0.10261279344558716, 0.0004859936598222703, 0.03784782066941261, -0.0003865172911901027, 0.010005421936511993, -0.033428989350795746, -0.04099373519420624, 0.05995015799999237, -0.00046654537436552346, -0.027544455602765083, 0.008037020452320576, -0.03612954169511795, 0.002233545994386077, 0.08458670228719711, 0.027290891855955124, 0.041569605469703674, 0.007143258582800627, 0.05834081023931503, -0.0404818132519722, -0.035190653055906296, 0.006510833743959665, -0.03176180645823479, -0.04870772361755371, 0.02261357568204403, 0.015215453691780567, 0.06057277321815491, 0.03581748530268669, -0.021245822310447693, 0.020254842936992645, -0.0509076863527298, -0.019323505461215973, -0.025229988619685173, 0.025569384917616844, 0.005724231246858835, 0.0474136546254158, 0.013932941481471062, -0.003988961689174175, -0.006156526040285826, 0.016814839094877243, -0.005189910065382719, 0.036579374223947525, 0.0122385798022151, 0.012825634330511093, -0.012581936083734035, -0.09973201900720596, -0.019991643726825714, -0.024433575570583344, 0.01717674918472767, -0.053248967975378036, 0.03389421105384827, 0.01822724938392639, -0.026830893009901047, -0.019139094278216362, 0.02755170688033104, 0.02521265484392643, 0.07782713323831558, -0.00916103832423687, 0.03439978137612343, 0.09242647141218185, 0.04331072419881821, 0.03324657306075096, 0.02864892967045307, 0.08423972129821777, 0.03853656351566315, 0.020723652094602585, 0.00919762346893549, 0.0778743103146553, -0.05324852839112282, 0.017805349081754684, -0.012894799001514912, -0.05245561897754669, -0.05730918049812317, -0.08252391964197159, 0.010149754583835602, 0.0721970945596695, 0.013242683373391628, 0.029923763126134872, -0.05388464406132698, 0.07951509952545166, -0.0705634206533432, -0.0014884553384035826, -0.027320580556988716, 0.030913718044757843, 0.0019706839229911566, -0.0015712756430730224, 0.020917877554893494, 0.004212712869048119, 0.0027872445061802864, -0.010088114999234676, -0.04321538284420967, -0.02445528842508793, -0.07490324974060059, -0.026844484731554985, -0.004035742953419685, 0.053439460694789886, -0.016806837171316147, -0.01859155483543873, 0.042141109704971313, 0.012263325043022633, 0.020172826945781708, -0.005632889457046986, -0.00013510725693777204, -0.024334611371159554, -0.05004412308335304, -0.06488218158483505, 0.0001340224698651582, -0.03300022333860397, 0.005436776205897331, -0.012733248062431812, -0.0012947885552421212, -0.013765756972134113, -0.0316924974322319, -0.06351388990879059, 0.05974787101149559, -0.029639054089784622, -0.02380874752998352, -0.006594490725547075, -0.02633994072675705, -0.031822867691516876, -0.04418472945690155, 0.03221895545721054, -0.0035984287969768047, -0.008682696148753166, -0.003349831560626626, -0.003958059009164572, 0.001809459994547069, 0.024831650778651237, -0.06824370473623276, -0.046240512281656265, -0.006433289032429457, 0.01785442605614662, -0.052584994584321976, 0.029950810596346855, 0.0033548837527632713, 0.025275079533457756, -0.019338075071573257, -0.03130187466740608, 0.005394705571234226, -0.011633905582129955, 0.021299170330166817, 0.006339044310152531, -0.012293343432247639, 0.0082201287150383, -0.003833967726677656, -0.0002796456392388791, -0.01840164139866829, -0.04254321753978729, -0.03467132896184921, -0.04703040048480034, -0.010186448693275452, 0.04426577314734459, 0.011418302543461323, 0.03510008752346039, -0.0677277147769928, 0.003132328623905778, -0.0028376837726682425, -0.06670122593641281, -0.018483268097043037, -0.00017378706252202392, -0.02710644155740738, 0.006836216431111097, -0.026729315519332886, -0.02707534283399582, -0.015330169349908829, -0.11944572627544403, -0.007221149280667305, 0.005732879973948002, -0.031245049089193344, -0.0005614084075205028, -0.013447943143546581, 0.04336085915565491, 0.006822596304118633, 0.014521799981594086, 0.03916464000940323, 0.03769515082240105, -0.012528203427791595, 0.009482823312282562, 0.01274778600782156, 0.010802916251122952, 0.017042851075530052, 0.04880533367395401, 0.03832455351948738, 0.003558653872460127, 0.010882076807320118, 0.013781360350549221, -0.033259227871894836, -0.022283488884568214, 0.011672869324684143, -0.006953873671591282, -0.009965214878320694, -0.009947293438017368, -0.02991579659283161, 0.034880418330430984, -0.023925038054585457, 0.07198408991098404, 0.05242054536938667, 0.03495726361870766, 0.03495852276682854, -0.002619677921757102, 0.05011354386806488, -0.009174508973956108, -0.06959642469882965, 0.019898835569620132, -0.004422834143042564, -0.019174767658114433, -0.00829170923680067, 0.04419555142521858, -5.3744251914907783e-33, -0.012966739945113659, -0.017100896686315536, -0.03260016813874245, 0.02906721644103527, -0.04604560509324074, -0.017575502395629883, -0.03212857246398926, -0.04781782999634743, -0.020555321127176285, -0.06011465936899185, -0.004180518910288811, -0.05795959755778313, 0.004476167261600494, -0.04280852526426315, 0.00011538968828972429, 0.003621721174567938, -0.023693958297371864, 0.03330942988395691, -0.01087326928973198, 0.006828682031482458, -0.021246593445539474, -0.024456825107336044, 0.007178692612797022, 0.0552692711353302, -0.006258602254092693, 0.022385790944099426, -0.028129134327173233, -0.022628003731369972, 0.052455585449934006, 0.0389757864177227, -0.023104317486286163, -0.022918421775102615, -0.007750411052256823, 0.027077261358499527, -0.0358772911131382, 0.016298653557896614, -0.05582172051072121, 0.0032723387703299522, -0.045266203582286835, 0.014687820337712765, 0.03159636631608009, 0.013923468999564648, -0.016473162919282913, -0.034956514835357666, 0.05398928374052048, 0.009749679826200008, 0.05050934478640556, 0.001309194602072239, -0.00400232058018446, -0.009241609834134579, -0.06083977222442627, 0.036627285182476044, -0.034857653081417084, 0.07438148558139801, -0.021873977035284042, 0.025189049541950226, 0.0630413219332695, 0.03177943825721741, -0.015207160264253616, -0.03123617172241211, 0.06189817190170288, 0.012629476375877857, 0.04527328535914421, -0.038909897208213806, -0.005289597436785698, 0.00970813911408186, -0.014000952243804932, 0.0492602102458477, -0.013173818588256836, 0.028850307688117027, 1.0225571713817772e-06, -0.02392883040010929, -0.026201268658041954, -0.0264713317155838, -0.001175983576104045, 0.0031166544649749994, -0.05134550854563713, 0.05883976072072983, 0.030944757163524628, 0.13154450058937073, 0.027427049353718758, 0.00986315868794918, 0.01348100695759058, 0.021153641864657402, -0.016088278964161873, -0.039716750383377075, -0.01400682795792818, -0.022667789831757545, -0.008199556730687618, -0.027499526739120483, 0.03310152515769005, -0.013198478147387505, -0.03838109225034714, -0.005044219084084034, 0.020382951945066452, 0.028205810114741325, -0.07217194885015488, 0.010516926646232605, -0.07625998556613922, -0.0648350939154625, 0.001069447724148631, -0.020625075325369835, 0.012991753406822681, 0.006715595256537199, 0.04237240180373192, -0.0012057556305080652, 0.029278630390763283, -0.016286740079522133, -0.069472536444664, -0.03288440406322479, -0.007497048005461693, -0.009937385097146034, 0.02892484702169895, 0.054947543889284134, -0.00624932860955596, -0.040786344558000565, -0.03538068011403084, 0.00023275494459085166, -0.006691889837384224, -0.007839452475309372, -0.0029336404986679554, 0.05009454861283302, -0.031848374754190445, -0.008571922779083252, -0.03823995590209961, -0.021108750253915787, 0.011958240531384945, 0.030038418248295784, 0.02627132460474968, -0.040340356528759, 0.016565291211009026, 0.015937453135848045, 2.6967643407260766e-07, 0.02552700974047184, 0.045428451150655746, 0.028815461322665215, -0.03933846205472946, -0.009381172247231007, -0.040779050439596176, -0.042076412588357925, 0.018813079223036766, -0.01540386863052845, 0.05103207007050514, 0.008704368025064468, 0.006644987966865301, 0.008535277098417282, 0.010903159156441689, -0.004512878600507975, -0.06718804687261581, -0.03285672143101692, -0.003251361194998026, -0.006654642056673765, -0.005652983207255602, 0.05783439427614212, 0.044519972056150436, 0.04244391620159149, 0.019347665831446648, -0.019856277853250504, 0.015462093986570835, -0.030951043590903282, -0.038372330367565155, 0.02019723877310753, -0.012351480312645435, -0.018411923199892044, -0.031420834362506866, -0.056244101375341415, -0.015038462355732918, -0.009675374254584312, -0.008874698542058468, -0.028542352840304375, 0.009116516448557377, 0.01767568662762642, 0.04245523363351822, 0.039384134113788605, 0.013639901764690876, 0.010101608000695705, -0.03117137774825096, 0.0029106272850185633, 0.056002940982580185, -0.008727983571588993, 0.00398950045928359, -0.05274694785475731, -0.012461456470191479, 0.010679290629923344, 0.010995708405971527, -0.02487131766974926, 0.02545040287077427, -0.037990570068359375, -0.04833639785647392, 0.011231806129217148, -0.03504007309675217, 0.019279280677437782, -0.008816458284854889, -0.051245708018541336, -0.00477627944201231, 0.024682261049747467, 0.07085312157869339, 0.08358792215585709, -0.00975710991770029, 0.015843907371163368, 3.103437099696566e-34, 0.03911333531141281, -0.03767424821853638, 0.017293153330683708, -0.014845490455627441, 0.021420355886220932, -0.023135652765631676, 0.04542682319879532, 0.02833331935107708, -0.01362603809684515, -0.06983701884746552, -0.04091491177678108], "4c2e522d-d8b6-4793-ba0f-38d61ef86ec4": [0.0507349856197834, -0.0052487971261143684, -0.06932493299245834, 0.030095158144831657, -0.010455632582306862, 0.0365196093916893, 0.015690874308347702, 0.04965868592262268, -0.028027668595314026, -0.028245575726032257, -0.006597289815545082, 0.01819297857582569, 0.005106249358505011, 0.025209486484527588, -0.03562648221850395, -0.022383788600564003, 0.041182875633239746, 0.01086669135838747, 0.05408842861652374, -0.009168864227831364, -0.045824192464351654, 0.013419116847217083, 0.004405857063829899, -0.029536515474319458, 0.043044935911893845, 0.031080374494194984, 0.015613165684044361, 0.003585228230804205, 0.02139212191104889, -0.026343919336795807, -0.020990613847970963, 0.013564358465373516, -0.029167134314775467, -0.008513038977980614, 2.040696244876017e-06, -0.01892225816845894, -0.03799476847052574, 0.008220846764743328, 0.030601205304265022, -0.01020124088972807, 0.009438809007406235, 0.02584318444132805, -0.11720497906208038, -0.03547857329249382, -0.007109667174518108, 0.005103724543005228, -0.022921208292245865, 0.09868349879980087, 0.01047203503549099, 0.060647111386060715, 0.023288698866963387, -0.012345352210104465, 0.0357237234711647, -0.019584912806749344, 0.1454724818468094, -0.025942126289010048, -0.008490724489092827, 0.07467109709978104, 0.019025186076760292, 0.03079746849834919, 0.0026636896654963493, 0.04416181147098541, -0.031119266524910927, 0.0016254368238151073, 0.07090865075588226, 0.027513356879353523, 0.06705566495656967, -0.06640263646841049, 0.046201180666685104, 0.04690792039036751, 0.02191525511443615, 0.01115954015403986, 0.019559334963560104, 0.03540444001555443, -0.08415017277002335, 0.01623038947582245, -0.03821849450469017, 0.07381068170070648, 0.02841613069176674, 0.005117292515933514, -0.04265992343425751, -0.002247686730697751, -0.03311051055788994, 0.020326539874076843, 0.035788945853710175, 0.005024975631386042, -0.03328118845820427, -0.07153146713972092, 0.008531853556632996, -0.05432991683483124, 0.03265509754419327, -0.053609833121299744, 0.00039487925823777914, 0.024744976311922073, 0.06651906669139862, -0.02956310473382473, 0.0020397952757775784, -0.09055980294942856, 0.08318078517913818, 0.029284171760082245, -0.04661665856838226, -0.046278491616249084, -0.02752484567463398, 0.03921359032392502, -0.04070455953478813, 0.050047386437654495, -0.0095655033364892, -0.005563258659094572, 0.0307138841599226, 0.07409673929214478, -0.0395364947617054, -0.015147755853831768, -0.013908535242080688, -0.05605267360806465, -0.024220841005444527, 0.0145639693364501, -0.0001736626581987366, 0.0347617007791996, 0.015746882185339928, 0.0398065522313118, 0.025058412924408913, -0.02900327555835247, -0.02619341015815735, 0.03940172120928764, -0.009142858907580376, -0.030406638979911804, 0.007178995758295059, -0.010874944739043713, -0.00878113228827715, 0.04236302897334099, 0.005532210227102041, 0.06579290330410004, 0.03998376056551933, -0.006003242917358875, -0.027842048555612564, 0.06085383519530296, 0.04438150301575661, -0.03728380426764488, 0.05318273603916168, -0.06222403049468994, 0.017169494181871414, -0.030687671154737473, -0.006777113303542137, -0.02065574936568737, -0.014031264930963516, -0.014450160786509514, 0.0035306091886013746, -0.03951815143227577, 0.025928230956196785, 0.002420661738142371, -0.0858503133058548, 0.055306605994701385, -0.06752698123455048, -0.01520083099603653, 0.018627528101205826, 0.010523415170609951, -0.029972169548273087, -0.05763537436723709, 0.020019149407744408, 0.010844683274626732, 0.01796303316950798, 0.04189896583557129, 0.013955474831163883, -0.04006974399089813, -0.017208732664585114, -0.03006356582045555, 0.09887876361608505, -0.004968448542058468, 0.03833402320742607, 0.045382026582956314, 0.03286481276154518, -0.00410457095131278, -0.0269005224108696, 0.0204316396266222, -0.014999669045209885, 0.1164969727396965, 0.03166865557432175, 0.024331051856279373, -0.03967083990573883, 0.03106105327606201, 0.013792707584798336, -0.03992227837443352, 0.019372202455997467, -0.009294542483985424, 0.014520717784762383, -0.005692622624337673, -0.036591265350580215, 0.02111678570508957, 0.04113180935382843, 0.012267815880477428, -0.0012686140835285187, -0.01764545775949955, -0.028736978769302368, -0.07448672503232956, 0.036311112344264984, -0.003875618102028966, -0.047875359654426575, -0.08742746710777283, 0.008378629572689533, -0.02754809893667698, 0.054797254502773285, -0.008907631039619446, 0.06080058589577675, -0.08213981986045837, 0.058835677802562714, -0.03740143030881882, 0.02071675844490528, -0.01646341010928154, -0.006657696329057217, -0.004714565351605415, -0.006717199459671974, -0.00023851518926676363, -0.07063919305801392, -0.012887750752270222, -0.03248446062207222, 0.021787850186228752, -0.039279066026210785, 0.0031302296556532383, -0.001488206209614873, -0.030011268332600594, 0.0443287193775177, -0.033045776188373566, -0.0021895531099289656, 0.002511905739083886, 0.010516426526010036, -0.016272595152258873, -0.07630115002393723, -0.011433947831392288, 0.04423285275697708, -0.00977048184722662, -0.05146142095327377, 0.03053438849747181, 0.07652559131383896, 0.01662869192659855, -0.03723727539181709, 0.059022970497608185, 0.040502820163965225, -0.0382026769220829, -0.005839807912707329, -0.10348643362522125, -0.006735408678650856, 0.02611454762518406, 0.029513396322727203, 0.019694076851010323, 0.03768124058842659, -0.003984677605330944, -0.030482977628707886, 0.006301297806203365, 0.006619738414883614, -0.007373189087957144, 0.007270291913300753, -0.047983184456825256, 0.04298488423228264, 0.03487464413046837, -0.002567439340054989, 0.03133586049079895, -0.07299552857875824, 0.0005576171679422259, -0.06390175223350525, 0.014857186935842037, 0.05963696539402008, 0.011235350742936134, -0.05790667235851288, 0.02453170344233513, 0.028538169339299202, -0.014536086469888687, -0.0334344245493412, 0.0055732945911586285, -0.04631346836686134, 0.018788496032357216, 0.01256861537694931, -0.002273272257298231, -0.005912885535508394, -0.004962574224919081, -0.012384100817143917, -0.017455825582146645, -0.06550392508506775, 0.02601529099047184, -0.03497729077935219, 0.026280922815203667, 0.024951735511422157, -0.008259405381977558, -0.028899267315864563, 0.018772393465042114, -0.05615679547190666, -0.0020518682431429625, 0.04841731861233711, -0.04857083410024643, -0.02369052916765213, -0.06549006700515747, -0.01168113760650158, 0.03687043860554695, 0.01886482536792755, -0.01989075541496277, -0.015833087265491486, 0.032280877232551575, 0.012830955907702446, -0.0033829642925411463, 0.03659901022911072, 0.07553582638502121, 0.003640331095084548, 0.007816693745553493, 0.010805603116750717, -0.005019877105951309, -0.0025067150127142668, 0.02786649577319622, 0.04443444684147835, -0.035231903195381165, 0.03172046318650246, -0.030221235007047653, 0.04219833016395569, 0.03202224150300026, 0.009819013997912407, -0.033408716320991516, -0.03064485266804695, -0.01364619005471468, 0.01571952924132347, -0.05778246000409126, -0.0017842233646661043, 0.0696488544344902, 0.021704792976379395, 0.002325627254322171, -0.033232610672712326, 0.0035268585197627544, 0.009626914747059345, -0.04540589824318886, 0.0373292975127697, -0.03349531814455986, -0.010897083207964897, 0.03590761870145798, 0.0465584397315979, -0.006890627555549145, 0.006929943338036537, -0.012703748419880867, 0.043965768069028854, -0.016139917075634003, 0.009018425829708576, -0.02790239453315735, 0.054524410516023636, 0.0002604025648906827, -0.004148374777287245, 0.05403285101056099, 0.013449233956634998, -0.02246767096221447, 0.013514156453311443, -0.010303167626261711, -0.032392747700214386, 0.004994846880435944, -0.0884418860077858, 0.0023448702413588762, 0.026857007294893265, -0.013394215144217014, 0.008034171536564827, -0.030889198184013367, -0.04053135961294174, 0.07570509612560272, 0.008340301923453808, -0.028297685086727142, -0.0024985745549201965, -0.02765478566288948, -0.008598056621849537, 0.08179644495248795, 0.03007431887090206, 0.0390898734331131, -0.008758285082876682, 0.057387083768844604, -0.03873833641409874, -0.03702155128121376, 0.015572045929729939, -0.018163567408919334, -0.046435628086328506, 0.030462170019745827, 0.0412096232175827, 0.0507078543305397, 0.03475033491849899, -0.01928468607366085, 0.010560776107013226, -0.0496799536049366, -0.03383718803524971, -0.025764087215065956, 0.021784575656056404, 0.001013734843581915, 0.048617713153362274, 0.01323703769594431, -0.00972319208085537, -0.010585385374724865, 0.01251629926264286, -0.006060675252228975, 0.036939214915037155, 0.01572350598871708, 0.016089176759123802, -0.015235195867717266, -0.09106423705816269, -0.019634267315268517, -0.01633547991514206, 0.013333908282220364, -0.06677026301622391, 0.041222602128982544, 0.023915970697999, -0.02968260459601879, -0.027715271338820457, 0.034250352531671524, 0.014362495392560959, 0.07499459385871887, -0.012442104518413544, 0.027258209884166718, 0.08830371499061584, 0.05319947749376297, 0.03325451910495758, 0.010193267837166786, 0.08385097235441208, 0.03251729905605316, 0.014571954496204853, -0.0011192669626325369, 0.079151950776577, -0.05274565517902374, 0.014383761212229729, -0.024773316457867622, -0.04527520388364792, -0.05445384606719017, -0.08484799414873123, 0.00806183461099863, 0.0800301805138588, 0.025834888219833374, 0.040763892233371735, -0.05562837794423103, 0.06021476909518242, -0.06914832442998886, -0.0037687753792852163, -0.025686832144856453, 0.02768358215689659, 0.015602259896695614, -0.006481712684035301, 0.01648208312690258, 0.009815344586968422, 0.007983816787600517, -0.009233604185283184, -0.04100862517952919, -0.015411019325256348, -0.06447974592447281, -0.009862097911536694, -0.009250887669622898, 0.050204500555992126, -0.004398254677653313, -0.004489772021770477, 0.04012918472290039, 0.0110086090862751, 0.030151385813951492, -0.013514968566596508, -0.002735494403168559, -0.014963268302381039, -0.04492742568254471, -0.0688018947839737, 0.0124929528683424, -0.03756656125187874, 0.008078817278146744, -0.025951698422431946, 0.0006918309372849762, -0.01212148368358612, -0.04361625015735626, -0.047839947044849396, 0.05861740559339523, -0.03658313676714897, -0.022956129163503647, -0.01309733372181654, -0.0325152724981308, -0.03344545140862465, -0.044373393058776855, 0.028993263840675354, -0.012880523689091206, -0.010721581988036633, -0.010655074380338192, -0.0025833435356616974, 0.004503624513745308, 0.034184109419584274, -0.06571725755929947, -0.04457743093371391, 0.0039848522283136845, 0.024296708405017853, -0.05099423974752426, 0.041312672197818756, 0.004136751405894756, 0.017417961731553078, -0.029508331790566444, -0.03273005038499832, -0.001864998135715723, -0.006405200343579054, 0.016598636284470558, 0.006493988446891308, -0.0299544557929039, 0.01574806496500969, 0.0076627712696790695, 0.004536896478384733, -0.022617358714342117, -0.03096643090248108, -0.03837505728006363, -0.055345319211483, 0.005006646271795034, 0.05362698435783386, 0.013768600299954414, 0.031441379338502884, -0.06517426669597626, 0.011793130077421665, 0.006750929169356823, -0.06934680789709091, -0.01698795147240162, -0.004877133760601282, -0.028750358149409294, 0.0007324554026126862, -0.019360678270459175, -0.014776946976780891, -0.014479799196124077, -0.10624789446592331, 0.004348909016698599, -0.0009593903669156134, -0.0260819923132658, 0.0043865893967449665, -0.007579409051686525, 0.04611257463693619, 0.005602413322776556, 0.023954221978783607, 0.03608638793230057, 0.040645498782396317, -0.012234309688210487, 0.007569213397800922, 0.016313474625349045, 0.012130259536206722, 0.017475580796599388, 0.04249352216720581, 0.03858043625950813, 0.002232935978099704, -0.002358801430091262, 0.008024416863918304, -0.02487795241177082, -0.025498781353235245, 0.02288612723350525, -0.002310024341568351, -0.004410175606608391, -0.015735363587737083, -0.019565925002098083, 0.035661399364471436, -0.024072621017694473, 0.06614207476377487, 0.04684385284781456, 0.03573593124747276, 0.04406583309173584, -0.008313409984111786, 0.0427272692322731, -0.00779911782592535, -0.06768713891506195, 0.017866944894194603, 0.0011764492373913527, -0.021921291947364807, -0.010265707969665527, 0.05408307909965515, -5.4361886034188584e-33, -0.01412307471036911, -0.02334023267030716, -0.02865004725754261, 0.03584502264857292, -0.04078112542629242, -0.022053634747862816, -0.03341768682003021, -0.050439104437828064, -0.017444344237446785, -0.062376346439123154, -0.001336864661425352, -0.06032240018248558, 0.0071195815689861774, -0.04287654906511307, 0.005836570635437965, 0.0025234261993318796, -0.01881217584013939, 0.026635190472006798, -0.008156837895512581, 0.003618541406467557, -0.02188284695148468, -0.017265157774090767, 0.017338497564196587, 0.058146897703409195, -0.013463607989251614, 0.012281271629035473, -0.034714605659246445, -0.031205421313643456, 0.04485642910003662, 0.039293285459280014, -0.02135564759373665, -0.017845449969172478, -0.006882395129650831, 0.030162950977683067, -0.03614429011940956, 0.014405048452317715, -0.06932464241981506, 0.006136429030448198, -0.04368950054049492, 0.027697894722223282, 0.018656766042113304, 0.008150511421263218, -0.015527964569628239, -0.04353518411517143, 0.05085813254117966, 0.005247189197689295, 0.05132899433374405, 3.280708551756106e-05, -0.005258216988295317, 0.004531026817858219, -0.05797700956463814, 0.037827521562576294, -0.02994830347597599, 0.0838644877076149, -0.0018107943469658494, 0.020472709089517593, 0.05942191928625107, 0.03550771251320839, -0.018311863765120506, -0.02576388232409954, 0.05908363685011864, 0.01720113307237625, 0.04371528699994087, -0.03655501455068588, 0.0012155557051301003, 0.004827202297747135, -0.024653946980834007, 0.034874387085437775, -0.011982743628323078, 0.012793808244168758, 0.00822458229959011, -0.01780916564166546, -0.025429846718907356, -0.021901240572333336, 0.013119570910930634, -0.006046817172318697, -0.04230905696749687, 0.056104619055986404, 0.02602812834084034, 0.1374000608921051, 0.020966261625289917, 0.009199345484375954, 0.03087448701262474, 0.025965744629502296, -0.006802561227232218, -0.05949462950229645, -0.011531488038599491, -0.030144739896059036, 0.0012351867044344544, -0.024389641359448433, 0.024498451501131058, 0.006192388944327831, -0.03582644462585449, -0.004417707212269306, 0.026646137237548828, 0.034117408096790314, -0.06378647685050964, 0.02168389782309532, -0.08168261498212814, -0.06721609830856323, 0.0007124847616069019, -0.041267380118370056, 0.018734227865934372, -0.006706141401082277, 0.03875317797064781, -0.005748295225203037, 0.03159022331237793, -0.02155512385070324, -0.056723181158304214, -0.03747246041893959, -0.003941848874092102, -0.014101523905992508, 0.034945204854011536, 0.045544251799583435, -0.015032651834189892, -0.040029264986515045, -0.03707771375775337, -0.021232012659311295, -0.0032635722309350967, -0.004524632822722197, -0.004232496023178101, 0.04621497541666031, -0.030454516410827637, -0.016596809029579163, -0.041461627930402756, -0.017497515305876732, 0.008391086012125015, 0.02038482576608658, 0.012882385402917862, -0.042236220091581345, 0.016667651012539864, 0.01680908165872097, 2.6219538540317444e-07, 0.0143596101552248, 0.04650387912988663, 0.02277449145913124, -0.045676086097955704, -0.011529008857905865, -0.04312674328684807, -0.05168426036834717, 0.00972594041377306, -0.019856125116348267, 0.035523317754268646, 0.01222535502165556, -0.0038012159056961536, 0.00460055423900485, 0.0233733169734478, -0.008820871822535992, -0.07187860459089279, -0.02597872167825699, -0.0015905681066215038, -0.0037375004030764103, 0.006393888499587774, 0.0587565079331398, 0.042630426585674286, 0.04947267845273018, 0.017452744767069817, -0.023415885865688324, 0.023082628846168518, -0.020071733742952347, -0.028908250853419304, 0.028606675565242767, -0.005421449895948172, -0.033249132335186005, -0.05229731649160385, -0.06434938311576843, -0.008325585164129734, -0.013705766759812832, -0.0005071964114904404, -0.007827802561223507, 0.020245522260665894, 0.015953266993165016, 0.06548785418272018, 0.051300048828125, 0.0175109151750803, 0.016556646674871445, -0.03797052055597305, -0.0003359456022735685, 0.04351503401994705, -0.013095801696181297, -0.0005440389504656196, -0.06406836956739426, -0.010484512895345688, 0.014807240106165409, 0.017857125028967857, -0.022955002263188362, 0.018473980948328972, -0.031731318682432175, -0.050748061388731, -0.0004232892533764243, -0.03467925265431404, 0.021750446408987045, -0.017219772562384605, -0.045005060732364655, -0.004941331222653389, 0.02217523753643036, 0.07370788604021072, 0.08431876450777054, -0.004936418496072292, 0.020837057381868362, 3.0316424046876526e-34, 0.04173140600323677, -0.03990878537297249, 0.016885537654161453, -0.0017974214861169457, 0.020749004557728767, -0.022194765508174896, 0.03304583206772804, 0.03052222914993763, -0.019759787246584892, -0.0792885273694992, -0.036956921219825745], "2ece4974-14ce-450b-be09-73076b3913e2": [0.05051901564002037, 0.014045308344066143, -0.06447020918130875, 0.030547376722097397, -0.014348958618938923, 0.03926102817058563, 0.01866426318883896, 0.04536915570497513, -0.03686647489666939, -0.02710038051009178, 0.005236536264419556, 0.020544540137052536, -0.005105316173285246, 0.01140394527465105, -0.04038805887103081, -0.012786743231117725, 0.048186011612415314, 0.00741477869451046, 0.0509381927549839, -0.009736474603414536, -0.05207077041268349, 0.014877733774483204, 0.003187007736414671, -0.032102037221193314, 0.04134857654571533, 0.029031727463006973, 0.018460219725966454, 0.016242031008005142, 0.015169656835496426, -0.02114705927670002, -0.02442946657538414, 0.016120240092277527, -0.0356411412358284, -0.0032762312330305576, 2.1533005565288477e-06, -0.011628160253167152, -0.034408364444971085, 0.00918565969914198, 0.023685675114393234, 0.00105267483741045, 0.002950937021523714, 0.025404272601008415, -0.11578072607517242, -0.03324086591601372, -0.006795897614210844, 0.003175729885697365, -0.02124418504536152, 0.09407529979944229, 0.006132612004876137, 0.05817987397313118, 0.025499019771814346, -0.007064535282552242, 0.03014662303030491, -0.025638137012720108, 0.15690545737743378, -0.019299082458019257, -0.0045444355346262455, 0.07982466369867325, 0.016330208629369736, 0.026786809787154198, 0.002892733784392476, 0.045767590403556824, -0.03487379476428032, -0.0004289005300961435, 0.07884366065263748, 0.026101363822817802, 0.072116419672966, -0.058314383029937744, 0.04361201450228691, 0.04439227655529976, 0.02163989655673504, 0.01558529119938612, 0.02207377925515175, 0.0365421362221241, -0.08812354505062103, 0.016063975170254707, -0.035827722400426865, 0.07580112665891647, 0.02557581290602684, 0.004683238919824362, -0.05075518414378166, -0.013799680396914482, -0.0313715785741806, 0.016409246250987053, 0.024288306012749672, 0.0069932956248521805, -0.03479113429784775, -0.0698409453034401, 0.01449502445757389, -0.05096639692783356, 0.04030482843518257, -0.05569205805659294, 0.004605127964168787, 0.021192800253629684, 0.06979086250066757, -0.031395960599184036, 7.678798283450305e-05, -0.07423228770494461, 0.0799088254570961, 0.039431095123291016, -0.046253759413957596, -0.04170627146959305, -0.030952630564570427, 0.03481527790427208, -0.03829377144575119, 0.05147106200456619, -0.010093309916555882, -0.005082157906144857, 0.03030915930867195, 0.07766242325305939, -0.04332299903035164, -0.0116382772102952, -0.015278472565114498, -0.05499579757452011, -0.027048710733652115, 0.014120202511548996, -0.0016023315256461501, 0.03759822994470596, 0.016707876697182655, 0.04224436357617378, 0.028863847255706787, -0.024576233699917793, -0.02572900429368019, 0.048004284501075745, -0.009864043444395065, -0.028723282739520073, 0.008103735744953156, -0.013794907368719578, -0.007596489042043686, 0.05122098699212074, -0.0010325652547180653, 0.059242431074380875, 0.03762926161289215, -0.008085855282843113, -0.025856664404273033, 0.06556437909603119, 0.038581542670726776, -0.04490423575043678, 0.05759677663445473, -0.0677146390080452, 0.013821383938193321, -0.016387304291129112, -0.004967729095369577, -0.02226411923766136, -0.00888692308217287, -0.016147123649716377, 0.009266737848520279, -0.05133787542581558, 0.022128762677311897, 0.0018769337330013514, -0.08703096210956573, 0.05321895703673363, -0.07281425595283508, -0.013583716936409473, 0.008462265133857727, 0.008682782761752605, -0.030701445415616035, -0.058890361338853836, 0.02113654464483261, 0.01398671604692936, 0.020072167739272118, 0.0456257201731205, 0.017180709168314934, -0.03925880417227745, -0.01898045465350151, -0.029584314674139023, 0.10456644743680954, -0.010158078745007515, 0.033403828740119934, 0.05272858589887619, 0.040525466203689575, -0.008768410421907902, -0.021392589434981346, 0.008363695815205574, -0.0063642291352152824, 0.11063458770513535, 0.02266850508749485, 0.025422487407922745, -0.026285558938980103, 0.024260060861706734, 0.010417887941002846, -0.040190115571022034, 0.016620086506009102, -0.01889224350452423, 0.00941474363207817, -0.010274453088641167, -0.0402129627764225, 0.02278120443224907, 0.03859539330005646, 0.01861724816262722, -0.005718602798879147, -0.01855836994946003, -0.02678857557475567, -0.07116415351629257, 0.034369055181741714, -0.009456592611968517, -0.03760232776403427, -0.08577100187540054, 0.01325871143490076, -0.02803170308470726, 0.053566791117191315, -0.007088689599186182, 0.049202773720026016, -0.0704079270362854, 0.062533438205719, -0.04418250545859337, 0.01930144801735878, -0.012330246157944202, 0.005355081986635923, -0.007370093837380409, -0.0013903150102123618, 0.004623822867870331, -0.06590418517589569, -0.008529541082680225, -0.03652329370379448, 0.018036773428320885, -0.03411081060767174, 0.00924426969140768, -0.0058537432923913, -0.03865944966673851, 0.03794481232762337, -0.029603084549307823, -0.004324059002101421, 0.008999183773994446, 0.0050679780542850494, -0.02008720487356186, -0.07582776248455048, -0.015929611399769783, 0.03629641234874725, -0.01024745125323534, -0.055770423263311386, 0.028501130640506744, 0.07881113141775131, 0.01561817154288292, -0.040290702134370804, 0.05670244246721268, 0.038149394094944, -0.03499032184481621, 0.0006178211770020425, -0.10468927025794983, -0.010477721691131592, 0.026654629036784172, 0.022029096260666847, 0.025616731494665146, 0.03792383149266243, -0.010149111039936543, -0.022035924717783928, 0.014012962579727173, 0.00808282382786274, 0.0007243272848427296, 0.002671175869181752, -0.044903188943862915, 0.0455629900097847, 0.034087128937244415, 0.0026834330055862665, 0.0359041802585125, -0.08593934774398804, -0.005456347018480301, -0.0669647678732872, 0.013699674978852272, 0.04636820778250694, 0.007001333404332399, -0.059503063559532166, 0.01819678768515587, 0.025467492640018463, -0.0036598024889826775, -0.0345999151468277, 0.015100685879588127, -0.048225875943899155, 0.02167266421020031, 0.014617549255490303, -0.004601463675498962, -0.0004011741257272661, -0.007194627076387405, -0.010208639316260815, -0.005848133936524391, -0.0824810266494751, 0.02132948487997055, -0.0321941003203392, 0.023013992235064507, 0.026626182720065117, -0.012529272586107254, -0.030155442655086517, 0.017339473590254784, -0.0564972348511219, -0.0026529328897595406, 0.04109610617160797, -0.04379188269376755, -0.024539610370993614, -0.07510378956794739, -0.017599167302250862, 0.0382608100771904, 0.015417343936860561, -0.010213754139840603, -0.012903465889394283, 0.03278345242142677, 0.013500336557626724, -0.002667271764948964, 0.037278831005096436, 0.08114827424287796, 0.005816535092890263, 0.00428291130810976, 0.014079095795750618, -0.005160974804311991, -0.00026164567680098116, 0.01812042109668255, 0.03828028589487076, -0.04265458881855011, 0.03082088567316532, -0.022143639624118805, 0.04385630041360855, 0.031332194805145264, 0.009526087902486324, -0.031581100076436996, -0.027433935552835464, -0.022686202079057693, 0.016910335049033165, -0.06185729429125786, 0.005237446632236242, 0.06920211017131805, 0.020343272015452385, 0.0037309869658201933, -0.029373236000537872, 0.0037241633981466293, 0.0070800562389194965, -0.03445327654480934, 0.034139275550842285, -0.0353119932115078, -0.011505573987960815, 0.043219003826379776, 0.043778449296951294, 0.0038023721426725388, 0.003104481613263488, -0.018206125125288963, 0.042603667825460434, -0.017040926963090897, 0.009373378939926624, -0.019625643268227577, 0.04919103905558586, -0.004635038785636425, 0.0027548170182853937, 0.05053887143731117, 0.013819118961691856, -0.03770896792411804, 0.007079845294356346, -0.005556866992264986, -0.025629960000514984, -0.00014130532508715987, -0.09741301834583282, 0.0008922675042413175, 0.031245438382029533, -0.012183580547571182, 0.012304478324949741, -0.03384031727910042, -0.03752565383911133, 0.07197544723749161, 0.003057470778003335, -0.029250886291265488, 0.002529463730752468, -0.03554840385913849, -0.020351195707917213, 0.08101588487625122, 0.043328315019607544, 0.03793904930353165, -0.007745678070932627, 0.05658453330397606, -0.04088312387466431, -0.03298773616552353, 0.02346920408308506, -0.020520880818367004, -0.048867203295230865, 0.03466886654496193, 0.027509037405252457, 0.0586380809545517, 0.03626777604222298, -0.011870549991726875, 0.01800307258963585, -0.04347541928291321, -0.024628031998872757, -0.025573566555976868, 0.022814355790615082, -0.011519585736095905, 0.04019233211874962, 0.008925874717533588, -0.004003215115517378, -0.005075791850686073, 0.0017496910877525806, -0.0059974645264446735, 0.040044013410806656, 0.017252521589398384, 0.012925690971314907, -0.01660473272204399, -0.08157820999622345, -0.02515748143196106, -0.020573480054736137, 0.006068953312933445, -0.07424668967723846, 0.03776964917778969, 0.01240320410579443, -0.03047676384449005, -0.025602174922823906, 0.03030984289944172, 0.02189573086798191, 0.07860769331455231, -0.007938042283058167, 0.027928493916988373, 0.08864467591047287, 0.04783501476049423, 0.04195035621523857, 0.016128065064549446, 0.08314172923564911, 0.02294209785759449, 0.021567262709140778, 0.005309994798153639, 0.08701100945472717, -0.06162533536553383, 0.018148522824048996, -0.02543274499475956, -0.04916932433843613, -0.05080324783921242, -0.08286886662244797, 0.008622963912785053, 0.08110437542200089, 0.022305669263005257, 0.03618139773607254, -0.0552225224673748, 0.06727898120880127, -0.06893552839756012, 0.007672165520489216, -0.026019252836704254, 0.024715321138501167, 0.009465028531849384, -0.009191982448101044, 0.02253839001059532, 0.011167983524501324, 0.0043473634868860245, -0.01861133612692356, -0.04359448701143265, -0.01222853735089302, -0.06556940078735352, -0.007281505968421698, -0.008013060316443443, 0.03870631381869316, -0.00912029854953289, -0.009975952096283436, 0.04327750578522682, 0.013112599030137062, 0.024031342938542366, -0.009379242546856403, -0.012959074229001999, -0.024861125275492668, -0.04456239566206932, -0.06736238300800323, 0.01096204575151205, -0.03268953040242195, 0.007859723642468452, -0.02630111575126648, -0.0039023917634040117, -0.016447661444544792, -0.03734558820724487, -0.06019723415374756, 0.06009259819984436, -0.03500412404537201, -0.020005200058221817, -0.01579318754374981, -0.022773751989006996, -0.0245677400380373, -0.04214012995362282, 0.03663786128163338, -0.012305386364459991, -0.01381607260555029, -0.00911752786487341, -0.0028098835609853268, -0.002494750078767538, 0.03465445712208748, -0.0660845935344696, -0.04318047687411308, -0.010882914066314697, 0.022757619619369507, -0.05586015433073044, 0.035051967948675156, 0.002527638804167509, 0.022132162004709244, -0.02177521400153637, -0.03161276876926422, 0.006244097836315632, -0.010676414705812931, 0.018240604549646378, 0.005505080334842205, -0.025611279532313347, 0.008061730302870274, 0.010281168855726719, 0.004617381375283003, -0.010258677415549755, -0.03359994664788246, -0.022648973390460014, -0.06412496417760849, -0.011965055949985981, 0.057113874703645706, 0.00833093747496605, 0.03503456711769104, -0.0649973452091217, 0.013782443478703499, 0.006597995292395353, -0.06951698660850525, -0.0184763316065073, -0.0012705710250884295, -0.033215463161468506, 0.004586708266288042, -0.02066929265856743, -0.02240348979830742, -0.014861304312944412, -0.12459749728441238, -0.0029300220776349306, 0.005120445042848587, -0.018215347081422806, 0.0017579011619091034, -0.002364400075748563, 0.04403379186987877, 0.0027000054251402617, 0.019991135224699974, 0.036435388028621674, 0.03712918981909752, -0.009165969677269459, 0.008815770968794823, 0.009490822441875935, 0.015146788209676743, 0.018577642738819122, 0.04367389157414436, 0.03786013647913933, -0.00040371218346990645, 0.005216597579419613, 0.006007292307913303, -0.023694517090916634, -0.022068306803703308, 0.015893734991550446, -0.005842925049364567, -0.0014188443310558796, -0.01540136057883501, -0.026801956817507744, 0.026982638984918594, -0.018695738166570663, 0.06816426664590836, 0.04535912349820137, 0.03438162803649902, 0.03824494034051895, -0.008161814883351326, 0.04325425624847412, -0.013691382482647896, -0.07080794125795364, 0.02230188064277172, -0.0006637579062953591, -0.030308740213513374, -0.016826683655381203, 0.050654809921979904, -5.698303639843074e-33, -0.018567359074950218, -0.02169223316013813, -0.03178086504340172, 0.043085239827632904, -0.046103332191705704, -0.014787779189646244, -0.02979877032339573, -0.04607311263680458, -0.019298076629638672, -0.05995511636137962, -0.005967655219137669, -0.06106765940785408, 0.006791133899241686, -0.04388081654906273, 0.005072999279946089, 0.004210839048027992, -0.016396159306168556, 0.02374228835105896, -0.007439610082656145, 0.0073762619867920876, -0.018686477094888687, -0.01843183860182762, 0.008152065798640251, 0.05295681953430176, -0.018891863524913788, 0.01611603982746601, -0.02793446183204651, -0.02630634419620037, 0.0539686381816864, 0.034473106265068054, -0.023990485817193985, -0.023417193442583084, -0.010615038685500622, 0.031237218528985977, -0.033123649656772614, 0.006314679514616728, -0.0662008598446846, 0.010305838659405708, -0.04429394006729126, 0.01116273645311594, 0.025987915694713593, 0.016543472185730934, -0.008097978308796883, -0.03520183265209198, 0.04904356598854065, 0.0035960962995886803, 0.05820811539888382, 0.0026726918295025826, -0.0063345953822135925, 0.004550797399133444, -0.050985414534807205, 0.03223259747028351, -0.03050508350133896, 0.07457099109888077, -0.01120750792324543, 0.018251577392220497, 0.06427869200706482, 0.046097129583358765, -0.017075305804610252, -0.022341633215546608, 0.05450804531574249, 0.01292777806520462, 0.040826525539159775, -0.03244001045823097, 0.0009601602214388549, 0.009593097493052483, -0.027065278962254524, 0.045911796391010284, -0.007475675083696842, 0.011813766323029995, 0.0054978565312922, -0.015175086446106434, -0.02049380913376808, -0.013526130467653275, 0.017793865874409676, 0.002916443394497037, -0.05107232555747032, 0.0552595891058445, 0.03623754531145096, 0.13349829614162445, 0.024395368993282318, 0.008746106177568436, 0.03170733526349068, 0.028526419773697853, -0.0024258361663669348, -0.04724906012415886, -0.009677841328084469, -0.02789897844195366, -0.0021670160349458456, -0.02505209855735302, 0.020095597952604294, 0.001519163604825735, -0.03870978206396103, -0.0009043262107297778, 0.012843218632042408, 0.03929810971021652, -0.059670187532901764, 0.016288014128804207, -0.07806903123855591, -0.07342377305030823, -0.0008358174236491323, -0.03159065544605255, 0.024389175698161125, -0.007259687874466181, 0.04090084880590439, -0.0030334964394569397, 0.03225221112370491, -0.026278862729668617, -0.06254035234451294, -0.038263775408267975, -0.004942119587212801, -0.009359991177916527, 0.027907591313123703, 0.045648254454135895, -0.009485610760748386, -0.0378195121884346, -0.03699127212166786, -0.015359018929302692, -0.0046831825748085976, -0.0032873942982405424, -0.00196512951515615, 0.044408801943063736, -0.025650283321738243, -0.018673211336135864, -0.03517569601535797, -0.016109421849250793, 0.019056664779782295, 0.021645577624440193, 0.016460411250591278, -0.046447284519672394, 0.015303581021726131, 0.014725551940500736, 2.750626322267635e-07, 0.02348450943827629, 0.04401253163814545, 0.029088221490383148, -0.046788062900304794, -0.010983530431985855, -0.04605428874492645, -0.04792335256934166, 0.009168770164251328, -0.015906572341918945, 0.035335078835487366, 0.016142772510647774, -0.0005233666743151844, 0.007565999869257212, 0.01604725979268551, -0.005744054913520813, -0.07511111348867416, -0.02578115463256836, -0.0008974706870503724, -0.001695550512522459, -0.0016764607280492783, 0.06959600001573563, 0.02971983142197132, 0.0520906001329422, 0.015088973566889763, -0.026916809380054474, 0.015424801968038082, -0.021977035328745842, -0.03056206926703453, 0.03252050280570984, -0.0059893629513680935, -0.034765779972076416, -0.050560567528009415, -0.0639418512582779, -0.01145095657557249, -0.011454520747065544, -0.006446001119911671, -0.014697241596877575, 0.01548196841031313, 0.01672237180173397, 0.05635843053460121, 0.04011649638414383, 0.014499078504741192, 0.009800954721868038, -0.03096698969602585, 0.0009290650486946106, 0.031925033777952194, -0.003399638691917062, 0.006262336391955614, -0.07325640320777893, -0.015759896486997604, 0.018072836101055145, 0.022405652329325676, -0.01938481628894806, 0.014819580130279064, -0.03395206108689308, -0.04154236242175102, -0.004737142939120531, -0.03758443892002106, 0.025108829140663147, -0.01078761089593172, -0.049211129546165466, -0.006377395708113909, 0.026273082941770554, 0.07263269275426865, 0.07836605608463287, -0.00989281851798296, 0.02030218578875065, 3.135249833920656e-34, 0.03797439858317375, -0.03844674676656723, 0.019309280440211296, -0.004395113326609135, 0.024368491023778915, -0.018346179276704788, 0.02516874484717846, 0.027734778821468353, -0.02117503620684147, -0.07802432775497437, -0.03619397059082985], "a1aee0ee-beab-4caf-b3f6-a6c22e8e9e0f": [0.04988842457532883, 0.006693752482533455, -0.0665651261806488, 0.034548502415418625, -0.018901841714978218, 0.03964545577764511, 0.011905050836503506, 0.044009916484355927, -0.03723585605621338, -0.034609921276569366, 0.0032441462390124798, 0.021395504474639893, 0.0002027807495323941, 0.02026357315480709, -0.03775717690587044, -0.015823451802134514, 0.05637991800904274, 0.004160532262176275, 0.050003327429294586, -0.004794571548700333, -0.05199946090579033, 0.01594584807753563, 0.006117228884249926, -0.03292393684387207, 0.04117009788751602, 0.02980986051261425, 0.009869213216006756, 0.013591480441391468, 0.023690728470683098, -0.02218667045235634, -0.020130356773734093, 0.016057036817073822, -0.0346701480448246, 0.006667247507721186, 2.1201265099080047e-06, -0.017783422023057938, -0.04046862572431564, 0.011202359572052956, 0.02499128319323063, 0.0013628342421725392, -0.005284205079078674, 0.029072605073451996, -0.11272935569286346, -0.03481174632906914, -0.004113160539418459, 0.003277791431173682, -0.01508978009223938, 0.08824610710144043, 0.015257293358445168, 0.06187343969941139, 0.022096510976552963, -0.005102936178445816, 0.03147406503558159, -0.020017731934785843, 0.14768540859222412, -0.03041796013712883, 0.0015124824130907655, 0.07086896896362305, 0.021581925451755524, 0.029804443940520287, 0.003664842341095209, 0.039363957941532135, -0.029728742316365242, -0.0020055484492331743, 0.07696038484573364, 0.02745581604540348, 0.061566390097141266, -0.06093992665410042, 0.04115810617804527, 0.04596376419067383, 0.009597382508218288, 0.015259084291756153, 0.02573259174823761, 0.03435241058468819, -0.08997564762830734, 0.0064775082282722, -0.03662657365202904, 0.07679586112499237, 0.027426404878497124, 0.0038465477991849184, -0.0429205559194088, -0.014917315915226936, -0.02744252234697342, 0.01116423774510622, 0.02076795883476734, 0.014491880312561989, -0.03197934851050377, -0.07151127606630325, 0.012050344608724117, -0.04670504480600357, 0.03387277200818062, -0.0613781102001667, 0.0013129606377333403, 0.024572189897298813, 0.06409194320440292, -0.025633329525589943, 0.0005049892351962626, -0.0734410360455513, 0.08074034005403519, 0.03130502998828888, -0.04885666444897652, -0.037089504301548004, -0.032928429543972015, 0.033047109842300415, -0.03802206739783287, 0.042280714958906174, -0.015328451059758663, -0.0023962107952684164, 0.026145391166210175, 0.07701658457517624, -0.047990377992391586, -0.01683451421558857, -0.020791541785001755, -0.05089932680130005, -0.030675502493977547, 0.017097152769565582, 0.0014096256345510483, 0.0349707305431366, 0.016635339707136154, 0.038408681750297546, 0.022587554529309273, -0.03143567964434624, -0.017682727426290512, 0.04555433988571167, -0.0059493109583854675, -0.030895190313458443, 0.009245505556464195, -0.013652526773512363, -0.003709143726155162, 0.039722125977277756, -0.006341784261167049, 0.06679996103048325, 0.04110262915492058, -0.009850449860095978, -0.031493376940488815, 0.06315561383962631, 0.04110569879412651, -0.04403049498796463, 0.04240012168884277, -0.07113876193761826, 0.011495843529701233, -0.022749945521354675, -0.006117415148764849, -0.02432510443031788, -0.012815507128834724, -0.014730428345501423, 0.005634504370391369, -0.04528746008872986, 0.0231479424983263, 0.001900121453218162, -0.08820342272520065, 0.055686838924884796, -0.07458437234163284, -0.017008841037750244, 0.010527635924518108, 0.00759578961879015, -0.029682142660021782, -0.061910681426525116, 0.013612031936645508, 0.011459062807261944, 0.015051347203552723, 0.03825526311993599, 0.02393205650150776, -0.04015601426362991, -0.019882524386048317, -0.034943245351314545, 0.09666862338781357, -0.009750803001224995, 0.04231533035635948, 0.04411158338189125, 0.0437968373298645, 0.004683049861341715, -0.022152209654450417, 0.006272748578339815, -0.00960387010127306, 0.11581552773714066, 0.03190977871417999, 0.03387973830103874, -0.01855728030204773, 0.03460748493671417, 0.011831196956336498, -0.03163044899702072, 0.01508774422109127, -0.020284881815314293, 0.005600225180387497, -0.006799816153943539, -0.044458962976932526, 0.01989980973303318, 0.04000454768538475, 0.014873508363962173, -0.0031029670499265194, -0.01592407561838627, -0.030865749344229698, -0.08115752786397934, 0.03808658570051193, -0.007333696354180574, -0.047253116965293884, -0.08736980706453323, 0.015396589413285255, -0.028958167880773544, 0.05639912560582161, -0.013656631112098694, 0.04512996971607208, -0.06225472316145897, 0.06487762182950974, -0.04010090231895447, 0.016311082988977432, -0.015476669184863567, 0.0006066704518161714, -0.006799162365496159, 0.002495731692761183, -3.205078246537596e-05, -0.06348150968551636, -0.017113104462623596, -0.0407244972884655, 0.025778569281101227, -0.03120466135442257, 0.00835766177624464, -0.012606436386704445, -0.03893560543656349, 0.044659581035375595, -0.01892377808690071, 0.0002090897469315678, 0.008301549591124058, -0.0009925258345901966, -0.021537605673074722, -0.07535651326179504, -0.012228459119796753, 0.03870537504553795, -0.009992250241339207, -0.056499507278203964, 0.03317297250032425, 0.07752174139022827, 0.018070613965392113, -0.040833815932273865, 0.056642141193151474, 0.037411969155073166, -0.023888392373919487, -0.0010192370973527431, -0.08993656188249588, -0.00909692607820034, 0.02481864020228386, 0.028992226347327232, 0.023092899471521378, 0.031132865697145462, -0.020133761689066887, -0.019324010238051414, 0.010548312216997147, 0.009927002713084221, -0.00729915127158165, 0.005228661932051182, -0.048889994621276855, 0.04571103677153587, 0.042375918477773666, 0.0030816367361694574, 0.031298860907554626, -0.0886397659778595, 0.004132688511162996, -0.0698130801320076, 0.005985770374536514, 0.054956693202257156, 0.006163118407130241, -0.061308570206165314, 0.01821966841816902, 0.027492551133036613, -0.006876777857542038, -0.03541095182299614, 0.01432697381824255, -0.04628714546561241, 0.019029155373573303, 0.02139236032962799, -0.003105419920757413, -0.0005492997006513178, -0.008635529316961765, -0.0156959630548954, -0.00785298552364111, -0.06304135918617249, 0.0235605426132679, -0.03691965341567993, 0.03125326707959175, 0.02991303987801075, -0.02257116697728634, -0.03228846937417984, 0.016824955120682716, -0.06322848796844482, -0.001338853850029409, 0.0352686308324337, -0.047351639717817307, -0.03289942815899849, -0.0614834800362587, -0.010298525914549828, 0.03889511153101921, 0.016336806118488312, -0.009968043304979801, -0.0140685411170125, 0.023813746869564056, 0.02180560864508152, -0.007248932495713234, 0.036158718168735504, 0.07649942487478256, 0.004811631049960852, 0.0014209660002961755, 0.011658969335258007, -0.004880955908447504, 0.0005400029476732016, 0.02366376481950283, 0.03600597754120827, -0.041054803878068924, 0.037907399237155914, -0.01401038933545351, 0.04023044928908348, 0.03169776126742363, 0.0075490595772862434, -0.03359071537852287, -0.026615049690008163, -0.02201978676021099, 0.011595729738473892, -0.07071708142757416, 0.0018567126244306564, 0.07084797322750092, 0.01952606998383999, 0.003872354282066226, -0.025803761556744576, 0.003285900689661503, 0.00852348655462265, -0.04161582887172699, 0.03531431034207344, -0.04000576213002205, -0.005276076961308718, 0.03777897730469704, 0.04336613416671753, 0.0077944365330040455, -0.009779635816812515, -0.018117351457476616, 0.04093634709715843, -0.01666843704879284, 0.013284915126860142, -0.020634569227695465, 0.04510950297117233, -0.0009518988663330674, 0.0015716106863692403, 0.05012236535549164, 0.01191003993153572, -0.028299272060394287, 0.012046948075294495, -0.008921809494495392, -0.027101006358861923, 0.005630637053400278, -0.09512017667293549, 0.00270590977743268, 0.032793428748846054, -0.008046657778322697, 0.010475248098373413, -0.03318091109395027, -0.04120936989784241, 0.07993026077747345, -0.0012908232165500522, -0.02202475629746914, 0.0010254766093567014, -0.028396781533956528, -0.010574663057923317, 0.08302317559719086, 0.028782710433006287, 0.04396570846438408, -0.010299582965672016, 0.06031771004199982, -0.03769975155591965, -0.03992368280887604, 0.012105735950171947, -0.022875817492604256, -0.052618950605392456, 0.02728794515132904, 0.02606741152703762, 0.05925522744655609, 0.0407676063477993, -0.018988749012351036, 0.01342103537172079, -0.043490029871463776, -0.030254818499088287, -0.0268215611577034, 0.0241326205432415, -0.003729111747816205, 0.04517124220728874, 0.012273362837731838, -0.006338032428175211, 0.0004496061592362821, 0.006273746024817228, -0.00463821878656745, 0.04027518630027771, 0.022349098697304726, 0.013323226012289524, -0.009912535548210144, -0.08947491645812988, -0.025626802816987038, -0.01993255317211151, 0.008076166734099388, -0.0692148208618164, 0.04387156292796135, 0.017864597961306572, -0.027789918705821037, -0.02570081502199173, 0.035911835730075836, 0.01953009143471718, 0.0709511861205101, -0.009042805060744286, 0.030292002484202385, 0.091433085501194, 0.05170278251171112, 0.036104895174503326, 0.011176085099577904, 0.09423277527093887, 0.025955941528081894, 0.022811878472566605, -0.004976680502295494, 0.08598653972148895, -0.04356713965535164, 0.019164694473147392, -0.021046651527285576, -0.04919779300689697, -0.055952657014131546, -0.08609376102685928, 0.006723623722791672, 0.08408229053020477, 0.02293967641890049, 0.029523489996790886, -0.05652082338929176, 0.061460576951503754, -0.06464581936597824, 0.0014749141409993172, -0.023971103131771088, 0.029634959995746613, 0.01569441705942154, -0.012783327139914036, 0.018767224624753, 0.006051583215594292, -0.002326489193364978, -0.01217104122042656, -0.03592294827103615, -0.023616919293999672, -0.0653703436255455, -0.01004401221871376, -0.004871868062764406, 0.048080626875162125, -0.0025810273364186287, -0.012588421814143658, 0.04244331642985344, 0.011075882241129875, 0.022287653759121895, -0.010396458208560944, -0.007232276257127523, -0.02269659750163555, -0.041852302849292755, -0.06131913512945175, 0.010666385293006897, -0.030941583216190338, 0.0007134525803849101, -0.024460962042212486, -0.007025481667369604, -0.017201147973537445, -0.032778043299913406, -0.05593985319137573, 0.06108159199357033, -0.042149368673563004, -0.028231149539351463, -0.009045859798789024, -0.035614222288131714, -0.03415704891085625, -0.044301535934209824, 0.034525416791439056, -0.018784262239933014, -0.018467413261532784, -0.011346140876412392, -0.004202505573630333, 0.0009924849728122354, 0.03761459141969681, -0.07063695788383484, -0.03868433088064194, 0.001485893502831459, 0.01764308102428913, -0.04577401280403137, 0.040549132972955704, 0.006045024376362562, 0.026763737201690674, -0.018465327098965645, -0.03221803158521652, -0.00044453528244048357, -0.013101436197757721, 0.0190839022397995, 0.008784000761806965, -0.020272107794880867, 0.00993969477713108, 0.008266196586191654, 0.0032956562936306, -0.02193515934050083, -0.031286031007766724, -0.034042272716760635, -0.056254900991916656, -0.009452058002352715, 0.05264059081673622, 0.0070141637697815895, 0.03329623490571976, -0.06327640265226364, 0.016377240419387817, 0.0072697182185947895, -0.06781718134880066, -0.012027394026517868, -0.008537237532436848, -0.036092307418584824, 0.003046043450012803, -0.01876787468791008, -0.020819269120693207, -0.01974964141845703, -0.11469971388578415, -0.006522688083350658, 0.0038450832944363356, -0.024571014568209648, 0.0036226101219654083, -0.0006025322363711894, 0.05044109746813774, 0.004590908531099558, 0.021733177825808525, 0.0337320938706398, 0.038127388805150986, -0.005471445620059967, 0.012691820971667767, 0.004721872508525848, 0.01565566100180149, 0.013271509669721127, 0.034560803323984146, 0.03173511475324631, 0.00240682577714324, 0.00979885645210743, 0.00721200043335557, -0.02455907315015793, -0.025238823145627975, 0.022731060162186623, -0.008218652568757534, 0.00034027048968710005, -0.021793371066451073, -0.02911275625228882, 0.022762740030884743, -0.01654905080795288, 0.06449147313833237, 0.05421153083443642, 0.03636826202273369, 0.04063007980585098, -0.006696642376482487, 0.047094713896512985, -0.010188905522227287, -0.07586831599473953, 0.021448157727718353, 0.0026639963034540415, -0.02366439253091812, -0.016742242500185966, 0.04494236782193184, -5.6233184878621354e-33, -0.015212134458124638, -0.02358924224972725, -0.030204936861991882, 0.04182801768183708, -0.039269641041755676, -0.018332617357373238, -0.03468186780810356, -0.04807085916399956, -0.015983451157808304, -0.06215691193938255, 0.002804448129609227, -0.05681975558400154, 0.00802146177738905, -0.04694787412881851, 0.007803311571478844, 0.0047304327599704266, -0.014660640619695187, 0.026816679164767265, -0.006937162019312382, 0.001971147023141384, -0.02436976507306099, -0.01214813906699419, 0.01810997910797596, 0.054404471069574356, -0.013142384588718414, 0.01892627775669098, -0.031722456216812134, -0.025192609056830406, 0.055686477571725845, 0.03350333496928215, -0.020840369164943695, -0.021436229348182678, -0.007402055896818638, 0.031121261417865753, -0.04055394232273102, 0.009964988566935062, -0.07076327502727509, 0.012681412510573864, -0.04409908875823021, 0.013067318126559258, 0.026633381843566895, 0.0034412529785186052, -0.010262718424201012, -0.03506430238485336, 0.050059132277965546, 0.004052028525620699, 0.06103776395320892, 0.008440516889095306, -0.004470246843993664, 0.009264404885470867, -0.055523831397295, 0.03533602133393288, -0.0343133807182312, 0.07759834080934525, -0.004682933911681175, 0.020297523587942123, 0.06559044867753983, 0.05055565759539604, -0.0032603160943835974, -0.018748732283711433, 0.047702621668577194, 0.01805572770535946, 0.04619826003909111, -0.047983549535274506, -0.0043718707747757435, 0.010388092137873173, -0.021545646712183952, 0.04258308932185173, -0.010738208889961243, 0.012491133064031601, 0.004737872164696455, -0.015968291088938713, -0.02801395021378994, -0.029961515218019485, 0.015333140268921852, -0.006970993243157864, -0.047391220927238464, 0.06474676728248596, 0.028409365564584732, 0.12814395129680634, 0.017508380115032196, 0.01677028462290764, 0.027007414028048515, 0.026678375899791718, -0.002280802931636572, -0.04727179557085037, -0.012142662890255451, -0.029887402430176735, 0.0026105286087840796, -0.01853110082447529, 0.02704739011824131, 0.00825929082930088, -0.038138072937726974, 0.005093835294246674, 0.020152227953076363, 0.03901682421565056, -0.06086147949099541, 0.01838056556880474, -0.0846676155924797, -0.0694720447063446, 0.002790174214169383, -0.034512076526880264, 0.023478392511606216, -0.003880599979311228, 0.04066741093993187, -0.004484034143388271, 0.024905355647206306, -0.015112410299479961, -0.06560545414686203, -0.0337616391479969, -0.004436415620148182, -0.0143181923776865, 0.029371481388807297, 0.04600507393479347, -0.006999586243182421, -0.0406099297106266, -0.02892591618001461, -0.018349306657910347, -0.00429580919444561, -0.010369202122092247, -0.006535027176141739, 0.0498465970158577, -0.02385854534804821, -0.012975492514669895, -0.030614053830504417, -0.02022094652056694, 0.013892575167119503, 0.022646961733698845, 0.013807591050863266, -0.042504627257585526, 0.014591078273952007, 0.019480878487229347, 2.70791986167751e-07, 0.027729246765375137, 0.050630923360586166, 0.03615953400731087, -0.040110208094120026, -0.015161051414906979, -0.04571445658802986, -0.04905945435166359, 0.006884744390845299, -0.018486104905605316, 0.03630037605762482, 0.021207863464951515, -0.002056673401966691, 0.002554807113483548, 0.01897246576845646, -0.013612300157546997, -0.07201837748289108, -0.022874757647514343, -0.008693154901266098, -0.005936991423368454, -0.0010503035737201571, 0.07777827233076096, 0.03699001297354698, 0.047180067747831345, 0.01814713515341282, -0.02120770514011383, 0.014257395640015602, -0.028654638677835464, -0.032507747411727905, 0.028157012537121773, -0.0022539980709552765, -0.03232754021883011, -0.05434489622712135, -0.06229310482740402, -0.00988132692873478, -0.01810287870466709, -0.0035307046491652727, -0.015553462319076061, 0.025019099935889244, 0.018251247704029083, 0.05880417302250862, 0.04345567151904106, 0.01168666873127222, 0.01816430687904358, -0.03476223349571228, -0.0033307792618870735, 0.03996523097157478, -0.004929257556796074, 0.009821534156799316, -0.07384565472602844, -0.010734893381595612, 0.0076497141271829605, 0.024872472509741783, -0.02444346249103546, 0.02211460843682289, -0.03598808869719505, -0.03963005170226097, -8.388604442188807e-07, -0.03832406923174858, 0.020113235339522362, -0.012959743849933147, -0.05261431261897087, -0.014069206081330776, 0.02139490842819214, 0.08091738075017929, 0.0842275395989418, -0.006193539593368769, 0.015505203977227211, 3.1074475558137856e-34, 0.03972550481557846, -0.043802034109830856, 0.016519002616405487, 0.006489568389952183, 0.01773430034518242, -0.011672635562717915, 0.016773976385593414, 0.026745280250906944, -0.02529466338455677, -0.0745842456817627, -0.03453300520777702], "77848f07-e6f1-4e28-b5e8-2a1e6f01a8a2": [0.057009320706129074, 0.0041515640914440155, -0.07089746743440628, 0.027115603908896446, -0.012081902474164963, 0.03777962550520897, 0.006764485966414213, 0.04836280271410942, -0.03561270236968994, -0.02529936283826828, -0.00582161545753479, 0.023561378940939903, -0.003318828996270895, 0.0276618842035532, -0.034773264080286026, -0.01736309751868248, 0.054323408752679825, 0.00479141203686595, 0.04823698475956917, -0.004023375455290079, -0.046305008232593536, 0.016599364578723907, -0.000861835666000843, -0.029466377571225166, 0.04467795044183731, 0.02783040702342987, 0.014156815595924854, 0.013615073636174202, 0.020877894014120102, -0.028987649828195572, -0.02066502720117569, 0.00589978089556098, -0.0310822781175375, 0.0029685792978852987, 2.043419726760476e-06, -0.01773284748196602, -0.04100196436047554, 0.0040304227732121944, 0.028304310515522957, -0.015004554763436317, 0.0073069017380476, 0.01594988815486431, -0.11670328676700592, -0.0406712181866169, 0.00047598290257155895, -0.0037862786557525396, -0.019591843709349632, 0.09678025543689728, 0.009904169477522373, 0.06415102630853653, 0.02258605882525444, -0.006434780545532703, 0.029442379251122475, -0.017364276573061943, 0.13834047317504883, -0.02383740060031414, -0.002985103754326701, 0.07217971980571747, 0.02006428875029087, 0.025514140725135803, 0.003517116652801633, 0.0373825766146183, -0.031225351616740227, -0.0008408307912759483, 0.06932861357927322, 0.027898184955120087, 0.06579768657684326, -0.06605596840381622, 0.04188333824276924, 0.04958292841911316, 0.013102877885103226, 0.009077038615942001, 0.021214788779616356, 0.03418945148587227, -0.08658408373594284, 0.011749932542443275, -0.03846167027950287, 0.07412827014923096, 0.025308774784207344, 0.004242615308612585, -0.039013173431158066, -0.006681900005787611, -0.024767400696873665, 0.018244607374072075, 0.029503321275115013, 0.008457252755761147, -0.03170979395508766, -0.07358288019895554, 0.01631774567067623, -0.052031051367521286, 0.044877372682094574, -0.05206920579075813, 0.004209010396152735, 0.02546091005206108, 0.0583903007209301, -0.030323943123221397, -0.0012983322376385331, -0.08025407791137695, 0.0815432220697403, 0.033836741000413895, -0.040805183351039886, -0.04325483739376068, -0.02891036868095398, 0.030161842703819275, -0.03893369063735008, 0.04710524529218674, -0.010452980175614357, -0.007050403393805027, 0.026506805792450905, 0.06790956109762192, -0.04797153174877167, -0.01129238959401846, -0.01690530590713024, -0.05474613979458809, -0.035750698298215866, 0.010377932339906693, 0.0040869624353945255, 0.03954729810357094, 0.016626739874482155, 0.0347900316119194, 0.019913971424102783, -0.03342987224459648, -0.023146599531173706, 0.04742070287466049, -0.0043322318233549595, -0.02495245635509491, 0.006007191725075245, -0.005625659134238958, -0.009224355220794678, 0.04610157012939453, 0.0004262092406861484, 0.06599028408527374, 0.039174262434244156, -0.009923781268298626, -0.02308310940861702, 0.06392401456832886, 0.047090157866477966, -0.04519191011786461, 0.05208531394600868, -0.06710874289274216, 0.01562766544520855, -0.029841747134923935, -0.0023075954522937536, -0.022614719346165657, -0.01382799819111824, -0.00936779472976923, 0.005512696225196123, -0.03710460290312767, 0.025543564930558205, 0.0004519208159763366, -0.0867919847369194, 0.051330793648958206, -0.06176130473613739, -0.014743304811418056, 0.014558939263224602, 0.0076758600771427155, -0.032392628490924835, -0.060202114284038544, 0.014695536345243454, 0.011217149905860424, 0.015294624492526054, 0.04181970655918121, 0.01963530294597149, -0.04158111289143562, -0.017194034531712532, -0.03154981881380081, 0.0964503139257431, 0.0004626633890438825, 0.037418339401483536, 0.04200154170393944, 0.047443270683288574, -0.0035755550488829613, -0.02646251581609249, 0.009633162058889866, -0.011211900040507317, 0.11732460558414459, 0.03688611462712288, 0.034878894686698914, -0.029176121577620506, 0.025227269157767296, 0.013584418222308159, -0.03472469374537468, 0.023327965289354324, -0.014815235510468483, 0.012960915453732014, -0.004171252716332674, -0.04211096838116646, 0.02122379280626774, 0.045640937983989716, 0.014435279183089733, -0.00031829459476284683, -0.0147930309176445, -0.02588808536529541, -0.0821031853556633, 0.03260131925344467, -0.008085346780717373, -0.05189483240246773, -0.08915919810533524, 0.013854931108653545, -0.026146097108721733, 0.05256892368197441, -0.006523595191538334, 0.04842652752995491, -0.07421598583459854, 0.06685975939035416, -0.03999894857406616, 0.01940431073307991, -0.0186114814132452, -0.010847872123122215, -0.007685162592679262, 0.002215923275798559, -0.004351649899035692, -0.06843646615743637, -0.008577818050980568, -0.03492283821105957, 0.01917288824915886, -0.03552970290184021, 0.009506864473223686, -0.006931314244866371, -0.036294933408498764, 0.03959774598479271, -0.02627330645918846, -0.0017740130424499512, 0.004826254211366177, 0.007338669616729021, -0.01789402961730957, -0.07584264874458313, -0.012477338314056396, 0.03775735944509506, -0.00923274364322424, -0.0541105717420578, 0.03010960854589939, 0.08335349708795547, 0.02053234912455082, -0.03331464156508446, 0.060194194316864014, 0.03576038405299187, -0.0422951765358448, -0.00896014180034399, -0.09828022867441177, -0.009274104610085487, 0.02914418652653694, 0.03014841489493847, 0.021100351586937904, 0.04015609622001648, -0.013494282960891724, -0.030816754326224327, 0.008713492192327976, 0.01028705108910799, -0.005315138027071953, 0.00963932741433382, -0.0469730980694294, 0.04180784150958061, 0.03852883726358414, 0.00517652090638876, 0.0349699892103672, -0.07935266196727753, -0.0014799674972891808, -0.06729111075401306, 0.01156887598335743, 0.06196334958076477, 0.004157418385148048, -0.06219147518277168, 0.022876949980854988, 0.027462052181363106, -0.012249437160789967, -0.03528279811143875, 0.006589194759726524, -0.04599013552069664, 0.019450081512331963, 0.021883927285671234, -0.00026983339921571314, -0.0036417527589946985, -0.008333083242177963, -0.013304078951478004, -0.011796767823398113, -0.06655250489711761, 0.025169268250465393, -0.03611328452825546, 0.027035033330321312, 0.02992101199924946, -0.010767496190965176, -0.030676668509840965, 0.017479117959737778, -0.06065798178315163, -0.003219901816919446, 0.03854462876915932, -0.046315427869558334, -0.028182974085211754, -0.06777210533618927, -0.007640177384018898, 0.03690801188349724, 0.015590169467031956, -0.013645673170685768, -0.015728484839200974, 0.03176264464855194, 0.01694868505001068, -0.0008776279864832759, 0.03271970525383949, 0.07707787305116653, 0.009924075566232204, 0.003071639221161604, 0.015500038862228394, -0.0027235152665525675, -0.00604931078851223, 0.028953226283192635, 0.032445747405290604, -0.033514589071273804, 0.042777419090270996, -0.016960907727479935, 0.04078999534249306, 0.0351422056555748, 0.018203575164079666, -0.04090297594666481, -0.03175518289208412, -0.016378028318285942, 0.02011663280427456, -0.06724735349416733, -0.0034631129819899797, 0.07152902334928513, 0.02177826315164566, 0.0029607554897665977, -0.026758626103401184, 0.00390253821387887, 0.009291534312069416, -0.05186457186937332, 0.0280850138515234, -0.04160045459866524, -0.002347094938158989, 0.03426105156540871, 0.047066763043403625, -0.012914163060486317, -0.002438637427985668, -0.018929434940218925, 0.03750592842698097, -0.02127065509557724, 0.013554660603404045, -0.020053576678037643, 0.050048451870679855, 0.0004613267083186656, -0.0035481899976730347, 0.05222158133983612, 0.01045574713498354, -0.022888505831360817, 0.014580540359020233, -0.006614792626351118, -0.023498253896832466, 0.005448791664093733, -0.09930586069822311, 9.324098937213421e-05, 0.027507705613970757, -0.0027694832533597946, 0.006749663967639208, -0.03525429964065552, -0.04190326854586601, 0.08124826103448868, 0.004581455606967211, -0.02952651120722294, 0.0016342237358912826, -0.02877819910645485, -0.007617239840328693, 0.08970828354358673, 0.025583261623978615, 0.039817340672016144, -0.0027761063538491726, 0.059891752898693085, -0.03560231253504753, -0.038690194487571716, 0.015052364207804203, -0.024595338851213455, -0.04729020595550537, 0.021318679675459862, 0.028203722089529037, 0.055687110871076584, 0.03850273787975311, -0.020357713103294373, 0.012860927730798721, -0.048097725957632065, -0.03133708983659744, -0.018843386322259903, 0.02758920192718506, 0.00537835294380784, 0.0443459190428257, 0.013021305203437805, -0.009092521853744984, -0.007490554824471474, 0.011877608485519886, -0.005466964095830917, 0.034120529890060425, 0.020048009231686592, 0.013844374567270279, -0.01970033161342144, -0.08847343921661377, -0.026672348380088806, -0.01865246333181858, 0.017311835661530495, -0.06570865213871002, 0.047781091183423996, 0.01557968556880951, -0.03300844505429268, -0.02769109606742859, 0.034955114126205444, 0.019393708556890488, 0.07688815891742706, -0.01012742891907692, 0.030965939164161682, 0.08500680327415466, 0.055832359939813614, 0.035719502717256546, 0.015526937320828438, 0.08121262490749359, 0.03304726257920265, 0.021965106949210167, -0.0032968814484775066, 0.07560129463672638, -0.04427916184067726, 0.019666820764541626, -0.024384209886193275, -0.04609528183937073, -0.055506423115730286, -0.084145188331604, 0.005595018621534109, 0.08132170885801315, 0.019296038895845413, 0.03084569051861763, -0.05812619626522064, 0.06184383109211922, -0.07083941251039505, 0.000494572042953223, -0.02382367104291916, 0.03395126760005951, 0.009021027944982052, -0.004082999657839537, 0.0139565235003829, 0.013072032481431961, 0.005402649287134409, -0.011535056866705418, -0.046225517988204956, -0.018307359889149666, -0.06720779091119766, -0.010919769294559956, -0.004603862296789885, 0.05164504423737526, -0.009274501353502274, -0.0063879829831421375, 0.029141930863261223, 0.007834573276340961, 0.022365838289260864, -0.010908250696957111, 0.003343645017594099, -0.020786786451935768, -0.047116298228502274, -0.06506474316120148, 0.012663967907428741, -0.035850267857313156, 0.0026864181272685528, -0.018533745780587196, -0.004058258142322302, -0.012930747121572495, -0.04423850029706955, -0.05802185460925102, 0.05873260274529457, -0.03244601935148239, -0.02152560092508793, -0.00880297739058733, -0.023429755121469498, -0.03462719917297363, -0.045686908066272736, 0.025459468364715576, -0.009343748912215233, -0.015327795408666134, -0.009215518832206726, -0.004851833917200565, 0.001242764643393457, 0.03864922374486923, -0.06856431066989899, -0.04042540490627289, 0.0019608289003372192, 0.015364663675427437, -0.04779091104865074, 0.03692079335451126, 0.011296919547021389, 0.023431967943906784, -0.02561657316982746, -0.034867968410253525, 0.00036803478724323213, -0.014665150083601475, 0.02010571025311947, 0.00960065983235836, -0.022000625729560852, 0.011236361227929592, 0.01276302058249712, 0.005071175284683704, -0.016978392377495766, -0.033885661512613297, -0.04129565507173538, -0.05603053793311119, -0.00460415706038475, 0.059441663324832916, 0.010324682109057903, 0.03514226898550987, -0.06386412680149078, 0.012552410364151001, 0.000812820449937135, -0.0697963535785675, -0.017393970862030983, -0.004680142737925053, -0.029497550800442696, 0.0035811294801533222, -0.01860993355512619, -0.01992029882967472, -0.016188712790608406, -0.11314786225557327, 0.003255421994253993, 0.001384304603561759, -0.022564291954040527, 0.004802792798727751, -0.01052443590015173, 0.050520624965429306, -6.85526683810167e-05, 0.018870245665311813, 0.03634610399603844, 0.03819631040096283, -0.011493800207972527, 0.011070866137742996, 0.010172195732593536, 0.012784051708877087, 0.013640540651977062, 0.04528132453560829, 0.03888801857829094, 0.0024141406174749136, 0.005095997825264931, 0.006422112230211496, -0.024138761684298515, -0.025533990934491158, 0.02538907341659069, 0.001729341922327876, 0.0007596475770696998, -0.023834839463233948, -0.022912729531526566, 0.02865389734506607, -0.018821191042661667, 0.06896273046731949, 0.04965008422732353, 0.03281562030315399, 0.03658858686685562, -0.010312301106750965, 0.04860451817512512, -0.00578948762267828, -0.06648274511098862, 0.013849618844687939, 0.003472766373306513, -0.022405343130230904, -0.015176694840192795, 0.045622941106557846, -5.3764551232978546e-33, -0.0054132044315338135, -0.019473129883408546, -0.02570401504635811, 0.0388760007917881, -0.042482439428567886, -0.016284501180052757, -0.03225136548280716, -0.05619058758020401, -0.013216636143624783, -0.062431592494249344, 0.000717043993063271, -0.062415800988674164, 0.005808629561215639, -0.04495424032211304, 0.003466352354735136, 0.0098652895539999, -0.01860380358994007, 0.03037128411233425, -0.008908429183065891, 0.00014132873911876231, -0.023492440581321716, -0.013035611249506474, 0.020936233922839165, 0.056377049535512924, -0.01706148497760296, 0.01809978112578392, -0.027626799419522285, -0.028380971401929855, 0.054548125714063644, 0.04072904959321022, -0.016944322735071182, -0.0201389342546463, -0.010882626287639141, 0.020719235762953758, -0.03902385011315346, 0.011500376276671886, -0.06925445795059204, 0.008152834139764309, -0.04305850341916084, 0.01876183971762657, 0.013763519935309887, 0.01240038312971592, -0.011420820839703083, -0.03608141094446182, 0.05174478888511658, 0.014423131942749023, 0.0531233549118042, 0.0022433933336287737, -0.004018449690192938, -0.002348242560401559, -0.05879979208111763, 0.036116089671850204, -0.03281272575259209, 0.07611251622438431, -0.00565999886021018, 0.01904568076133728, 0.060226764529943466, 0.04561067745089531, -0.009547598659992218, -0.020878445357084274, 0.04871707782149315, 0.022825563326478004, 0.049192119389772415, -0.04542718082666397, 0.0023070210590958595, 0.011908444575965405, -0.015636060386896133, 0.03575538098812103, -1.9335268007125705e-05, 0.01580779068171978, 0.007752362638711929, -0.015095001086592674, -0.030983800068497658, -0.024005044251680374, 0.01191884744912386, -0.002633301541209221, -0.04358067363500595, 0.057993609458208084, 0.028207970783114433, 0.12787647545337677, 0.024775441735982895, 0.018041588366031647, 0.027975792065262794, 0.0313507616519928, -0.006029324606060982, -0.05296415090560913, -0.014046212658286095, -0.026855843141674995, 0.0009614538284949958, -0.02175009809434414, 0.019015973433852196, -0.0008944961591623724, -0.036921389400959015, 0.00028945182566531, 0.018229082226753235, 0.031338468194007874, -0.07081286609172821, 0.013320671394467354, -0.0840536579489708, -0.06970259547233582, 0.001415527076460421, -0.03676106035709381, 0.01874758116900921, -0.015415132977068424, 0.04127974435687065, -0.00021247727272566408, 0.028179967775940895, -0.01978861540555954, -0.06527135521173477, -0.03962680324912071, -0.005314868874847889, -0.01058025099337101, 0.035040467977523804, 0.05182488635182381, -0.003276881529018283, -0.04502616450190544, -0.03528172895312309, -0.014612725004553795, 0.003221001010388136, -0.001651088590733707, -0.0024438314139842987, 0.0402132011950016, -0.03150932863354683, -0.015629567205905914, -0.03735284134745598, -0.021967550739645958, 0.009469747543334961, 0.021234633401036263, 0.01126894447952509, -0.04324043542146683, 0.015131929889321327, 0.02091214247047901, 2.632868074670114e-07, 0.018739094957709312, 0.05481647700071335, 0.027956746518611908, -0.04026211425662041, -0.008894646540284157, -0.046250175684690475, -0.04854142293334007, 0.008733246475458145, -0.019108464941382408, 0.040159426629543304, 0.014485894702374935, -0.0023439128417521715, 0.006658551748842001, 0.020786991342902184, -0.012590264901518822, -0.06243276223540306, -0.029947739094495773, -0.0031413990072906017, -0.007436239626258612, -0.001175199169665575, 0.06914704293012619, 0.04908598214387894, 0.046409446746110916, 0.014656485058367252, -0.02533086948096752, 0.016049843281507492, -0.02783520147204399, -0.028886893764138222, 0.02880500629544258, -0.010294531472027302, -0.02447301708161831, -0.05453537032008171, -0.06254856288433075, -0.009988516569137573, -0.012874768115580082, -0.00011801183427451178, -0.010700391605496407, 0.02216338738799095, 0.015019654296338558, 0.053855352103710175, 0.05128291994333267, 0.013731391169130802, 0.01387028582394123, -0.03586209565401077, 0.002073052106425166, 0.0416831411421299, -0.007319326046854258, -0.0008019255474209785, -0.06916068494319916, -0.010234876535832882, 0.013074912130832672, 0.014277567155659199, -0.024927355349063873, 0.02893722802400589, -0.037473876029253006, -0.0460827499628067, 0.001159717096015811, -0.036070507019758224, 0.022347019985318184, -0.018921390175819397, -0.04158642888069153, -0.006713084876537323, 0.018703756853938103, 0.07491777837276459, 0.08619499206542969, 0.0006241575465537608, 0.01716902107000351, 3.028694485260981e-34, 0.04057338833808899, -0.04088123142719269, 0.01136446837335825, -0.005410294514149427, 0.020020583644509315, -0.021210364997386932, 0.027984850108623505, 0.033255621790885925, -0.02643739804625511, -0.07529587298631668, -0.038060396909713745], "52f57058-d56a-4d99-b021-e100acbf7d99": [0.052697326987981796, 0.009378463961184025, -0.07011785358190536, 0.02491014264523983, -0.01566808484494686, 0.03685081750154495, -0.002213676692917943, 0.0529160350561142, -0.04002851992845535, -0.027597608044743538, -0.0006762461271136999, 0.026256276294589043, -0.014139342121779919, 0.021628370508551598, -0.04021943360567093, -0.017514174804091454, 0.05103163793683052, 0.005198682192713022, 0.053409967571496964, 0.0010623804992064834, -0.05406493693590164, 0.015383215621113777, -0.0068456330336630344, -0.035032372921705246, 0.04052412509918213, 0.030643662437796593, 0.0054076239466667175, 0.017474379390478134, 0.016856925562024117, -0.03197881951928139, -0.024150926619768143, 0.007783044595271349, -0.03589018061757088, -1.7703712728689425e-05, 2.0184395452815806e-06, -0.00925437267869711, -0.0345277301967144, 0.0026400538627058268, 0.02128114551305771, -0.001727715483866632, 0.004996615462005138, 0.004520167130976915, -0.1190112829208374, -0.042185861617326736, 0.005126990377902985, 0.006203677970916033, -0.016864879056811333, 0.0942796990275383, 0.01589396223425865, 0.06154750660061836, 0.02446114271879196, 0.0007874872535467148, 0.019804570823907852, -0.019271835684776306, 0.137058287858963, -0.02264794334769249, 0.002166994148865342, 0.07618433237075806, 0.01502652931958437, 0.026287242770195007, 0.002027207985520363, 0.04170943796634674, -0.030112452805042267, -0.0024212729185819626, 0.06998278200626373, 0.030965471640229225, 0.05958029255270958, -0.054116301238536835, 0.04187292605638504, 0.04364968463778496, 0.0021125583443790674, 0.021026549860835075, 0.01732403039932251, 0.015874722972512245, -0.09099703282117844, 0.003661485156044364, -0.03550447151064873, 0.07418163120746613, 0.027190634980797768, 0.005463642533868551, -0.050607211887836456, -0.014188083820044994, -0.03415108099579811, 0.014855444431304932, 0.022405577823519707, -0.006483267992734909, -0.03500191494822502, -0.08201581984758377, 0.020338116213679314, -0.03536446765065193, 0.04361005499958992, -0.05618159472942352, 0.0010988559806719422, 0.022469330579042435, 0.06667197495698929, -0.033285584300756454, 0.002459276933223009, -0.07998470962047577, 0.08496957272291183, 0.032784655690193176, -0.04831613972783089, -0.04217948019504547, -0.036565862596035004, 0.025885364040732384, -0.03530993312597275, 0.04363979026675224, -0.007966901175677776, 0.0005729679833166301, 0.030165009200572968, 0.08211547881364822, -0.041819218546152115, -0.011434518732130527, -0.008612771518528461, -0.056827254593372345, -0.046200767159461975, 0.01103668287396431, 0.013469190336763859, 0.03395410254597664, 0.018964972347021103, 0.036961521953344345, 0.026715261861681938, -0.028321612626314163, -0.017032161355018616, 0.04350095987319946, -0.0011360415956005454, -0.021512744948267937, 0.007931266911327839, -0.007076723035424948, -0.01019435003399849, 0.05514082685112953, -0.0010171945905312896, 0.07281554490327835, 0.04424731433391571, -0.008910324424505234, -0.022493548691272736, 0.06971561908721924, 0.03987191617488861, -0.04156308248639107, 0.04172521084547043, -0.06650346517562866, 0.005517721176147461, -0.01808767020702362, 0.00022831384558230639, -0.00919213518500328, -0.017682163044810295, -0.013927491381764412, 0.003709327196702361, -0.026555867865681648, 0.027403337880969048, 0.001216790289618075, -0.08817653357982635, 0.04987300559878349, -0.06390279531478882, -0.01612013392150402, 0.014619668014347553, 0.0046346765011549, -0.030732465907931328, -0.06344781070947647, 0.011313592083752155, 0.02140846848487854, 0.020597975701093674, 0.03726322576403618, 0.01694382168352604, -0.03704912215471268, -0.02172236330807209, -0.03086298145353794, 0.101104237139225, 0.002882142784073949, 0.030594641342759132, 0.04993029683828354, 0.05015271529555321, -0.010436240583658218, -0.02025468833744526, 0.00365823064930737, -0.0032026709523051977, 0.10943327099084854, 0.02132311277091503, 0.02714517153799534, -0.024441706016659737, 0.028099073097109795, 0.0021270927973091602, -0.033771708607673645, 0.018949199467897415, -0.022981582209467888, 0.01670408807694912, -0.003288876498118043, -0.03361364081501961, 0.013870107010006905, 0.043150462210178375, 0.019763443619012833, -0.0028429862577468157, -0.01936790719628334, -0.030711259692907333, -0.08391933888196945, 0.035696253180503845, -0.014763333834707737, -0.05543556064367294, -0.09149549156427383, 0.012958069331943989, -0.02500293031334877, 0.048278775066137314, -0.00581598374992609, 0.03594864904880524, -0.06929998099803925, 0.061371203511953354, -0.03518984094262123, 0.003305046120658517, -0.01793702319264412, 0.0013395491987466812, -0.01395229808986187, -0.002289762254804373, -0.0025721010752022266, -0.05857443809509277, -0.008301063440740108, -0.03348466753959656, 0.014153405092656612, -0.03614198789000511, 0.002615266013890505, -0.003850341774523258, -0.04740811884403229, 0.040949176996946335, -0.02192637510597706, -0.0029969089664518833, 0.006496387999504805, 0.015020007267594337, -0.018638329580426216, -0.06032722070813179, -0.013433178886771202, 0.04212507605552673, -0.011648616753518581, -0.05515972897410393, 0.028410252183675766, 0.08453710377216339, 0.01867474615573883, -0.03154588118195534, 0.05681862682104111, 0.04221446439623833, -0.03530629351735115, -0.011010954156517982, -0.08037924021482468, -0.00501305190846324, 0.02182243950664997, 0.020837906748056412, 0.02655469998717308, 0.029474763199687004, -0.009016177617013454, -0.03698362782597542, 0.018613476306200027, 0.009341027587652206, -0.006096122786402702, -0.0015619436744600534, -0.04946720227599144, 0.047796882688999176, 0.04463450238108635, -0.0010877045569941401, 0.031068120151758194, -0.06963593512773514, -0.0014967634342610836, -0.07558977603912354, 0.014150531031191349, 0.056359775364398956, 0.005274017341434956, -0.06937361508607864, 0.019367698580026627, 0.03057768940925598, -0.004808805417269468, -0.03607654944062233, 0.0012399619445204735, -0.05722875893115997, 0.02295534685254097, 0.020456233993172646, -0.0001103085232898593, -0.005231891758739948, -0.013878555968403816, -0.015944842249155045, -0.0058313035406172276, -0.06964050978422165, 0.028845742344856262, -0.031681906431913376, 0.027022425085306168, 0.03133399039506912, -0.009737929329276085, -0.026195386424660683, 0.018108461052179337, -0.061249807476997375, -0.007288082502782345, 0.0365634486079216, -0.050094157457351685, -0.02759658731520176, -0.06266123801469803, -0.00928700715303421, 0.033928241580724716, 0.015015157870948315, -0.012742079794406891, -0.019802406430244446, 0.02808968722820282, 0.007643679156899452, -0.003129791934043169, 0.041703883558511734, 0.07195451110601425, 0.007771673146635294, -7.177710358519107e-05, 0.023024912923574448, 0.0019940927159041166, 0.004026787355542183, 0.023011300712823868, 0.03565562516450882, -0.04023250192403793, 0.04806878790259361, -0.017231451347470284, 0.047848936170339584, 0.041117776185274124, 0.016971023753285408, -0.0475216768682003, -0.028186624869704247, -0.01103902142494917, 0.020377743989229202, -0.06098349764943123, 0.0005705158691853285, 0.06901876628398895, 0.023337913677096367, 0.005635553039610386, -0.02512511797249317, 0.005934569519013166, 0.004852259065955877, -0.03674256056547165, 0.0324978232383728, -0.04027724638581276, -0.0065489658154547215, 0.036615755409002304, 0.04751197248697281, 0.0002599161525722593, -0.0005978221888653934, -0.01643282175064087, 0.042506143450737, -0.027642734348773956, 0.024846859276294708, -0.023579716682434082, 0.04243626445531845, -0.0039040485862642527, 0.0005873751942999661, 0.05177243426442146, 0.0172423068434, -0.03632513806223869, 0.0053741163574159145, -0.012847129255533218, -0.02568860538303852, -0.0026556167285889387, -0.09403641521930695, 0.004748777486383915, 0.021265527233481407, -0.0059199463576078415, 0.008324842900037766, -0.03289664164185524, -0.035997360944747925, 0.08611492067575455, -0.004828546661883593, -0.027567841112613678, 0.0001527082931715995, -0.028661569580435753, -0.014061583206057549, 0.09168139845132828, 0.04067803919315338, 0.04453326761722565, -0.0018505926709622145, 0.06102397292852402, -0.04823009669780731, -0.03518330305814743, 0.01636374369263649, -0.02634674496948719, -0.05147016793489456, 0.026791077107191086, 0.025836670771241188, 0.057125888764858246, 0.03615668788552284, -0.013377511873841286, 0.01584615744650364, -0.0436154305934906, -0.03237364441156387, -0.02673867531120777, 0.027846287935972214, 0.004223174415528774, 0.03705480694770813, 0.01467304490506649, -0.004260264802724123, -0.003375482279807329, 0.008993388153612614, -0.008419076912105083, 0.0380261056125164, 0.026458516716957092, 0.007561021484434605, 0.0005305780214257538, -0.08343755453824997, -0.02617393247783184, -0.020023798570036888, 0.012913775630295277, -0.0650530755519867, 0.04275340959429741, 0.028039561584591866, -0.0390489287674427, -0.023720650002360344, 0.03223800286650658, 0.021428488194942474, 0.0821022316813469, 0.0008220566669479012, 0.026007207110524178, 0.0883801206946373, 0.04674847051501274, 0.03599441051483154, 0.022803781554102898, 0.09234077483415604, 0.030260946601629257, 0.026268044486641884, 0.005470610689371824, 0.08424606919288635, -0.04346314072608948, 0.022807041183114052, -0.018607307225465775, -0.054518721997737885, -0.06109015271067619, -0.08382505923509598, 0.017014767974615097, 0.08082195371389389, 0.015558444894850254, 0.02813296765089035, -0.05876580625772476, 0.0678388774394989, -0.06625150889158249, -0.0012892724480479956, -0.027052534744143486, 0.025321949273347855, 0.016901880502700806, -0.007978699170053005, 0.022588500753045082, 0.016821404919028282, 0.010074807330965996, -0.011855311691761017, -0.042195290327072144, -0.011275087483227253, -0.06763199716806412, -0.015084430575370789, 0.0021842247806489468, 0.04919198527932167, -0.010889423079788685, -0.012849971652030945, 0.028993139043450356, 0.016047606244683266, 0.029515061527490616, -0.014615381136536598, 0.0013164433185011148, -0.02441411279141903, -0.04345574229955673, -0.061191096901893616, 0.010312988422811031, -0.02878718078136444, 0.005102175287902355, -0.01909264363348484, -0.008437542244791985, -0.014480947516858578, -0.05244097486138344, -0.06429914385080338, 0.05513233691453934, -0.03664571791887283, -0.01965319737792015, 0.0017583443550392985, -0.039823949337005615, -0.03609032928943634, -0.04411061480641365, 0.029329881072044373, -0.016515837982296944, -0.008016892708837986, -0.007021406665444374, -0.004174287896603346, 0.0011419698130339384, 0.03756869584321976, -0.06568421423435211, -0.03307478874921799, -0.0019426880171522498, 0.01730099506676197, -0.05296756327152252, 0.04329395666718483, 0.0023735237773507833, 0.023219771683216095, -0.03612806275486946, -0.03506136313080788, 0.0026008188724517822, -0.01859678328037262, 0.013570345938205719, 0.013438742607831955, -0.019669055938720703, 0.010323465801775455, 0.008268884383141994, 0.0009248744463548064, -0.011800377629697323, -0.039760835468769073, -0.03805197775363922, -0.05729103833436966, -0.017373088747262955, 0.050374697893857956, -0.00011206581984879449, 0.03074084036052227, -0.06764694303274155, 0.010919143445789814, -0.0047249216586351395, -0.06296610832214355, -0.01886122114956379, -0.0012096925638616085, -0.03164471685886383, 0.0036217665765434504, -0.021118829026818275, -0.020435960963368416, -0.02118292637169361, -0.10706087946891785, -0.0019253883510828018, 0.0005501956329680979, -0.02469712495803833, -0.0007042230572551489, -0.01134074479341507, 0.0449291467666626, 0.0030798364896327257, 0.016952862963080406, 0.037589579820632935, 0.02770504541695118, -0.0035918881185352802, 0.014516557566821575, 0.0036045245360583067, 0.013093534857034683, 0.014035719446837902, 0.04144143685698509, 0.031259309500455856, 0.0027612666599452496, 0.01068179588764906, 0.013208580203354359, -0.023586371913552284, -0.02388394996523857, 0.02668590098619461, -0.006956558208912611, 0.008452636189758778, -0.014234576374292374, -0.023844581097364426, 0.033736199140548706, -0.014189493842422962, 0.06336740404367447, 0.042283717542886734, 0.03101080283522606, 0.035189442336559296, -0.010453476570546627, 0.05546346306800842, -0.009469368495047092, -0.057269543409347534, 0.019242333248257637, -0.003650973318144679, -0.01824684627354145, -0.014844276010990143, 0.03334883973002434, -5.315963081978586e-33, -0.009421353228390217, -0.026817606762051582, -0.02819664031267166, 0.02952280081808567, -0.03388461098074913, -0.013987388461828232, -0.028068773448467255, -0.05277227982878685, -0.007953863590955734, -0.06492993235588074, 0.004631916061043739, -0.063947893679142, 0.007089659571647644, -0.04643205180764198, 0.011095639318227768, 0.015603241510689259, -0.017070312052965164, 0.025110529735684395, -0.005500625353306532, 0.0002405549312243238, -0.026389149948954582, -0.013302755542099476, 0.014723463915288448, 0.05461090803146362, -0.017953557893633842, 0.02619319222867489, -0.024708930402994156, -0.024548355489969254, 0.07008641213178635, 0.029212338849902153, -0.019504403695464134, -0.022065022960305214, -0.008733021095395088, 0.030619600787758827, -0.03480681777000427, -0.002280485350638628, -0.05994938313961029, 0.01233187410980463, -0.05192038044333458, 0.010408726520836353, 0.03019540198147297, 0.017512496560811996, -0.00246404274366796, -0.03129802271723747, 0.05224640294909477, 0.006267565302550793, 0.05365094169974327, 0.006986556109040976, 0.005255896132439375, 0.008642740547657013, -0.0548941008746624, 0.038746681064367294, -0.03984013572335243, 0.07158177345991135, -0.010983803309500217, 0.020483752712607384, 0.06779000908136368, 0.0548759289085865, 0.005761422216892242, -0.021339712664484978, 0.049084026366472244, 0.019755152985453606, 0.05463534593582153, -0.045231547206640244, -0.0026168804615736008, 0.011502436362206936, -0.02562015876173973, 0.043453317135572433, -0.013737586326897144, 0.009922069497406483, 0.0026769028045237064, -0.0169281717389822, -0.029606398195028305, -0.026941701769828796, 0.008899496868252754, 0.0066796825267374516, -0.040191084146499634, 0.0603068582713604, 0.023648474365472794, 0.13016057014465332, 0.023287074640393257, 0.01895929127931595, 0.03165837377309799, 0.03588835522532463, 0.00503341993317008, -0.057254523038864136, -0.009696953929960728, -0.02844826877117157, 0.007082893047481775, -0.015119520016014576, 0.01747751794755459, 0.004436219576746225, -0.03794437646865845, 0.006678255274891853, 0.018769869580864906, 0.03847382590174675, -0.07148992270231247, 0.015709398314356804, -0.08870652318000793, -0.07691473513841629, 0.005789904855191708, -0.03151031956076622, 0.021382570266723633, -0.017650842666625977, 0.03996001183986664, -0.005164776928722858, 0.01961832121014595, -0.025706643238663673, -0.06753820925951004, -0.03394085541367531, -0.007429027929902077, -0.015230103395879269, 0.028555838391184807, 0.04785223677754402, -0.0062311370857059956, -0.04583219066262245, -0.03682389855384827, -0.014904061332345009, 0.00013773830141872168, -0.006312670651823282, -0.002050933660939336, 0.03917853161692619, -0.02844351902604103, -0.01737525314092636, -0.03520157188177109, -0.027363888919353485, 0.027241310104727745, 0.011950778774917126, 0.0043381559662520885, -0.047453347593545914, 0.014361407607793808, 0.026149678975343704, 2.609612010928686e-07, 0.026535745710134506, 0.05521652474999428, 0.02764721028506756, -0.042237017303705215, -0.008341959677636623, -0.041895460337400436, -0.052845485508441925, -0.00399699667468667, -0.02861623652279377, 0.03631450980901718, 0.02050139009952545, -0.0091147031635046, 0.0058785355649888515, 0.021793898195028305, -0.0034973453730344772, -0.05704942345619202, -0.02380000427365303, -0.001094046630896628, -0.007219451479613781, -0.004130808636546135, 0.07355835288763046, 0.037071727216243744, 0.03707503527402878, 0.017853183671832085, -0.019824394956231117, 0.011937514878809452, -0.03740610182285309, -0.030009858310222626, 0.02813699282705784, -0.008718786761164665, -0.031153162941336632, -0.05881883203983307, -0.06646109372377396, -0.012820298783481121, -0.015035312622785568, -0.0028149583376944065, -0.0183273758739233, 0.0247290451079607, 0.01606288179755211, 0.04797690734267235, 0.04424085095524788, 0.01557865645736456, 0.02224157378077507, -0.03410717472434044, -0.0038372070994228125, 0.040528129786252975, -0.00877646915614605, 0.004335550591349602, -0.06826318800449371, -0.01292339712381363, 0.008692687377333641, 0.02259649708867073, -0.026628078892827034, 0.02536453679203987, -0.041851501911878586, -0.0402420312166214, -0.002308737486600876, -0.039055563509464264, 0.020289961248636246, -0.018635662272572517, -0.04756348952651024, -0.0012670474825426936, 0.024355079978704453, 0.07686267793178558, 0.07728806883096695, 0.006648314651101828, 0.01908864639699459, 2.982359115263207e-34, 0.03449806198477745, -0.0324009507894516, 0.009667815640568733, 0.0036528550554066896, 0.025528810918331146, -0.01849549263715744, 0.030600175261497498, 0.030547253787517548, -0.02379279024899006, -0.07317208498716354, -0.030636528506875038], "ec0b6f9e-fa47-4006-942f-74d62306946c": [0.048903629183769226, 0.007885918952524662, -0.06826189160346985, 0.032810278236866, -0.01883368194103241, 0.03793873265385628, 0.013328692875802517, 0.0467381551861763, -0.028901683166623116, -0.030131755396723747, 0.003967501688748598, 0.02662656456232071, -0.009348573163151741, 0.013150901533663273, -0.040596190840005875, -0.013234803453087807, 0.051992546766996384, 0.00907846912741661, 0.04605376720428467, -0.0072211832739412785, -0.0496416911482811, 0.008887410163879395, -0.000349613546859473, -0.03724269941449165, 0.0405973419547081, 0.032940275967121124, 0.0014989604242146015, 0.017237598076462746, 0.024356694892048836, -0.02171536721289158, -0.028378190472722054, 0.019330447539687157, -0.03900158032774925, -0.003279679687693715, 2.0479385511862347e-06, -0.014862723648548126, -0.03311174362897873, 0.010443862527608871, 0.03063776344060898, -0.002097631338983774, 5.4157346312422305e-05, 0.02101624384522438, -0.1139792799949646, -0.039721712470054626, -0.0031725550070405006, 0.0017763115465641022, -0.020181041210889816, 0.09463251382112503, 0.015417594462633133, 0.05121355503797531, 0.022143926471471786, -0.0103694386780262, 0.022138964384794235, -0.020887229591608047, 0.15469865500926971, -0.031206341460347176, -0.0032629589550197124, 0.07912492007017136, 0.022204743698239326, 0.02500102110207081, 0.003483373438939452, 0.04581465199589729, -0.03982602059841156, -0.010079429484903812, 0.06893793493509293, 0.025336559861898422, 0.06866296380758286, -0.05612851679325104, 0.03553331270813942, 0.050372350960969925, 0.020648563280701637, 0.015573120675981045, 0.01915030926465988, 0.031791239976882935, -0.0865282267332077, 0.017542589455842972, -0.04232779145240784, 0.06836942583322525, 0.02644205093383789, -9.804966975934803e-05, -0.040839552879333496, -0.002466286066919565, -0.03222105652093887, 0.017763810232281685, 0.026949778199195862, 0.0027779676020145416, -0.03171743452548981, -0.07535552233457565, 0.020051293075084686, -0.04494425654411316, 0.038233682513237, -0.04965238273143768, 0.0053743598982691765, 0.020022155717015266, 0.062206294387578964, -0.03390095755457878, -0.0015281299129128456, -0.0820077508687973, 0.07654324173927307, 0.040662769228219986, -0.03908224776387215, -0.039750829339027405, -0.018136247992515564, 0.034336477518081665, -0.03344932198524475, 0.0446322038769722, -0.012882817536592484, -0.007265497464686632, 0.021035337820649147, 0.07661779969930649, -0.048247672617435455, -0.01046799961477518, -0.014449084177613258, -0.05713628977537155, -0.03448059409856796, 0.010715778917074203, 0.006656584795564413, 0.03381916880607605, 0.007334462366998196, 0.03180742263793945, 0.015833493322134018, -0.024845167994499207, -0.020945727825164795, 0.042073577642440796, -0.004815095104277134, -0.02689039707183838, 0.010008244775235653, -0.01400731410831213, -0.005388541147112846, 0.04560429975390434, 0.0008952506468631327, 0.06616716086864471, 0.039936114102602005, -0.007651784457266331, -0.025546962395310402, 0.06363871693611145, 0.04027552530169487, -0.04272347688674927, 0.047960538417100906, -0.06611446291208267, 0.0063080498948693275, -0.022435851395130157, -0.011945522390305996, -0.021195096895098686, -0.021156633272767067, -0.015618015080690384, 0.0065212249755859375, -0.037903327494859695, 0.02918587438762188, -0.0009953727712854743, -0.08591781556606293, 0.05115117132663727, -0.061856091022491455, -0.018612166866660118, 0.008687566965818405, 0.01002639252692461, -0.03918524086475372, -0.05303721874952316, 0.018351033329963684, 0.012275507673621178, 0.013926188461482525, 0.04746880754828453, 0.015410753898322582, -0.04227465018630028, -0.022480657324194908, -0.024858366698026657, 0.093356654047966, -0.008260563015937805, 0.02832912653684616, 0.04924042150378227, 0.04304496943950653, -0.006709774490445852, -0.02151292748749256, 0.012359952554106712, -0.0013068256666883826, 0.11635397374629974, 0.02929806150496006, 0.03545002639293671, -0.028186704963445663, 0.02603003941476345, 0.012743694707751274, -0.0299245435744524, 0.025396501645445824, -0.019342588260769844, 0.008123297244310379, -0.006787234917283058, -0.04107067734003067, 0.021031733602285385, 0.03419148176908493, 0.014633871614933014, -0.0035561679396778345, -0.015451598912477493, -0.018379656597971916, -0.07226860523223877, 0.03385212644934654, -0.006152220536023378, -0.04873400181531906, -0.09268159419298172, 0.008779381401836872, -0.03559308126568794, 0.050725676119327545, -0.008201751857995987, 0.045663245022296906, -0.0725068673491478, 0.06430647522211075, -0.04254109039902687, 0.01552718598395586, -0.014040477573871613, -0.005582049954682589, -0.00689602829515934, 0.0018563343910500407, 0.0006186004029586911, -0.06989357620477676, -0.008974130265414715, -0.025882557034492493, 0.019142059609293938, -0.03584534302353859, 0.0052469754591584206, -0.011366558261215687, -0.043617699295282364, 0.041797567158937454, -0.023878958076238632, -0.011699425987899303, 0.0051415362395346165, 0.012958291918039322, -0.01529630832374096, -0.07328671962022781, -0.012295328080654144, 0.0354282408952713, -0.006925027817487717, -0.055508047342300415, 0.029509106650948524, 0.08360538631677628, 0.021154936403036118, -0.02930218167603016, 0.056189410388469696, 0.04423047602176666, -0.050575949251651764, -0.003654196159914136, -0.10803047567605972, -0.007608987856656313, 0.026271862909197807, 0.02342790924012661, 0.028950737789273262, 0.03652709722518921, -0.013122498989105225, -0.034699682146310806, 0.007670638617128134, 0.007809444330632687, -0.007880441844463348, -0.01119653508067131, -0.04954390972852707, 0.04759540781378746, 0.03497534990310669, 0.004053078126162291, 0.030875543132424355, -0.07273765653371811, -0.0027848538011312485, -0.06833288818597794, 0.015640225261449814, 0.051215581595897675, 0.01138127688318491, -0.061514079570770264, 0.020833730697631836, 0.026324326172471046, -0.007115692365914583, -0.03928258642554283, 0.0072952862828969955, -0.04936041310429573, 0.021903391927480698, 0.01566866785287857, -0.003170412266626954, 0.001097487867809832, -0.004908657167106867, -0.019139761105179787, -0.017055891454219818, -0.06784574687480927, 0.028570683673024178, -0.03317360207438469, 0.026450756937265396, 0.026166589930653572, -0.014501824043691158, -0.029466791078448296, 0.020436635240912437, -0.058391280472278595, -0.0025046844966709614, 0.043956343084573746, -0.04687495157122612, -0.03061612881720066, -0.07755645364522934, -0.015323050320148468, 0.03964868187904358, 0.01754912920296192, -0.012182415463030338, -0.015516639687120914, 0.03356233984231949, 0.013689040206372738, -0.005726696457713842, 0.03906466066837311, 0.08267045766115189, 0.005238363519310951, 0.007148485165089369, 0.017138179391622543, 0.0014529053587466478, -0.0014772596769034863, 0.029237622395157814, 0.03403570130467415, -0.03493151813745499, 0.03649375960230827, -0.015366954728960991, 0.043731749057769775, 0.02731485664844513, 0.01569194532930851, -0.03713985159993172, -0.02969091385602951, -0.016672834753990173, 0.01853865012526512, -0.06260457634925842, 0.0011623132741078734, 0.06647267192602158, 0.0171535462141037, 0.00024347292492166162, -0.03018861450254917, 0.006498434115201235, 0.009829065762460232, -0.045273590832948685, 0.02937731333076954, -0.0421418696641922, -0.006375764962285757, 0.037914928048849106, 0.05351404473185539, -0.001702221343293786, 0.006256345193833113, -0.01948481611907482, 0.04711664840579033, -0.013588499277830124, 0.01199119258671999, -0.009781735949218273, 0.04688357561826706, 0.004912545904517174, 0.0037923483178019524, 0.0499667227268219, 0.010299946181476116, -0.029236476868391037, 0.014642471447587013, -0.00924378540366888, -0.01697099395096302, 0.004059300292283297, -0.10095060616731644, 0.003989438526332378, 0.027190707623958588, -0.00692019471898675, 0.006344028748571873, -0.03330636024475098, -0.038869377225637436, 0.08710727840662003, -0.0012965027708560228, -0.02423687092959881, 0.0006469452637247741, -0.03941702842712402, -0.01691308245062828, 0.08911672979593277, 0.027760131284594536, 0.048010315746068954, -0.004534531384706497, 0.05857151001691818, -0.03832771256566048, -0.03565392643213272, 0.021619439125061035, -0.022566137835383415, -0.051098573952913284, 0.03253970295190811, 0.02971763350069523, 0.04932720959186554, 0.04209659993648529, -0.018985169008374214, 0.011146856471896172, -0.04213607683777809, -0.024942118674516678, -0.021158430725336075, 0.02950580231845379, -0.0035410448908805847, 0.04225964471697807, 0.013378080911934376, -0.012790825217962265, -0.002908523892983794, 0.011063287034630775, -0.009985438548028469, 0.031177936121821404, 0.028552426025271416, 0.014369010925292969, -0.003910015802830458, -0.08215735852718353, -0.020416490733623505, -0.02253577671945095, 0.01778891123831272, -0.07681812345981598, 0.045931991189718246, 0.01580526866018772, -0.037209585309028625, -0.031006574630737305, 0.0389106310904026, 0.024584148079156876, 0.07441110908985138, -0.009322368539869785, 0.018442144617438316, 0.08114642649888992, 0.054508134722709656, 0.03554489463567734, 0.010396216064691544, 0.08603505790233612, 0.025394268333911896, 0.019499478861689568, -0.0055246781557798386, 0.087285615503788, -0.04665989428758621, 0.020618904381990433, -0.024681590497493744, -0.049422670155763626, -0.04702170938253403, -0.0813683569431305, 0.008719510398805141, 0.07957930117845535, 0.01920323073863983, 0.030850039795041084, -0.0566040463745594, 0.06588815897703171, -0.06327041238546371, 0.0012833261862397194, -0.021567819640040398, 0.024760926142334938, 0.00954808946698904, -0.0029656097758561373, 0.021447090432047844, 0.012400566600263119, 0.01492905244231224, -0.009295317344367504, -0.03695274516940117, -0.015400673262774944, -0.0662175640463829, 0.002782754832878709, -0.0048660216853022575, 0.0516030453145504, -0.004123385529965162, -0.012578275054693222, 0.038018859922885895, 0.00858020968735218, 0.026920098811388016, -0.011879028752446175, -0.002962722908705473, -0.021015511825680733, -0.045700427144765854, -0.06374591588973999, 0.021131083369255066, -0.03303473815321922, 0.008531926199793816, -0.020094655454158783, -0.00837964192032814, -0.016238970682024956, -0.04516301304101944, -0.05725451558828354, 0.05910234898328781, -0.0313672311604023, -0.025909792631864548, -0.0024223909713327885, -0.034420840442180634, -0.03418886289000511, -0.039860133081674576, 0.03402654454112053, -0.013779312372207642, -0.014247563667595387, -0.010112261399626732, 0.0014761561760678887, 0.0035053258761763573, 0.04079200327396393, -0.06846333295106888, -0.042237475514411926, 0.0014466693392023444, 0.018022164702415466, -0.05305894836783409, 0.04162413254380226, 0.0045010983012616634, 0.02417231909930706, -0.02606477588415146, -0.03696237504482269, 4.40743679064326e-05, -0.013336200267076492, 0.020131465047597885, 0.005044242367148399, -0.031349457800388336, 0.010566926561295986, 0.012378898449242115, 0.007901601493358612, -0.014621219597756863, -0.0360071174800396, -0.03380675986409187, -0.06021994352340698, -0.004098447039723396, 0.053512249141931534, 0.006921092979609966, 0.032452408224344254, -0.06194182112812996, 0.010371691547334194, 0.006889312528073788, -0.06519651412963867, -0.0164965633302927, -0.0019085953244939446, -0.03184016793966293, 0.008031349629163742, -0.020038971677422523, -0.021276453509926796, -0.019531145691871643, -0.11844126880168915, -0.002776691922917962, -0.0019230142934247851, -0.022691434249281883, -0.0038058690261095762, -0.00829517561942339, 0.050274014472961426, 0.012294590473175049, 0.01726873405277729, 0.03864596039056778, 0.04024457186460495, -0.006944441236555576, 0.016196411103010178, 0.011242317035794258, 0.015470685437321663, 0.013416627421975136, 0.04766390845179558, 0.03554048016667366, 0.008655423298478127, 0.0015144532080739737, 0.007086848374456167, -0.024082457646727562, -0.022138096392154694, 0.023280004039406776, -0.010344412177801132, 0.0016071730060502887, -0.015810096636414528, -0.02634483575820923, 0.022224579006433487, -0.014024225063621998, 0.07334721088409424, 0.04719002544879913, 0.03490057960152626, 0.0402611568570137, -0.009476964361965656, 0.048645079135894775, -0.006686459761112928, -0.06596028059720993, 0.01839469186961651, -0.006559554487466812, -0.018381180241703987, -0.01997404918074608, 0.05153997614979744, -5.6002508805951865e-33, -0.013723727315664291, -0.021671228110790253, -0.03277989476919174, 0.042264558374881744, -0.04042411968111992, -0.018949052318930626, -0.0328279510140419, -0.04820001497864723, -0.01562744565308094, -0.059724945574998856, 0.0005070224869996309, -0.06342652440071106, 0.005154942627996206, -0.0460568442940712, -0.0010942717781290412, 0.009234379045665264, -0.015455538406968117, 0.031262803822755814, -0.0038159687537699938, 0.00019554591563064605, -0.025241807103157043, -0.012461823411285877, 0.013691222295165062, 0.06117541342973709, -0.023731175810098648, 0.019431885331869125, -0.028328726068139076, -0.029944272711873055, 0.045632876455783844, 0.026916150003671646, -0.017657160758972168, -0.017750820145010948, -0.01276372466236353, 0.03261478990316391, -0.03621891140937805, 0.009428123943507671, -0.06931667774915695, 0.001430540345609188, -0.047064024955034256, 0.010275641456246376, 0.018394723534584045, 0.019034503027796745, -0.010097693651914597, -0.03074091300368309, 0.048300109803676605, 0.0032981906551867723, 0.05801974982023239, 0.0018928468925878406, -0.005333416163921356, 0.003735858015716076, -0.05838972330093384, 0.03252609819173813, -0.03689015284180641, 0.07207939773797989, -0.007321389392018318, 0.01568741165101528, 0.057731062173843384, 0.04964536800980568, -0.005569186061620712, -0.016813503578305244, 0.05651072412729263, 0.017889495939016342, 0.043968044221401215, -0.04490606486797333, 0.003839077427983284, 0.010284421034157276, -0.01918100379407406, 0.042096465826034546, -0.012617398053407669, 0.009559794329106808, 0.0030873077921569347, -0.018144138157367706, -0.025118790566921234, -0.021787552163004875, 0.02220560796558857, 0.004967843648046255, -0.05365678295493126, 0.05433027446269989, 0.03485124558210373, 0.1289738118648529, 0.0147704454138875, 0.01374349556863308, 0.03104766272008419, 0.03125498443841934, -0.007600695826113224, -0.058531321585178375, -0.00937731470912695, -0.026323441416025162, 0.0008696577278897166, -0.021207809448242188, 0.01590859144926071, 0.007893743924796581, -0.03935433551669121, 0.0038001376669853926, 0.012320024892687798, 0.024241408333182335, -0.062395207583904266, 0.02278493344783783, -0.08473216742277145, -0.07530100643634796, 0.005069493316113949, -0.03508288785815239, 0.017710542306303978, -0.006936375051736832, 0.04110546037554741, -0.0027288461569696665, 0.024150695651769638, -0.023974966257810593, -0.06734471768140793, -0.03732970729470253, -0.006212893407791853, -0.010979847051203251, 0.03459343686699867, 0.045780546963214874, -0.01082709338515997, -0.0494198352098465, -0.03235146775841713, -0.011822603642940521, 0.0035182801075279713, 0.00015760712267365307, 0.000978309428319335, 0.04188918322324753, -0.03294413536787033, -0.017428910359740257, -0.032737862318754196, -0.017546677961945534, 0.02180238626897335, 0.014471898786723614, 0.009218129329383373, -0.046149078756570816, 0.014351950027048588, 0.02847965806722641, 2.6657690455067495e-07, 0.025457268580794334, 0.04367174580693245, 0.03103150799870491, -0.04468251392245293, -0.010999358259141445, -0.049184225499629974, -0.05029022693634033, 0.0016477969475090504, -0.015985403209924698, 0.03033445030450821, 0.011299148201942444, -0.0007872594869695604, 0.005099752452224493, 0.024138422682881355, -0.006713337264955044, -0.04869096353650093, -0.019519878551363945, -0.0014262470649555326, -0.005699988920241594, -0.0013395429123193026, 0.0641331672668457, 0.0382191501557827, 0.04966243356466293, 0.01712868921458721, -0.026241160929203033, 0.01621231809258461, -0.02004723809659481, -0.027312828227877617, 0.02716374211013317, -0.004033084027469158, -0.023030247539281845, -0.057389553636312485, -0.070269875228405, -0.006052106618881226, -0.01392189972102642, 0.0003497334255371243, -0.016845539212226868, 0.013242538087069988, 0.009914308786392212, 0.0665094405412674, 0.053567249327898026, 0.016987504437565804, 0.020037345588207245, -0.030560672283172607, -0.0013003129279240966, 0.03658119961619377, -0.002129284432157874, -0.0016659984830766916, -0.07187574356794357, -0.014039353467524052, 0.021428003907203674, 0.020987290889024734, -0.024548569694161415, 0.018862519413232803, -0.03704876825213432, -0.03973253816366196, -0.005141000263392925, -0.038825489580631256, 0.026663562282919884, -0.014564728364348412, -0.042673878371715546, -0.006743873003870249, 0.028727035969495773, 0.07785006612539291, 0.08158057183027267, -0.00013859965838491917, 0.018451424315571785, 3.084029504293498e-34, 0.04068165272474289, -0.040737662464380264, 0.01816001534461975, 0.004850649740546942, 0.018211783841252327, -0.017085827887058258, 0.020407870411872864, 0.02681070752441883, -0.02529974654316902, -0.07699233293533325, -0.03359577804803848], "2f45fac7-da65-4dbc-975c-4c0385a61c5a": [0.050464630126953125, 0.008126633241772652, -0.07256844639778137, 0.02687232941389084, -0.013098141178488731, 0.039754439145326614, 0.013301270082592964, 0.05176495015621185, -0.0319521501660347, -0.02894042246043682, 0.0013129562139511108, 0.02551410347223282, -0.0034558712504804134, 0.02164946123957634, -0.03587842732667923, -0.01602301560342312, 0.05443304777145386, 0.002725183730944991, 0.04417819529771805, -0.0001598174567334354, -0.050042714923620224, 0.015932263806462288, -0.00013039637997280806, -0.031914833933115005, 0.04281510040163994, 0.0280302744358778, 0.010269957594573498, 0.011527794413268566, 0.019459564238786697, -0.028208043426275253, -0.018989883363246918, 0.007703321520239115, -0.03369821235537529, 0.004504807759076357, 2.11125188798178e-06, -0.01316642202436924, -0.04137135669589043, 0.0053664203733205795, 0.025940917432308197, -0.00327707314863801, 0.0007752220844849944, 0.020966045558452606, -0.11276210099458694, -0.032545335590839386, -0.005090097431093454, 1.1685127901728265e-05, -0.015183432027697563, 0.0899219810962677, 0.012592297978699207, 0.0626482218503952, 0.02328738383948803, -0.000693896203301847, 0.03118860349059105, -0.0186795424669981, 0.15192259848117828, -0.026981912553310394, -0.0035749778617173433, 0.07828012108802795, 0.012600096873939037, 0.030713524669408798, 0.004039971623569727, 0.03924009948968887, -0.03321540728211403, -0.003878682153299451, 0.06991153955459595, 0.026028679683804512, 0.07452666014432907, -0.06372272968292236, 0.03833847865462303, 0.04483577981591225, 0.015047891065478325, 0.010355872102081776, 0.01924428716301918, 0.03113560937345028, -0.08808667957782745, 0.009735411033034325, -0.03896801173686981, 0.07767349481582642, 0.026316402480006218, 0.0038238163106143475, -0.039027366787195206, -0.010634290985763073, -0.02785257063806057, 0.0133904367685318, 0.02111150696873665, 0.012568864040076733, -0.03060741163790226, -0.07404336333274841, 0.011861599050462246, -0.05329008400440216, 0.03981028497219086, -0.054029207676649094, 0.00017671061505097896, 0.024164658039808273, 0.055799584835767746, -0.028928952291607857, 0.001967473654076457, -0.08114244788885117, 0.08024761080741882, 0.03815562650561333, -0.04478045180439949, -0.036858849227428436, -0.0318811759352684, 0.03305114805698395, -0.034627847373485565, 0.047448448836803436, -0.010382448323071003, -0.009203051216900349, 0.025414060801267624, 0.0696319043636322, -0.04726036638021469, -0.012543504126369953, -0.017097504809498787, -0.05460398644208908, -0.03882279247045517, 0.013291333802044392, 0.0072569879703223705, 0.03791584074497223, 0.013218068517744541, 0.033559173345565796, 0.02114478126168251, -0.031065741553902626, -0.02185448817908764, 0.044634416699409485, -0.0022520956117659807, -0.02765217050909996, 0.005556250456720591, -0.012399735860526562, -0.008703965693712234, 0.04493457078933716, -0.0005322486395016313, 0.0655166432261467, 0.03909360617399216, -0.012587517499923706, -0.030467569828033447, 0.06863182783126831, 0.04120469093322754, -0.04465474560856819, 0.04628082737326622, -0.06744422763586044, 0.01168081909418106, -0.02109774947166443, -0.011011874303221703, -0.022955726832151413, -0.016539037227630615, -0.0169022586196661, 0.006508335005491972, -0.04190867021679878, 0.025819996371865273, -0.0014989793999120593, -0.08330043405294418, 0.05081186071038246, -0.07298480719327927, -0.017157474532723427, 0.0091969920322299, 0.00845920667052269, -0.03017130307853222, -0.05751093477010727, 0.017177969217300415, 0.00995648093521595, 0.020483803004026413, 0.04418884217739105, 0.018250618129968643, -0.04141591489315033, -0.019761990755796432, -0.03194292634725571, 0.09188894182443619, -0.010942713357508183, 0.03553611785173416, 0.0441071093082428, 0.04173969477415085, -0.00477368850260973, -0.023005308583378792, 0.011332767084240913, -0.009527232497930527, 0.11406734585762024, 0.029262321069836617, 0.03904715180397034, -0.02929462119936943, 0.0324118472635746, 0.00818466953933239, -0.030971970409154892, 0.022965161129832268, -0.021929340437054634, 0.003156797494739294, -0.005772267002612352, -0.04368160665035248, 0.020326487720012665, 0.04135245829820633, 0.009552533738315105, -0.005481182597577572, -0.015567674301564693, -0.0313023142516613, -0.0801825076341629, 0.036535948514938354, -0.009702659212052822, -0.0475141778588295, -0.08703045547008514, 0.015999609604477882, -0.02688555419445038, 0.051702287048101425, -0.004612690303474665, 0.04719029739499092, -0.07018165290355682, 0.0626150518655777, -0.047531574964523315, 0.02083444595336914, -0.016435833647847176, -0.0022441328037530184, -0.008186020888388157, 0.0031312271021306515, 0.0009951649699360132, -0.06362779438495636, -0.008853319101035595, -0.03707805275917053, 0.01670491136610508, -0.03513677418231964, 0.006780155468732119, -0.01158181857317686, -0.041400108486413956, 0.036949630826711655, -0.025324661284685135, -0.0012414075899869204, 0.013338896445930004, 0.004576469771564007, -0.016819320619106293, -0.07448777556419373, -0.010111351497471333, 0.03243274986743927, -0.009117024019360542, -0.05693512782454491, 0.029602820053696632, 0.08156722038984299, 0.016350872814655304, -0.04037749022245407, 0.05517628416419029, 0.038486965000629425, -0.040251124650239944, -0.0032939533703029156, -0.09982486069202423, -0.009450675919651985, 0.02694658562541008, 0.025427108630537987, 0.025325961410999298, 0.03582772985100746, -0.016584359109401703, -0.02558644488453865, 0.0140752037987113, 0.011883747763931751, -0.0059312148950994015, -0.0005350328283384442, -0.047750551253557205, 0.04365566745400429, 0.036641523241996765, 0.0035302089527249336, 0.033751167356967926, -0.08038963377475739, -0.00011570884817047045, -0.06417128443717957, 0.00850476510822773, 0.053393326699733734, 0.004944957327097654, -0.060722481459379196, 0.023260293528437614, 0.03073257766664028, -0.007533710915595293, -0.03734149783849716, 0.005771071184426546, -0.04718153178691864, 0.0196240171790123, 0.02100609615445137, 0.0010421356419101357, 0.0009792119963094592, -0.008245352655649185, -0.014291715808212757, -0.008962583728134632, -0.07118276506662369, 0.02168123610317707, -0.034038957208395004, 0.026757873594760895, 0.02599923685193062, -0.010677230544388294, -0.033361271023750305, 0.01812916249036789, -0.059882115572690964, -0.004593751393258572, 0.0342203713953495, -0.044790416955947876, -0.028010642156004906, -0.07186631113290787, -0.005795894656330347, 0.03947548568248749, 0.01739068143069744, -0.014202877879142761, -0.011751484125852585, 0.034436628222465515, 0.024835776537656784, -0.004744082223623991, 0.037777822464704514, 0.08087008446455002, 0.009416497312486172, 0.004376961383968592, 0.01570877991616726, -0.0006222035153768957, 0.0005456714425235987, 0.02313719317317009, 0.03570865839719772, -0.03890431299805641, 0.03643766790628433, -0.011646737344563007, 0.04111571982502937, 0.03336484730243683, 0.012790078297257423, -0.030799735337495804, -0.02704514190554619, -0.013787639327347279, 0.014944963157176971, -0.06655298173427582, -0.0037341720890253782, 0.07149823009967804, 0.019038289785385132, -0.0010216081282123923, -0.0279659666121006, 0.003823193022981286, 0.007004730403423309, -0.042592231184244156, 0.03043719381093979, -0.04193614050745964, 0.0020640676375478506, 0.037937380373477936, 0.04588541015982628, -0.0038027619011700153, -0.0035640590358525515, -0.017004385590553284, 0.04506435617804527, -0.02260398305952549, 0.014172893017530441, -0.020026041194796562, 0.04556054621934891, -0.0016423652414232492, 0.005919207353144884, 0.051679808646440506, 0.010322189889848232, -0.026715632528066635, 0.005911011714488268, -0.011114823631942272, -0.019059402868151665, 0.0017185924807563424, -0.0961301177740097, 0.0038524726405739784, 0.029741236940026283, -0.00444199051707983, 0.013730033300817013, -0.03401701897382736, -0.04246492311358452, 0.07964444905519485, 0.0011582940351217985, -0.02798505313694477, -0.002690642373636365, -0.03373980522155762, -0.008327684365212917, 0.08789761364459991, 0.02651163376867771, 0.04316999763250351, -0.0029818220064044, 0.05845881998538971, -0.039288341999053955, -0.03366027772426605, 0.012649347074329853, -0.022306431084871292, -0.04985933005809784, 0.029743384569883347, 0.0261693112552166, 0.058580268174409866, 0.03801506385207176, -0.01644182577729225, 0.017599841579794884, -0.049145448952913284, -0.024202652275562286, -0.020849566906690598, 0.024419689550995827, -0.007946888916194439, 0.0400119386613369, 0.01066045556217432, -0.009702284820377827, -0.001318468013778329, 0.011205620132386684, -0.0062464941293001175, 0.03518432378768921, 0.020158741623163223, 0.013858146965503693, -0.018066180869936943, -0.08942160755395889, -0.022805046290159225, -0.020627476274967194, 0.012931863777339458, -0.07350367307662964, 0.04296768456697464, 0.01852371357381344, -0.03435507044196129, -0.02863568812608719, 0.031587883830070496, 0.023485464975237846, 0.07598216831684113, -0.010362132452428341, 0.030861161649227142, 0.08273918181657791, 0.05460973456501961, 0.0401819571852684, 0.01049947552382946, 0.08988671004772186, 0.021214047446846962, 0.02259155549108982, -0.001769686583429575, 0.08295204490423203, -0.04702962934970856, 0.021479809656739235, -0.02307458408176899, -0.05191617086529732, -0.05684161186218262, -0.08753311634063721, 0.010670296847820282, 0.08064571768045425, 0.01928405836224556, 0.03261670097708702, -0.056432511657476425, 0.06261570751667023, -0.07129061222076416, 0.0009558032033964992, -0.020775314420461655, 0.031976621598005295, 0.007812577299773693, -0.009370294399559498, 0.02085975371301174, 0.011053851805627346, 0.006187885534018278, -0.013146688230335712, -0.042307522147893906, -0.016066530719399452, -0.0681467056274414, -0.007062066812068224, -0.005717895459383726, 0.04973975569009781, -0.00954885222017765, -0.006580218207091093, 0.03567886725068092, 0.010323888622224331, 0.027697831392288208, -0.012750830501317978, -0.004440119955688715, -0.020078586414456367, -0.0402512289583683, -0.06596934795379639, 0.0059270006604492664, -0.03555433452129364, 0.004249395802617073, -0.022840017452836037, -0.007820316590368748, -0.01480269618332386, -0.038541462272405624, -0.0599677637219429, 0.061026085168123245, -0.029668454080820084, -0.023337386548519135, -0.007399589754641056, -0.030904199928045273, -0.03407738730311394, -0.04885116219520569, 0.029855236411094666, -0.011098760180175304, -0.016035674139857292, -0.008593508042395115, -0.003120764857158065, 0.002944202395156026, 0.0379093773663044, -0.07112076878547668, -0.035628851503133774, 3.220148937543854e-05, 0.021288856863975525, -0.049690861254930496, 0.03406541049480438, 0.007936101406812668, 0.027850385755300522, -0.029074931517243385, -0.034273095428943634, 0.0006751612527295947, -0.014837339520454407, 0.01950652524828911, 0.0098117645829916, -0.016078010201454163, 0.007258322089910507, 0.009508233517408371, 0.00484422966837883, -0.012875588610768318, -0.03570950776338577, -0.029198596253991127, -0.05376226827502251, -0.01253517810255289, 0.051651209592819214, 0.008724803104996681, 0.03541567921638489, -0.06276723742485046, 0.015148214995861053, 0.009422620758414268, -0.0671146884560585, -0.016894953325390816, 0.001020242809318006, -0.032875318080186844, 0.003024650737643242, -0.02171040140092373, -0.024070201441645622, -0.018893150612711906, -0.11568361520767212, -0.002238187240436673, 0.0014342546928673983, -0.020713549107313156, 0.003528379835188389, -0.009515682235360146, 0.05001755431294441, 0.010558760724961758, 0.019069740548729897, 0.03975164517760277, 0.03846022114157677, -0.008439000695943832, 0.013011753559112549, 0.004223532509058714, 0.018455566838383675, 0.01290257927030325, 0.040204036980867386, 0.038127824664115906, 0.004776678513735533, 0.006723873317241669, 0.012051505967974663, -0.023562533780932426, -0.023338112980127335, 0.02869938127696514, 0.00173255056142807, 0.006148668937385082, -0.020022127777338028, -0.02476644702255726, 0.0208907388150692, -0.01415218599140644, 0.06599099934101105, 0.055741481482982635, 0.033420681953430176, 0.03464964032173157, -0.010138423182070255, 0.047288503497838974, -0.005011724308133125, -0.06827303767204285, 0.01992584392428398, 0.0035199031699448824, -0.018436254933476448, -0.01467052660882473, 0.04505734145641327, -5.5573019904359865e-33, -0.012770363129675388, -0.026020701974630356, -0.030597208067774773, 0.04340830817818642, -0.044555775821208954, -0.01980672962963581, -0.03442758694291115, -0.04706781357526779, -0.012072804383933544, -0.06466355174779892, 0.0017470468301326036, -0.06127456575632095, 0.005534214433282614, -0.04877432435750961, 0.003183003980666399, 0.009644225239753723, -0.012377078644931316, 0.027511481195688248, -0.00972042791545391, 0.0019241904374212027, -0.025471756234765053, -0.01224058959633112, 0.01597556471824646, 0.06076852232217789, -0.018905512988567352, 0.015462503768503666, -0.02333996258676052, -0.024486294016242027, 0.05035778880119324, 0.039157573133707047, -0.02119649574160576, -0.017938977107405663, -0.009666072204709053, 0.03291419893503189, -0.039300184696912766, 0.012997940182685852, -0.06636901944875717, 0.0036861279513686895, -0.04590817913413048, 0.010490898974239826, 0.016150150448083878, 0.014077351428568363, -0.011089092120528221, -0.03112456388771534, 0.05427826941013336, 0.006626754067838192, 0.05955037102103233, 0.003398240776732564, -0.006343945860862732, 0.009596939198672771, -0.056000202894210815, 0.03571344539523125, -0.03626057505607605, 0.07251586019992828, -0.008800321258604527, 0.019444279372692108, 0.06743420660495758, 0.04656499624252319, -0.011504707857966423, -0.02144421450793743, 0.05597550794482231, 0.02358427084982395, 0.04283986613154411, -0.044746436178684235, 0.0004921974032185972, 0.014940880239009857, -0.02025126852095127, 0.042602475732564926, -0.005761106498539448, 0.016426313668489456, 0.009089971892535686, -0.013567963615059853, -0.030015084892511368, -0.029935060068964958, 0.019615186378359795, -0.0015048804925754666, -0.049350351095199585, 0.05710185691714287, 0.032012805342674255, 0.12727560102939606, 0.018462179228663445, 0.019279437139630318, 0.031098302453756332, 0.027752531692385674, -0.008135846816003323, -0.05606613680720329, -0.010258533991873264, -0.025546427816152573, -0.002274683676660061, -0.02132609486579895, 0.019700057804584503, -0.002272781915962696, -0.037358492612838745, 0.004774133209139109, 0.01855659671127796, 0.03828749805688858, -0.06485230475664139, 0.01268224697560072, -0.08034507185220718, -0.06475784629583359, -0.00155162182636559, -0.038182757794857025, 0.018464546650648117, -0.007418213412165642, 0.04330115020275116, -0.001007276470772922, 0.024172667413949966, -0.021229205653071404, -0.06948787719011307, -0.03807531297206879, -0.005790775641798973, -0.014977487735450268, 0.0276047270745039, 0.04992020130157471, -0.006316075101494789, -0.04182693734765053, -0.032841701060533524, -0.00867709331214428, -0.000417511910200119, -0.0061501022428274155, -0.004224774893373251, 0.047938451170921326, -0.028271229937672615, -0.02067221887409687, -0.033467259258031845, -0.020829729735851288, 0.011234789155423641, 0.02132907696068287, 0.01444309577345848, -0.0435086265206337, 0.011102679185569286, 0.025855708867311478, 2.693337819437147e-07, 0.020467007532715797, 0.05013969913125038, 0.0332038588821888, -0.036795105785131454, -0.007941724732518196, -0.04725097864866257, -0.04665467143058777, 0.004993859212845564, -0.017635470256209373, 0.03152811527252197, 0.015844199806451797, -0.005714579951018095, 0.006662595551460981, 0.021222474053502083, -0.007241022773087025, -0.06220473349094391, -0.024326041340827942, -0.008780951611697674, -0.008978676982223988, 0.000536167761310935, 0.07924013584852219, 0.04172130301594734, 0.04754582792520523, 0.01646188646554947, -0.026359427720308304, 0.020626800134778023, -0.024377366527915, -0.03018031269311905, 0.029348265379667282, -0.005356162320822477, -0.03180031478404999, -0.055628854781389236, -0.06470980495214462, -0.008536039851605892, -0.010607325471937656, -0.0005230495007708669, -0.012350272387266159, 0.017316393554210663, 0.01284179650247097, 0.05991750583052635, 0.047405414283275604, 0.0173938125371933, 0.009521802887320518, -0.032143484801054, -0.002641739323735237, 0.03430438041687012, -0.003655614098533988, 0.0021771846804767847, -0.07164006680250168, -0.012915968894958496, 0.012834270484745502, 0.019384104758501053, -0.023785706609487534, 0.02141644060611725, -0.035684626549482346, -0.041694626212120056, 0.0007304446189664304, -0.03514455631375313, 0.022689681500196457, -0.01467851735651493, -0.047098465263843536, -0.007865370251238346, 0.021636048331856728, 0.07616996765136719, 0.0804007351398468, -0.006238299887627363, 0.015548170544207096, 3.0956202918523383e-34, 0.041460730135440826, -0.04210788756608963, 0.012340795248746872, -0.0009595085866749287, 0.023003604263067245, -0.018129708245396614, 0.026751119643449783, 0.030434342101216316, -0.025129880756139755, -0.08175361156463623, -0.03842257708311081], "3feceeca-3eb9-43ae-95e8-61c9cf5c6d57": [0.07150112092494965, -0.02194915898144245, -0.05191776901483536, -0.01339737605303526, 0.00974399596452713, 0.06649487465620041, -0.02219018153846264, 0.0426434651017189, -0.024983078241348267, -0.018543563783168793, 0.01746252365410328, 0.02770564891397953, -0.013409702107310295, 0.015144194476306438, -0.00820468831807375, 0.0044362470507621765, 0.04981910064816475, -0.009498984552919865, 0.05719566345214844, 0.012608490884304047, -0.033102862536907196, 0.03283952176570892, 0.010902950540184975, -0.0046966359950602055, -0.006669241935014725, 0.02958272211253643, 0.00665327487513423, 0.04217119887471199, -0.001031584688462317, -0.061651889234781265, -0.005302716512233019, -0.01681498996913433, 0.025293583050370216, 0.015306827612221241, 1.797183699636662e-06, -0.0508308932185173, -0.013429174199700356, 0.025013472884893417, -0.00701320543885231, -0.061139341443777084, 0.04082401841878891, -0.0347784198820591, -0.08285698294639587, -0.01172302383929491, 0.04684627428650856, -0.008315948769450188, 0.019931528717279434, 0.09339556097984314, -0.014727333560585976, 0.0782453864812851, 0.014344488270580769, -0.03797682747244835, 0.003967709373682737, -0.05007809400558472, 0.08920164406299591, -0.03259611129760742, 0.020575594156980515, 0.08496494591236115, 0.0034549187403172255, 0.017694875597953796, 0.04091884195804596, -0.014435880817472935, -0.035404421389102936, 0.001964743947610259, 0.02956290729343891, 0.013960123993456364, 0.07077556848526001, -0.07188990712165833, 0.04603789374232292, 0.039034806191921234, 0.06704169511795044, 0.031053846701979637, 0.00876453798264265, 0.03542109206318855, -0.03966177999973297, -0.009384481236338615, -0.0024855465162545443, 0.07829314470291138, 0.012927038595080376, -0.009310286492109299, -0.024821357801556587, 0.014726397581398487, -0.00328588904812932, -0.008703770115971565, 0.026084445416927338, -0.01785886101424694, -0.017838044092059135, -0.07108594477176666, 0.052957966923713684, -0.009972300380468369, 0.020447690039873123, -0.02795087918639183, 0.024210935458540916, 0.010115905664861202, 0.07273033261299133, -0.015057466924190521, -0.025535833090543747, -0.09578437358140945, 0.055515680462121964, 0.009140423499047756, -0.054460663348436356, -0.026023516431450844, -0.03512578830122948, 0.0847042053937912, -0.0061744810082018375, 0.0462898313999176, -0.002294234000146389, -0.02245170995593071, 0.023745447397232056, 0.06584253907203674, -0.056437015533447266, -0.014190460555255413, -0.06839053332805634, -0.043394945561885834, -0.0250871479511261, -0.016526632010936737, 0.00912744551897049, 0.033505622297525406, -0.004484093282371759, 0.0029699052684009075, 0.03814885765314102, -0.025520922616124153, -0.03161145746707916, 0.06566167622804642, -0.02043965272605419, -0.03018605336546898, 0.02338106371462345, 0.011255212128162384, 0.0008495055371895432, 0.034480877220630646, -0.012789013795554638, 0.04503012076020241, 0.0285644568502903, -0.0064247543923556805, -0.0008037455263547599, 0.07579079270362854, 0.06759355962276459, -0.033617377281188965, -0.0112300431355834, -0.06304114311933517, 0.07617812603712082, -0.04297415912151337, -0.03809542953968048, -0.03500603139400482, 0.020187076181173325, 0.001998449442908168, 0.0018579608295112848, -0.021677155047655106, 0.004701819270849228, 0.017115985974669456, -0.10967691987752914, 0.013453416526317596, -0.022234497591853142, -0.013469711877405643, 0.020521286875009537, -0.028929278254508972, -0.06340359151363373, -0.056802865117788315, 0.0027309306897222996, 0.021969327703118324, 0.007685941644012928, 0.01840551756322384, 0.028219882398843765, -0.04012456163764, -0.031376566737890244, -0.04378481209278107, 0.08055157959461212, 0.012143599800765514, 0.045409396290779114, 0.0451192781329155, 0.05500560626387596, 0.03226049244403839, -0.035824812948703766, 0.03419233858585358, -0.008387171663343906, 0.13565510511398315, 0.01278373971581459, 0.026372075080871582, 0.015079903416335583, 0.04041057825088501, -0.016041358932852745, -0.07882475107908249, 0.015957769006490707, -0.020154500380158424, -0.017945703119039536, -0.03324882686138153, -0.06258083134889603, -0.015148942358791828, 0.04600083455443382, -0.008897434920072556, -0.013524871319532394, -0.007923967204988003, -0.03190247714519501, -0.0965866893529892, 0.021710440516471863, 0.008380135521292686, -0.08157657086849213, -0.0758802741765976, 0.015617052093148232, -0.019254349172115326, 0.044035278260707855, 0.01507625076919794, 0.04702024161815643, 0.0021280937362462282, 0.03515617921948433, -0.024588823318481445, 0.03890066593885422, -0.03022233210504055, 0.007053651846945286, -0.015056504867970943, 0.029019027948379517, -0.008114799857139587, -0.030659768730401993, -0.02039463073015213, -0.02518586628139019, -0.0004290719225537032, -0.007841608487069607, 0.0012047404889017344, -0.021944763138890266, -0.025412142276763916, 0.03507520630955696, -0.044558268040418625, -0.032873835414648056, 0.0216361116617918, -0.014426091685891151, -0.058536093682050705, -0.05314389988780022, -0.0038852395955473185, 0.012035112828016281, -0.015046126209199429, -0.05255848541855812, 0.04178479313850403, 0.04795713722705841, 0.04526510462164879, 0.0006215209141373634, 0.05689306557178497, 0.04856330528855324, 0.04525040462613106, -0.011019888333976269, -0.0544414184987545, -0.015121081843972206, 0.02195005491375923, 0.04599820449948311, 0.02558904141187668, 0.023927589878439903, -0.03242727369070053, -0.027881747111678123, 0.020461708307266235, 0.015543274581432343, 0.018939603120088577, 0.06460260599851608, -0.03947904333472252, 0.044186707586050034, 0.05834677815437317, -0.011797048151493073, 0.04170316457748413, -0.09228964895009995, 0.013554922305047512, -0.06568305194377899, -0.020981058478355408, 0.05580223351716995, 0.006969645619392395, -0.042103078216314316, 0.026970047503709793, 0.02434650808572769, 0.017192145809531212, -0.049665797501802444, 0.006956668104976416, -0.01988818496465683, 0.015306917019188404, 0.007132069207727909, -0.023038165643811226, -0.012621191330254078, -0.022498952224850655, 0.0011828169226646423, 0.026045598089694977, -0.03959377482533455, -0.004269571043550968, -0.026886310428380966, 0.013678845018148422, 0.03353085741400719, -0.009907787665724754, -0.017913123592734337, -0.0029790373519062996, -0.0619087852537632, -0.000610669085290283, 0.018599726259708405, 0.02032523602247238, -0.07340368628501892, -0.029824987053871155, 0.020863573998212814, 0.009237079881131649, 0.0225711390376091, -0.00928916223347187, -0.01165766827762127, 0.023718493059277534, 0.001549167325720191, -0.004939600359648466, -0.01654503494501114, 0.0817723199725151, 0.018332013860344887, 0.008815854787826538, 0.006692240945994854, -0.022353434935212135, 0.01984681561589241, 0.04770823195576668, 0.009384866803884506, -0.03890138119459152, 0.023515857756137848, -0.033277373760938644, 0.045860085636377335, 0.025795890018343925, -0.014451808296144009, -0.013711053878068924, -0.0408184640109539, -0.0483686625957489, -0.0380161851644516, -0.08627839386463165, 0.008926507085561752, 0.028542449697852135, 0.02234491892158985, 0.007394395302981138, 0.002619339618831873, 0.01895294338464737, 0.013674527406692505, -0.09169581532478333, -0.00754933524876833, -0.006239442154765129, 0.041189275681972504, 0.04670583829283714, 0.01728377304971218, -0.0019551508594304323, -0.009201309643685818, 0.017337268218398094, 0.047827769070863724, 0.0007121419184841216, 0.002381161553785205, -0.07028593868017197, 0.027005843818187714, -0.00928446277976036, -0.019097771495580673, 0.04010539501905441, 0.02465415932238102, -0.019341688603162766, 0.0028379950672388077, 0.02869649976491928, -0.026207514107227325, 0.014454745687544346, -0.11236344277858734, -0.008679080754518509, 0.04033279791474342, -0.001728453440591693, 0.020517373457551003, -0.04622741788625717, -0.051750048995018005, 0.035791873931884766, 0.037860676646232605, -0.012611218728125095, 0.04059876874089241, -0.013106370344758034, 0.023668769747018814, 0.05067222937941551, 0.02098153904080391, 0.006998285185545683, -0.022035984322428703, 0.04677579924464226, -0.04400572180747986, -0.0033663350623100996, 0.022518275305628777, -0.009956110268831253, -0.048016805201768875, -0.02928737923502922, 0.015113390050828457, 0.05311937257647514, 0.019802968949079514, -0.009699049405753613, 0.02389610931277275, -0.03923870623111725, -0.04712913930416107, 0.002589402487501502, 0.016319232061505318, 0.0299890898168087, 0.05060790479183197, 0.028265738859772682, 0.003843214362859726, 0.01554530207067728, 0.006883823312819004, 0.03354927524924278, 0.06587814539670944, 0.021773330867290497, 0.010192949324846268, 0.006605100817978382, -0.06505017727613449, -0.05849277973175049, -0.01800372265279293, -0.024074221029877663, -0.056948497891426086, 0.01676907204091549, -0.0003796801611315459, -0.016685575246810913, 0.012404847890138626, 0.08728616684675217, 0.019105561077594757, 0.06960215419530869, -0.028205102309584618, 0.003080920781940222, 0.08500327169895172, 0.011372406966984272, 0.0041966745629906654, 0.027291497215628624, 0.11083764582872391, 0.040671054273843765, 0.014464808627963066, 0.021996254101395607, 0.039711084216833115, -0.016674580052495003, 0.013124632649123669, -0.03190617263317108, -0.025424402207136154, -0.09312694519758224, -0.04928577318787575, -0.005593048874288797, 0.07398674637079239, 0.008425658568739891, 0.008558963425457478, -0.06955315917730331, 0.014778697863221169, -0.0336107462644577, 0.03283023089170456, -0.0410311333835125, 0.06257647275924683, 0.002986564766615629, -0.030074836686253548, 0.015384136699140072, 0.00453083124011755, 0.03715963289141655, -0.006081828381866217, -0.0829688012599945, 0.005861801560968161, -0.039474550634622574, -0.05473247170448303, 0.025469118729233742, 0.04728226363658905, -0.0019161630189046264, -0.04559716954827309, 0.06280193477869034, 0.004757436458021402, 0.003808489302173257, 0.024781543761491776, 0.005773711483925581, 0.004228342790156603, -0.05448705330491066, -0.07829452306032181, -0.0019368075300008059, 0.03474970906972885, -0.007301547098904848, -0.004780326969921589, -0.04332958161830902, -0.014500726014375687, -0.00749437790364027, -0.012745440006256104, 0.047244008630514145, -0.049098797142505646, -0.02792055532336235, -0.011514779180288315, -0.016236912459135056, -0.05921361222863197, -0.08579806238412857, 0.029714640229940414, 0.0062529719434678555, -0.034788187593221664, -0.012410281226038933, -0.006812691688537598, -0.00538249546661973, 0.05962178111076355, -0.07817914336919785, -0.020383624359965324, -0.02400881052017212, -0.0035187832545489073, -0.03447636961936951, 0.04701587185263634, -0.03361022099852562, 0.03561725094914436, -0.03175773471593857, -0.03505333885550499, 0.008512795902788639, -0.02992657758295536, 0.017880266532301903, -0.015970561653375626, -0.024332847446203232, 0.026603160426020622, 0.014719116501510143, 3.45371117873583e-05, -0.007102539297193289, 0.03137510269880295, -0.028662381693720818, -0.012610347010195255, -0.01860666833817959, 0.04447433352470398, -0.011529289186000824, 0.02347668446600437, -0.06398957222700119, 0.019974375143647194, 0.0073393359780311584, -0.06908685714006424, 0.013648522086441517, -0.01301255077123642, -0.014520387165248394, 0.004642107989639044, -0.02162150852382183, -0.028272438794374466, -0.03953022509813309, -0.07040131837129593, 0.03972947970032692, 0.02856031246483326, -0.06355344504117966, 0.014843950979411602, -0.07785434275865555, 0.042103998363018036, -0.027823984622955322, 0.02165529690682888, 0.005723196547478437, 0.02626783773303032, -0.03306436166167259, 0.002522741910070181, 0.041979920119047165, 0.001985655864700675, 0.022562330588698387, 0.035452187061309814, 0.05060361698269844, 0.01335773803293705, 0.04785662516951561, 0.008999217301607132, -0.014404826797544956, -0.02782689779996872, 0.005485541187226772, 0.021488316357135773, 0.021161772310733795, -0.012810466811060905, 0.002614833414554596, 0.035988353192806244, -0.020521273836493492, 0.012562031857669353, 0.04450410231947899, 0.03427740931510925, 0.009536989964544773, -0.013931716792285442, 0.04549987614154816, -0.01888429932296276, -0.07073961198329926, -0.007836922071874142, 0.006412012968212366, -0.030713126063346863, 0.006307198200374842, 0.03371261805295944, -4.714637477447506e-33, 0.0030381653923541307, -0.02318815141916275, 0.014940460212528706, 0.025910744443535805, -0.026560718193650246, -0.003488145535811782, -0.030031180009245872, -0.047166794538497925, -0.01086578331887722, -0.015686027705669403, -0.015075082890689373, -0.028681380674242973, 0.004338803701102734, -0.041070688515901566, 0.03127684071660042, 0.019128751009702682, -0.0261940136551857, 0.005535823293030262, 0.0025841977912932634, -0.05007508397102356, 0.000655338924843818, -0.03260554373264313, 0.033822380006313324, 0.016277974471449852, -0.006927082780748606, 0.012191710062325, -0.02217852510511875, -0.004365621600300074, 0.02958008646965027, 0.037951596081256866, -0.019141552969813347, -0.017215097323060036, -0.013098507188260555, 0.02676171250641346, -0.02730501815676689, 0.019807755947113037, -0.04389788582921028, -0.016386527568101883, -0.022135891020298004, -0.0015121720498427749, 0.01558413915336132, -0.0017978042596951127, 0.006034317426383495, -0.026937158778309822, 0.04133422300219536, 0.044175419956445694, 0.023121628910303116, 0.005522879306226969, 0.012674990110099316, 0.012076186016201973, -0.05594547837972641, 0.009732428938150406, -0.017535431310534477, 0.08392588794231415, -0.00014634629769716412, -0.0359761118888855, 0.04038960486650467, 0.008347797207534313, -0.05248982086777687, -0.03838905319571495, -0.0297238789498806, 0.015187384560704231, 0.0386551134288311, -0.043686289340257645, 0.01323977392166853, -0.0030976240523159504, -0.03169427812099457, 0.08123457431793213, 0.026969844475388527, 0.04818658158183098, 0.0023742234334349632, -0.020075209438800812, -0.03579352796077728, -0.03693664073944092, -0.0018083014292642474, -0.005958928260952234, -0.02882547304034233, 0.040119096636772156, 0.07825536280870438, 0.10441267490386963, 0.0326010063290596, 0.005985530558973551, -0.010753254406154156, 0.040998198091983795, -0.01974472589790821, -0.0015510652447119355, -0.018640464171767235, -0.03366139903664589, -0.0312504880130291, 0.017983898520469666, 0.04172277823090553, -0.008490401320159435, -0.02753186970949173, 0.011372185312211514, 0.002358252415433526, 0.00904074590653181, -0.042843133211135864, -0.017276134341955185, -0.05059870705008507, -0.07625297456979752, -0.029601994901895523, -0.021283384412527084, 0.04250214993953705, -0.014822606928646564, 0.05941779911518097, 0.009472955018281937, 0.015426029451191425, -0.021648870781064034, -0.045434076339006424, -0.017100771889090538, -0.01374197006225586, 0.02324964664876461, 0.04721471667289734, 0.036384209990501404, 0.005321199540048838, -0.01991722173988819, -0.00020127723109908402, -0.06111058592796326, -0.01240265928208828, -0.02760488912463188, 0.00043883349280804396, 0.07783184945583344, -0.011982902884483337, -0.008715438656508923, -0.038468699902296066, -0.037668827921152115, -0.0069268327206373215, 0.02417164482176304, 0.06575606018304825, -0.028955703601241112, 0.007091809995472431, 0.059413399547338486, 2.5607897669033264e-07, 0.02047153003513813, 0.027372032403945923, 0.02605472505092621, -0.014838291332125664, -0.012241920456290245, -0.018179869279265404, -0.049166928976774216, -0.010472503490746021, -0.018829263746738434, 0.02953902818262577, 0.028149593621492386, -0.0014022202230989933, -0.008238228969275951, -0.02061375603079796, -0.02610340341925621, -0.04403407499194145, -0.023244472220540047, -0.009245134890079498, 0.00875411182641983, -0.0020600713323801756, 0.010490275919437408, 0.07031261920928955, 0.06882672011852264, 0.009203203953802586, -0.04488702490925789, 0.014990449883043766, -0.0514032356441021, -0.024317659437656403, 0.01903144083917141, -0.012440445832908154, 0.026310764253139496, 0.0029754480347037315, -0.04666130617260933, -0.01775529980659485, -0.022227145731449127, 0.014250464737415314, -0.013859398663043976, 0.03399837762117386, -0.010127014480531216, 0.054048553109169006, 0.003896101610735059, -0.0084694167599082, -0.006145065184682608, 0.00843879859894514, -0.009185248054564, 0.08381558209657669, -0.01966325379908085, -0.017260991036891937, -0.0794999971985817, -0.02983400970697403, -0.015617921948432922, 0.01545040775090456, -0.02835904248058796, 0.017340637743473053, -0.012362767942249775, -0.02430594339966774, 0.020731907337903976, -0.013141351751983166, 0.04200582578778267, -0.025234609842300415, -0.031707461923360825, 0.00584573345258832, 0.006723212543874979, 0.03864409402012825, 0.08919046074151993, 0.0031388537026941776, 0.010373366996645927, 2.6859713012615697e-34, 0.039325516670942307, -0.04588747024536133, -0.004099499434232712, -0.03924551233649254, 0.021860945969820023, -0.010772108100354671, -0.012043853290379047, 0.02139347791671753, -0.05789513513445854, -0.08071556687355042, -0.014463919214904308], "84900df3-9ac3-4d8b-a692-cfb617fe1e84": [0.03588159382343292, 0.043692853301763535, 0.0047544511035084724, 0.008903726004064083, -9.10384114831686e-05, 0.04081185162067413, -0.019934816285967827, 0.06756064295768738, -0.05941641703248024, -0.015575317665934563, 0.0067443521693348885, 0.07249952107667923, 0.029795300215482712, -0.02021435834467411, -0.043990906327962875, -0.039406053721904755, 0.01852194406092167, 0.01772632636129856, 0.05987733229994774, -0.017224309965968132, 0.011715352535247803, -0.018545106053352356, 0.00035720501909963787, 0.013556408695876598, -0.007971910759806633, 0.01316775381565094, 0.060079820454120636, 0.023439921438694, 0.04556868225336075, -0.03340514004230499, -0.020869530737400055, 0.04056102782487869, -0.02529269829392433, -0.020630136132240295, 2.2828653527540155e-06, -0.009755714796483517, 0.0009981428738683462, 0.0021544620394706726, -0.004411316942423582, 0.03811565414071083, 0.0881270244717598, -0.007701749913394451, -0.0054126158356666565, 0.013468648307025433, 0.009441002272069454, -0.047615956515073776, -0.04619091376662254, -0.014674865640699863, 0.008988979272544384, -0.0684828907251358, 0.0395069494843483, -0.0313841886818409, -0.0786629319190979, -0.06781411916017532, -0.002291760640218854, -0.12249580770730972, -0.04608233645558357, 0.04960501566529274, -0.029958149418234825, 0.011662183329463005, -0.08225381374359131, -0.019949570298194885, -0.02375580370426178, -3.5041866794927046e-05, 0.06437563896179199, 0.030665235593914986, 0.0382513664662838, -0.0309023167937994, 0.03702441230416298, 0.030380800366401672, 0.08697973191738129, 0.03446917235851288, -0.011268786154687405, 0.0027563313487917185, 0.0015293218893930316, -0.039156001061201096, 0.04213179647922516, 0.05059513822197914, -0.05615534633398056, 0.0004694260424003005, 0.007496559526771307, 0.08192133158445358, -0.024765707552433014, -0.019606493413448334, -0.013154822401702404, 0.016012709587812424, -0.02524176798760891, -0.025301799178123474, 0.08271794766187668, 0.045778460800647736, 0.03233226761221886, -0.019965430721640587, -0.011989668011665344, 0.012015944346785545, 0.002461159136146307, -0.030722323805093765, 0.04348890855908394, -0.021389588713645935, 0.04517534747719765, -0.002281772904098034, -0.04082303121685982, 0.01536189392209053, -0.01187378540635109, 0.04640701040625572, 0.0030206029769033194, 0.043002281337976456, -0.01210783701390028, -0.04616817086935043, -0.05009252578020096, 0.018831131979823112, 0.007518886588513851, -0.015930358320474625, 0.07411578297615051, -0.010628036223351955, -0.02875586226582527, 0.005678008776158094, -0.08358225226402283, -0.040606122463941574, -0.05611227825284004, 0.0282598789781332, 0.0692211464047432, 0.025108778849244118, -0.0071467189118266106, 0.07793595641851425, -0.014863047748804092, 0.007170041091740131, -0.03276675194501877, 0.0031930822879076004, -0.002731646876782179, 0.07368651032447815, 0.016367923468351364, 0.009020241908729076, 0.002138902200385928, 0.07420793920755386, 0.009325492195785046, 0.017503537237644196, 0.016254272311925888, 0.03873298689723015, 0.06648533046245575, -0.04024508222937584, 0.04159005358815193, 0.027001013979315758, -0.030146857723593712, -0.03493823483586311, 0.00975798536092043, -0.020397992804646492, -0.015605528838932514, 0.04637457802891731, -0.0013100521173328161, 0.02217375673353672, 0.008679715916514397, -0.0024675270542502403, 0.009399035014212132, -0.012296321801841259, -0.020018743351101875, 0.039063312113285065, -0.027730228379368782, -0.037543103098869324, 0.04882477968931198, 0.03643891587853432, 0.0067223962396383286, 0.04615510255098343, -0.012811051681637764, -0.03125229850411415, -0.02847740612924099, 0.014093458652496338, 0.012976275756955147, 0.02784283272922039, -0.02382790856063366, 0.027016643434762955, 0.009157677181065083, 0.023810729384422302, -0.03330341354012489, 0.0319397859275341, -0.026180777698755264, -0.0021931191440671682, 0.018260665237903595, 0.012420075945556164, -0.002861395478248596, -0.03358019143342972, -0.05046020820736885, -0.026437992230057716, -0.014782403595745564, 0.02305120788514614, 0.001321011921390891, -0.01669330708682537, -0.01171491015702486, -0.030569346621632576, -0.019598759710788727, -0.006434376817196608, 0.020481131970882416, 0.017125777900218964, 0.018672991544008255, 0.006258577108383179, -0.009764271788299084, 0.034984391182661057, -0.06290328502655029, -0.11275764554738998, 0.03590214252471924, -0.029053347185254097, 0.07589301466941833, -0.04046314209699631, 0.03525667265057564, 0.049837034195661545, 0.04038110002875328, -0.018704582005739212, 0.01618046686053276, 3.460715743131004e-05, -0.030061135068535805, -0.00100211170502007, 0.06464894115924835, 0.001521086785942316, -0.01680244319140911, -0.01632790081202984, -0.04968007653951645, 0.021660011261701584, -0.027736326679587364, 0.034585513174533844, -0.055843330919742584, 0.03495202958583832, -0.0007016514427959919, -0.05086575075984001, -0.05798361822962761, 0.021843405440449715, 0.0689055323600769, -0.01967046409845352, 0.025709189474582672, -0.021482111886143684, -0.01804155297577381, 0.016749490052461624, -0.008074669167399406, 0.01408790610730648, -0.021537380293011665, 0.015511598438024521, 0.02436167187988758, 0.03593849390745163, -0.03709757700562477, -0.04127994552254677, -0.038505394011735916, -0.013812498189508915, 0.02160686068236828, 0.003458402119576931, -0.009425667114555836, 0.013185609132051468, 0.032786328345537186, 0.06486467272043228, 0.032512761652469635, 0.011204770766198635, -0.010598774068057537, 0.03724091872572899, -0.004929878283292055, -0.008669530041515827, 0.04008762165904045, 0.029757436364889145, -0.055599555373191833, -0.03384292125701904, -0.03950157016515732, -0.02435709722340107, -0.07417169958353043, 0.011917468160390854, 0.010964564979076385, 0.049473896622657776, 0.02372053824365139, 0.025250554084777832, 0.07614593952894211, -0.010654672980308533, -0.05047404393553734, -0.07992362976074219, -0.03095834143459797, 8.957089448813349e-06, 0.004270530771464109, -0.014353262260556221, -0.004275048151612282, 0.019196325913071632, -0.008614122867584229, -0.004459119867533445, -0.05914957821369171, 0.06780112534761429, 0.011544793844223022, -0.006432214751839638, 0.02973208576440811, 0.018098974600434303, -0.036404870450496674, -0.023724986240267754, 0.003591919783502817, 0.004845508839935064, 0.10404343903064728, 0.039370011538267136, -0.057954706251621246, -0.030915971845388412, -0.047083184123039246, 0.0024561218451708555, 0.01627364568412304, 0.009525147266685963, -0.014367224648594856, 0.030413705855607986, -0.026652902364730835, 0.028598705306649208, -0.02929939329624176, 0.07235235720872879, -0.012995390221476555, -0.050668831914663315, -0.02436785399913788, -0.020048726350069046, 0.0303481612354517, 0.03370501101016998, 0.027995353564620018, 0.019503921270370483, -0.023554522544145584, -0.022838205099105835, 0.018975641578435898, 0.003735000966116786, -0.01768936589360237, -0.00402659410610795, -0.05727506801486015, -0.02026674523949623, -0.059540651738643646, -0.05158171057701111, -0.000651355367153883, 0.049802083522081375, -0.005889482330530882, -0.0014997440157458186, -0.05310312658548355, 0.010436070151627064, 0.03143969550728798, -0.07651448994874954, 0.04081910476088524, -0.04733986034989357, 0.0535091832280159, -0.05497356876730919, 0.008492846041917801, -0.024581532925367355, -0.01965121366083622, -0.037286825478076935, -0.0002412488975096494, 0.047383278608322144, -0.008010978810489178, 0.008623572066426277, -0.0012158798053860664, 0.012479506433010101, -0.0334249883890152, 0.0056598978117108345, -0.01757526583969593, -0.036567676812410355, 0.04219342768192291, 0.013546655885875225, -0.08800201117992401, 0.04367195442318916, -0.07933342456817627, 0.013465815223753452, 0.023441283032298088, 0.022567925974726677, -0.01218759547919035, -0.021161865442991257, -0.02639712020754814, -0.04170869663357735, -0.005116059444844723, -0.021973732858896255, -0.022275010123848915, -0.08776182681322098, 0.02683570422232151, 0.04136456549167633, 0.055837444961071014, 0.029286717996001244, 0.01368387695401907, 0.01863214746117592, -0.008943340741097927, -0.009295372292399406, 0.031555622816085815, 0.013903332874178886, -0.07688920199871063, 0.0010393301490694284, -0.0006581731140613556, 0.028040051460266113, -0.021858880296349525, -0.0875622034072876, 0.013900388032197952, 0.02351488545536995, 0.04836087301373482, -0.019669929519295692, 0.012211951427161694, -0.011181089095771313, 0.060472097247838974, -0.0004948087735101581, 0.06160028278827667, -0.0046421242877841, -0.014868169091641903, 0.018617190420627594, 0.04775020480155945, -0.002388246823102236, 0.03311848267912865, -0.021334370598196983, 0.0010982992826029658, 0.07546690106391907, -0.020469117909669876, 0.005343484692275524, -0.01635918952524662, 0.0177041906863451, -0.005190342664718628, 0.017677275463938713, -0.016493918374180794, -0.007744125556200743, 0.0021160515025258064, 0.0797615647315979, -0.01703726127743721, -0.012487461790442467, 0.09641476720571518, 0.017272841185331345, 0.0017525876173749566, 0.013565758243203163, 0.08184121549129486, -0.019058654084801674, -0.009767016395926476, -0.005067562684416771, 0.019626155495643616, -0.025107748806476593, 0.012173952534794807, -0.05209466069936752, -0.03753652796149254, -0.015431059524416924, 0.02717132307589054, 0.041928764432668686, 0.028312506154179573, -0.01656794175505638, 0.020247654989361763, -0.022956980392336845, 0.05120963230729103, -0.03897741436958313, -0.005264588166028261, -0.006911002565175295, -0.0021523272152990103, 0.01987261138856411, 0.020440345630049706, 0.04540756344795227, 0.016614612191915512, 0.034198734909296036, 0.029201794415712357, -0.030351361259818077, 0.054179590195417404, -0.0428287573158741, -0.05226313695311546, 0.0003799952392000705, 0.04207487776875496, -0.00034162140218541026, -0.03695324435830116, -0.04243187606334686, 0.007492661010473967, 0.05821619927883148, -0.037887416779994965, -0.042502690106630325, 0.006119658704847097, -0.014371179975569248, -0.06694570928812027, -0.02035590447485447, 0.009339001029729843, -0.025211023166775703, -0.05426495894789696, 0.04046684876084328, 0.02583281695842743, 0.019310414791107178, 0.029482554644346237, 0.040355101227760315, 0.0020828007254749537, -0.01135428249835968, -0.00012300505477469414, 0.06039254367351532, -0.05641286075115204, -0.007768342271447182, 0.05145960673689842, -0.054943375289440155, 0.03663482889533043, -0.02597881108522415, -0.036621805280447006, -0.05635018274188042, 0.057195987552404404, 0.011903282254934311, -0.016618654131889343, 0.07169720530509949, -0.08899090439081192, -0.018163073807954788, -0.025263091549277306, -0.10243816673755646, -0.017610915005207062, -0.04824470356106758, -0.014604803174734116, -0.012196479365229607, -0.02994474023580551, 0.002385546686127782, -0.01361711136996746, -0.006447554565966129, 0.04314208775758743, 0.03751669079065323, 0.01253424771130085, 0.013342833146452904, 0.019532259553670883, 0.0752749815583229, -0.043360233306884766, 0.050757523626089096, -0.01063772663474083, 0.00043058994924649596, -0.0691414326429367, -0.0021786217112094164, -0.01964033767580986, -0.007818270474672318, -0.03382579982280731, 0.017538513988256454, -0.021493561565876007, 0.03718329221010208, -0.0013263453729450703, 0.032584015280008316, -0.037752121686935425, 0.058592941612005234, -0.03806259110569954, -0.030969584360718727, 0.03384577855467796, -0.07028163969516754, -0.025678398087620735, 0.021424122154712677, 0.029477495700120926, -0.012114150449633598, 0.03875233232975006, 0.02183905616402626, -0.01323105301707983, 0.01900532655417919, 0.03456159308552742, -0.0021231109276413918, 0.010241828858852386, 0.014065112918615341, -0.008620193228125572, -0.0038507001008838415, -0.005876676179468632, -0.05387042090296745, -0.09746795147657394, 0.014816952869296074, -0.04792044311761856, -0.03616602346301079, -0.025025175884366035, -0.009872620925307274, -0.010647998191416264, -0.021736236289143562, -0.06867063045501709, 0.0014320221962407231, -0.016716402024030685, 0.01189176645129919, 0.020540855824947357, -0.058474041521549225, -0.012514790520071983, 0.004053068347275257, 0.013184431940317154, -0.03208117187023163, -0.005699104629456997, -0.07458577305078506, -0.032468363642692566, 0.012586171738803387, -0.01820162683725357, -5.8611048319861603e-33, -0.023200301453471184, 0.048338331282138824, 0.0038719407748430967, 0.029153382405638695, -0.040214769542217255, 0.03035316988825798, 0.02224813774228096, -0.07774228602647781, 0.0059888469986617565, -0.04767167568206787, -0.018941035494208336, -0.024858737364411354, -0.020345591008663177, -0.012234484776854515, 0.04205013066530228, -0.024966180324554443, 0.039279427379369736, -0.015806464478373528, -0.05604279041290283, 0.003919487353414297, -0.039376989006996155, -0.03020380064845085, 0.05510532483458519, 0.057882264256477356, 0.008765649050474167, 0.02657892554998398, -0.037721868604421616, 0.03748989477753639, 0.008683228865265846, -0.001163151697255671, 0.010817614383995533, -0.03221944719552994, 0.012480651028454304, 0.007534153759479523, -0.014526021666824818, 0.020713992416858673, -0.04595445841550827, -0.013683128170669079, 0.009618783369660378, -0.000750421138945967, 0.00671438267454505, 0.02307259850203991, 0.019072219729423523, 0.054016903042793274, -0.04657462611794472, -0.014607945457100868, 0.0032077711075544357, 0.00553935719653964, 0.04842803254723549, -0.03034723363816738, -0.03453071787953377, 0.047743286937475204, 0.014921223744750023, 0.07672905921936035, -0.009639859199523926, 0.032888948917388916, 0.00714586116373539, 0.030335575342178345, -0.08138492703437805, -0.04295874014496803, -0.0076560876332223415, 0.03301917761564255, 0.008611629717051983, 0.06042785942554474, -0.012436640448868275, -0.0034171133302152157, -0.006954699754714966, 0.12302754819393158, 0.015755964443087578, -0.021352006122469902, 0.022718938067555428, -0.03429553657770157, -0.04337945953011513, -0.00016963511006906629, 0.04123050346970558, 0.010383788496255875, -0.08023452013731003, 0.039233796298503876, 0.0751669630408287, 0.11229155212640762, -0.02126256376504898, -0.014294655993580818, -0.054558638483285904, -0.010707089677453041, -0.01310580875724554, 0.00529262563213706, -0.04919745400547981, -0.02624831348657608, 0.020442983135581017, 0.034332580864429474, 0.03950541466474533, -0.019985688850283623, -0.03348054364323616, 0.017811592668294907, 0.032662082463502884, 0.031242044642567635, 0.02527124434709549, -0.00807744637131691, -0.006333006080240011, -0.06935930252075195, -0.05976501479744911, 0.006954619660973549, 0.03467320650815964, 0.01544095017015934, 0.032359711825847626, 0.0368657149374485, -0.025193482637405396, -0.026950862258672714, -0.033777233213186264, 0.029316209256649017, -0.017747072502970695, -0.01595442183315754, -0.011567284353077412, -0.005365705117583275, -0.004206910263746977, -0.009454281069338322, -0.0030872065108269453, -0.0182791855186224, 0.01995132677257061, 0.03205828368663788, -0.0024672923609614372, 0.06209246441721916, 0.062152016907930374, -0.0073104496113955975, -0.017232391983270645, -0.037203799933195114, 0.061408631503582, -0.07718776911497116, -0.0022542558144778013, -0.00046115528675727546, -0.008121374063193798, -0.009272164665162563, 3.0456291710834194e-07, 0.004287290386855602, -0.00866412092000246, 0.008087867870926857, -0.06182171404361725, 0.012997742742300034, 0.0110479686409235, 0.008865647949278355, 0.025063615292310715, 0.0068277702666819096, 0.025959840044379234, 0.060255128890275955, 0.015420053154230118, -0.057182446122169495, 0.04263955354690552, 0.05975878983736038, -0.02670755796134472, -0.04466361552476883, -0.033080991357564926, -0.0060663167387247086, -0.05839070305228233, 0.05967449024319649, -0.011564933694899082, 0.045396462082862854, -0.04277791827917099, -0.029633397236466408, 0.02903086505830288, 0.002506827237084508, -0.019220121204853058, -0.044135160744190216, -0.024040428921580315, 0.03926273062825203, -0.04186424985527992, -0.026034550741314888, 0.028412941843271255, 0.022467371076345444, 0.0011314109433442354, 0.010064390487968922, 0.028419721871614456, -0.013607950881123543, 0.015830276533961296, 0.008874503895640373, -0.005067926831543446, -0.012455878779292107, -0.025655439123511314, -0.01198496948927641, 0.07080121338367462, -0.03417157381772995, 0.010603254660964012, -0.026526926085352898, 0.01783844083547592, 0.005442104302346706, 0.05843966081738472, -0.037492550909519196, 0.012908360920846462, 0.0024365682620555162, 0.032121628522872925, -0.015963755548000336, 0.008305581286549568, 0.010282873176038265, 0.007117279805243015, -0.015107433311641216, -0.05316224694252014, 0.033582188189029694, 0.06527648866176605, -0.04957254230976105, -0.024038948118686676, -0.003541234415024519, 3.200196355981068e-34, 0.004173912573605776, -0.027751021087169647, -0.0259266160428524, -0.09219914674758911, -0.008484401740133762, 0.04919943958520889, -0.04173579066991806, 0.01362514216452837, 0.041719257831573486, -0.004341564606875181, -0.032337725162506104], "3603f85b-d8fd-4081-8258-ca892ef85005": [0.04777272418141365, -0.008782750926911831, -0.010455227456986904, -0.01405296754091978, -0.005902295000851154, 0.0753457099199295, 0.03422486037015915, 0.01895664818584919, 0.07000130414962769, 0.0010596060892567039, 0.037279389798641205, 0.00028041715268045664, -0.011830258183181286, 0.017889784649014473, -0.04367408901453018, 0.023729553446173668, 0.021971100941300392, -0.006198950577527285, 0.00033429378527216613, -0.01769261062145233, 0.02919032610952854, 0.019865768030285835, -0.03060029074549675, 0.022676637396216393, -0.05700121447443962, -0.025309232994914055, -0.0016007747035473585, 0.012024644762277603, 0.029524587094783783, -0.06350108981132507, -0.023102184757590294, 0.03720887750387192, -0.01683115027844906, -0.03311818093061447, 2.2496046767628286e-06, 0.01560855470597744, 0.0033931934740394354, -0.03182024508714676, 0.0061271279118955135, -0.025685712695121765, 0.0647672563791275, -0.008121649734675884, 0.009700647555291653, 0.017207592725753784, -0.009294632822275162, 0.0058847349137067795, 0.02595793642103672, -0.012553554959595203, 0.04032528027892113, -0.040559448301792145, -0.0069030774757266045, -0.03687436506152153, -0.07677909731864929, -0.013679467141628265, 0.038954347372055054, -0.17606543004512787, -0.017810381948947906, 0.003292313078418374, 0.0055913859978318214, -0.013005570508539677, -0.027285024523735046, -0.04241017624735832, -0.014045032672584057, 0.011239845305681229, 0.013656187802553177, 0.018126269802451134, 0.05812564864754677, -0.07872874289751053, 0.006520961411297321, -0.0021540126763284206, 0.10204730927944183, 0.024053718894720078, -0.016691133379936218, 0.063136026263237, 0.05424348637461662, -0.00921411532908678, 0.031153077259659767, -0.0037476655561476946, -0.04005545377731323, 0.016791129484772682, -0.0047513386234641075, 0.028771264478564262, -0.048394907265901566, -0.038747359067201614, -0.01687473990023136, 0.050897132605314255, 0.020001865923404694, -0.005483507178723812, 0.02372473105788231, 0.03745764493942261, 0.05511518195271492, 0.014584160409867764, -0.03263489156961441, 0.019943969324231148, -0.02336706779897213, -0.04238216206431389, -0.010970490984618664, -0.028418004512786865, 0.014227367006242275, 0.04423433169722557, -0.06707103550434113, 0.009832259267568588, -0.003837344003841281, 0.0248838160187006, -0.006378514226526022, 0.05793709680438042, -0.001474703662097454, -0.014539719559252262, -0.02043408527970314, -0.012284563854336739, -0.02759747952222824, 0.013859031721949577, -0.028373973444104195, -0.002491054590791464, 0.01176453661173582, -0.017272112891077995, -0.028074149042367935, 0.05435286834836006, 0.019137784838676453, 0.04336739331483841, 0.03584153950214386, -0.00277367583476007, -0.07429084926843643, 0.018584011122584343, -0.0019022561609745026, -0.10142085701227188, 0.0033832956105470657, -0.006178512237966061, 0.03379225730895996, 0.03210104629397392, -0.029145875945687294, -0.07213547825813293, 0.0027335325721651316, 0.05772038921713829, -0.024666447192430496, 0.035056453198194504, 0.007209249306470156, 0.003679094137623906, 0.004845387302339077, -0.01687798649072647, -0.02456715516746044, -0.011304129846394062, 0.002507302910089493, 0.020369932055473328, -0.059262070804834366, -0.012379510328173637, 0.015342661179602146, -0.02957952208817005, 0.044564709067344666, 0.050363823771476746, -0.024268437176942825, 0.03817529231309891, 0.023930784314870834, -0.016739295795559883, -0.07957860827445984, 0.024455653503537178, 0.00372547609731555, -0.02242046594619751, 0.009544453583657742, 0.04130612686276436, -0.03272169455885887, -0.0029859128408133984, 0.023340217769145966, -0.0027891856152564287, -0.013723984360694885, -0.019948409870266914, 0.041993994265794754, -0.03560217097401619, 0.022862348705530167, 0.007525951135903597, 0.013959219679236412, 0.06473013013601303, -0.023000916466116905, 0.10714259743690491, -0.03614458814263344, 0.060046542435884476, 0.007369035389274359, 0.019995518028736115, 0.007372759282588959, -0.03864031285047531, -0.04582015424966812, -0.02770736627280712, -0.04069072753190994, 0.019145533442497253, 0.05585355684161186, 0.023060845211148262, -0.045251403003931046, 0.07285627722740173, -0.035162974148988724, 0.008560159243643284, 0.009213019162416458, -0.0001293155219173059, 0.019121140241622925, -0.04848461225628853, -0.013597891665995121, -0.0028249567840248346, -0.03893096745014191, -0.03412485122680664, 0.010104337707161903, 0.00011354684102116153, -0.01828700490295887, -0.06184213235974312, 0.029640760272741318, 0.08814530074596405, 0.0018092062091454864, 0.006017536390572786, -0.01097892690449953, -0.02545505203306675, 0.06465322524309158, 0.04304603487253189, 0.07086123526096344, 0.006059363018721342, -0.04529794305562973, -0.0006353738135658205, -0.0678110346198082, 0.031315624713897705, -0.007419852074235678, 0.017636409029364586, -0.05139201879501343, -0.02616482600569725, -0.03279578685760498, -0.0810457170009613, -0.07275697588920593, 0.037505969405174255, 0.001961461966857314, -0.022724438458681107, -0.004377979785203934, -0.0218178853392601, -0.0286257266998291, -0.012682553380727768, 0.0034652624744921923, -0.0007950829458422959, -0.016312086954712868, 0.03285210579633713, 0.14582125842571259, 0.03481149300932884, -0.033913493156433105, -0.015832269564270973, 0.026105783879756927, -0.014284386299550533, -0.0028310331981629133, 0.06679629534482956, -1.7446151105104946e-05, 0.004598869010806084, 0.027167320251464844, 0.02852996625006199, -0.004973518196493387, -0.008151073008775711, -0.04691394045948982, 0.0250454843044281, 0.021622726693749428, 0.004498887341469526, -0.01852426864206791, 0.020954206585884094, -0.03364357724785805, -0.023342467844486237, -0.05072084441781044, 0.013942748308181763, 0.033359870314598083, 0.00901709496974945, -0.05266742408275604, 0.008257994428277016, -0.012948492541909218, -0.0032798200845718384, 0.0546392984688282, -0.006341972388327122, -0.04075773060321808, 0.0014258403098210692, -0.015044805593788624, 0.024099351838231087, -0.01822158880531788, -0.016393830999732018, 0.006128249689936638, -0.029200192540884018, -0.002757636597380042, -0.01497434638440609, -0.025214651599526405, 0.039116572588682175, -0.011970571242272854, 0.008946925401687622, 0.011870013549923897, -0.04553548991680145, 0.015553774312138557, 0.024886807426810265, 0.011216139420866966, -0.018011748790740967, 0.042093731462955475, -0.05972189083695412, -0.036133673042058945, 0.062086332589387894, 0.03344456106424332, -0.030781157314777374, -0.022639388218522072, -0.020259542390704155, -0.00879201665520668, 0.041415151208639145, 0.03849278762936592, 0.014032854698598385, 0.01203721109777689, 0.06219681724905968, 0.010988856665790081, 0.005386370699852705, -0.028444679453969002, -0.006721774581819773, 0.041806794703006744, -0.012456160970032215, 0.010577906854450703, -0.001748269540257752, -0.058497630059719086, -0.07316958904266357, -0.04270477220416069, 0.018382804468274117, 0.002861822722479701, 0.00407731207087636, -0.015334843657910824, -0.0078051770105957985, -0.013680470176041126, -0.01375032402575016, -0.05143926292657852, 0.007791645359247923, -0.02841571904718876, -0.0522637702524662, 0.009349348954856396, 0.007868785411119461, -0.014807888306677341, -0.07986907660961151, 0.011620137840509415, 0.018693864345550537, 0.0763792172074318, -0.024252621456980705, 0.007748136762529612, 0.05403292551636696, -0.03127447888255119, 0.029456941410899162, -0.011810711584985256, -0.0033545109909027815, -0.013733676634728909, -0.020228557288646698, -0.01137551013380289, 0.02459704503417015, -0.04890866205096245, 0.01621537283062935, -0.058993861079216, -0.026885276660323143, 0.04415595158934593, 0.012642829678952694, -0.02631448768079281, 0.05107007920742035, 0.002306857844814658, -0.036297161132097244, 0.00010396272409707308, -0.011804059147834778, -0.007832295261323452, -0.02394997514784336, -0.04012787714600563, -0.052433647215366364, -0.0012718344805762172, -0.03345397859811783, -0.005581230390816927, -0.07892230153083801, 0.03578881919384003, -0.019113430753350258, 0.013174493797123432, -0.019779933616518974, 0.027554595842957497, -0.03207016363739967, 0.014092447236180305, 0.018103988841176033, 0.018260927870869637, 0.08728056401014328, 0.004677850753068924, 0.029432274401187897, -0.08509811758995056, 0.041004348546266556, -0.013392392545938492, -0.0814557820558548, -0.0011245402274653316, 0.04962121322751045, 0.053595539182424545, 0.009625628590583801, -0.013547634705901146, -0.03224988281726837, 0.06598518788814545, 0.025911450386047363, 0.038414206355810165, 0.006891908124089241, -0.009887450374662876, -0.017782626673579216, 0.0612422339618206, 0.04666927829384804, 0.002292659366503358, -0.029226092621684074, -0.10035698115825653, 0.06789745390415192, -0.008435678668320179, 0.006807951722294092, -0.00301285064779222, -0.008498717099428177, -0.015938445925712585, 0.022809835150837898, 0.03316791355609894, -0.018048230558633804, -0.01130646001547575, 0.05014728754758835, -0.027914606034755707, 0.07579521089792252, 0.026827411726117134, -0.04334751516580582, -0.0487506240606308, -0.03345242515206337, 0.10883761197328568, 0.03171241655945778, -0.020882198587059975, 0.0018690046854317188, -0.011519605293869972, -0.01952403038740158, -0.008370127528905869, -0.021874146535992622, 0.023333093151450157, -0.027850233018398285, -0.0016178013756871223, 0.0268921609967947, 0.029519734904170036, -0.04906049370765686, 0.01659141294658184, -0.005475517828017473, 0.026304196566343307, 0.026851238682866096, -0.0005122481379657984, 0.005605702754110098, 0.011868022382259369, 0.021092241629958153, -0.0036801304668188095, 0.011739066801965237, -0.05472239851951599, 0.014068173244595528, -0.04793288931250572, -0.03313656896352768, 0.07077348232269287, 0.044796526432037354, -0.014099468477070332, 0.028117334470152855, 0.03482763096690178, 0.003052495652809739, -0.027548009529709816, -0.06748891621828079, 0.032926324754953384, 0.04659706726670265, 0.04761255532503128, -0.027217552065849304, 0.01584700681269169, 0.0005877560470253229, -0.05265304818749428, -0.07163453102111816, 0.015391669236123562, -0.020110517740249634, -0.04175399988889694, 0.02735481783747673, 0.014012929052114487, 0.11329830437898636, 0.031070398166775703, 0.030979719012975693, -0.019541682675480843, 0.016395261511206627, 0.04879315569996834, -0.0291106179356575, -0.03411069139838219, 0.009685644879937172, 0.018238738179206848, 0.01590156927704811, 0.06266634911298752, -0.014014557003974915, -0.03127630427479744, -0.02307705394923687, 0.08605960756540298, -0.028151270002126694, -0.02124917507171631, 0.0506742037832737, -0.05454161390662193, 0.03477043658494949, 0.010759416036307812, -0.0378311388194561, 0.024533439427614212, -0.01275164820253849, -0.053297318518161774, -0.021274294704198837, -0.01004837267100811, -0.0159608144313097, -0.004472364205867052, -0.008011325262486935, 0.044127658009529114, -0.010534771718084812, -0.008463560603559017, -0.04919154569506645, -0.0030787207651883364, 0.005751615855842829, -0.017421679571270943, 0.0021692514419555664, -0.01578696258366108, -0.002759014256298542, -0.01772232912480831, -0.030223477631807327, -0.012974550016224384, 0.021672923117876053, -0.03802715986967087, 0.00022356680710799992, -0.009469280950725079, 0.06102646514773369, -0.014949909411370754, 0.023268038406968117, -0.07018731534481049, 0.03735523670911789, -0.029619192704558372, 0.015278808772563934, 0.053366001695394516, 0.012618815526366234, -0.013944391161203384, 0.052726250141859055, -0.002845766954123974, -0.019343871623277664, 0.04225318878889084, 0.010874958708882332, 0.020147765055298805, -0.008816847577691078, 0.025984155014157295, 0.04892615228891373, -0.009627997875213623, 0.015233227051794529, -0.014654967002570629, 0.040858495980501175, 0.014855907298624516, 0.03304149955511093, -0.0727747231721878, 0.025389935821294785, -0.01631690002977848, 0.016200309619307518, -0.02242286317050457, -0.031632933765649796, 0.013575684279203415, -0.022892633453011513, -0.01985277608036995, 0.003295636037364602, 0.013195536099374294, 0.04016831889748573, 0.0037582069635391235, -0.047308892011642456, 0.0040117972530424595, 0.02555166184902191, 0.02721671387553215, -0.052775267511606216, -0.007857754826545715, -0.03345540538430214, 0.09236499667167664, 0.020313018932938576, -0.032533708959817886, -5.6804614723075146e-33, -0.04637916013598442, 0.005258533172309399, 0.027600854635238647, 0.06222166493535042, -0.030442124232649803, -0.05257587879896164, 0.030548514798283577, -0.040802378207445145, -0.035471223294734955, -0.03554486110806465, 0.014937602914869785, 0.02366030588746071, -0.01872095838189125, -0.015392935834825039, 0.046256307512521744, -0.022330649197101593, 0.009180272929370403, -0.009799530729651451, 0.005267319269478321, 0.007401938550174236, -0.07819106429815292, 0.012880653142929077, -0.013190709054470062, 0.0768536850810051, 0.04027058556675911, -0.008175522089004517, 0.0018720627995207906, 0.017552534118294716, -0.06697765737771988, -0.0005244181957095861, 0.010723160579800606, -0.059827059507369995, 0.01899048499763012, -0.026488171890378, -0.006487477105110884, 0.06912164390087128, -0.051264505833387375, 0.0018724619876593351, -0.018798451870679855, -0.03927066549658775, -0.005080669652670622, -0.03952261805534363, -0.006969762034714222, 0.003186832182109356, -0.05866945907473564, -0.013456715270876884, 0.02931341342628002, 0.00925076100975275, 0.03803617134690285, 0.004235613159835339, -0.014988541603088379, 0.014003675431013107, 0.0013460246846079826, 0.010613548569381237, 0.010340693406760693, -0.03713679313659668, 0.019360609352588654, -0.011219656094908714, -0.028914574533700943, -0.01607690565288067, -0.04816075786948204, 0.0016704222653061152, -0.025782953947782516, 0.011171214282512665, -0.037866342812776566, -0.004595114383846521, -0.0588265098631382, 0.10087695717811584, 0.033692341297864914, -0.0027827348094433546, -0.008139993995428085, -0.002210695529356599, -0.04070153459906578, -0.05543637275695801, -0.03903847560286522, -0.018673405051231384, -0.0879831537604332, 0.031241940334439278, 0.10359876602888107, 0.10576435923576355, -0.008358336053788662, 0.0012608753750100732, -0.01944514736533165, 0.013075844384729862, -0.013306761160492897, -0.015228061005473137, -0.008275520987808704, 0.0242433063685894, -0.007411524653434753, -0.011343141086399555, 0.010652001947164536, -0.0846562385559082, -0.019098695367574692, 0.0198673028498888, 0.05006246641278267, -0.04525795578956604, 0.04630356281995773, -0.02729649655520916, -0.021240217611193657, 0.005295352544635534, -0.08696963638067245, -0.04200322553515434, 0.04716694355010986, 0.04182242229580879, 0.041072167456150055, -0.02035740204155445, 0.029889507219195366, -0.018874360248446465, -0.02602531760931015, 0.011547227390110493, 0.02176058292388916, 0.03773217275738716, 0.01258712075650692, 0.012033346109092236, -0.0004984925035387278, -0.036753591150045395, 0.02571977488696575, -0.03441585972905159, 0.024363717064261436, -0.026960769668221474, -0.03389345854520798, -0.013017949648201466, 0.052004165947437286, -0.06034931167960167, -0.015508923679590225, 0.021132590249180794, 0.004008377902209759, 0.05302216112613678, 0.02681797929108143, 0.003018581308424473, 0.002369868103414774, -0.013936096802353859, 2.8298143206484383e-07, -0.0008322429494000971, 0.017774095758795738, 0.02003420889377594, -0.020862121134996414, 0.019471678882837296, -0.0620967261493206, -0.014361115172505379, 0.04327302426099777, 0.04751661419868469, 0.006396956741809845, 0.029462473466992378, 0.01584458351135254, -0.027196478098630905, 0.01892804726958275, 0.04527146369218826, -0.10710412263870239, -0.008527195081114769, -0.006175671704113483, -0.023708084598183632, 0.008105139248073101, 0.08020418137311935, -0.016836296766996384, -0.002702302299439907, -0.003168797818943858, -0.011882943101227283, 0.018115760758519173, -0.016303004696965218, 0.03678534924983978, -0.049966223537921906, -0.028717918321490288, 0.11026618629693985, -0.02552749775350094, -0.0010292052756994963, 0.032707639038562775, 0.044788070023059845, 0.027953680604696274, -0.04839462414383888, -0.015306060202419758, -0.014027216471731663, 0.04643194004893303, 0.005368652753531933, -0.03685856983065605, -0.0023862055968493223, 0.014332729391753674, 0.08092156797647476, 0.032929107546806335, 0.016206948086619377, -0.05666501075029373, -0.04648008570075035, -0.045027732849121094, 0.017488589510321617, 0.07896202057600021, -0.017731087282299995, -0.0035235153045505285, 0.039295077323913574, -0.0013584016123786569, -0.005998865235596895, 0.02060554549098015, 0.053658269345760345, -0.004907357040792704, -0.003639073809608817, -0.05553041771054268, 0.04900173470377922, -0.003206205554306507, -0.008955888450145721, -0.0456291064620018, 0.0026703723706305027, 2.95048416249047e-34, 0.03091149404644966, -0.05773089826107025, 0.003178442595526576, -0.04650695621967316, 0.001284993952140212, -0.0038365565706044436, 0.016558416187763214, -0.00010376166028436273, -0.0037442054599523544, -0.0677838996052742, -0.0053576091304421425], "60b8c530-ba1a-41bc-9d6b-3991791bc2b6": [0.02682867832481861, -0.017844997346401215, 0.0022034209687262774, -0.019449269399046898, -0.008433136157691479, 0.037393078207969666, -0.023404108360409737, 0.01132110133767128, 0.006062373984605074, -0.0018358970992267132, 0.04082714393734932, 0.0012527768267318606, -0.017555922269821167, 0.019262615591287613, -0.06138259917497635, -0.01669524610042572, 0.008997568860650063, -0.0012687031412497163, 0.020345570519566536, -0.01953030377626419, 0.06330849975347519, 0.010376278311014175, -0.016024762764573097, 0.02666565217077732, -0.08237770944833755, -0.02453499473631382, -0.0005429263692349195, 0.003352932631969452, -0.009430183097720146, -0.04171957075595856, -0.03332258015871048, 0.040426287800073624, -0.03739545866847038, -0.03205469995737076, 2.087089114866103e-06, 0.009203585796058178, 0.006143325939774513, -0.04441274330019951, 0.05314723774790764, -0.020136335864663124, 0.08685197681188583, -0.047678835690021515, 0.03590862825512886, 0.039186909794807434, -0.01353663019835949, -0.011033715680241585, 0.030956538394093513, 0.021018758416175842, 0.06624934077262878, -0.0483367033302784, -0.0079837366938591, -0.037201687693595886, -0.06821058690547943, -0.012019258923828602, 0.016306469216942787, -0.18368037045001984, -0.012020014226436615, -0.036860983818769455, 0.009617429226636887, -0.02297493815422058, -0.04105520248413086, -0.05018714442849159, -0.014425492845475674, -0.002214476466178894, 0.019969850778579712, -0.0030709505081176758, 0.0429154634475708, -0.04382894188165665, 0.014931741170585155, -0.01062860619276762, 0.0700359120965004, 0.013249891810119152, -0.03127651289105415, 0.02974269725382328, 0.06135602295398712, -0.02586430124938488, 0.02842177264392376, -0.035626161843538284, -0.04568580910563469, 0.01100554782897234, -0.010194085538387299, 0.015239357948303223, -0.05303558334708214, -0.05477795749902725, -0.015723295509815216, 0.04798103868961334, 0.0018528382061049342, -0.01598707027733326, 0.0250787902623415, 0.059519845992326736, 0.06968376785516739, -0.010079670697450638, -0.0350622832775116, 0.0321565680205822, -0.034866273403167725, -0.02587328478693962, -0.0007692055078223348, -0.012409578077495098, -0.03518424183130264, 0.026829106733202934, -0.040453940629959106, 0.013544358313083649, 0.011802863329648972, 0.04228547587990761, -6.5062208705057856e-06, 0.024242471903562546, -0.00023846278782002628, -0.03892364352941513, -0.004806585144251585, -0.009131313301622868, -0.021626560017466545, 0.011493903584778309, -0.0026305760256946087, 0.023359546437859535, 0.032496724277734756, 0.014860352501273155, -0.04539686068892479, 0.05246886983513832, 0.02946850098669529, 0.02670065313577652, 0.0675622746348381, -0.004997401498258114, -0.011951379477977753, 0.026750879362225533, -0.045598287135362625, -0.07699219882488251, -0.01841684989631176, 0.004856602754443884, 0.038233377039432526, 0.06744948774576187, -0.009071014821529388, -0.05373256653547287, -0.009048654697835445, 0.06504397839307785, -0.008617046289145947, 0.028168993070721626, 0.003608101047575474, 0.021837271749973297, 0.0016170404851436615, 0.003578235162422061, -0.02068917825818062, 0.004115567542612553, -0.038620270788669586, -0.0020244468469172716, -0.10550431162118912, -0.022132256999611855, -0.020232195034623146, -0.02503279037773609, 0.018208777531981468, 0.04723364859819412, 0.015466626733541489, 0.02315715327858925, 0.012188846245408058, -0.004737440496683121, -0.10923699289560318, 0.006015470717102289, -0.015556016936898232, -0.008807509206235409, 0.0075675141997635365, 0.05755934864282608, -0.04271410033106804, -0.00582681642845273, 0.01475592888891697, 0.013830744661390781, -0.006246188189834356, -0.005211335606873035, 0.02619718201458454, -0.028930019587278366, 0.017782870680093765, 0.02467200718820095, -0.041096627712249756, 0.06593232601881027, -0.018039140850305557, 0.07818731665611267, -0.01060203555971384, 0.03684936836361885, 0.03457504138350487, -0.002662994898855686, 0.024845974519848824, -0.03548818826675415, -0.03386345133185387, -0.059984564781188965, -0.0347558930516243, 0.027621084824204445, 0.08976873755455017, 0.02544231154024601, -0.04089352861046791, 0.06690320372581482, -0.03224974125623703, 0.012552086263895035, 0.0077112652361392975, 0.0043238443322479725, 0.00564923882484436, -0.022931378334760666, -0.017382021993398666, 0.008343558758497238, -0.04331399127840996, -0.025457056239247322, 0.0016839466989040375, 0.016150817275047302, 0.015974843874573708, -0.037590235471725464, 0.051972392946481705, 0.06404882669448853, 0.012841264717280865, -0.016970086842775345, 0.013794039376080036, -0.031151311472058296, 0.030294135212898254, 0.002797639463096857, 0.05817735195159912, 0.0070062559098005295, -0.049247171729803085, 0.0020499667152762413, -0.04652266204357147, 0.0333966389298439, -0.02394931949675083, 0.023484569042921066, -0.07042250037193298, -0.024831579998135567, -0.03564112260937691, -0.08290045708417892, -0.05955345183610916, 0.04468277469277382, 0.03172032907605171, 0.012835205532610416, 0.021738270297646523, -0.04962151125073433, -0.0043941885232925415, -0.015578879043459892, 0.005205366760492325, 0.02717902883887291, -0.01761564053595066, 0.014481655322015285, 0.14007051289081573, 0.08804890513420105, -0.026016976684331894, -0.02604825235903263, 0.051708243787288666, -0.015438146889209747, 0.0169528815895319, 0.03318961709737778, 0.013685978949069977, 0.002840503351762891, 0.058552198112010956, 0.03280632570385933, -0.011393509805202484, -0.005619429517537355, -0.028968611732125282, -0.007956222631037235, -0.0014485056744888425, 0.019902655854821205, -0.031617455184459686, 0.03358592465519905, -0.04243779554963112, -0.04890792816877365, -0.030003493651747704, -0.0033423961140215397, 0.007290546782314777, 0.02079283632338047, -0.02169150859117508, 0.0014749011024832726, -0.011075186543166637, 0.016869153827428818, 0.07646230608224869, -0.03090914525091648, -0.08619438856840134, 0.004112363792955875, -0.06576492637395859, 0.012094078585505486, 0.0018013495719060302, -0.04214882105588913, -0.004448396619409323, 0.0026097570080310106, -0.027974601835012436, -0.002056889934465289, -0.018227437511086464, 0.06221643090248108, -0.011173424310982227, 0.013633490540087223, 0.04443903639912605, -0.02633075788617134, 0.012388171628117561, 0.035070404410362244, 0.010639960877597332, 0.0015953372931107879, 0.04815490171313286, -0.04189412295818329, -0.02647368609905243, 0.040337834507226944, 0.020229194313287735, -0.038789693266153336, -0.007644549012184143, 0.003926652949303389, 0.010454801842570305, 0.025398705154657364, 0.06884896755218506, -0.015200391411781311, -0.0031293295323848724, 0.05918863043189049, 0.001599881681613624, -0.007614172995090485, -0.04249798133969307, -0.016226455569267273, 0.030858324840664864, 0.009835132397711277, -0.0157656017690897, 0.037397079169750214, -0.014876051805913448, -0.024815181270241737, -0.045041173696517944, -0.00546214310452342, -0.022882992401719093, 0.036498311907052994, 0.005000232718884945, -0.010019242763519287, 0.003654164494946599, -0.007691795006394386, -0.03829067572951317, -0.013333949260413647, -0.0562167726457119, -0.05759046599268913, -0.0017326304223388433, 0.03173087537288666, -0.00951972883194685, -0.05265214666724205, 0.022848475724458694, 0.004380624275654554, 0.08170885592699051, -0.023318592458963394, -0.0020992618519812822, 0.02845972776412964, -0.022335944697260857, 0.029179221019148827, 0.005770985037088394, 0.012075765989720821, 0.025925787165760994, -0.03322190046310425, 0.004805203061550856, 0.021041233092546463, -0.03073073923587799, 0.013217068277299404, -0.04877645522356033, -0.022126054391264915, 0.025521397590637207, 0.013323860242962837, -0.00680285831913352, 0.06296472251415253, 0.00011400858056731522, -0.030165987089276314, -0.030245115980505943, -0.013682634569704533, -0.03816463425755501, -0.028451113030314445, -0.028710052371025085, -0.09801264107227325, -0.025568801909685135, -0.029532523825764656, -0.030495446175336838, -0.07098040729761124, 0.03860948234796524, 0.0071857646107673645, 0.022540930658578873, -0.046668361872434616, 0.0047989883460104465, -0.023049620911478996, 0.020653001964092255, 0.003386398544535041, 0.034234337508678436, 0.09189672023057938, 0.00031285927980206907, 0.0325852707028389, -0.07999446988105774, 0.010394562967121601, -0.00641646608710289, -0.07957541197538376, -4.552082100417465e-05, 0.026111435145139694, 0.049558572471141815, 0.02073824591934681, -0.019772088155150414, -0.0054922751151025295, 0.05942117050290108, 0.015954896807670593, 0.027554452419281006, 0.013886651955544949, -0.017570920288562775, -0.023729735985398293, 0.04722215235233307, 0.01097763329744339, 0.008340753614902496, -0.027515623718500137, -0.08020424842834473, 0.055150147527456284, -0.002931758062914014, 0.005934269167482853, -0.02645300142467022, 0.02771719917654991, 0.014155760407447815, 0.020056413486599922, 0.015339898876845837, -0.025539115071296692, -0.010581347160041332, 0.05013030767440796, -0.03411075100302696, 0.05093226209282875, 0.012118547223508358, -0.03653307631611824, -0.016804104670882225, -0.010567993856966496, 0.08412850648164749, 0.04871855676174164, -0.025185009464621544, 0.00026026900741271675, -0.03446098789572716, -0.0034052126575261354, -0.0017248229123651981, 0.013986597768962383, 0.026827502995729446, -0.012657655403017998, 0.012816352769732475, 0.02261241152882576, 0.0017198538407683372, -0.04264326021075249, 0.005571423098444939, 0.009129377081990242, 0.05253087356686592, -0.004430319648236036, -0.006728800944983959, 0.010260158218443394, -0.00528072752058506, 0.02166561223566532, 0.026577308773994446, 0.006939338985830545, -0.09542107582092285, 0.006700075231492519, -0.06357138603925705, -0.012301748618483543, 0.14561593532562256, 0.03650018200278282, -0.014674240723252296, 0.02101985365152359, 0.04993497207760811, 0.009166449308395386, -0.004689812194555998, -0.07527942210435867, 0.021147992461919785, 0.04090215638279915, 0.0343593992292881, 0.045963626354932785, 0.0017486981814727187, -0.009573475457727909, -0.07469838857650757, -0.04632498323917389, -0.02867266722023487, -0.02254491299390793, -0.04978631064295769, 0.0043860492296516895, 0.0066541037522256374, 0.08810365945100784, 0.05188306048512459, 0.014658507890999317, -0.04702693596482277, 0.007715380750596523, 0.026481691747903824, -0.03366084769368172, -0.06228780001401901, 0.03496074303984642, -0.0017307817470282316, 0.005800629500299692, 0.08763845264911652, 0.0048958007246255875, -0.02207227237522602, -0.0273676086217165, 0.07838887721300125, -0.003451848868280649, -0.03538534417748451, 0.039772141724824905, -0.05610901117324829, 0.03145209699869156, 0.011407610028982162, -0.039412721991539, 0.008684443309903145, -0.052672505378723145, -0.06671497970819473, -0.04936503246426582, -0.02012408897280693, -0.006970811635255814, -0.010452818125486374, -0.006605391390621662, 0.03927943855524063, -0.007419157307595015, -0.0027774323243647814, -0.0239286907017231, -0.04901064932346344, -0.010818849317729473, -0.010739804245531559, 0.03172202408313751, -0.002789328107610345, -0.0006472789100371301, -0.041018515825271606, -0.0075400336645543575, -0.004203587770462036, -0.007697696797549725, -0.04243048280477524, -0.017650526016950607, -0.021650586277246475, 0.005847802851349115, -0.020951930433511734, 0.038414135575294495, -0.04752042889595032, 0.039658110588788986, 0.02273661643266678, 0.042555585503578186, 0.02736825682222843, -0.01632804237306118, -0.00330604100599885, 0.07428895682096481, 0.00356956641189754, -0.03913944587111473, 0.04204113781452179, 0.013452502898871899, 0.009397979825735092, -0.012368236668407917, 0.030700525268912315, 0.038572221994400024, -0.009806863963603973, -0.008240235969424248, -0.026021679863333702, 0.0012951260432600975, -0.0036826222203671932, 0.008282626047730446, -0.06215479224920273, 0.02963249944150448, -0.017705276608467102, 0.03149501234292984, -0.05495882406830788, -0.02621922828257084, 2.3704760678811e-05, -0.023340068757534027, 0.0012922916794195771, 0.04177504777908325, 0.035578127950429916, 0.021544164046645164, -0.028796706348657608, -0.020920289680361748, -0.0042961412109434605, 0.025121526792645454, 0.02220296300947666, 0.018046727403998375, -0.012542552314698696, -0.0370899997651577, 0.10862363874912262, -0.0054120635613799095, -0.01047353446483612, -5.3412475981227885e-33, -0.012655968777835369, 0.017239950597286224, 0.05755013972520828, 0.04710165038704872, -0.04818608611822128, -0.04489006847143173, 0.042247261852025986, -0.030971255153417587, -0.019484272226691246, -0.045401681214571, 0.021568696945905685, 0.01524378638714552, -0.03192577138543129, -0.02033010683953762, 0.04995124414563179, -0.011936916038393974, 0.01685051992535591, -0.009938283823430538, -0.005796498153358698, -0.04616619646549225, -0.06245872378349304, 0.025478605180978775, 0.038673706352710724, 0.054097313433885574, 0.04106462374329567, 0.03496086597442627, -0.04267625883221626, 0.03895360231399536, -0.03900793567299843, -0.004261918365955353, 0.03914715722203255, -0.037324484437704086, 0.009820184670388699, -0.02568712644279003, -0.011270416900515556, 0.01440872997045517, -0.050252482295036316, 0.021847832947969437, -0.018688419833779335, -0.017471281811594963, -0.03989405184984207, -0.009972821921110153, 0.00012975461140740663, 0.010649940930306911, -0.06099771335721016, -0.0026719586458057165, -0.01119550783187151, 0.00745442695915699, 0.03905691206455231, -0.008767730556428432, -0.003581916680559516, 0.046727895736694336, -0.010127539746463299, 0.011359753087162971, 0.026546426117420197, -0.025661613792181015, -0.001194337964989245, 0.019566601142287254, -0.01653498224914074, -0.0004886863753199577, -0.05035186558961868, 0.009251715615391731, -0.05993770435452461, 0.018061503767967224, 0.004656441975384951, -0.005839734338223934, -0.04009655490517616, 0.11312655359506607, 0.03433167189359665, -0.037340179085731506, 0.032279085367918015, -0.034910596907138824, -0.028050992637872696, -0.021437034010887146, -0.030478142201900482, 0.01140783540904522, -0.06586244702339172, 0.011592266149818897, 0.11781072616577148, 0.12298853695392609, -0.018717831000685692, 0.019438402727246284, -0.012140141800045967, 0.011666819453239441, -0.02132582478225231, -0.02734597772359848, -0.005372110288590193, -0.004736343398690224, -0.015500214882194996, -0.012672137469053268, 0.014434455893933773, -0.0748482197523117, -0.01964961178600788, 0.03926970809698105, 0.0920524001121521, -0.023786336183547974, 0.002205798402428627, -0.007284780964255333, -0.009746887721121311, -0.0031071605626493692, -0.07244022190570831, -0.016714835539460182, 0.05729937553405762, 0.0173492394387722, 0.03587617725133896, -0.014923794195055962, -0.005489047151058912, -0.019146887585520744, -0.0211175549775362, -0.003449284238740802, 0.03860613331198692, 0.048794958740472794, -0.015222660265862942, -0.0012984967324882746, -0.010888474062085152, -0.03275215998291969, 0.006652772426605225, -0.0048594363033771515, 0.017923325300216675, -0.021379971876740456, -0.041422564536333084, 0.022590396925807, 0.06041672080755234, -0.04429987818002701, -0.015153005719184875, -0.013378458097577095, 0.016116388142108917, 0.01802959479391575, 0.023584594950079918, 0.0287114679813385, -0.0007593524060212076, 0.006905377376824617, 2.80765902971325e-07, -0.003425838891416788, 0.03493493050336838, 0.002529553370550275, 0.0037268896121531725, 0.021443113684654236, -0.0642009899020195, 0.0059776087291538715, 0.033957336097955704, 0.03682206943631172, 0.05129438638687134, 0.035183779895305634, 0.005092084873467684, -0.035155728459358215, 0.02156495675444603, 0.030896132811903954, -0.08674775063991547, -0.04537266120314598, 0.0006982178892940283, 0.018461748957633972, 0.003076116554439068, 0.04062676057219505, -0.007828185334801674, 0.006871647201478481, 0.026521531865000725, -0.01918615773320198, 0.034497492015361786, 0.0033746378030627966, 0.0302581749856472, -0.069573312997818, -0.011250327341258526, 0.09558167308568954, -0.05729024484753609, 0.009614763781428337, 0.02255121059715748, 0.03356721252202988, 0.02983914501965046, -0.02022768370807171, -0.024695985019207, -0.01571318879723549, 0.02600688859820366, 0.003051918698474765, 0.013402779586613178, -0.006394234020262957, 0.01657804101705551, 0.0586511492729187, 0.025986691936850548, -0.03044135868549347, -0.057489924132823944, 0.005614451598376036, -0.06287042796611786, 0.013989930972456932, 0.06913816928863525, -0.007053092122077942, -0.0054633463732898235, 0.042537640780210495, 0.003328365972265601, -0.028011970221996307, 0.061383169144392014, 0.016227031126618385, 0.009075118228793144, -0.013475116342306137, -0.03895100578665733, 0.018024232238531113, 0.01383883971720934, -0.016981029883027077, -0.052840784192085266, 0.027353374287486076, 2.2704076455407456e-34, 0.03606453910470009, -0.05956743657588959, -0.005892939865589142, -0.04271122068166733, -0.021417787298560143, 0.008935730904340744, -0.0038908212445676327, -0.013838205486536026, 0.01787741482257843, -0.04645693674683571, 0.0006917809369042516], "22d5c08c-b3b9-4ae9-86cd-af3e8edb4af1": [0.04209710285067558, -0.010772556066513062, 0.008755959570407867, -0.0012780509423464537, 0.010334509424865246, 0.051616352051496506, -0.0077241575345396996, 0.006733774207532406, -0.03168866038322449, -0.021894458681344986, 0.031425267457962036, -0.0018095754785463214, -1.5351088222814724e-05, 0.019031859934329987, -0.041209813207387924, -0.020253997296094894, 0.0074935960583388805, -0.03346165269613266, 0.041843149811029434, -0.024301979690790176, 0.03868506848812103, 0.014539043419063091, -0.031114628538489342, 0.010166977532207966, -0.09897353500127792, -0.008180990815162659, 0.02083211950957775, 0.01025941502302885, 0.009292521513998508, -0.03166595473885536, -0.0180757287889719, 0.02143152244389057, 0.004410158842802048, -0.03881477937102318, 2.0877259885310195e-06, -0.006254164036363363, 0.02552153170108795, -0.026650020852684975, 0.009038460440933704, 0.004498887807130814, 0.04784640669822693, -0.03816817328333855, 0.0006017394480295479, 0.010780444368720055, 0.00318157859146595, -0.005920675583183765, 0.017255015671253204, 0.007762701250612736, 0.053171005100011826, -0.08859926462173462, 0.013911777175962925, -0.0901641845703125, -0.06530393660068512, -0.022677335888147354, 0.02637910284101963, -0.17860081791877747, -0.005495943129062653, 0.004261532798409462, -0.05672764405608177, 0.00899539701640606, -0.04577202349901199, -0.048669442534446716, -0.01372330728918314, -0.022771043702960014, 0.03305397555232048, 0.01343364268541336, 0.057822853326797485, -0.02939542755484581, 0.032494764775037766, -0.02373850904405117, 0.06422986090183258, 0.005091519095003605, -0.0173934418708086, 0.03324757516384125, 0.06844348460435867, -0.04598110169172287, -0.0011331880232319236, 0.009601173922419548, -0.04437030106782913, 0.014674543403089046, 0.007776944898068905, 0.044490791857242584, -0.040520768612623215, -0.06060559302568436, -0.010168087668716908, 0.05815795063972473, -0.0207053255289793, -0.014911885373294353, -0.002356726909056306, 0.05201929062604904, 0.004644863307476044, -0.012849778868258, -0.05100035294890404, 0.03733639046549797, -0.003794193733483553, -0.0010236529633402824, -0.013832537457346916, -0.07462985068559647, -0.03649987280368805, 0.039694689214229584, -0.058852504938840866, -0.003434683894738555, -0.0013649796601384878, 0.031078478321433067, -0.0031933726277202368, 0.03921349719166756, -0.0067445975728333, 0.005613223649561405, 0.012748625129461288, -0.02686321921646595, 0.03097100928425789, -0.007929361425340176, -0.0015802449779585004, 0.030020760372281075, -0.02214774489402771, 0.016273561865091324, -0.03766193240880966, 0.03369538486003876, 0.020780278369784355, 0.03257002681493759, 0.0598054938018322, -0.007653034292161465, 0.008371389470994473, 0.04220278561115265, -0.01100243628025055, -0.04795074090361595, -0.014040261507034302, 0.002619253471493721, 0.0734834372997284, 0.10259772837162018, -0.007572340779006481, -0.07495611906051636, 0.010609177872538567, 0.0946282371878624, -0.03848905488848686, 0.04617675393819809, -0.010565254837274551, 0.05816401541233063, 0.008790865540504456, -0.0036821707617491484, -0.002054730197414756, 0.011468266136944294, -0.023726683109998703, -0.003998598549515009, -0.08580055087804794, -0.010075315833091736, -0.038068030029535294, -0.018631668761372566, 0.01735186204314232, 0.02443092316389084, 0.003647545352578163, -0.013049311935901642, 0.0311599001288414, -0.009142712689936161, -0.09822438657283783, 0.0011829158756881952, -0.0024968984071165323, -0.021953992545604706, 0.054290104657411575, 0.049506351351737976, -0.010955646634101868, 0.029992589727044106, -0.0085764704272151, 0.02221781387925148, 0.0019201108952984214, 0.0018952629761770368, 0.01779029332101345, -0.030810264870524406, 0.019483353942632675, 0.011574496515095234, 0.0013122117379680276, 0.03399987518787384, -0.008214028552174568, 0.052231885492801666, -0.026735655963420868, 0.04830525815486908, 0.020577291026711464, -0.020978577435016632, 0.014645104296505451, -0.0384063646197319, -0.027292583137750626, -0.06573484092950821, -0.011519363150000572, 0.02388583868741989, 0.057669349014759064, 0.009221188724040985, -0.05460850149393082, 0.04472001641988754, -0.024770930409431458, 0.023161089047789574, 0.0032922783866524696, 0.02486083284020424, -0.015822255983948708, -0.023455394431948662, -0.021350998431444168, -0.009621663950383663, -0.03245542570948601, -0.03318091109395027, 0.036473505198955536, 0.014743679203093052, 0.03366120532155037, -0.04308245703577995, 0.03421346843242645, 0.0369688980281353, 0.013697694055736065, -0.0010826080106198788, 0.03539976850152016, -0.020602596923708916, 0.008336463943123817, 0.01949077658355236, 0.03539569675922394, 0.010657194070518017, -0.03758285194635391, 0.014608107507228851, -0.03371690586209297, 0.019617268815636635, -0.00021300959633663297, 0.056128159165382385, -0.06866750866174698, -0.06281577795743942, -0.025417828932404518, -0.06602916121482849, -0.07054337859153748, 0.029611404985189438, 0.006571172270923853, -0.0073456228710711, 0.03951988369226456, -0.05265488848090172, -0.05146443471312523, -0.021010292693972588, -0.008003607392311096, 0.012640700675547123, -0.03382839635014534, 0.015100338496267796, 0.14145180583000183, 0.0638551115989685, -0.01622656174004078, -0.038807887583971024, 0.03063090145587921, 0.0067508830688893795, -0.002305211964994669, 0.01749829761683941, 0.00018028741760645062, -0.0037899427115917206, 0.0822775661945343, 0.010669343173503876, 0.008298659697175026, 0.003537780838087201, -0.042144615203142166, -0.009302333928644657, 0.0014539867406710982, 0.04061463475227356, -0.03307744115591049, 0.05412304773926735, -0.08598759025335312, -0.0035099706146866083, -0.0036942423321306705, -0.01045500673353672, 0.024228615686297417, 0.025484146550297737, -0.025487052276730537, 0.01197650097310543, -0.010518250055611134, 0.011986544355750084, 0.034034788608551025, 0.009722203947603703, -0.07104756683111191, 0.07163135707378387, -0.054767392575740814, 0.017466725781559944, 0.011926383711397648, -0.014938834123313427, 0.004224215634167194, -0.010160999372601509, -0.010708741843700409, -0.0041183046996593475, -0.0334729440510273, 0.07079403847455978, -0.02750040404498577, 0.015658119693398476, 0.03482905775308609, 0.03175279498100281, -0.006467759609222412, 0.024203596636652946, 0.009878150187432766, 0.00938680674880743, 0.07018737494945526, -0.026453319936990738, -0.03301423043012619, 0.016249051317572594, -0.00712802866473794, -0.008565271273255348, -0.02785251848399639, -0.004262775182723999, -0.009232991375029087, 0.019721755757927895, 0.04999198019504547, -0.0025984107051044703, -0.008686539717018604, 0.058363862335681915, -0.026431996375322342, -0.04611388221383095, -0.03413375839591026, -0.011377464048564434, 0.05523849278688431, 0.003012117464095354, -0.018801076337695122, 0.05327368900179863, -0.0247456394135952, 0.016185501590371132, -0.040771305561065674, -0.005739883985370398, 0.009453135542571545, 0.014059997163712978, 0.00042632551048882306, -0.007577880285680294, -0.021334273740649223, 0.015057601034641266, -0.048537351191043854, 0.02131546661257744, -0.052880365401506424, -0.0324467271566391, -0.015753941610455513, 0.022081267088651657, -0.027895858511328697, -0.052634093910455704, 0.017641467973589897, 0.0022092624567449093, 0.09968101978302002, -0.05714321881532669, 0.0014006108976900578, 0.011140335351228714, -0.06322170048952103, 0.01923251710832119, 0.034714967012405396, 0.019703324884176254, 0.027442567050457, -0.00183552922680974, -0.011927919462323189, 0.02212630771100521, -0.033144574612379074, 0.004791717976331711, -0.05134278163313866, -0.04227690398693085, 0.005935301538556814, 0.02900317683815956, 0.019705835729837418, 0.03871620446443558, 0.003703489201143384, -0.012283888645470142, 0.001972856232896447, -0.008146993815898895, -0.038305431604385376, 0.0012744000414386392, -0.04473161697387695, -0.08358950912952423, -0.03525697439908981, -0.0211052093654871, -0.028029192239046097, -0.07410512119531631, 0.019362419843673706, 0.0031055400613695383, -0.018397890031337738, -0.04811318591237068, 0.03115457482635975, -0.01119717676192522, -0.015188556164503098, 0.021894343197345734, 0.042495761066675186, 0.06665786355733871, -0.0301815215498209, 0.010098982602357864, -0.06379834562540054, 0.0024821043480187654, -0.019377829506993294, -0.06194373220205307, -0.012328515760600567, 0.01908937655389309, 0.08326229453086853, 0.0032021761871874332, -0.01991674117743969, 0.012308388017117977, 0.07180245220661163, 0.025218889117240906, 0.02505011111497879, 0.01739899069070816, -0.012207134626805782, -0.019152652472257614, 0.028579507023096085, 0.0022241035476326942, 0.020044144243001938, -0.016084633767604828, -0.04168134182691574, 0.06449864059686661, -0.0069136652164161205, 0.05712120607495308, -0.03977624699473381, 0.047453101724386215, -0.016157347708940506, 0.005474213510751724, 0.011491786688566208, -0.033752720803022385, 0.02692398987710476, 0.04352930560708046, -0.010208873078227043, 0.026616666465997696, 0.03745367377996445, -0.029768800362944603, -0.03019803948700428, 0.0062603410333395, 0.09173731505870819, 0.03437602519989014, -0.028668195009231567, 0.0099332919344306, -0.023155350238084793, 0.0043891919776797295, -0.0051722414791584015, -0.00803598202764988, -0.00010897855827352032, 0.0168398879468441, 0.018045349046587944, 0.02742859162390232, 0.0010596229694783688, -0.04043576121330261, 0.009905669838190079, -0.009845325723290443, 0.0437094122171402, -0.043535638600587845, -0.035823579877614975, 0.01042515691369772, 0.02484452910721302, 0.036029618233442307, 0.013654923066496849, 0.017826227471232414, -0.04547537490725517, 0.023590480908751488, -0.05322961509227753, 0.012339447624981403, 0.11418180912733078, 0.034800201654434204, 0.01751163974404335, 0.039563342928886414, 0.021497856825590134, -0.006331949029117823, -0.029404040426015854, -0.0724400132894516, -0.013976271264255047, 0.030201343819499016, -0.02103368751704693, -3.647174162324518e-05, -0.026719748973846436, 0.00371370417997241, -0.05922843888401985, -0.035791557282209396, -0.01525710429996252, -0.023500990122556686, -0.10199031978845596, -0.021212637424468994, -0.009487884119153023, 0.04163675755262375, 0.030490608885884285, 0.012905029579997063, -0.022626595571637154, 0.00808027945458889, 0.023690497502684593, -0.03631344065070152, -0.030699728056788445, 0.037270769476890564, 0.021092336624860764, -0.03193555772304535, 0.08236800134181976, 0.0067450664937496185, -0.03490404412150383, -0.06797469407320023, 0.09526681900024414, -0.00748983072116971, -0.056764498353004456, 0.05199548602104187, -0.06471020728349686, 0.029316114261746407, -0.014102826826274395, -0.07747015357017517, 0.024707304313778877, -0.060775648802518845, -0.04519651457667351, -0.030143888667225838, -0.04171480983495712, 0.005097902379930019, -0.02014751359820366, -0.020772941410541534, 0.02092849835753441, 0.0038678101263940334, 0.013949310407042503, -0.011472432874143124, 0.00264645554125309, 0.029670313000679016, 0.014248826541006565, -0.006631243042647839, -0.020396092906594276, -0.01190412137657404, -0.05629541724920273, 0.022383010014891624, 0.0006134857540018857, -0.022742366418242455, -0.03747035562992096, 0.0032036590855568647, -0.0005284335347823799, -0.002238882938399911, -0.027379034087061882, 0.009972788393497467, -0.04890787973999977, 0.019823482260107994, 0.008209291845560074, 0.055615223944187164, 0.03878818452358246, -0.00980820506811142, 0.03481415659189224, 0.05709386616945267, 0.036639366298913956, -0.053554486483335495, 0.038084644824266434, 0.0209888257086277, -0.02058359794318676, -0.01093633659183979, 0.021932631731033325, 0.040723767131567, -0.030610069632530212, -0.005335930269211531, 0.0051411353051662445, 0.018996523693203926, 0.05086876451969147, -0.007103951182216406, -0.07658862322568893, 0.049144454300403595, 0.019644511863589287, 0.04988949000835419, -0.009448659606277943, -0.005837368778884411, 0.0026993323117494583, 0.0007962874369695783, -0.009479284286499023, 0.040064942091703415, 0.01893785037100315, 0.02885453961789608, -0.021628228947520256, -0.042605649679899216, -0.004124567378312349, -0.007164446637034416, 0.018791886046528816, 0.0006791335763409734, -0.009820420295000076, -0.03447230905294418, 0.06416340172290802, -0.006880380678921938, -0.00029404432279989123, -5.0872868190734335e-33, -0.02501353807747364, 0.013566303998231888, 0.03346100077033043, 0.08011230826377869, -0.03776441141963005, 0.008177094161510468, 0.01992008648812771, -0.050050169229507446, -0.023099536076188087, -0.021961301565170288, -0.0008492984343320131, 0.010026665404438972, -0.0314607173204422, 0.008342972956597805, 0.05333961918950081, -0.03802154213190079, 0.0181961078196764, -0.0142446830868721, 0.0029280143789947033, 0.0008425870328210294, -0.055873457342386246, 0.032611943781375885, 0.06054486334323883, 0.06336096674203873, 0.04137328267097473, 0.007345944177359343, -0.030523650348186493, 0.05005989223718643, -0.012412166222929955, -0.010916494764387608, 0.05278754606842995, -0.0456005223095417, -0.015333990566432476, -0.0019617555662989616, -0.01623895764350891, 0.030520789325237274, -0.04388557747006416, 0.03730682283639908, -0.027254261076450348, -0.030011657625436783, -0.05941329151391983, -0.0004980430821888149, -0.0009378439281135798, 0.038675591349601746, -0.058372076600790024, -0.024711577221751213, -0.0200679749250412, -0.004273124970495701, 0.0496676042675972, -0.0377466082572937, 0.01819010265171528, 0.0327906534075737, 0.014711696654558182, 0.030430663377046585, 0.04374340921640396, -0.0321444533765316, 0.00901592243462801, 0.009035160765051842, -0.0007376325083896518, 0.012687664479017258, -0.028191901743412018, 0.02413129433989525, -0.040288399904966354, 0.03418336436152458, -0.006680315360426903, -0.027291452512145042, -0.04799235239624977, 0.11885909736156464, 0.017717111855745316, 0.008957041427493095, 0.03611805662512779, 0.011580773629248142, -0.04231270030140877, -0.016968505457043648, -0.007309040520340204, 0.017998067662119865, -0.07494699954986572, -0.00891074351966381, 0.11777354776859283, 0.11714755743741989, -0.06872743368148804, -0.005115448497235775, 0.019440308213233948, 0.011348326690495014, -0.0063402000814676285, -0.014159484766423702, -0.005658108275383711, -0.013097093440592289, -0.004095846321433783, -0.013933378271758556, 0.06334635615348816, -0.08095357567071915, -0.039739299565553665, 0.019610097631812096, 0.04065880551934242, -0.00920743029564619, 0.0232778899371624, 0.012411091476678848, -0.012489564716815948, 0.0034973130095750093, -0.08957713097333908, -0.0030800397507846355, 0.07087521255016327, 0.015759071335196495, 0.013312926515936852, 0.019261879846453667, -0.01831977628171444, -0.0067994315177202225, 0.003692861646413803, 0.02971840463578701, 0.0369730219244957, 0.02325536496937275, -0.017868272960186005, -0.02462822012603283, -0.043963801115751266, -0.07336094230413437, 0.030142243951559067, -0.046245232224464417, 0.030980277806520462, -0.008619550615549088, 0.004126012325286865, 0.01690598390996456, 0.03141902759671211, -0.043504197150468826, -0.014477442018687725, -0.01880115270614624, 0.010981928557157516, 0.010844879783689976, 0.02124980464577675, 0.015607012435793877, 0.0056353905238211155, -0.018613537773489952, 2.7525447876541875e-07, -0.01160914171487093, 0.05161188915371895, 0.011162317357957363, -0.03614763915538788, 0.05671199411153793, -0.05421790853142738, 0.003428129944950342, 0.023681748658418655, 0.07873313128948212, 0.039640482515096664, 0.019012564793229103, -0.006529534235596657, -0.04855391010642052, 0.024363767355680466, 0.02931474708020687, -0.10433045774698257, -0.06395892053842545, -0.02846333757042885, -0.003368991194292903, -0.01968967914581299, 0.04261322692036629, -0.025236252695322037, 0.006083029787987471, 0.010992426425218582, -0.014412619173526764, 0.018958963453769684, -0.02561255916953087, 0.04409804567694664, -0.056716155260801315, -0.026278430595993996, 0.076699398458004, -0.03662745654582977, 0.012246922589838505, 0.03363773226737976, 0.01171718817204237, 0.03430558368563652, -0.01847955957055092, -0.03739351034164429, -0.024158382788300514, 0.04272869974374771, -0.02142912708222866, -0.025335708633065224, 0.00344472355209291, -0.0018032126827165484, 0.03519211336970329, 0.04069162905216217, -0.009801017120480537, -0.05182163417339325, -0.005339931230992079, -0.051312923431396484, -0.024949153885245323, 0.07320664823055267, -0.032000813633203506, -0.031126245856285095, 0.0313124842941761, 0.015023769810795784, -0.015283389016985893, 0.041990023106336594, 0.01517739798873663, -0.003050637897104025, -0.00014100871339906007, -0.033617570996284485, 0.018792591989040375, 0.04565126821398735, -0.04032813757658005, 0.0010809832019731402, 0.02030874416232109, 2.359942662519979e-34, 0.02501724474132061, -0.051113028079271317, -0.028729110956192017, -0.045356664806604385, -0.004953421652317047, 0.03757454827427864, 0.004717650823295116, -0.0008945994195528328, -0.005573767703026533, -0.02668146602809429, -0.004480904433876276], "7e725ce8-52cb-49c5-8e0a-bd6d4c21728d": [0.015345999971032143, -0.028307266533374786, 0.007875356823205948, 0.014010054059326649, -0.030346721410751343, 0.024035625159740448, -0.009645482525229454, 0.005306726787239313, -0.008386730216443539, 0.006539271678775549, 0.04951128363609314, -0.011902747675776482, -0.021295800805091858, 0.013871986418962479, -0.08160804957151413, -0.03990083932876587, 0.005781630519777536, -0.01560607086867094, 0.024454208090901375, -0.008961077779531479, 0.025329699739813805, 0.011435662396252155, -0.002093166345730424, 0.02937796711921692, -0.07222305983304977, -0.015729833394289017, -0.0017220209119841456, 0.00812083575874567, -0.009697402827441692, -0.050640568137168884, -0.026871733367443085, 0.03395683690905571, -0.034552522003650665, -0.002111476380378008, 2.055385266430676e-06, 0.022133944556117058, 0.0045324224047362804, -0.03149735555052757, 0.02481561154127121, -0.01386942993849516, 0.05267219990491867, -0.09019724279642105, 0.03548585623502731, 0.010135184973478317, -0.013445933349430561, 0.0027549290098249912, 0.009585217572748661, 0.0014738746685907245, 0.0701860785484314, -0.10068037360906601, 0.009690430015325546, -0.026781858876347542, -0.07845322042703629, -0.004041367210447788, 0.0020176509860903025, -0.15178851783275604, -0.02362513542175293, -0.011562745086848736, -0.022525809705257416, -0.008763397112488747, -0.01284045074135065, -0.019162651151418686, 0.006758859381079674, -0.02902110666036606, 0.05871696397662163, 0.006324545480310917, 0.02245837077498436, -0.008937148377299309, 0.00231230934150517, -0.020459584891796112, 0.061219245195388794, 0.026943862438201904, -0.029402144253253937, 0.033742111176252365, 0.052431799471378326, -0.01972704380750656, 0.020408742129802704, -0.02102060057222843, -0.046706900000572205, -0.007065012119710445, -0.034583114087581635, 0.03750770911574364, -0.04295925796031952, -0.041407112032175064, -0.007846969179809093, 0.04108035936951637, -0.011429480277001858, -0.024932505562901497, -0.00858329888433218, 0.06555315852165222, 0.05046326667070389, -0.002195866545662284, -0.00473649799823761, 0.03363868594169617, 0.01247105747461319, -0.025672167539596558, 0.017072319984436035, -0.07458654046058655, -0.046717431396245956, 0.028902215883135796, -0.03923051804304123, 0.0033955732360482216, 0.024808546528220177, 0.04933498799800873, -0.02749105915427208, -0.0004331836535129696, 0.03714156895875931, -0.017261726781725883, 0.023291923105716705, -0.01787034049630165, 0.01955319382250309, 0.02128189615905285, -0.018312104046344757, 0.028083186596632004, 0.045858003199100494, 0.007755791302770376, -0.010719331912696362, 0.03900021314620972, 0.06215449795126915, 0.036739084869623184, 0.07744352519512177, 0.01460800226777792, -0.004169245716184378, 0.01449214294552803, -0.03981960937380791, -0.05283413454890251, -0.014956694096326828, -0.014317055232822895, 0.03441188111901283, 0.09819638729095459, -0.006726546678692102, -0.0600585900247097, -0.006914688739925623, 0.08117587864398956, 0.006280444096773863, 0.007490295451134443, 0.016800742596387863, 0.02667888253927231, -0.028847401961684227, 0.007196610793471336, -0.0062728263437747955, 0.0012819216353818774, -0.0503506101667881, -0.017467185854911804, -0.10435213893651962, -0.0073509979993104935, -0.019475284963846207, -0.005096547305583954, 0.015873590484261513, 0.04002194479107857, 0.026367781683802605, -0.0007964536780491471, 0.01310104038566351, 0.01012161560356617, -0.11707945168018341, 0.009487788192927837, 0.0036219803150743246, -0.008600804023444653, 0.05474371090531349, 0.0426497757434845, -0.02066413313150406, 0.006723401136696339, -0.01595604233443737, 0.017199579626321793, -0.028229419142007828, 0.0306704081594944, 0.013579786755144596, -0.03669250011444092, 0.02285917103290558, 0.013012852519750595, -0.03585558384656906, 0.06275036931037903, 0.0036401445977389812, 0.06408094614744186, -0.005467074457556009, 0.013638368807733059, 0.026962457224726677, -0.011718799360096455, 0.05674082785844803, -0.04303176701068878, -0.01074956078082323, -0.04283564165234566, -0.017980195581912994, 0.055421385914087296, 0.10717712342739105, 0.01479264721274376, -0.031143054366111755, 0.05826430022716522, -0.03701833263039589, 0.011245599016547203, 0.003904948942363262, 0.018194181844592094, 0.0037953255232423544, -0.01138345804065466, -0.026253970339894295, 0.00952831655740738, -0.04408619552850723, -0.02399006113409996, -0.0008464744896627963, 0.00703986082226038, 0.03257804736495018, -0.0243596863001585, 0.06055685132741928, 0.06125876307487488, 0.010682343505322933, 0.02028336189687252, -0.019612712785601616, -0.023036157712340355, 0.0038685891777276993, -0.036757130175828934, 0.034669555723667145, 0.012886907905340195, -0.04727710410952568, 0.015383588150143623, -0.05719025433063507, 0.05687596648931503, -0.00692018773406744, 0.005405919160693884, -0.06696554273366928, -0.03553300350904465, -0.025985298678278923, -0.07613049447536469, -0.04353645071387291, 0.0581517294049263, 0.02240557037293911, -0.01140537764877081, 0.040584322065114975, -0.04052917659282684, -0.026154473423957825, 0.004898068495094776, 0.013004529289901257, 0.015429708175361156, -0.01371967326849699, 0.0016665479633957148, 0.11236714571714401, 0.07447204738855362, -0.0006532346014864743, -0.03500175476074219, 0.03347471356391907, -0.014503832906484604, -0.013020256534218788, 0.015979323536157608, 0.028864754363894463, -0.017857570201158524, 0.0655565857887268, 0.017540063709020615, -0.02042476460337639, -0.01043635979294777, -0.035613950341939926, -0.0032056572381407022, -0.016497358679771423, 0.052619148045778275, -0.01487049926072359, 0.02583104372024536, -0.04283619299530983, -0.023053864017128944, -0.01657184772193432, 0.0035511378664523363, 0.007435920182615519, 0.02512093260884285, -0.00963111687451601, 0.018644673749804497, -0.018202081322669983, 0.011657888069748878, 0.09146519005298615, -0.01166608091443777, -0.07459049671888351, 0.020545195788145065, -0.03760971128940582, -0.001706454437226057, 0.014921206049621105, -0.05367865040898323, 0.001067427103407681, 0.007409488782286644, -0.028029631823301315, -0.005563680082559586, -0.015952320769429207, 0.09824521839618683, -0.032310642302036285, 0.011677694506943226, 0.03832129016518593, -0.026399370282888412, -0.0060017965734004974, 0.03761657327413559, 0.008192340843379498, -0.010748345404863358, 0.052160829305648804, -0.0432915985584259, -0.04115193337202072, 0.010070719756186008, 0.012759067118167877, -0.03402876853942871, 0.014544635079801083, 0.020707931369543076, 0.02137540467083454, 0.015119286254048347, 0.0510774627327919, -0.00031848764047026634, -0.02701975405216217, 0.007459269370883703, 0.003089189762249589, -0.028560055419802666, -0.01167804840952158, -0.017811842262744904, 0.040070921182632446, -0.025350702926516533, -0.00011341071513015777, 0.04313115030527115, -0.013695532456040382, -0.016129953786730766, -0.029280265793204308, -0.007711757905781269, -0.01457423996180296, -0.009569057263433933, 0.0005776346661150455, -0.0043197013437747955, 0.031676582992076874, -0.0038873234298080206, -0.0367557518184185, 0.0029010390862822533, -0.03286336734890938, -0.027495799586176872, -0.027899617329239845, 0.013339914381504059, -0.026209615170955658, -0.03890888765454292, -0.0022817649878561497, -0.019188012927770615, 0.07736845314502716, -0.037387408316135406, -0.009406820870935917, -0.004114375915378332, -0.03496495261788368, 0.00903052743524313, 0.012849132530391216, 0.006896428298205137, 0.0368155874311924, -0.025563273578882217, -0.009533469565212727, 0.009009389206767082, -0.03232083469629288, 0.03360442817211151, -0.04148435592651367, -0.024279948323965073, -0.0023140907287597656, 0.02938711829483509, -0.0035226247273385525, 0.03916076943278313, -0.004003925248980522, -0.006291574332863092, -0.007927718572318554, -0.016469726338982582, -0.039582014083862305, -0.02226935885846615, -0.034138184040784836, -0.08463653177022934, -0.0417928546667099, -0.04413296654820442, -0.02555597946047783, -0.07983775436878204, 0.01617344655096531, 0.022235706448554993, 0.03023689240217209, -0.02522127702832222, 0.012160264886915684, -0.031694039702415466, 0.02211373671889305, 0.032655391842126846, 0.060729656368494034, 0.07818581163883209, -0.013948151841759682, 0.020829711109399796, -0.06802819669246674, -0.007049887906759977, 0.005591599736362696, -0.0707727000117302, -0.003371719503775239, 0.04606873169541359, 0.045009907335042953, -0.00037693846388719976, -0.029366040602326393, 0.009045863524079323, 0.05803471431136131, 0.011051854118704796, 0.023153996095061302, 0.017066627740859985, -0.020483175292611122, -0.03511591628193855, 0.06104379519820213, 0.023209653794765472, 0.017749572172760963, 0.020954322069883347, -0.06588666886091232, 0.05456142500042915, 0.010349756106734276, 0.008466106839478016, -0.006427090149372816, 0.03190520405769348, -0.027111774310469627, -0.004609804600477219, 0.009054931811988354, -0.016701241955161095, -0.009661714546382427, 0.044557590037584305, -0.047071415930986404, 0.02031606063246727, 0.013334332965314388, -0.039294224232435226, 0.004383155610412359, -0.0032797136809676886, 0.03535328805446625, 0.04009443521499634, -0.022325467318296432, 0.0008759925258345902, -0.01617373153567314, -0.03571533411741257, -0.012532380409538746, 0.013455023989081383, 0.017721587792038918, 0.014375262893736362, 0.04708223417401314, 0.026430191472172737, -0.01930399239063263, -0.0528915598988533, 0.021188514307141304, 0.0031306669116020203, 0.0487246997654438, 0.0021877186372876167, -0.024980293586850166, 0.021347803995013237, -0.005805717781186104, 0.02062750793993473, 0.024144310504198074, 0.01887556165456772, -0.10382144898176193, 0.006600233726203442, -0.04501708596944809, -0.022078027948737144, 0.13729430735111237, 0.0396798774600029, -0.024900754913687706, 0.060569003224372864, 0.02289685234427452, 0.0031913414131850004, -0.015317454002797604, -0.10742590576410294, 0.025393787771463394, 0.06710498034954071, 0.004267086740583181, 0.017605146393179893, -0.0010897096944972873, -0.013830037787556648, -0.07919210195541382, -0.046217966824769974, 0.001445314846932888, 0.008543141186237335, -0.06177721917629242, -0.029024764895439148, 0.017443453893065453, 0.05312987416982651, 0.01581788994371891, 0.006896795239299536, -0.05951422452926636, 0.001672819722443819, 0.04068953916430473, -0.04699588939547539, -0.020803533494472504, 0.016118062660098076, -0.026672733947634697, 0.004882683977484703, 0.08061320334672928, 0.0020735457073897123, -0.007552111055701971, -0.029723748564720154, 0.0638827309012413, -0.002317670965567231, -0.03590307757258415, 0.007075618952512741, -0.0511985644698143, 0.02779516950249672, -0.02419104613363743, -0.04566949978470802, 0.018718507140874863, -0.04266493394970894, -0.039765577763319016, -0.040576912462711334, -0.03006812557578087, -0.015398548915982246, -0.01488520111888647, -0.007906336337327957, 0.018337951973080635, 0.0014227532083168626, 0.001297127571888268, 0.004444293212145567, -0.033019281923770905, 0.011494454927742481, -0.00848558358848095, 0.045191649347543716, -0.01171346940100193, -0.04695958271622658, -0.06156076118350029, 0.02168191410601139, -0.01870848797261715, -0.04369388148188591, -0.03693254292011261, -0.03166176751255989, 0.011816992424428463, -0.009034090675413609, -0.030928723514080048, 0.03557414561510086, -0.03512263670563698, 0.022286629304289818, 0.022380029782652855, 0.05927378311753273, 0.024832099676132202, -0.014170609414577484, 0.0008115303353406489, 0.07494010031223297, 0.009137311019003391, -0.048269931226968765, 0.016522912308573723, 0.0200971569865942, -0.010514574125409126, -0.024311525747179985, 0.04292823001742363, 0.020560037344694138, 0.0031500349286943674, -0.004490770865231752, -0.05180717259645462, 0.013682701624929905, 0.0003187166585121304, -0.03205503523349762, -0.05721583589911461, 0.05108951777219772, -0.015747549012303352, 0.060998912900686264, -0.02336171269416809, -0.034950245171785355, 0.0055804625153541565, -0.02436947077512741, -0.0179741308093071, 0.0501050166785717, 0.037006083875894547, 0.03276966139674187, -0.03040137141942978, 0.006338503211736679, -0.010853643529117107, 0.026811597868800163, 0.022719793021678925, -0.007073244545608759, -0.019606344401836395, -0.046722203493118286, 0.09735866636037827, -0.014977023005485535, -0.032686442136764526, -5.336909289284285e-33, -0.02419295720756054, 0.0024293353781104088, 0.05134209617972374, 0.050630394369363785, -0.017966479063034058, -0.007713646627962589, 0.04952246695756912, -0.037625379860401154, -0.03063826821744442, -0.030796363949775696, -0.003691426943987608, 0.015078941360116005, -0.03184158727526665, -0.025409618392586708, 0.08494479209184647, -0.03570514917373657, 0.0528874397277832, -0.03976180776953697, 0.004399478901177645, -0.01619715802371502, -0.052723828703165054, 0.015251757577061653, 0.07108620554208755, 0.04002664238214493, 0.0541047677397728, -0.002273603342473507, -0.04359949007630348, 0.06158388406038284, -0.004768726881593466, -0.020114457234740257, 0.03538930043578148, -0.06719271093606949, 0.005855817813426256, -0.01186756044626236, -0.012133613228797913, 0.022689180448651314, -0.04155687242746353, 0.03738043084740639, -0.050541602075099945, -0.0005436002393253148, -0.04756993055343628, -0.002370264148339629, 0.022669874131679535, 0.011092587374150753, -0.04257603734731674, -0.04072006419301033, -0.017457108944654465, 0.016637373715639114, 0.04528620466589928, -0.011745858937501907, 0.001354443491436541, 0.04362970590591431, 0.016368858516216278, 0.0034795335959643126, 0.056379321962594986, -0.03569875285029411, -0.026874182745814323, 0.02392531745135784, -0.01591932214796543, 0.0029976710211485624, -0.050875794142484665, -0.005247334949672222, -0.05715268850326538, 0.012585336342453957, 0.005443099420517683, -0.03136645630002022, -0.05436207726597786, 0.11347907781600952, 0.020055599510669708, -0.01634030044078827, 0.026676397770643234, -0.020004969090223312, -0.0015941422898322344, -0.024421267211437225, -0.029506905004382133, 0.038435522466897964, -0.039594586938619614, 0.01312415860593319, 0.14706090092658997, 0.12789437174797058, -0.06429430097341537, 0.010657431557774544, -0.02275725081562996, 0.021677453070878983, 0.0005907863960601389, -0.07143594324588776, 0.020138027146458626, -0.026498563587665558, -0.01744447834789753, -0.0017819595523178577, 0.006083131767809391, -0.0470043420791626, -0.004758314695209265, 0.0453941784799099, 0.07343434542417526, -0.011623733676970005, 0.013754934072494507, 0.003521313425153494, -0.008038927800953388, 0.00848989188671112, -0.08172878623008728, -0.00025515034212730825, 0.05637722462415695, 0.009543062187731266, -0.0028878289740532637, -0.022160956636071205, 0.011492418125271797, 0.0007925436948426068, -0.031194021925330162, 0.0009848830522969365, 0.04279186576604843, 0.034843482077121735, -0.01800767332315445, -0.006529579870402813, -0.022716423496603966, -0.04547358676791191, 0.016453392803668976, -0.005318844690918922, 0.021869271993637085, -0.030179398134350777, -0.02499379590153694, 0.032008424401283264, 0.02108890376985073, -0.03888995945453644, 0.0011124429292976856, -0.004552572965621948, 0.0007966654375195503, 0.014329232275485992, 0.044480931013822556, 0.049270302057266235, -0.009659498929977417, -0.013344147242605686, 2.7627470444713254e-07, 0.006940246094018221, 0.023360123857855797, -0.011967804282903671, -0.007245047017931938, 0.028155136853456497, -0.06255859136581421, 0.018082035705447197, 0.034267034381628036, 0.06440309435129166, 0.01815848983824253, 0.07328592985868454, 0.006780423689633608, -0.033967889845371246, 0.05098658800125122, 0.015458190813660622, -0.07720490545034409, -0.06543011218309402, -0.04929009824991226, 0.009437338449060917, -0.04475438967347145, 0.04528426751494408, -0.016471726819872856, 0.004825366195291281, 0.0203927643597126, -0.016521558165550232, -0.03761190548539162, -0.0007827564259059727, 0.054323043674230576, -0.07335323840379715, -0.010914205573499203, 0.06955818831920624, -0.04824761673808098, -4.54633918707259e-05, 0.03392231836915016, 0.025403833016753197, 0.02998415008187294, 0.009780105203390121, -0.034437891095876694, -0.01408479269593954, 0.022357100620865822, -0.0028909980319440365, -0.004339104052633047, -0.013808001764118671, 0.01698342151939869, 0.05092821642756462, 0.03139565512537956, -0.021122992038726807, -0.035563647747039795, 0.006311831530183554, -0.037024129182100296, -0.00847422331571579, 0.06872718036174774, -0.005892524030059576, 0.018711822107434273, 0.04376677796244621, 0.0037451256066560745, -0.03327995166182518, 0.06693229079246521, 0.022999130189418793, 0.0047241938300430775, -0.006158353295177221, -0.04876565933227539, 0.045198917388916016, 0.015379305928945541, -0.047592487186193466, -0.012590163387358189, 0.02282031998038292, 2.3351649864790723e-34, 0.01303998101502657, -0.05168818309903145, 0.0006541252951137722, -0.046106696128845215, -0.034943997859954834, 0.02178988792002201, 0.018005991354584694, -0.039198026061058044, 0.022596314549446106, -0.03481295704841614, 0.006844482850283384], "5e5445b6-8ec1-4ab0-ace9-d2f41365a640": [-0.0034104345832020044, -0.03288375586271286, -0.0028383363969624043, 0.03151269257068634, -0.011420557275414467, 0.06466152518987656, -0.014840452000498772, 0.0409916453063488, -0.009603340178728104, -0.0027449687477201223, 0.022228144109249115, 0.010742048732936382, -0.02265448309481144, 0.00547031918540597, -0.04817051813006401, -0.00429560849443078, 0.002030941192060709, 0.0024637954775243998, 0.021300531923770905, -0.013055210001766682, 0.06463995575904846, 0.010127483867108822, 0.007655153516680002, 0.02277798391878605, -0.08215823769569397, 0.005023045465350151, 0.02364453114569187, -0.0035656068939715624, 0.001998710911720991, -0.046270206570625305, -0.03613809123635292, 0.017431998625397682, -0.04768743738532066, 0.0012494099792093039, 1.9779854483203962e-06, 0.04563472047448158, 0.008722864091396332, -0.029517656192183495, 0.03895588219165802, -0.013929145410656929, 0.040445342659950256, -0.04256400465965271, 0.012645047158002853, 0.028414232656359673, -0.015352604910731316, -0.02929014526307583, 0.0327906459569931, 0.005564454011619091, 0.06331267952919006, -0.059458114206790924, 0.006291171070188284, -0.011554840952157974, -0.07398313283920288, -0.024654477834701538, -0.0060976045206189156, -0.19759491086006165, 0.00016315290122292936, -0.029250988736748695, -0.014210376888513565, -0.0038345896173268557, -0.04730458930134773, -0.028210729360580444, -0.009923497214913368, -0.019890716299414635, -0.0181661956012249, 0.0022190012969076633, 0.03604283556342125, -0.005954316817224026, 0.01540547888725996, -0.0137206194922328, 0.053921766579151154, 0.03949422016739845, -0.024287724867463112, 0.05513996630907059, 0.04982093721628189, 0.015210768207907677, 0.047694478183984756, -0.031266581267118454, -0.05945773050189018, 0.0159116480499506, -0.027451995760202408, 0.018610255792737007, -0.05040036141872406, -0.026851490139961243, -0.01311260461807251, 0.01546650193631649, -0.002416016301140189, -0.02039489895105362, 0.024155469611287117, 0.06624138355255127, 0.02359449304640293, 0.010497509501874447, -0.04881571978330612, 0.011920660734176636, 0.0031170586589723825, -0.022211147472262383, 0.022458724677562714, -0.07597719132900238, -0.05099674314260483, 0.030544709414243698, -0.03524257242679596, 0.03625781089067459, 0.02341780811548233, 0.029722068458795547, -0.015275822952389717, 0.02289803884923458, -0.011076771654188633, -0.014194230549037457, 0.008868582546710968, -0.016183502972126007, -0.0025001761969178915, 0.024572860449552536, -0.014364243485033512, 0.013539151288568974, 0.04109259694814682, 0.01753348670899868, -0.039705563336610794, 0.02333146333694458, 0.01638924703001976, 0.02917107194662094, 0.03243566304445267, -0.0004372602852527052, -0.01600940339267254, 0.03548134118318558, -0.033008866012096405, -0.046970807015895844, -0.003735928563401103, -0.01642708294093609, 0.05485623702406883, 0.0502857007086277, -0.007861051708459854, -0.06477834284305573, -0.026757316663861275, 0.09144753962755203, -0.010604503564536572, -0.013464431278407574, 0.02750888094305992, 0.015080036595463753, -0.0003820548881776631, 0.020242158323526382, -0.019092394039034843, -0.0028573612216860056, -0.03073776513338089, 0.003029758809134364, -0.10034961998462677, -0.006605377420783043, -0.010333566926419735, -0.04479440301656723, 0.015671972185373306, 0.03729322552680969, 0.044125061482191086, 0.012782985344529152, -0.010653148405253887, -0.0033083269372582436, -0.1402548849582672, 0.0024567770306020975, -0.0298685971647501, -0.028811970725655556, 0.03804514557123184, 0.02121526002883911, -0.03646153211593628, 0.0016637289663776755, -0.0014801491051912308, -0.01384003832936287, 0.011374828405678272, 0.006175660993903875, 0.01640644669532776, -0.04096539318561554, 0.03145661950111389, 0.03574365749955177, -0.03204641491174698, 0.05217849090695381, -0.0090002017095685, 0.07107487320899963, -0.013127386569976807, 0.010639281012117863, 0.029557405039668083, 0.010449139401316643, 0.032208092510700226, -0.031527068465948105, -0.02741500549018383, -0.022321093827486038, -0.040304094552993774, 0.016742490231990814, 0.07726586610078812, 0.02614702098071575, -0.020926307886838913, 0.05734055116772652, -0.045659974217414856, -0.011501980945467949, 0.005522830877453089, 0.0043214769102633, 0.011193233542144299, 0.018360331654548645, 0.0006009053322486579, 0.0116700055077672, -0.0529649592936039, -0.04263122007250786, 0.0005613245302811265, 0.026499725878238678, 0.04202325642108917, -0.07305207848548889, 0.07951156795024872, 0.032319825142621994, -0.00881735235452652, -0.006972001399844885, 0.02849395014345646, -0.027103055268526077, -0.006078293081372976, -0.010875331237912178, 0.0421861968934536, 0.0032055203337222338, -0.05558287724852562, 0.010349748656153679, -0.04859220236539841, 0.013943417929112911, -0.043056853115558624, 0.01908653788268566, -0.0835956558585167, -0.020134834572672844, -0.03524531424045563, -0.046726252883672714, -0.01883377693593502, 0.049808572977781296, 0.02569938451051712, -0.014040709473192692, 0.0047411019913852215, -0.06459712982177734, -0.03289763256907463, -0.01827104203402996, 0.01470368355512619, 0.036688413470983505, -0.029806382954120636, 0.005125370342284441, 0.1217479556798935, 0.041068803519010544, -0.021051665768027306, -0.06234337389469147, 0.03990953415632248, -0.007006993051618338, 0.0051320623606443405, 0.06266730278730392, 0.0062879836186766624, -0.008585270494222641, 0.05564229562878609, 0.018326018005609512, 0.0212477408349514, -0.006169919390231371, -0.026319187134504318, 0.01201717834919691, 0.011348170228302479, 0.027135860174894333, -0.0032311424147337675, 0.04625208303332329, -0.02070673555135727, -0.060628265142440796, -0.018258586525917053, -0.0015304808039218187, -0.006146647501736879, 0.03785174340009689, -0.030379662290215492, 0.032299723476171494, -0.01307891309261322, 0.006171888671815395, 0.06191995367407799, -0.02146969549357891, -0.0589713528752327, 0.025189636275172234, -0.03433213755488396, 0.015129191800951958, -0.004876425955444574, -0.056605368852615356, -0.007424726150929928, -0.0004736639093607664, -0.02734287828207016, 0.0005708544049412012, -0.02850637212395668, 0.10030145198106766, -0.012074609287083149, -0.00039665037184022367, 0.034667741507291794, -0.024130648002028465, 0.010760745964944363, 0.028208067640662193, 0.022810669615864754, 0.002232414437457919, 0.0773250162601471, -0.03150515630841255, -0.031173553317785263, 0.029084492474794388, 0.009172618389129639, -0.04538128525018692, 0.0070028118789196014, 0.005490584764629602, 0.014850976876914501, 0.014026941731572151, 0.061007168143987656, -0.017404945567250252, -0.022121582180261612, 0.024971405044198036, 0.0045888302847743034, -0.020785709843039513, -0.05053608492016792, -0.006711187772452831, 0.024711105972528458, -0.015363802202045918, -0.0029818869661539793, 0.056404922157526016, -0.01967025175690651, -0.030585801228880882, -0.027678776532411575, -0.0036788522265851498, 0.0030343206599354744, 0.019220229238271713, 0.01614377647638321, -0.014821808785200119, -0.013389553874731064, -0.005794683005660772, -0.02032027766108513, 0.0054909843020141125, -0.02066543884575367, -0.04422173276543617, -0.03488372266292572, 0.02670150250196457, 2.3113239876693115e-05, -0.04672055318951607, 0.006550444755703211, -0.0049897124990820885, 0.0904579758644104, -0.01836295612156391, -0.004642363637685776, 0.02724187821149826, -0.01568964496254921, 0.03634697571396828, 0.004746861755847931, 0.029818927869200706, 0.02976507693529129, -0.033809203654527664, 0.005193730350583792, 0.02788121998310089, -0.043827805668115616, 0.00041372011764906347, -0.036420103162527084, -0.03415747731924057, 0.019004464149475098, 0.013337969779968262, -0.03973184898495674, 0.033490750938653946, -0.005136234685778618, -0.020991414785385132, -0.006886701565235853, -0.0352211631834507, -0.028857124969363213, -0.05184538662433624, -0.014133215881884098, -0.08465498685836792, -0.029615573585033417, -0.01829521171748638, -0.018564147874712944, -0.0929017886519432, 0.04533088579773903, 0.02357153221964836, 0.022417040541768074, -0.025872087106108665, 0.012488315813243389, -0.018423009663820267, 0.008674325421452522, 0.021281061694025993, 0.023079074919223785, 0.07385911047458649, 0.0007532965391874313, 0.018649395555257797, -0.09598653763532639, -2.520805355743505e-05, -0.00509133655577898, -0.04996921122074127, 0.008523023687303066, 0.0018818889511749148, 0.06767885386943817, 0.023304305970668793, -0.008730067871510983, 0.012361316941678524, 0.05679335445165634, 0.013645675033330917, 0.028390681371092796, 0.0009140422334894538, -0.03655890002846718, -0.01648348569869995, 0.050483278930187225, 0.04164191335439682, 0.011902757920324802, -0.0030252677388489246, -0.10786304622888565, 0.05953562632203102, 0.025266747921705246, 0.027278292924165726, 0.034272775053977966, 0.01184381265193224, -0.0073946258053183556, 0.015159761533141136, 0.03093622997403145, -0.03553798794746399, -0.032004933804273605, 0.039329931139945984, -0.015307916328310966, 0.022316575050354004, 0.012537049129605293, -0.028982706367969513, 0.0103572066873312, -0.0196079034358263, 0.07036516815423965, 0.048229292035102844, -0.054222483187913895, -0.012073765508830547, 0.009805219247937202, -0.008111221715807915, -0.03002062439918518, 0.004794091451913118, 0.014972222968935966, -0.007527944166213274, 0.05493625998497009, -0.005998937878757715, 0.011598747223615646, -0.0434124656021595, 0.055859893560409546, 0.0172911174595356, 0.040685608983039856, 0.01066229771822691, -0.0002303588844370097, 0.020277319476008415, 0.018848320469260216, -0.007559382822364569, 0.02400391176342964, -0.011034667491912842, -0.07411865890026093, -0.010564539581537247, -0.02853572741150856, -0.00333183235488832, 0.1305864006280899, 0.04689626395702362, -0.03059413656592369, 0.06749797612428665, 0.033930666744709015, -0.03173845261335373, -0.017916860058903694, -0.1097225546836853, 0.03708694875240326, 0.06143151968717575, 0.042073339223861694, 0.02521124668419361, 0.005315498914569616, -0.02768685668706894, -0.04436070844531059, -0.023166745901107788, 0.0036099280696362257, 0.019285019487142563, -0.059418100863695145, -0.0034885485656559467, 0.016617178916931152, 0.07277156412601471, 0.045111678540706635, 0.009197399020195007, -0.05156392604112625, 0.011985589750111103, 0.02385401539504528, -0.04861666262149811, -0.05409106984734535, -0.011928413063287735, -0.005052517168223858, 0.0009564881911501288, 0.06953971832990646, -0.004998403135687113, -0.008437911979854107, -0.027839841321110725, 0.06844089925289154, 0.007514834403991699, -0.038148555904626846, 0.028446994721889496, -0.028905516490340233, 0.05567142367362976, 0.001687340554781258, -0.05329730734229088, 0.02119326777756214, -0.02091524936258793, -0.05129709094762802, -0.07555753737688065, -0.0425361692905426, -0.00036087731132283807, -0.029389597475528717, -0.008584385737776756, 0.03849142789840698, 0.00710934866219759, -0.008004680275917053, -0.02138197422027588, -0.028471797704696655, -0.001374344457872212, -0.025760186836123466, 0.04512174427509308, -0.004166031256318092, -0.016795039176940918, -0.06759197264909744, 0.001783860265277326, 0.011204162612557411, -0.030719518661499023, -0.0493297316133976, -0.0009491912787780166, -0.004104982130229473, 0.018504125997424126, -0.009486091323196888, 0.02582867443561554, -0.00595716992393136, 0.028836717829108238, -0.0026291124522686005, -0.001970425946637988, 0.03172508254647255, -0.0644107535481453, -0.0027097000274807215, 0.08799996972084045, -0.027714518830180168, -0.03276577591896057, 0.019936539232730865, 0.02784799039363861, 0.012297938577830791, -0.014947648160159588, 0.028106654062867165, 0.060265496373176575, -0.01761324517428875, -0.00581195717677474, -0.02209298685193062, 0.005339720752090216, 0.0048656342551112175, -0.011499281972646713, -0.051757071167230606, 0.027077950537204742, -0.02751154825091362, 0.0199631005525589, -0.04519945755600929, -0.056409284472465515, 0.01674645207822323, -0.02393180876970291, -0.01396454218775034, 0.018713969737291336, 0.0254074614495039, 0.03050983138382435, -0.03240330517292023, 0.0008313411381095648, 0.002889790805056691, 0.012960749678313732, 0.04168269783258438, 0.005147390998899937, -0.018908793106675148, -0.02262844704091549, 0.11858529597520828, -0.024720989167690277, -0.014131472446024418, -5.182210559296226e-33, -0.03581797331571579, -9.674420289229602e-05, 0.043327998369932175, 0.04612559452652931, -0.033102117478847504, 0.009360749274492264, 0.044020313769578934, -0.03646114096045494, -0.04053937643766403, -0.027245601639151573, 0.009842416271567345, 0.020495112985372543, -0.025025013834238052, -0.003467413829639554, 0.036283351480960846, -0.052293095737695694, 0.04435724392533302, -0.008997660130262375, 0.012680579908192158, -0.01825667917728424, -0.02604219876229763, 0.025855403393507004, 0.05275272578001022, 0.024655170738697052, 0.03753858432173729, 0.007350243162363768, -0.042212095111608505, 0.06779387593269348, -0.010321306064724922, -0.007874969393014908, 0.035387758165597916, -0.02455609105527401, 0.000227249605813995, -0.010397354140877724, -0.015402497723698616, 0.012739578261971474, -0.055497635155916214, 0.03310656175017357, -0.050466008484363556, -0.02580314315855503, -0.031405795365571976, 0.0020622489973902702, 0.03607489541172981, 0.020756283774971962, -0.03450131043791771, -0.02127152495086193, -0.016712212935090065, 0.0017575175734236836, 0.030619777739048004, -0.02998530864715576, -0.015477761626243591, 0.06415481865406036, -0.0008043195703066885, 0.016520313918590546, 0.009949254803359509, -0.018131786957383156, -0.0038708574138581753, 0.02981642447412014, -0.052520740777254105, -0.017286911606788635, -0.054716113954782486, 0.013693531043827534, -0.0355110727250576, 0.047541383653879166, -0.005569724831730127, -0.04057914391160011, -0.03720952942967415, 0.09552667289972305, 0.0162140354514122, -0.017712455242872238, 0.024850046262145042, -0.029049215838313103, 0.004477353300899267, -0.015527317300438881, -0.002260541543364525, 0.04401515796780586, -0.0787421390414238, 0.026958884671330452, 0.1352003514766693, 0.12405429035425186, -0.050187207758426666, 0.011734076775610447, -0.06933467090129852, 0.013615671545267105, -0.0015967051731422544, -0.007688777521252632, 0.015732716768980026, -0.02680097706615925, 0.00472968490794301, -0.0195076335221529, 0.035356830805540085, -0.04772716388106346, -0.014649568125605583, 0.025776157155632973, 0.09253320097923279, -0.06101394072175026, 0.009142200462520123, -0.0006445297040045261, -0.024126289412379265, -0.00471904780715704, -0.06284548342227936, 0.0006260678637772799, 0.053709976375103, 0.03471086174249649, 0.019645974040031433, -0.02810172736644745, 0.0032438253983855247, 0.025839991867542267, -0.035891998559236526, 0.011937565170228481, 0.03094830922782421, 0.05159216374158859, -0.01682226173579693, 0.012933842837810516, -0.023044899106025696, -0.046829041093587875, -0.0010841584298759699, -0.009686966426670551, 0.01101395022124052, -0.021352365612983704, -0.0355648472905159, 0.05291824787855148, 0.044676873832941055, -0.05060002580285072, -0.010138181038200855, -0.017321495339274406, 0.010128365829586983, 0.03707496076822281, 0.05562947690486908, 0.031754810363054276, -0.001974432496353984, -0.026739973574876785, 2.699978551845561e-07, 0.024083498865365982, -0.013250986114144325, -0.010361374355852604, -0.04011363163590431, -0.027391700074076653, -0.05396629124879837, 0.02194243296980858, 0.04679897055029869, 0.043042976409196854, 0.042556148022413254, 0.0620870441198349, -0.0012359959073364735, -0.03891139104962349, 0.020405994728207588, 0.0724598839879036, -0.05196843296289444, -0.07160688936710358, -0.022979719564318657, 0.018570290878415108, -0.014416774734854698, 0.04374244809150696, -0.003318922361359, 0.009465795010328293, 0.0015174484578892589, -0.025912782177329063, 0.010647717863321304, 0.02572259120643139, 0.013234531506896019, -0.09398328512907028, -0.040393318980932236, 0.09399807453155518, -0.023872511461377144, -0.015624886378645897, 0.008321288973093033, 0.016835879534482956, 0.04799603670835495, -0.023004045709967613, -0.04219129681587219, -0.03307313099503517, 0.02347407117486, 0.0011882969411090016, -0.013403492979705334, -0.014954672195017338, 0.025584815070033073, 0.030642060562968254, 0.03135083615779877, -0.01806190051138401, -0.008638706058263779, 0.01880527101457119, -0.05786380544304848, 0.007751007564365864, 0.053127191960811615, -0.019301021471619606, 0.005300607066601515, 0.03326514735817909, -0.022895753383636475, -0.038799185305833817, 0.059184130281209946, 0.012570410966873169, 0.00026146406889893115, -0.013565209694206715, -0.019550034776329994, 0.022972838953137398, 0.0009839338017627597, -0.025720497593283653, -0.0379498191177845, 0.02089560776948929, 2.2628045848138255e-34, 0.027386799454689026, -0.06394962221384048, -0.01201683096587658, -0.024215854704380035, -0.013047403655946255, 0.0406782440841198, -0.015744240954518318, -0.013879234902560711, 0.018489714711904526, -0.0282941572368145, 0.014328328892588615], "06acc6e2-25e8-4bf3-9fae-e254fa4a09da": [0.022818710654973984, 0.019577501341700554, 0.005061487201601267, -0.004186853766441345, 0.013708504848182201, 0.049525171518325806, -0.03415331989526749, 0.0335228405892849, -0.03715679422020912, -0.004932767245918512, 0.013314543291926384, 0.04377584159374237, -0.00395220099017024, 0.02999904938042164, -0.050856683403253555, -0.009819201193749905, 0.003821008838713169, 0.016071593388915062, 0.04356352612376213, -0.009700422175228596, 0.05410007759928703, 0.0012546180514618754, -0.02247367613017559, 0.023266641423106194, -0.08029795438051224, 0.006809766869992018, 0.011305983178317547, 0.007127152290195227, 0.019966747611761093, -0.05898330360651016, -0.03047236241400242, 0.02441955730319023, -0.023618588224053383, -0.031137514859437943, 2.0598008632077836e-06, 0.00738028809428215, 0.008393668569624424, -0.021796951070427895, 0.00226047751493752, -0.004357986152172089, 0.051954519003629684, -0.04240119829773903, -0.0170049536973238, 0.017896002158522606, -0.001630751066841185, -0.023326165974140167, 0.03807070478796959, -0.004543776623904705, 0.07024873793125153, -0.06148812919855118, 0.010111837647855282, -0.07204467803239822, -0.05616238713264465, -0.023023154586553574, 0.01883063279092312, -0.17698533833026886, 0.009306260384619236, -0.0016182727413251996, -0.027052249759435654, 0.003980983980000019, -0.058600060641765594, -0.045170560479164124, -0.018315909430384636, -0.014301826246082783, 0.013425452634692192, 0.00046341269626282156, 0.0368797667324543, -0.020580535754561424, 0.023933513090014458, -0.01580480858683586, 0.05534163862466812, 0.0408385768532753, -0.02124778740108013, 0.03794768080115318, 0.06271065026521683, -0.04583214968442917, 0.03547875955700874, -0.010692451149225235, -0.05494574457406998, 0.013006407767534256, 0.010828564874827862, 0.022958237677812576, -0.04596719518303871, -0.020041627809405327, -0.026755262166261673, 0.04438313841819763, -0.003641658229753375, -0.0277557410299778, 0.026150735095143318, 0.05204027518630028, 0.03698020428419113, 0.0036931075155735016, -0.06371702253818512, 0.0071740830317139626, -0.004187819082289934, 0.007617703638970852, 0.01505579985678196, -0.06902065128087997, -0.04596448689699173, 0.01152846124023199, -0.05221739411354065, 0.03588008135557175, 0.021486716344952583, 0.03125464916229248, -0.004805555567145348, 0.04364404082298279, 0.0005418257787823677, -0.009292567148804665, 0.011370979249477386, -0.011362382210791111, 0.0348396897315979, -0.00466545345261693, -0.012281197123229504, -0.004185056779533625, 0.020435314625501633, 0.014387836679816246, -0.048697419464588165, 0.03965144231915474, 0.01592002436518669, 0.028829021379351616, 0.0405099131166935, 0.006371218711137772, -0.007346064317971468, 0.05091610178351402, -0.008776085451245308, -0.041998766362667084, 0.008440032601356506, 0.004335183184593916, 0.0661921426653862, 0.07289161533117294, -0.009549563750624657, -0.06970515847206116, -0.008887122385203838, 0.08823759108781815, -0.021339649334549904, -0.0011476639192551374, 0.02237357199192047, 0.02548057772219181, 0.02155810408294201, 0.008784550242125988, -0.005966980010271072, 0.019980458542704582, -0.025168919935822487, -0.001441600383259356, -0.10226193070411682, -0.007091181818395853, -0.024057641625404358, -0.033855460584163666, 0.009468447417020798, 0.04172583296895027, -0.0032150251790881157, 0.0066729397512972355, -0.029424060136079788, -0.013603009283542633, -0.10122159123420715, 0.0056914095766842365, -0.03164885938167572, -0.028330305591225624, 0.05559637024998665, 0.034841373562812805, -0.02764248102903366, 0.007683851290494204, -0.01914956420660019, -0.0005824966356158257, 0.012127269059419632, -0.005949009675532579, 0.018271666020154953, -0.027484120801091194, 0.006873916834592819, 0.04417746141552925, -0.01294020563364029, 0.016971951350569725, -0.007220603059977293, 0.06761421263217926, -0.02424055151641369, 0.030060702934861183, 0.020526345819234848, -0.007733647245913744, 0.030496181920170784, -0.04879889264702797, -0.031410735100507736, -0.057433757930994034, -0.04616506025195122, 0.00703053642064333, 0.045211341232061386, 0.01392181683331728, -0.0017580862622708082, 0.02561343088746071, -0.03692673519253731, 0.0013894978910684586, 0.016495952382683754, 0.007517295423895121, 0.0036395539063960314, -0.009873450733721256, -0.010162590071558952, 0.02042756974697113, -0.05344351381063461, -0.055527232587337494, 0.03608087822794914, 0.01165576558560133, 0.02245168946683407, -0.08183922618627548, 0.052022285759449005, 0.026022285223007202, 0.0054830582812428474, -0.023250242695212364, 0.03881068527698517, -0.02144446223974228, -0.006955715361982584, 0.01512044295668602, 0.05131405591964722, 0.005557622294872999, -0.05218743532896042, 0.012700599618256092, -0.019671441987156868, 0.029073115438222885, -0.030999595299363136, 0.031022047623991966, -0.06769461929798126, -0.04996965825557709, -0.026030980050563812, -0.07258463650941849, -0.03642335534095764, 0.03582492470741272, 0.016913559287786484, 0.007339986972510815, 0.009926008060574532, -0.05577170476317406, -0.03587903827428818, -0.02724776417016983, 0.0007669960614293814, 0.015035671181976795, -0.04709368944168091, 0.024324921891093254, 0.1339215338230133, 0.034775909036397934, -0.016577865928411484, -0.07799001038074493, 0.03978823497891426, 0.0034717717207968235, 0.007710595149546862, 0.033531732857227325, -0.016179729253053665, -0.0008387519628740847, 0.0918540507555008, 0.02772965095937252, -0.018202483654022217, -0.006922132335603237, -0.026933860033750534, 0.012810856103897095, 0.013281376101076603, 0.03390629589557648, 0.006786575075238943, 0.06869849562644958, -0.04049244150519371, -0.03178903087973595, -0.013435550965368748, -0.0023789447732269764, -0.011356854811310768, 0.0400051511824131, -0.05442437902092934, 0.03188052773475647, -0.0006719365483149886, 0.007997410371899605, 0.043532710522413254, -0.008935528807342052, -0.05142146721482277, 0.029867038130760193, -0.03919031471014023, 0.018607735633850098, 0.004272281192243099, -0.02252689190208912, 0.00973091833293438, -0.008819874376058578, -0.009499792940914631, -0.004054334480315447, -0.030912602320313454, 0.09878666698932648, -0.004566156771034002, 0.011848353780806065, 0.02553393691778183, 0.005290198605507612, 0.0010947715491056442, 0.030166490003466606, 0.000763643707614392, 0.007873013615608215, 0.07529138028621674, -0.022253576666116714, -0.03202179819345474, 0.027524935081601143, -0.02359073795378208, -0.030612243339419365, -0.02470703236758709, 0.015345841646194458, 0.0017675964627414942, 0.002409649081528187, 0.04243607819080353, -0.006394181866198778, -0.0005063724238425493, 0.056109167635440826, -0.030796783044934273, -0.02411869913339615, -0.028758779168128967, -0.008177535608410835, 0.051499415189027786, 0.005846215877681971, -0.005644912365823984, 0.07505454123020172, -0.03688306361436844, -0.008012780919671059, -0.03913121297955513, 0.0014784823870286345, 0.001986345974728465, 0.027051545679569244, 0.0025961953215301037, -0.020184701308608055, -0.03242845833301544, -0.003439369611442089, -0.04888412356376648, 0.04043017700314522, -0.042989443987607956, -0.04366341978311539, -0.022065285593271255, 0.017711633816361427, 0.0007639664108864963, -0.0669252872467041, 0.012064168229699135, -0.0018229696433991194, 0.0879318043589592, -0.027572132647037506, 0.013804708607494831, 0.01862003281712532, -0.020761040970683098, 0.014405976980924606, 0.021895915269851685, 0.01318318396806717, 0.030996449291706085, -0.023307520896196365, -0.006013565696775913, 0.03316526114940643, -0.05591380223631859, -0.016521485522389412, -0.04319629818201065, -0.04475029930472374, 0.02410508506000042, 0.015864141285419464, -0.037496235221624374, 0.044424306601285934, 0.0073598516173660755, -0.021189380437135696, -0.024596480652689934, -0.03022710420191288, -0.025341570377349854, -0.034300073981285095, -0.03308949992060661, -0.07744298130273819, -0.03690025582909584, 0.004636694211512804, -0.010721169412136078, -0.08514056354761124, 0.01591396890580654, -0.011870143935084343, 0.002291215816512704, -0.039089303463697433, 0.014172995463013649, 0.0014904544223099947, -0.026638509705662727, -0.0027069919742643833, 0.03612840548157692, 0.06491143256425858, -0.007995194755494595, 0.017625339329242706, -0.07500685751438141, 0.003031074767932296, -0.005724282935261726, -0.04632256180047989, -0.003794446587562561, 0.01573980040848255, 0.06979803740978241, 0.004060801118612289, -0.007893967442214489, -0.018156956881284714, 0.07023780047893524, 0.030362321063876152, 0.029575828462839127, 0.0016893571009859443, -0.04077799618244171, -0.01960854046046734, 0.008894715458154678, 0.02072405442595482, 0.017308125272393227, -0.015551862306892872, -0.05983007326722145, 0.05196532979607582, 0.011004972271621227, 0.06309375911951065, -0.0027075251564383507, 0.03550573065876961, -0.010732976719737053, 0.02683432400226593, 0.008925281465053558, -0.03217290714383125, 0.004613221623003483, 0.03171141818165779, 0.018527844920754433, 0.054801080375909805, 0.021735968068242073, -0.025544529780745506, -0.008895988576114178, 0.008182606659829617, 0.07215519994497299, 0.04645008221268654, -0.053606949746608734, 0.014833531342446804, -0.01068916730582714, -0.005361145827919245, -0.01975380815565586, 0.005547856912016869, -0.0006279291701503098, 0.009916814975440502, 0.020312339067459106, -0.007189188618212938, 6.671336450381204e-05, -0.03058701381087303, 0.05224985629320145, -0.0008186082122847438, 0.04181281104683876, -0.01172561850398779, -0.02148173563182354, 0.026639286428689957, 0.014025777578353882, 0.025743020698428154, 0.0073262532241642475, 0.01933951862156391, -0.012357114814221859, 0.007694236468523741, -0.019845064729452133, 0.018154975026845932, 0.1175260916352272, 0.02454175055027008, -0.018435662612318993, 0.03992600366473198, 0.042134761810302734, -0.03240735083818436, -0.02635755017399788, -0.11483953893184662, 0.025449516251683235, 0.048943325877189636, 0.011725197546184063, 0.009744769893586636, 0.00919323693960905, -0.012701155617833138, -0.03647095337510109, -0.028653806075453758, -0.023318126797676086, -0.02094789780676365, -0.0774165689945221, 0.030336355790495872, 0.009144209325313568, 0.07725917547941208, 0.042942143976688385, 0.01761178858578205, -0.048720795661211014, -0.012360522523522377, 0.019489405676722527, -0.020550541579723358, -0.01050500012934208, 0.02900833450257778, 0.022113872691988945, -0.02236812561750412, 0.08428791910409927, -0.0019873883575201035, -0.023964010179042816, -0.05169450864195824, 0.09430321305990219, -0.0052801151759922504, -0.04575816169381142, 0.06478219479322433, -0.05887412279844284, 0.047423262149095535, -0.022503728047013283, -0.055133458226919174, 0.017365293577313423, -0.040870703756809235, -0.0403679795563221, -0.0612621009349823, -0.037599675357341766, 0.0035008820705115795, -0.021703967824578285, -0.026400569826364517, 0.027808362618088722, 0.03140256553888321, -0.004446078557521105, -0.039174627512693405, -0.002546392846852541, 0.012607812881469727, 0.005428319331258535, 0.00762664619833231, 0.0020260056480765343, 0.01111013162881136, -0.07124172896146774, 0.008923782035708427, 0.024190915748476982, -0.008701853454113007, -0.05161202326416969, 0.007471832912415266, -0.020297609269618988, 0.02107318863272667, -0.0034183792304247618, 0.003219625214114785, -0.04428967088460922, 0.061319369822740555, -0.011509202420711517, 0.007603691890835762, 0.036517076194286346, -0.03960923105478287, 0.03057902865111828, 0.07641282677650452, 0.008957233279943466, -0.02754111960530281, 0.02206478640437126, 0.019400425255298615, -0.027505211532115936, 0.003143389942124486, 0.003530945396050811, 0.06795857846736908, -0.029956182464957237, 0.00231842789798975, 0.002003650413826108, -0.007877408526837826, 0.024293487891554832, 0.011373104527592659, -0.09699756652116776, 0.033926501870155334, -0.00404938030987978, 0.015751995146274567, -0.066732257604599, -0.043816715478897095, 0.0051298909820616245, -0.018874941393733025, -0.009424650110304356, 0.013057245872914791, 0.013358769938349724, 0.02697068266570568, -0.020890437066555023, -0.017963619902729988, 0.016896698623895645, -0.004954859148710966, 0.016927016898989677, 0.016260802745819092, -0.000723301840480417, -0.043506182730197906, 0.09457173943519592, -0.04158655181527138, 0.005549766588956118, -5.15103497974448e-33, -0.03446606919169426, 0.0347975492477417, 0.02954247035086155, 0.07216870039701462, -0.03296910971403122, 0.01598602905869484, 0.021057792007923126, -0.03952895104885101, -0.03052939474582672, -0.024623658508062363, -0.010824616998434067, 0.008515856228768826, -0.022261276841163635, -0.0009414491942152381, 0.03937123715877533, -0.038091130554676056, 0.03365664929151535, 0.002830322366207838, -0.010880258865654469, -0.009776527062058449, -0.03557487949728966, 0.038125179708004, 0.0701904296875, 0.03691285848617554, 0.03418748453259468, 0.027030637487769127, -0.032769396901130676, 0.06444492191076279, -0.011972278356552124, -0.024169806391000748, 0.05775507166981697, -0.03907465562224388, -0.008150050416588783, -0.006999514997005463, -0.01884411834180355, -0.007014816626906395, -0.03819134086370468, 0.028396014124155045, -0.027055442333221436, -0.012929031625390053, -0.061306603252887726, 0.001961406087502837, 0.028301453217864037, 0.030880415812134743, -0.0550110898911953, -0.00630114134401083, -0.018878554925322533, -0.0015235929749906063, 0.07168944925069809, -0.035545580089092255, -0.006296523381024599, 0.057205356657505035, 0.010694465599954128, 0.025301529094576836, 0.006485032849013805, -0.06466367840766907, 0.00375995971262455, 0.008828418329358101, -0.05793044716119766, -0.005831088405102491, -0.03625626489520073, 0.020529761910438538, -0.0413811057806015, 0.04047024995088577, -0.008173595182597637, -0.034884314984083176, -0.008954877965152264, 0.10892751067876816, 0.040578123182058334, 0.009881909936666489, 0.004134566988795996, -0.022390689700841904, -0.019917452707886696, -0.028620094060897827, 0.016805509105324745, 0.02050468511879444, -0.09665738791227341, 0.02717703953385353, 0.13567422330379486, 0.10191082209348679, -0.07538238912820816, 0.002853051060810685, -0.025542963296175003, 0.024000685662031174, -0.0064476472325623035, -0.006822547409683466, 0.0031018101144582033, -0.0384618379175663, 0.00730473455041647, -0.01853751204907894, 0.064214788377285, -0.06599842011928558, -0.01842743344604969, 0.0030687700491398573, 0.0456586517393589, -0.03722545504570007, 0.006246497388929129, 0.014192170463502407, -0.013280801475048065, 0.007774009369313717, -0.08471207320690155, -0.00606012437492609, 0.08194246888160706, 0.05575477331876755, 0.026810677722096443, -0.0017185029573738575, -0.010828857310116291, 0.014648244716227055, -0.01456834189593792, 0.04919764772057533, 0.034339044243097305, 0.023628057911992073, -0.02230909653007984, 0.019326813519001007, -0.02507806196808815, -0.04821474105119705, 0.018908530473709106, -0.0445857048034668, 0.0386296808719635, 0.0059708221815526485, -0.012830343097448349, 0.025937359780073166, 0.034377045929431915, -0.052144382148981094, -0.01780499331653118, -0.013206635601818562, 0.013747439719736576, 0.016616182401776314, 0.004801826551556587, 0.005498301237821579, 0.014793132431805134, -0.03014620952308178, 2.7224555765315017e-07, 0.01922597922384739, 0.01674177311360836, 0.005210499279201031, -0.05759711191058159, 0.02048162743449211, -0.05463945493102074, -0.0019221791299059987, 0.046599384397268295, 0.059896357357501984, 0.03588065877556801, 0.04439853876829147, -0.0017757165478542447, -0.05203671380877495, 9.096619760384783e-05, 0.03168042376637459, -0.0759616568684578, -0.0697222426533699, -0.03087407350540161, -0.005475222133100033, -0.021757325157523155, 0.05939997732639313, -0.010268574580550194, 0.006140015088021755, -0.022673912346363068, -0.020288540050387383, 0.0317489393055439, -0.011206802912056446, 0.029177017509937286, -0.07950560003519058, -0.04027455300092697, 0.07448722422122955, -0.01669633947312832, -0.017386967316269875, 0.00574155617505312, 0.005722871515899897, 0.057922180742025375, -0.019650330767035484, -0.06688395142555237, -0.042500078678131104, 0.0497281439602375, 0.0012144279899075627, -0.012910682708024979, 0.0018530039815232158, 0.014936140738427639, 0.04029114544391632, 0.03543148189783096, -0.02077060006558895, -0.01811598800122738, -0.044050443917512894, -0.05406472459435463, -0.014836303889751434, 0.0723809003829956, -0.043718449771404266, -0.009403245523571968, 0.00863614585250616, 0.03028714284300804, -0.0405568927526474, 0.03652972728013992, 0.0038184733130037785, -0.0005800605867989361, 0.013630865141749382, -0.025005299597978592, 0.016212569549679756, 0.0438460111618042, -0.02278578281402588, -0.015891246497631073, 0.020538296550512314, 2.4729515210834164e-34, 0.02242964506149292, -0.06169916316866875, -0.013752800412476063, -0.052547771483659744, -0.0088267857208848, 0.041303601115942, 0.008997060358524323, -0.01042298786342144, 0.002597865415737033, -0.03728446364402771, 0.013197151012718678], "35af2b14-e6e5-48fd-9926-2ad98a0ee79a": [0.019671913236379623, 0.022861778736114502, 0.01729574427008629, 0.00016143509128596634, 0.0010686457389965653, 0.06739476323127747, 0.007737846113741398, 0.055664777755737305, 0.01713026873767376, -0.003494119504466653, 0.007652211003005505, 0.08082854747772217, -0.00045283400686457753, -0.011345136910676956, -0.009793258272111416, 0.000862986664287746, 0.004336352460086346, 0.00727534806355834, 0.02345811203122139, -0.00694063538685441, 0.04004717618227005, 0.004482185933738947, -0.047396838665008545, 0.019103195518255234, -0.07200738787651062, 0.005078588146716356, 0.031091852113604546, -0.0009736325591802597, 0.04671135172247887, -0.0424809604883194, -0.029164765030145645, 0.0072759827598929405, -0.00978892482817173, -0.035817310214042664, 2.009493755394942e-06, -0.014759693294763565, 0.02322644181549549, 0.0050673638470470905, -0.005466102156788111, 0.008179336786270142, 0.07367728650569916, 0.01209226343780756, -0.012471429072320461, 0.022324688732624054, 0.01887371391057968, -0.024545878171920776, 0.021848348900675774, -0.029284674674272537, 0.032178740948438644, -0.05827260762453079, 0.0045514581725001335, -0.06601212173700333, -0.029999088495969772, -0.05768166854977608, 0.008672717027366161, -0.1707621067762375, -0.01215276401489973, 0.014836646616458893, -0.021331198513507843, -0.018855970352888107, -0.06416244059801102, -0.026448743417859077, -0.013850993476808071, -0.0012000480201095343, 0.04987650364637375, 0.02735096961259842, 0.08609999716281891, -0.028254149481654167, 0.026844805106520653, -0.018598638474941254, 0.09306808561086655, 0.028815770521759987, -0.03616435080766678, 0.030827049165964127, 0.050718724727630615, -0.05498100444674492, 0.02009548433125019, 0.013956998474895954, -0.054084911942481995, 0.013192792423069477, 0.02534889243543148, 0.06429467350244522, -0.018260642886161804, -0.03655575215816498, -0.041098129004240036, 0.03454132750630379, -0.0006022261222824454, 0.011923352256417274, 0.07142071425914764, 0.03685183823108673, 0.02301674149930477, 0.01958613470196724, -0.014730614610016346, 0.012499346397817135, 0.008498604409396648, -0.005636441055685282, 0.021168380975723267, 0.012964761815965176, -0.005154020618647337, 0.03271028771996498, -0.09815406799316406, 0.003672834951430559, -0.0296354740858078, 0.04333771765232086, -0.014538906514644623, 0.0540115162730217, -0.009428054094314575, -0.03371952846646309, -0.027216406539082527, -0.013831475749611855, 0.006611153017729521, -0.026820965111255646, 0.03569605574011803, 0.021406060084700584, 0.006280314642935991, -0.000858074810821563, -0.07460860908031464, -0.003291148692369461, -0.028609469532966614, 0.027235258370637894, 0.06712190806865692, 0.008789196610450745, -0.009026451967656612, 0.07065387815237045, -0.010580383241176605, -0.03738996386528015, -0.03159937635064125, 0.005039416719228029, 0.05147917568683624, 0.03232228383421898, -0.003180942265316844, -0.06075762212276459, 0.030428096652030945, 0.05614565685391426, -0.022427422925829887, -0.0053262049332261086, 0.00915772095322609, 0.01767941564321518, 0.04588249698281288, 0.006373126525431871, 0.017608487978577614, 0.011350166983902454, -0.0010600103996694088, 0.015238657593727112, -0.030188623815774918, -0.01797141693532467, -0.0026854663155972958, 0.006371017545461655, 0.011317928321659565, 0.03219429403543472, 0.01221778616309166, -0.01664189249277115, -0.04236820712685585, -0.030714895576238632, -0.05841507390141487, 0.006745675578713417, 0.015034951269626617, -0.038923826068639755, 0.04300868883728981, 0.049810729920864105, -0.009042571298778057, 0.009554733522236347, 0.02025667019188404, 0.01676555536687374, 0.00667083403095603, -0.018085109069943428, 0.024996254593133926, 0.007015529088675976, 0.0010056030005216599, 0.016649022698402405, -0.001718224142678082, 0.021177254617214203, -0.03087122179567814, 0.05862775817513466, -0.043660297989845276, 0.01877599209547043, 0.024316687136888504, -0.009775858372449875, 3.6664012441178784e-05, -0.0537419393658638, -0.00894401129335165, -0.0733560174703598, -0.035289112478494644, 0.0175639521330595, 0.02973916195333004, 0.009089015424251556, -0.0006425002939067781, -0.021765967831015587, -0.02974804863333702, -0.02627548761665821, 0.02547810971736908, 0.012830538675189018, 0.027943547815084457, -0.02699519880115986, 0.022626979276537895, 0.024887053295969963, -0.04427158460021019, -0.10705485939979553, 0.037756290286779404, 0.010323971509933472, 0.03495724871754646, -0.11255693435668945, 0.03194011375308037, 0.05994732677936554, 0.022043660283088684, -0.012076134793460369, 0.042254991829395294, -0.017073597759008408, -0.01787726581096649, 0.04435040056705475, 0.048894815146923065, -0.01676875166594982, -0.0039384751580655575, 0.00828726775944233, -0.03676583990454674, -0.0006236631306819618, -0.04171111062169075, 0.03459351882338524, -0.05470670014619827, -0.017655616626143456, -0.019308587536215782, -0.07393509149551392, -0.04938746988773346, 0.025180576369166374, 0.036476053297519684, 0.006960347760468721, 0.013739233836531639, -0.04877208173274994, -0.05364655703306198, -0.015423126518726349, -0.008311073295772076, 0.014637044630944729, -0.012853844091296196, 0.015593401156365871, 0.12222184240818024, 0.03353806585073471, -0.051158130168914795, -0.022336577996611595, 0.01683628559112549, 0.0392780527472496, 0.03723109886050224, 0.018926404416561127, -0.0014704868663102388, 0.027133841067552567, 0.04833858832716942, 0.026937805116176605, 0.05687227472662926, -0.007475440856069326, -0.041059523820877075, 0.030486678704619408, 0.00891563668847084, 0.018956394866108894, 0.005147394724190235, 0.052650004625320435, -0.025406762957572937, -0.05641098693013191, -0.020788298919796944, -0.010931508615612984, -0.014701087027788162, -0.011963787488639355, -0.04036210849881172, 0.02764040417969227, 0.013461452908813953, 0.01182913314551115, 0.02549438364803791, -0.011682488955557346, -0.03850666806101799, -0.017908262088894844, -0.028942763805389404, 0.016004692763090134, 0.02531304582953453, -0.012306739576160908, -0.01606835424900055, -0.008105208165943623, 0.0018181318882852793, -0.015600673854351044, -0.03899329528212547, 0.05917692184448242, -0.012290803715586662, 0.01173071376979351, 0.024074437096714973, -0.002056782366707921, -0.012443129904568195, 0.009719755500555038, 0.0201707910746336, -0.008503408171236515, 0.0758284404873848, 0.0209711454808712, -0.028462331742048264, 0.01954764500260353, -0.046874064952135086, -0.01440516859292984, -0.031881555914878845, -0.00017931943875737488, 0.004648310132324696, 0.007755124941468239, 0.021900394931435585, 0.02053418941795826, 0.007527152542024851, 0.06729216873645782, -0.03322676569223404, -0.04588979482650757, -0.03513369336724281, -0.018544990569353104, 0.04811863601207733, 0.01131314504891634, -0.014569864608347416, 0.036848053336143494, -0.04070607200264931, -0.06212400272488594, -0.01655023917555809, 0.0238108541816473, -0.00590430898591876, 0.016174843534827232, 0.011039605364203453, -0.05469159781932831, -0.05531126633286476, 0.026420190930366516, -0.029025891795754433, 0.025217130780220032, -0.02752400003373623, -0.060883793979883194, -0.04090891778469086, 0.0081599997356534, -0.001711235847324133, -0.058587707579135895, -0.00012108957162126899, -0.0007673734799027443, 0.10805203765630722, -0.04484820365905762, -0.002991137560456991, 0.021393287926912308, -0.02742142416536808, 0.0214034803211689, -0.006649176124483347, -0.028123006224632263, -0.008787999860942364, -0.058088332414627075, 0.0069714877754449844, 0.0077290660701692104, -0.05289167910814285, -0.0017483249539509416, -0.022835396230220795, -0.030226964503526688, 0.050042152404785156, 0.005403351970016956, -0.0908481553196907, 0.06306587904691696, 0.012235606089234352, -0.02693607099354267, 0.006486073136329651, 0.017934849485754967, -0.03376346081495285, -0.004361862316727638, -0.043064285069704056, -0.05419359356164932, 0.002713398076593876, -0.0071421037428081036, -0.020652970299124718, -0.0740971639752388, -0.003596779191866517, -0.0136463837698102, 0.010782239027321339, -0.035101138055324554, 0.019342772662639618, 0.0017492836341261864, 0.004407947417348623, -0.013021301478147507, 0.021374551579356194, 0.058565665036439896, -0.031667258590459824, 0.0011704722419381142, -0.052171047776937485, 0.03248344361782074, -0.014127482660114765, -0.08149226754903793, -0.0017379476921632886, 0.038108278065919876, 0.055081311613321304, 0.022399306297302246, -0.013867879286408424, -0.0024805411230772734, 0.08325088024139404, 0.016742410138249397, 0.03138890489935875, 0.010572288185358047, -0.01662987656891346, 0.009452645666897297, 0.02599729225039482, 0.029490580782294273, 0.008538581430912018, -0.0023483717814087868, -0.01752130500972271, 0.0705614909529686, 0.018400708213448524, 0.05148914083838463, -0.05887126177549362, 0.032480888068675995, 0.027661573141813278, 0.013706367462873459, 0.005769724026322365, -0.040150854736566544, -0.0010627965675666928, 0.05869065225124359, 0.008721156977117062, 0.04645602032542229, 0.0706091821193695, -0.018566789105534554, -0.06358251720666885, -0.0239662267267704, 0.0974285900592804, 0.00066804961534217, -0.03390659764409065, 0.008851662278175354, -0.0006528696394525468, -0.003605467965826392, -0.013951484113931656, -0.02319563366472721, -0.004882544744759798, -0.014485286548733711, 0.01911299303174019, 0.026784831658005714, 0.042236872017383575, -0.02110271155834198, 0.046661198139190674, -0.020290952175855637, 0.016450898721814156, -0.022652890533208847, -0.012074770405888557, 0.0028841032180935144, 0.0003699491498991847, 0.013571806252002716, 0.027128489688038826, 0.025243062525987625, 0.008287456817924976, 0.045183245092630386, -0.052165914326906204, 0.007030103355646133, 0.0732324942946434, 0.004265306051820517, -0.03107687458395958, 0.015632426366209984, 0.0357724167406559, -0.018781548365950584, -0.04329350218176842, -0.09266909211874008, -0.012019474990665913, 0.03292810171842575, -0.007314435206353664, 0.0008868717704899609, 0.04283882677555084, -0.023219645023345947, -0.03334467113018036, -0.04102261736989021, -0.016499405726790428, -0.04748821258544922, -0.11752074211835861, 0.024589484557509422, -0.0007106919074431062, 0.0663011372089386, 0.07385565340518951, 0.023860778659582138, -0.03503376245498657, -0.011198686435818672, 0.03463304042816162, 0.017684737220406532, -0.02249055542051792, 0.012081367895007133, 0.02679401822388172, -0.040652669966220856, 0.07087001204490662, -0.02542134001851082, -0.04833468049764633, -0.04609312117099762, 0.06950060278177261, -0.002075435360893607, -0.03099742718040943, 0.10461403429508209, -0.07326117157936096, 0.026289427652955055, -0.017365405336022377, -0.10010989755392075, 0.011036575771868229, -0.05908190831542015, -0.002168770879507065, -0.028235550969839096, -0.024810925126075745, -0.005032649729400873, -0.004110940266400576, -0.031694166362285614, 0.04031313583254814, 0.007896091789007187, 0.005878526251763105, -0.02173554338514805, 0.020601658150553703, 0.02340289205312729, -0.023826099932193756, 0.01556668896228075, -0.0016670094337314367, -0.00039645153447054327, -0.06985600292682648, 0.005236165598034859, 0.011862278915941715, -0.043683987110853195, -0.05411713942885399, 0.02669287845492363, -0.022158145904541016, 0.05782388895750046, -0.01967979036271572, 0.012555661611258984, -0.02528916858136654, 0.05711225047707558, -0.045872762799263, 0.026723938062787056, 0.03840438649058342, -0.01355292834341526, 0.021842796355485916, 0.0736035704612732, 0.0239340178668499, -0.001870869193226099, 0.02826225571334362, -0.0017841996159404516, -0.017191512510180473, 0.0023310433607548475, 0.01194649375975132, 0.03195836395025253, -0.022022342309355736, -0.0018540672026574612, -0.02622302621603012, -0.012443464249372482, 0.027483271434903145, 0.0030115079134702682, -0.07829634100198746, 0.0327225960791111, -0.013548976741731167, -0.05150436609983444, -0.05950383469462395, -0.050724808126688004, 0.019653594121336937, 0.0018688665004447103, -0.01266369316726923, -0.0232926607131958, 0.005381031893193722, 0.03457287326455116, 0.02435794100165367, -0.07254292070865631, 0.0058532836847007275, -0.01253436878323555, 0.018717333674430847, -0.0256844200193882, -0.004752199165523052, -0.03982364013791084, 0.03330576419830322, 0.02697564661502838, -0.029014842584729195, -5.1769417732106494e-33, -0.03681638836860657, 0.061758480966091156, 0.03279108181595802, 0.034163497388362885, -0.06847924739122391, 0.014172004535794258, 0.007829195819795132, -0.08138584345579147, -0.03154551610350609, -0.03212101012468338, 0.0003254550392739475, 0.00437190430238843, -0.020413650199770927, 0.00465486291795969, 0.0037300148978829384, -0.020871073007583618, 0.02733614854514599, 0.0011923195561394095, -0.004848910961300135, 0.0028274671640247107, -0.03570673614740372, 0.0014270313549786806, 0.057494670152664185, 0.09388001263141632, 0.07590329647064209, 0.029254352673888206, -0.034953583031892776, 0.03733263909816742, -0.0035105643328279257, -0.016782226040959358, 0.028451621532440186, -0.03090476058423519, -0.0022354975808411837, 0.016062213107943535, 0.0064889369532465935, 0.009818539023399353, -0.046964917331933975, 0.03645600005984306, 0.010508278384804726, -0.013243435882031918, -0.028011152520775795, -0.016689803451299667, 0.0026824972592294216, 0.041301846504211426, -0.08846205472946167, -0.0034085821826010942, 0.00422926340252161, -0.015325645916163921, 0.07483494281768799, -0.05106593295931816, 0.009386551566421986, 0.02271607518196106, -0.009568383917212486, 0.05401987209916115, -0.01687459461390972, -0.043151844292879105, 0.023739304393529892, 0.03451553359627724, -0.0506773442029953, -0.02609076537191868, -0.039600346237421036, 0.05143376439809799, -0.012300612404942513, 0.028942259028553963, 0.014164597727358341, -0.018047170713543892, -0.027784360572695732, 0.07117394357919693, 0.03868363797664642, 0.0372675359249115, 0.02652694657444954, -0.014613744802772999, -0.014296229928731918, -0.032938458025455475, 0.026998575776815414, -0.017969762906432152, -0.09937635809183121, 0.016495877876877785, 0.11094903200864792, 0.11094237864017487, -0.007426341064274311, -0.015794893726706505, 0.020931050181388855, 0.011156931519508362, -0.030451271682977676, 0.021360768005251884, -0.03706599399447441, -0.013581736013293266, 0.005061676725745201, -0.009401661343872547, 0.07665370404720306, -0.05753249302506447, -0.029761051759123802, 0.0018524799961596727, 0.024454446509480476, -0.01950647123157978, 0.020521247759461403, 0.031124765053391457, 0.0030629972461611032, -0.021083978936076164, -0.06701210141181946, 0.0161876380443573, 0.06205139309167862, 0.06106843054294586, 0.04434739425778389, 0.01705724187195301, -0.02219436876475811, -0.010152846574783325, -0.03100869245827198, 0.04945485293865204, 0.0007689196499995887, 0.0013831600081175566, -0.022367093712091446, 0.014265546575188637, -0.0076238359324634075, -0.029780404642224312, 0.01005140133202076, -0.03197956830263138, 0.011465388350188732, 0.030102506279945374, 0.013015837408602238, 0.020695820450782776, 0.04054386168718338, -0.04137306660413742, -0.026909643784165382, -0.027437709271907806, 0.029584171250462532, 0.0024743685498833656, -0.006273909471929073, 0.019610874354839325, 0.01902063377201557, -0.0046915411949157715, 2.5896360966726206e-07, -0.018072186037898064, 0.0027567585930228233, 0.021512778475880623, -0.028793955221772194, 0.006259922869503498, -0.05953677371144295, -0.027804335579276085, 0.025861091911792755, 0.06467372924089432, 0.043942246586084366, 0.004649248905479908, 0.013017947785556316, -0.048397231847047806, -0.014095150865614414, 0.04256412014365196, -0.06023169308900833, -0.05467035993933678, -0.01822662353515625, -0.017734365537762642, 0.016026580706238747, 0.05732935667037964, -0.009429712779819965, 0.03583616390824318, -0.003059334820136428, -0.016887007281184196, 0.045126013457775116, -0.028878245502710342, -0.01007535494863987, -0.06398988515138626, -0.04829981550574303, 0.048562873154878616, -0.007196246180683374, 0.006053906865417957, 0.03633686155080795, 0.017641421407461166, 0.028655456379055977, -0.014669520780444145, -0.00394631689414382, -0.020922234281897545, 0.05137811228632927, -0.003210068680346012, -0.015263213776051998, 0.027032306417822838, 0.015102067962288857, 0.036718934774398804, 0.08947080373764038, -0.022599566727876663, -0.025324024260044098, -0.054074112325906754, -0.04748379811644554, -0.015405036509037018, 0.04226203262805939, -0.0619935467839241, -0.03565356507897377, 0.024309201166033745, 0.012890012934803963, -0.020274166017770767, 0.02512149140238762, 0.02420656941831112, -0.016276659443974495, 0.01028446201235056, -0.06832239776849747, 0.003728190902620554, 0.03434693440794945, -0.026373138651251793, -0.05437498539686203, -0.0025553249288350344, 2.471624268575193e-34, 0.02172883413732052, -0.04278765991330147, -0.03807910159230232, -0.05905752629041672, 0.00908713135868311, 0.027135945856571198, 0.021776864305138588, -0.0037714738864451647, -0.0072165620513260365, -0.02129327319562435, -0.007167262025177479], "2dbabf73-3621-4277-810f-def259b60568": [0.08978275954723358, -0.02548864483833313, -0.03359021246433258, -0.003533239709213376, 0.014567090198397636, 0.059434015303850174, -0.03399152681231499, 0.04201769456267357, -0.0117530208081007, -0.008629810065031052, 0.028992628678679466, 0.02117690071463585, 0.005758509039878845, 0.024729683995246887, 0.010335773229598999, -0.025267774239182472, 0.04616515338420868, -0.014191467314958572, 0.03168381005525589, 0.006882988847792149, -0.0235866941511631, 0.011526111513376236, 0.010290628299117088, -0.027565954253077507, 0.019392414018511772, 0.014589756727218628, -0.0166495218873024, 0.029793156310915947, -0.011024569161236286, -0.04779815301299095, -0.014041252434253693, -0.0047225505113601685, 0.002604582579806447, 0.02432543970644474, 2.085038659060956e-06, -0.0434587337076664, -0.027002179995179176, 0.023204362019896507, -0.013762375339865685, -0.06715791672468185, 0.05098764970898628, -0.022798186168074608, -0.08076341450214386, 0.002810582984238863, 0.027958938851952553, 0.0009744680137373507, 0.014902077615261078, 0.09235158562660217, -0.01965997740626335, 0.09127221256494522, 0.02076243981719017, -0.058193743228912354, 0.04090959206223488, -0.046498265117406845, 0.11014706641435623, -0.028232354670763016, -0.0047333575785160065, 0.11076797544956207, 0.013932920061051846, 0.029029065743088722, 0.022861851379275322, 0.00719394301995635, -0.015237461775541306, 0.015932278707623482, 0.022384552285075188, 0.010450498200953007, 0.028909502550959587, -0.06670649349689484, 0.021793151274323463, 0.05779285728931427, 0.0749453455209732, 0.00811504852026701, 0.0078021325170993805, 0.044573985040187836, -0.026555662974715233, -0.009077290073037148, -0.02248319238424301, 0.10573656857013702, 0.01539897732436657, 0.013984110206365585, -0.04533229023218155, -0.02145724557340145, -0.00110709760338068, 0.0017731032567098737, 0.03387458249926567, -0.01272798702120781, -0.027351392433047295, -0.060994457453489304, 0.04063316434621811, -0.00871974416077137, 0.017773916944861412, -0.03356054052710533, 0.025632580742239952, -0.011133676394820213, 0.10584163665771484, -0.0035434060264378786, -0.03408648818731308, -0.10045035183429718, 0.04775567352771759, 0.00724389124661684, -0.0564269945025444, -0.020615719258785248, -0.02392207831144333, 0.061707016080617905, -0.017744766548275948, 0.04602979123592377, 0.027045072987675667, -0.032694824039936066, 0.00455084815621376, 0.08095041662454605, -0.06064852699637413, -0.0208357572555542, -0.04207982122898102, -0.02489449270069599, -0.03764614462852478, -0.029948411509394646, 0.004567678086459637, 0.03785759210586548, 0.028341345489025116, 0.00994559284299612, -0.005614022724330425, -0.015892570838332176, -0.006579283624887466, 0.04539785906672478, -0.0013650257606059313, -0.015900705009698868, 0.02155279368162155, 0.010130849666893482, 0.015864627435803413, 0.018716860562562943, -0.01366518996655941, 0.060566503554582596, 0.006834684405475855, -0.007597754709422588, -0.002898992970585823, 0.08060317486524582, 0.03535710275173187, -0.04103369265794754, 0.02856113389134407, -0.056506797671318054, 0.051326457411050797, -0.02867448888719082, -0.03449513390660286, -0.0255784559994936, 0.009564550593495369, 0.020536798983812332, 0.012314866296947002, -0.033178213983774185, 0.011971825733780861, 0.008835856802761555, -0.09611188620328903, 0.02666698396205902, -0.03008871339261532, -0.012140315026044846, 0.020001374185085297, -0.0211845263838768, -0.0680621862411499, -0.0639948770403862, 0.011646535247564316, 0.052052006125450134, 0.015438620932400227, 0.0471949577331543, 0.031358007341623306, -0.05926189199090004, -0.009934525936841965, -0.030100533738732338, 0.07584980130195618, 0.008331932127475739, 0.0604182593524456, 0.04776937514543533, 0.03332114964723587, 0.04130062088370323, -0.01870158687233925, 0.025738779455423355, 0.009324057959020138, 0.11597845703363419, 0.04910903796553612, 0.025266485288739204, -0.02663559466600418, 0.053928740322589874, 0.017037106677889824, -0.07069804519414902, -0.006182215176522732, -0.022288985550403595, -0.054592568427324295, -0.005496954079717398, -0.03761718049645424, -0.0039256662130355835, 0.04122220352292061, -0.008258682675659657, -0.04178902506828308, -0.014485318213701248, -0.006101875565946102, -0.07447219640016556, 0.0009861199650913477, -0.008917640894651413, -0.05635589361190796, -0.08448860794305801, 0.020040126517415047, -0.026239626109600067, 0.04149458184838295, 0.003930056467652321, 0.06638572365045547, -0.036142148077487946, 0.04886993020772934, -0.011466514319181442, 0.04396140202879906, -0.01852361299097538, 0.02814224548637867, -0.019058652222156525, -2.9405760869849473e-05, 0.006846537347882986, -0.03889115899801254, -0.025888219475746155, -0.028062311932444572, -0.019938871264457703, -0.02600146271288395, -0.014429080300033092, -0.04135102778673172, -0.013019556179642677, 0.028875140473246574, -0.05480165407061577, -0.050656214356422424, 0.03134952113032341, 0.017007378861308098, -0.06258396059274673, -0.07966971397399902, 0.007104113698005676, 0.008018267340958118, -0.008889423683285713, -0.0462350957095623, 0.03418724238872528, 0.045694705098867416, 0.056074243038892746, -0.02273043617606163, 0.05959403142333031, 0.038155075162649155, 0.008462870493531227, -0.001630973070859909, -0.11987335979938507, -0.013449251651763916, 0.05695505067706108, 0.04600728303194046, 0.014107372611761093, 0.03337695449590683, -0.038573309779167175, -0.017351394519209862, 0.019874608144164085, 0.019738495349884033, 0.03225944936275482, 0.06111190468072891, -0.02379303053021431, 0.012846515513956547, 0.06028945371508598, 0.006560096051543951, 0.027637718245387077, -0.08647902309894562, -0.00035493652103468776, -0.02689877711236477, -0.022807611152529716, 0.08587072789669037, -0.003448386210948229, -0.04655618965625763, 0.01972648687660694, 0.028332389891147614, 0.003066031960770488, -0.05063594877719879, 0.01761123165488243, -0.04375689476728439, 0.010421519167721272, -0.009162566624581814, -0.01263626292347908, -0.015302901156246662, -0.011319373734295368, -0.0031797883566468954, 0.011226436123251915, -0.03819909691810608, -0.03008624166250229, -0.03772689774632454, 0.008909753523766994, 0.0368083231151104, 0.0022207866422832012, -0.03619040548801422, -0.0018114317208528519, -0.0558193065226078, 0.009696007706224918, 0.03795728459954262, 0.007844136096537113, -0.07157988101243973, -0.036390550434589386, 0.005190840922296047, 0.012025188654661179, 0.011941376142203808, -0.03497586399316788, -0.014663022942841053, 0.02885780856013298, 0.02628747746348381, -0.0074424296617507935, -0.0007726735202595592, 0.062291521579027176, 0.039371930062770844, 0.018908360973000526, 0.007499127648770809, -0.012136147357523441, 0.015087933279573917, 0.03087245300412178, 0.011684092693030834, -0.0553302988409996, 0.018349748104810715, -0.02118678390979767, 0.04299448803067207, 0.03692381829023361, -0.0006992289563640952, -0.0061356001533567905, -0.03344627842307091, -0.04903475567698479, -0.04233158752322197, -0.0687018632888794, -0.00020148351904936135, 0.033043064177036285, 0.03890712186694145, 0.015076085925102234, 0.00011491202894831076, 0.010866470634937286, -0.013368482701480389, -0.09558272361755371, 0.012184220366179943, -0.015968259423971176, 0.02941671572625637, 0.047582708299160004, 0.02750030718743801, 0.0063022468239068985, -0.004056502599269152, -0.0010851194383576512, 0.027361100539565086, -0.0017485932912677526, 0.0060545592568814754, -0.08592724055051804, 0.023682408034801483, -0.011158779263496399, -0.02760971151292324, 0.0241092462092638, 0.01892799325287342, -0.003816651413217187, -0.030846647918224335, 0.012216759845614433, -0.02242693491280079, 0.0030132094398140907, -0.09595661610364914, 0.002449250314384699, 0.07938612252473831, -0.01228323020040989, -0.002730768406763673, -0.026619836688041687, -0.0473417267203331, 0.04215294495224953, 0.042677830904722214, -0.009787358343601227, 0.03597737103700638, -0.022498615086078644, 0.020151255652308464, 0.06855525821447372, 0.002914318349212408, 0.01958889700472355, -0.004298435058444738, 0.06108701974153519, -0.021081048995256424, 0.005263465456664562, 0.025727424770593643, -0.00612295139580965, -0.032729797065258026, 0.002727289218455553, 0.02432575263082981, 0.056318629533052444, 0.03885216265916824, 0.0172733087092638, 0.02641858533024788, -0.06143825128674507, -0.03884299471974373, -0.0009776278166100383, 0.02630520612001419, -0.0072753215208649635, 0.020612800493836403, 0.03590771555900574, 0.022508839145302773, 0.01815096288919449, 0.005657249130308628, 0.03655955567955971, 0.06517970561981201, 0.023102013394236565, 0.027196194976568222, 0.017822347581386566, -0.04430611431598663, -0.03935551643371582, -0.02802666835486889, -0.005472340155392885, -0.04931752383708954, 0.027678238227963448, 0.01033401396125555, -0.0003638651396613568, 0.02484833635389805, 0.06369885802268982, 0.03529975935816765, 0.03992816433310509, -0.015703963115811348, 0.03007199615240097, 0.060185253620147705, 0.0225212499499321, 0.0019464341457933187, 0.02310485579073429, 0.11386238783597946, 0.06004278361797333, 0.008400693535804749, 0.019441843032836914, 0.03930852934718132, -0.0016677757957950234, 0.02186330035328865, -0.03966958075761795, -0.011285856366157532, -0.0781489834189415, -0.05291556194424629, -0.0146434111520648, 0.04891704395413399, 0.014716090634465218, -0.002172573935240507, -0.06827982515096664, 0.023599842563271523, -0.05887216329574585, 0.03979451581835747, -0.0445316806435585, 0.057159945368766785, -0.01661277934908867, -0.02981415204703808, 0.006464847829192877, -0.011235781945288181, 0.0017654834082350135, -0.015207808464765549, -0.05379680544137955, 0.022526105865836143, -0.06590669602155685, -0.042203959077596664, 0.008137324824929237, 0.030258264392614365, -0.010032064281404018, -0.045559220016002655, 0.07045996934175491, 0.01817152090370655, -0.02850760519504547, 0.017958588898181915, -0.004384282045066357, -0.0093963872641325, -0.08278431743383408, -0.08916954696178436, 0.03072410449385643, -0.033695753663778305, -0.013151534833014011, -0.023233285173773766, -0.00499996030703187, -0.016630472615361214, -0.01363670825958252, -0.027512533590197563, 0.04588820040225983, -0.06030908599495888, -0.030651826411485672, -0.010286347940564156, -0.02772361785173416, -0.023663220927119255, -0.09267760813236237, 0.042102884501218796, 0.012176712043583393, -0.036494478583335876, -0.008069826290011406, -0.000708338397089392, 0.003254208480939269, 0.023349624127149582, -0.062497083097696304, -0.03021051548421383, -0.040867358446121216, 0.019863145425915718, -0.019259082153439522, 0.05224509537220001, -0.0230287853628397, 0.02326349727809429, -0.026447344571352005, -0.015824289992451668, 0.012571140192449093, -0.02025686576962471, 0.020498793572187424, -0.018260329961776733, -0.010927797295153141, 0.038196660578250885, 0.017591720446944237, 0.011384018696844578, -0.0018137414008378983, 0.022550959140062332, -0.037190064787864685, -0.004372363910079002, -0.019333193078637123, 0.02744074910879135, 0.010743550956249237, 0.04784936085343361, -0.04579732194542885, 0.021914998069405556, 0.017252637073397636, -0.07509768754243851, 0.011955685913562775, -0.007795160170644522, -0.026591526344418526, 0.021399876102805138, -0.03360464423894882, -0.039883531630039215, -0.01297546923160553, -0.08293343335390091, 0.010622638277709484, 0.00276364479213953, -0.03873833268880844, -0.003118793247267604, -0.05965820699930191, 0.02213217318058014, -0.0068832640536129475, 0.01032237708568573, 0.000378087570425123, 0.027570562437176704, -0.05544186010956764, 0.009146628901362419, 0.04511040821671486, 0.0046153380535542965, 0.003808322362601757, 0.0367722325026989, 0.049825381487607956, -0.008678066544234753, 0.032505638897418976, 0.04231094568967819, -0.01997036673128605, -0.018697908148169518, 0.01700367033481598, 0.022300640121102333, 0.015143146738409996, -0.02778274565935135, 0.010939957574009895, 0.05089281126856804, -0.05083208903670311, 0.024051131680607796, 0.0447450615465641, 0.052510328590869904, 0.026721680536866188, -0.0013401898322626948, 0.041492413729429245, -0.018753405660390854, -0.07467784732580185, -0.007000240497291088, 0.02378426119685173, -0.04500259831547737, -0.00033054305822588503, 0.04238519445061684, -5.491757894802074e-33, 0.011180954053997993, -0.0018446400063112378, 0.0028666292782872915, 0.03697771206498146, -0.023128900676965714, -0.0018076652195304632, -0.050121355801820755, -0.007545154076069593, -0.028596235439181328, -0.008059579879045486, -0.01990824192762375, -0.04185276851058006, 0.00279171927832067, -0.045563749969005585, 0.020886102691292763, -0.0032838520128279924, -0.04052795097231865, 0.01231171190738678, -0.011109482496976852, -0.053243380039930344, -0.005058379378169775, -0.027516726404428482, 0.02720537967979908, 0.012481915764510632, -0.0009880022844299674, -0.014505967497825623, -0.029892975464463234, -0.02923949435353279, 0.043465327471494675, 0.026745492592453957, -0.029862698167562485, -0.024430325254797935, -0.018566560000181198, 0.01876056008040905, -0.026099469512701035, 0.014976521022617817, -0.046885181218385696, -0.02164357714354992, -0.0026598856784403324, 0.026243526488542557, 0.0023296831641346216, 0.009069508872926235, -0.006058540660887957, -0.04048338159918785, 0.026709813624620438, 0.050710730254650116, 0.03353600949048996, -0.0034968412946909666, 0.008241505362093449, 0.017507025972008705, -0.03087432309985161, 0.00729005690664053, -0.03630091995000839, 0.04989323765039444, -0.021207107231020927, -0.024574236944317818, 0.032968901097774506, 0.008847118355333805, -0.03810501471161842, -0.028417298570275307, 0.00013615678471978754, 0.008954286575317383, 0.014463625848293304, -0.07022915035486221, -0.007416302803903818, 0.0038930221926420927, -0.01684350147843361, 0.05375075340270996, 0.022502770647406578, 0.06692857295274734, 0.01409212127327919, -0.02740897797048092, 0.0005784660461358726, -0.034700341522693634, -0.01896226964890957, 0.006789713632315397, -0.017925187945365906, 0.03231975436210632, 0.08175454288721085, 0.10386720299720764, 0.029168114066123962, 0.01568368822336197, -0.01208251342177391, 0.027807749807834625, -0.01572488434612751, -0.0015182337956503034, -0.023157553747296333, -0.023540345951914787, -0.032225627452135086, 0.0037037150468677282, 0.02519366517663002, -0.013151256367564201, -0.03229556605219841, 0.004254079423844814, 0.03109337016940117, 0.010456729680299759, -0.04578903317451477, 0.011871080845594406, -0.04487122595310211, -0.059823352843523026, -0.019078250974416733, -0.010753321461379528, 0.010241561569273472, -0.024645106866955757, 0.036253977566957474, 0.008277702145278454, 0.016407569870352745, -0.007735598366707563, -0.02612917497754097, -0.02898433618247509, -0.013573267497122288, -0.009981915354728699, 0.05338151380419731, 0.025934098288416862, -0.012302923016250134, -0.01490007620304823, -0.014656445011496544, -0.036764174699783325, -0.03384661301970482, -0.019497442990541458, -0.01046073529869318, 0.06729143857955933, -0.011911557987332344, -0.0032343165948987007, -0.05050042271614075, -0.03920244425535202, -0.0073007517494261265, 0.04747355729341507, 0.0724625289440155, -0.02254417911171913, -0.006258601788431406, 0.03700684756040573, 2.833558880865894e-07, 0.014195024967193604, 0.05000027269124985, 0.01417409349232912, -0.023374617099761963, -0.03211629018187523, -0.010896182619035244, -0.05441959574818611, -0.003194316290318966, -0.026721680536866188, 0.029922299087047577, 0.03806453198194504, -0.0006854708190076053, 0.003001139499247074, -0.04036872461438179, -0.04093291237950325, -0.03244934603571892, -0.048263441771268845, -0.030134469270706177, 0.019468337297439575, -0.013636338524520397, -0.012180390767753124, 0.055406805127859116, 0.07134463638067245, 0.015474389307200909, -0.029226353392004967, -0.008465819992125034, -0.05233593285083771, -0.01638493686914444, 0.06673800945281982, -0.021381758153438568, 0.006379854865372181, 0.008870088495314121, -0.03524760529398918, -0.05575520917773247, -0.018858838826417923, -0.01910039409995079, -0.008521179668605328, 0.018994955345988274, 0.0016070244600996375, 0.06275295466184616, -0.02592540718615055, 0.023814788088202477, 0.012606119737029076, -0.011803646571934223, -7.280755653482629e-06, 0.09447281807661057, -0.019190717488527298, -0.002742614597082138, -0.0522986501455307, -0.033492859452962875, -0.005660772789269686, 0.017715344205498695, -0.00521820317953825, 0.004393289797008038, -0.012590826489031315, -0.034630242735147476, 0.03722314536571503, -0.029915647581219673, 0.039263203740119934, -0.0019914330914616585, -0.036128122359514236, 0.027978520840406418, -0.002371234819293022, 0.04621307924389839, 0.08246376365423203, -0.028830301016569138, -0.0046600778587162495, 2.6748525481529813e-34, 0.0439794585108757, -0.05457771569490433, -0.004594695754349232, -0.039255570620298386, 0.0315072238445282, -0.00033261391217820346, 0.0008316451567225158, 0.0016590585000813007, -0.05623343214392662, -0.07680102437734604, -0.031925033777952194], "308301a6-2983-480c-b771-15de12d77e0f": [0.038018982857465744, -0.05750185251235962, -0.06683415174484253, 0.03248251974582672, 0.017663899809122086, 0.04943304881453514, 0.05066894367337227, 0.05354407802224159, 0.03349945694208145, -0.003071058541536331, 0.027420690283179283, 0.007927857339382172, 0.02972143143415451, 0.07043559849262238, 0.014774354174733162, -0.02703392691910267, 0.05742938444018364, -0.0041787647642195225, -0.011026752181351185, 0.0012685384135693312, -0.04562194645404816, 0.026266904547810555, 0.001160463667474687, 0.021663663908839226, 0.08504942804574966, -0.015063810162246227, 0.02566944621503353, -0.03268266096711159, 0.019939763471484184, -0.04343101382255554, 0.0399942584335804, 0.021922817453742027, -0.034359145909547806, 0.028065232560038567, 2.3988718567125034e-06, -0.027473486959934235, -0.03845533728599548, -0.028399115428328514, -0.062487997114658356, 0.024686388671398163, 0.042066577821969986, 0.046180132776498795, -0.014564133249223232, -0.009918088093400002, 0.02245515026152134, 0.006709869019687176, 0.01303194835782051, -0.013563655316829681, -0.07445359230041504, 0.011860471218824387, 0.026994092389941216, -0.028256550431251526, -0.010990776121616364, -0.04476772993803024, 0.04731321334838867, -0.04199972748756409, -0.026501215994358063, 0.024249659851193428, 0.02678140252828598, 0.06300442665815353, -0.0018686024704948068, 0.057435326278209686, -0.03609144315123558, 0.027644943445920944, 0.08079148828983307, 0.06420096009969711, 0.007866272702813148, -0.08493604511022568, 0.043634820729494095, 0.04952576756477356, 0.09942149370908737, -0.03837308660149574, 0.02882053516805172, 0.04997432604432106, -0.05358806625008583, 0.006253210362046957, -0.024818100035190582, 0.00027798378141596913, -0.023594198748469353, -0.027981244027614594, 0.006343931891024113, -0.008160337805747986, 0.016164451837539673, 0.02245378866791725, 0.006636214908212423, -0.006988882552832365, -0.01738242618739605, -0.02689984068274498, 0.05801621079444885, -0.057021237909793854, 0.06057114154100418, -0.042275477200746536, 0.008615362457931042, 0.003469696966931224, 0.03471125289797783, 0.00397151242941618, -0.018595121800899506, -0.041868120431900024, 0.07490292191505432, -0.036222174763679504, 0.02378890849649906, -0.013149267993867397, -0.02512539178133011, 0.026024645194411278, -0.043006908148527145, 0.05895243212580681, 0.014816937036812305, 0.017123447731137276, -0.0171359870582819, 0.09029694646596909, -0.021307438611984253, -0.017236115410923958, -0.02114979363977909, 0.012900536879897118, -0.008849088102579117, -0.015108427964150906, -0.046761564910411835, 0.04261248931288719, 0.0102619007229805, 0.04993070662021637, 0.01427003089338541, -0.011756154708564281, -0.04322981461882591, 0.008328131400048733, -0.015728453174233437, -0.03909922391176224, -0.0013165250420570374, 0.0017956795636564493, 0.01032950822263956, 0.016890138387680054, -0.01097552664577961, -0.014289855025708675, 0.0035909549333155155, 0.006340296007692814, 0.01556952204555273, 0.0911836251616478, 0.027830736711621284, -0.03296508267521858, 0.016184912994503975, -0.003264149883762002, 0.04083816707134247, 0.018271055072546005, -0.00810045376420021, -0.018147071823477745, 0.041579313576221466, 0.0074447039514780045, 0.038269780576229095, -0.007785950321704149, 0.024581434205174446, 0.015566169284284115, -0.05887603759765625, 0.06814076006412506, -0.0874735414981842, 0.0047741602174937725, 0.05647589638829231, 0.010736812837421894, 0.014267683029174805, -0.03221333399415016, -0.0013729541096836329, 0.0314108245074749, 0.06883880496025085, 0.0017301422776654363, 0.020538974553346634, -0.021985094994306564, -0.0477566160261631, -0.0019205071730539203, 0.0178020428866148, -0.012648454867303371, -0.026617681607604027, -0.008087020367383957, -0.018731795251369476, 0.015410074964165688, -0.018368257209658623, -0.020229307934641838, 0.0023708073422312737, 0.040132686495780945, 0.053098730742931366, 0.04359584301710129, -0.018843086436390877, -0.012063593603670597, -0.008527658879756927, -0.09375060349702835, -0.003188897157087922, -0.013823093846440315, -0.10865792632102966, 0.020090416073799133, -0.03799663856625557, 0.004039197228848934, 0.029729103669524193, -0.04358212649822235, -0.01453552208840847, 0.015934986993670464, -0.025603830814361572, -0.0592120885848999, 0.01938803121447563, -0.003472957294434309, -0.07724764198064804, -0.08422105014324188, -0.023622063919901848, -0.007963806390762329, 0.02068396471440792, -0.02966066263616085, 0.0045746080577373505, 0.10167313367128372, 0.07498782873153687, -0.04271792620420456, -0.05229766666889191, -0.005023940000683069, 0.025779245421290398, 0.027938544750213623, 0.03117683157324791, 0.014878462068736553, -0.01803077943623066, -0.01811215840280056, -0.033496152609586716, 0.008512391708791256, -0.015445740893483162, 0.028846466913819313, -0.04775198921561241, 0.028256982564926147, 0.013532601296901703, -0.05047626420855522, -0.06962753087282181, 0.01658068783581257, 0.009446477517485619, -0.042321495711803436, -0.014751936309039593, 0.026078810915350914, -0.022644557058811188, 0.01424707006663084, -0.03907110542058945, 0.02270026132464409, 0.009140105918049812, 0.0008170635555870831, -0.012469411827623844, -0.0471307635307312, 0.054748211055994034, 0.04084589332342148, -0.0037701649125665426, -0.07692082226276398, 0.0342913419008255, 0.003822839120402932, 0.021124212071299553, 0.01475358847528696, -0.01170799508690834, -0.022300494834780693, 0.056591812521219254, 0.024856580421328545, 0.03325079381465912, 0.02175121381878853, 0.04829934611916542, -0.01078355684876442, 0.061096932739019394, -0.02096090465784073, 0.01860802434384823, 0.04022490233182907, -0.011464143171906471, -0.013667156919836998, -0.0064293271861970425, 0.012208783067762852, 0.048317067325115204, -0.030778590589761734, -0.025528566911816597, 0.042067915201187134, 0.027325289323925972, 0.00832119956612587, -0.02426828257739544, -0.035861529409885406, -0.0018953501712530851, 0.018584320321679115, 0.008103926666080952, 0.015983272343873978, 0.0031772921793162823, -0.03627467155456543, 0.03199581056833267, 0.07639457285404205, -0.010569574311375618, -0.0368945486843586, -0.011458836495876312, 0.013506583869457245, -0.004848375450819731, -0.06960344314575195, -0.03801436722278595, -0.028381718322634697, -0.020909534767270088, 0.0028492689598351717, 0.036855220794677734, -0.09967098385095596, -0.017489518970251083, 0.0058301598764956, -0.001489685382694006, -0.027581579983234406, -0.015407121740281582, -0.07779274880886078, -0.017210297286510468, 0.025825902819633484, -0.01334521733224392, 0.042079683393239975, 0.021577492356300354, 0.051375485956668854, 0.012968362309038639, -0.032411929219961166, 0.004901891574263573, -0.001031330437399447, -0.0014431430026888847, 0.021665234118700027, 0.023047972470521927, -0.04851016774773598, 0.007715401239693165, -0.033846352249383926, 0.026173410937190056, 0.03915565088391304, 0.00843806378543377, -0.05035632103681564, -0.02817995660007, -0.05727861076593399, -0.07563706487417221, -0.06411091238260269, -0.0541922003030777, 0.07473491877317429, 0.028080077841877937, 0.002011543605476618, -0.02259277179837227, -0.0165725015103817, 0.009736263193190098, -0.054378408938646317, -0.03970852121710777, -0.006572910118848085, 0.05194435641169548, -0.02440955862402916, 0.029222339391708374, 0.052495077252388, -0.0590330995619297, 0.003271556692197919, 0.0420546792447567, -0.002414991147816181, -0.060167305171489716, 0.0017382313963025808, 0.023354504257440567, -0.02461271919310093, 0.01645253784954548, 0.05415789410471916, -0.03362441062927246, -0.009460331872105598, 0.014498548582196236, -0.03197099268436432, -0.011356367729604244, -0.032142020761966705, -0.07001752406358719, 0.031049979850649834, 0.03983461484313011, 0.01887047104537487, 0.013885975815355778, -0.011231311596930027, -0.015961216762661934, -0.03301333636045456, 0.0246262326836586, -0.0647338256239891, -0.016758304089307785, -0.034849610179662704, 0.008751866407692432, -0.006250007078051567, 0.007149385288357735, -0.009727630764245987, 0.015874013304710388, 0.0013599316589534283, 0.00458558602258563, -0.046030446887016296, -0.023537222295999527, -0.0010536306072026491, -0.07973086833953857, 0.0032196284737437963, 0.027236290276050568, 0.07975337654352188, 0.03321792557835579, -0.029775263741612434, 0.008125887252390385, 0.005674842279404402, -0.013051453977823257, 0.003911769948899746, -0.015404658392071724, -0.09855310618877411, 0.0571034736931324, 0.007452800869941711, 0.02433731034398079, -0.014426536858081818, -0.008042857982218266, -0.00039446764276362956, 0.02284690923988819, -0.015290661714971066, 0.023046623915433884, -0.07028578221797943, -0.0451774038374424, -0.01462511159479618, -0.019505979493260384, -0.013595044612884521, -0.02102314494550228, 0.016822177916765213, -0.010551311075687408, 0.01905297115445137, 0.036764685064554214, -0.0288604237139225, -0.00499877380207181, 0.023033494129776955, 0.01395592000335455, 0.040315717458724976, 0.04230595752596855, 0.05599523335695267, -0.03357183188199997, 0.034433308988809586, 0.03385870158672333, 0.012391049414873123, 0.013592250645160675, 0.003668141318485141, 0.061467330902814865, -0.013374824076890945, 0.018315861001610756, -0.0014178091660141945, -0.030788367614150047, -0.0403558574616909, -0.01679309457540512, 0.01901109702885151, 0.02403092011809349, -0.02273082733154297, 0.018733613193035126, -0.04290878400206566, 0.0449075773358345, -0.03351396694779396, 0.021414553746581078, -0.020434744656085968, 0.040648169815540314, 0.0032951750326901674, -0.0046424781903624535, 0.043186333030462265, -0.021389750763773918, -0.022479360923171043, -0.03354065120220184, -0.1257244199514389, -0.11605348438024521, -0.02791437692940235, -0.02883278764784336, 0.014299829490482807, 0.04138755798339844, 0.03034943901002407, 0.012957657687366009, 0.016882596537470818, 0.040080636739730835, -0.0040140533819794655, -0.04875814542174339, -0.011159105226397514, -0.007228200323879719, -0.07217720150947571, -0.06843473762273788, -0.01645028404891491, 0.04683217778801918, -0.026485014706850052, 0.07503443956375122, 0.038825102150440216, -0.00935459602624178, 0.03794195502996445, -0.004057222977280617, 0.05134636536240578, -0.044420842081308365, -0.01687653921544552, -0.013125857338309288, 0.02939511463046074, 0.023400047793984413, 0.016395142301917076, 0.005860838107764721, -0.01888430304825306, -0.05051080510020256, 0.0039267209358513355, -0.021706674247980118, -0.0207199789583683, 0.012461991980671883, -0.10358278453350067, -0.013022412545979023, -0.0327688492834568, -0.0296008437871933, 0.014366131275892258, 0.026553437113761902, -0.016483934596180916, -0.038926295936107635, -0.05840460583567619, -0.01830325648188591, 0.02639652229845524, 0.0006856825784780085, 0.02258897013962269, 0.05339198186993599, -0.005791980307549238, 0.028061728924512863, -0.033872537314891815, -0.018906570971012115, -0.00651094364002347, -0.008380889892578125, 0.024312229827046394, 0.01728184148669243, 0.007590883411467075, 0.009923075325787067, 0.07789886742830276, 0.041768528521060944, -0.01312893908470869, 0.007840579375624657, 0.02103213407099247, 0.009088341146707535, 0.010456965304911137, -0.035284098237752914, 0.004042949061840773, 0.008985781110823154, 0.008605827577412128, -0.0562271885573864, 0.045948855578899384, -0.05147123709321022, -0.042287517338991165, -0.0057922108098864555, 0.0349886417388916, 0.010812927037477493, -0.0005622503813356161, -0.0059257615357637405, -0.03094305284321308, 0.009644381701946259, -0.004060608334839344, 0.02665001153945923, -0.015999460592865944, 0.012486702762544155, -0.0020775459706783295, 0.0182802714407444, -0.00017525700968690217, -0.014551663771271706, 0.08091910928487778, -0.037276286631822586, -0.007340419106185436, 0.03517938032746315, -0.03178244084119797, -0.03766068443655968, -0.004848347511142492, -0.028810938820242882, 0.027114661410450935, 0.016255034133791924, 0.006795710418373346, -0.04015108197927475, -0.04053600877523422, 8.747467654757202e-05, 0.010910269804298878, 0.04019908234477043, 0.011823566630482674, 0.013061881996691227, 0.04720193147659302, 0.018833504989743233, -0.07135777920484543, 0.006704066414386034, 0.015677157789468765, -0.06635119765996933, 0.008835620246827602, 0.015843262895941734, -6.536578048773218e-33, -0.02024618722498417, -0.02795092947781086, -0.009244942106306553, 0.008200029842555523, -0.056543342769145966, 0.018959306180477142, -0.026873309165239334, -0.004152927082031965, -0.01877293549478054, -0.03324095159769058, -0.03281258046627045, -0.008237453177571297, 0.021827690303325653, -0.06039434298872948, 0.03847937285900116, 0.016038523986935616, -0.023753173649311066, 0.010665260255336761, -0.010903296992182732, 0.003882031189277768, 0.004324471578001976, 0.0038002587389200926, 0.03665946424007416, 0.024953002110123634, 0.019906627014279366, -0.01719166338443756, -0.016188466921448708, -0.022197727113962173, 0.07023638486862183, 0.04316607117652893, -0.034601014107465744, -0.019682608544826508, 0.0005949062760919333, 0.015229451470077038, 0.008141351863741875, 0.025821534916758537, -0.029871419072151184, -0.05396801605820656, 0.023399561643600464, -0.0012621600180864334, 0.051646310836076736, -0.05538300797343254, -0.0021632204297930002, 0.0036402291152626276, -0.025806821882724762, 0.013881178572773933, 0.03714459761977196, -0.010429893620312214, -0.028799759224057198, 0.004273759201169014, -0.04755270481109619, 0.016878388822078705, -0.018739450722932816, 0.07472367584705353, -0.03314671665430069, -0.005863178055733442, 0.03271980211138725, -0.02210885100066662, -0.02570969983935356, 0.02469780668616295, 0.08704628795385361, 0.05439244955778122, 0.07397392392158508, 0.03323822468519211, -0.020973440259695053, 0.015557109378278255, 0.003865088801831007, 0.07179099321365356, 0.002916246186941862, -0.007802976761013269, 0.015526430681347847, 0.06444834917783737, -0.0154860969632864, -0.04040798917412758, -0.021971404552459717, -0.07022912800312042, 0.00716983899474144, 0.05545995384454727, 0.03307138383388519, 0.08451865613460541, 0.007146149408072233, -0.0002512102364562452, -0.046826910227537155, 0.016902925446629524, 0.010699073784053326, 0.025075288489460945, -0.02128557860851288, -0.04731069877743721, 0.03423028066754341, -0.03588194027543068, 0.0023018100764602423, 0.0069488645531237125, -0.06314530968666077, -0.006617960054427385, 0.005852517206221819, 0.014923866838216782, 0.017392301931977272, -0.0004046871908940375, -0.04428732022643089, -0.02343454398214817, -0.013517891988158226, -0.02141200751066208, -0.006807699333876371, -0.008859561756253242, 0.0164323877543211, -0.0265375804156065, -0.036191072314977646, -0.016982771456241608, -0.06880126148462296, -0.01319378986954689, 0.0010730212088674307, -0.056193798780441284, 0.04704790934920311, -0.06185121834278107, 0.006136837415397167, -0.02282450720667839, -0.012917380779981613, -0.006782107055187225, 0.019935017451643944, 0.024789907038211823, -0.0065739210695028305, -0.01198209822177887, 0.0026254181284457445, 0.015232994221150875, -0.034213997423648834, 0.013589007779955864, -0.03186626359820366, 0.02040531300008297, 0.05969277769327164, -0.03812509402632713, -0.01145495567470789, -0.010936569422483444, 3.03994823980247e-07, 0.012513441033661366, 0.10926248878240585, 0.057709455490112305, -1.437225455447333e-05, -0.04030640423297882, -0.042228102684020996, 0.007653661537915468, 0.01363653875887394, -0.08330041915178299, 0.04792121425271034, 0.0541066937148571, -0.04699293151497841, 0.00337832048535347, -0.0013141750823706388, -0.007195344660431147, -0.013767371885478497, -0.015466094017028809, -0.00763485673815012, -0.08248099684715271, -0.045218415558338165, 0.035372983664274216, 0.011806991882622242, 0.07225598394870758, -0.015568978153169155, -0.03494466841220856, -0.02649487927556038, -0.042387232184410095, -0.07365045696496964, 0.03524404764175415, 0.022454647347331047, 0.050855692476034164, 0.04684709385037422, -0.02280176430940628, -0.03505159541964531, -0.020671885460615158, -0.03304382786154747, 0.03579285740852356, -0.003840690478682518, 0.014643888920545578, 0.06298333406448364, 0.023022497072815895, -0.07944175601005554, -0.001170220784842968, -0.05116625502705574, 0.0469268262386322, 0.07863079756498337, 0.034557729959487915, 0.09200050681829453, -0.07488736510276794, 0.0036780128721147776, -0.0014626154443249106, 0.0012507818173617125, -0.010823204182088375, 0.027997396886348724, -0.0005794487078674138, -0.015421677380800247, 0.009184830822050571, -0.033700212836265564, 0.0643903836607933, 0.09102737903594971, -0.03462377190589905, -0.0138856191188097, 0.0010781926102936268, 0.056902702897787094, 0.050686515867710114, 0.01692589372396469, -0.023949172347784042, 3.391663722743383e-34, 0.02853560447692871, -0.050672102719545364, -0.0008786710677668452, 0.009754139930009842, 0.014489042572677135, -0.009698206558823586, 0.01640480011701584, 0.03081199899315834, -0.0216608177870512, -0.06353015452623367, -0.025719398632645607], "9f03394b-9689-4c1e-a008-2f40d8c0ee0e": [-0.00026516831712797284, -0.05603640154004097, -0.03574623167514801, -0.012018258683383465, -0.035523612052202225, 0.0058270893059670925, 0.06148779019713402, 0.012705850414931774, 0.011031493544578552, 0.0046423617750406265, 0.056531667709350586, 0.018740016967058182, 0.04331870749592781, 0.07613423466682434, 0.038067739456892014, -0.011895216070115566, 0.0652860701084137, -0.020418569445610046, -0.01863836497068405, -0.00014559774717781693, -0.025960462167859077, 0.011482231318950653, -0.017352793365716934, 0.05194275453686714, 0.051754530519247055, -0.005772612988948822, 0.015166716650128365, -0.027980880811810493, 0.04922528564929962, -0.005160246044397354, 0.05242457613348961, 0.004644523374736309, -0.02055794559419155, 0.038365092128515244, 2.2528950012201676e-06, -0.024841273203492165, -0.009613536298274994, 0.03192909061908722, -0.02374640293419361, -0.026092423126101494, 0.056551460176706314, 0.016700739040970802, -0.013227698393166065, -0.0007871067500673234, 0.013588348403573036, 0.0015355554642155766, 0.11069656163454056, -0.06359896808862686, -0.03483989089727402, 0.004453655332326889, 0.01188268605619669, -0.023451898247003555, 0.0012495688861235976, -0.022110268473625183, 0.004058928694576025, 0.006308302283287048, 0.011510815471410751, 0.017398804426193237, 0.03160107135772705, 0.04205042123794556, -0.00017451104940846562, 0.02004997618496418, 0.0020435319747775793, 0.0058670504949986935, 0.03550560399889946, 0.050244446843862534, -0.004889320582151413, -0.03160243108868599, 0.008692145347595215, 0.04660031571984291, 0.10521050542593002, -0.0243312306702137, 0.01448460016399622, 0.053089454770088196, -0.01565832644701004, 0.0019106627441942692, -0.0214145015925169, -0.015704967081546783, -0.05475709214806557, -0.031062837690114975, -0.01789158023893833, 0.026525355875492096, 0.004524192772805691, 0.03207404911518097, -0.04297340661287308, 0.029458163306117058, 0.023208308964967728, -0.0072241793386638165, 0.023859117180109024, -0.028940830379724503, 0.0751505121588707, -0.003410498145967722, 0.011083144694566727, -0.017831087112426758, 0.006953900679945946, 0.02101912349462509, -0.01627953350543976, -0.044704508036375046, 0.04802784323692322, -0.02297396771609783, 0.03484850004315376, -0.01414682250469923, 0.010729673318564892, 0.04530532285571098, -0.02994556725025177, 0.04396611452102661, -0.008268418721854687, 0.05095100775361061, 0.00704935472458601, -0.0059158154763281345, -0.025242600589990616, -0.027405796572566032, -0.0223405621945858, 0.046780530363321304, 0.007891078479588032, -0.015303553082048893, -0.06559140235185623, 0.07852198928594589, -0.0425579659640789, 0.015416188165545464, 0.014062117785215378, -0.013741900213062763, -0.0704919621348381, 0.018229570239782333, -0.02857002057135105, -0.02100015990436077, -0.03432254120707512, 0.02388535998761654, 0.020982058718800545, -0.03159105405211449, -0.004216749686747789, -0.04437326639890671, -0.002425850834697485, -0.01966928131878376, 0.02000299282371998, 0.06784211099147797, 0.056764304637908936, 0.027249198406934738, 0.025042042136192322, 0.018345782533288002, 0.022380758076906204, -0.023407481610774994, 0.007203919813036919, -0.004183044191449881, 0.034862760454416275, -0.005536220036447048, 0.022883955389261246, -0.023722779005765915, -0.0042074876837432384, 0.048644840717315674, -0.015755746513605118, 0.027347324416041374, -0.10964915156364441, -0.0008678581798449159, 0.04449130594730377, 0.02821527235209942, 0.025952672585844994, 0.008323093876242638, -0.005560270976275206, 0.01245574839413166, 0.03364328294992447, -0.0292446780949831, 0.04570510983467102, 0.007025556638836861, -0.028065767139196396, -0.029056021943688393, -0.0313572995364666, 0.01929597184062004, 0.003545091487467289, -0.01231782604008913, -0.0026430508587509394, 0.05551736429333687, -0.006666857283562422, -0.015522798523306847, 0.014317640103399754, 0.023330511525273323, 0.051858145743608475, 0.04073726013302803, 0.026253456249833107, 0.006431210786104202, 0.019165722653269768, -0.11341007053852081, 0.004926357418298721, 0.02505139634013176, -0.04074380546808243, 0.01443395670503378, -0.018952004611492157, -0.001790112117305398, 0.01745712198317051, -0.025415970012545586, 0.025656752288341522, 0.013242287561297417, -0.04344096779823303, -0.012915747240185738, 0.03501273691654205, -0.03146715462207794, -0.05137747898697853, -0.0924730971455574, -0.023878300562500954, -0.006046222988516092, -0.049988653510808945, -0.10804885625839233, -0.01777244731783867, 0.06873742491006851, 0.0348425954580307, -0.04497817903757095, -0.029590237885713577, -0.008850340731441975, 0.016301048919558525, 0.03537777066230774, 0.023749731481075287, 0.0029308332595974207, -0.018576443195343018, 0.006426569540053606, 0.0009551025577820837, 0.027868324890732765, -0.009313673712313175, 0.007833516225218773, -0.03634015470743179, 0.03243204578757286, -0.03479276970028877, -0.04493391141295433, -0.042936842888593674, -0.0005625631893053651, 0.022779708728194237, 0.00691363075748086, 0.024042325094342232, 0.010143413208425045, -0.029071850702166557, 0.03879651799798012, -0.05624335631728172, 0.04746088758111, 0.005624221172183752, 0.005766038317233324, 0.008724142797291279, -0.053106844425201416, 0.07178277522325516, 0.10700226575136185, -0.00629339599981904, -0.05583227425813675, 0.0167335644364357, 0.05161038786172867, 0.02687741070985794, 0.016398150473833084, 0.020750215277075768, -0.026188882067799568, 0.08681962639093399, 0.021245716139674187, -0.00561485392972827, -0.04472311586141586, 0.03491261228919029, -0.009414774365723133, 0.023185105994343758, 0.028548941016197205, 0.04063236340880394, 0.03213959187269211, -0.05807151645421982, 0.017794275656342506, 0.0062354258261621, -0.011387798003852367, 0.036228813230991364, -0.053022485226392746, 0.0031626673880964518, 0.022901417687535286, -0.010523349978029728, -0.03145727515220642, 0.00831497274339199, 0.0024249842390418053, 0.014505620114505291, 0.03489187732338905, 0.007842444814741611, -0.01104119885712862, -0.01824996992945671, -0.036923374980688095, 0.011659854091703892, 0.09201715886592865, -0.00685330294072628, -0.030043456703424454, 0.011340833269059658, 0.02803402952849865, 0.004129465203732252, -0.06320814788341522, -0.000999545562081039, -0.05515484884381294, -0.01588459685444832, 0.040877535939216614, 0.028635183349251747, -0.04724486544728279, -0.009432042017579079, 0.022318648174405098, -0.03137242794036865, -0.061090968549251556, -0.010964847169816494, -0.06426505744457245, 0.007578613236546516, 0.029822375625371933, 0.03344310447573662, 0.017420802265405655, 0.03436443954706192, -0.002945337211713195, -0.022033551707863808, -0.01775391586124897, -0.0009327381267212331, -0.005001472774893045, -0.02589132823050022, 0.0053469412960112095, 0.04202795401215553, -0.03308827057480812, 0.01513382326811552, -0.030806876718997955, -0.00792983639985323, 0.00018937471031676978, 0.012258632108569145, 0.024787941947579384, -0.005291815847158432, -0.056094735860824585, -0.07975755631923676, -0.07400018721818924, -0.03323987498879433, 0.03571876510977745, 2.353567879254115e-06, -0.03785066679120064, 0.014811267144978046, -0.01513125654309988, -0.0016789754154160619, -0.0478387326002121, -0.07043712586164474, 0.01734180748462677, 0.07562515884637833, -0.09108024835586548, 0.01883479207754135, 0.024221105501055717, -0.029685791581869125, 0.03954707086086273, -0.008827666752040386, -0.01302174013108015, -0.055497001856565475, -0.04025495797395706, 0.01664009690284729, -0.010493592359125614, 0.003688898403197527, 0.044338684529066086, -0.03596504032611847, 0.03951283171772957, 0.00505863456055522, -0.025108400732278824, -0.021899735555052757, -0.037454959005117416, -0.02205038070678711, 0.030736250802874565, 0.0279221273958683, -0.0222498569637537, 0.0017837230116128922, 0.0010362144093960524, 0.004565090872347355, -0.09353505074977875, 0.025164641439914703, -0.059451110661029816, 0.002861292799934745, 0.0032597838435322046, -0.004240152891725302, -0.009698247537016869, -0.011717395856976509, -0.07270665466785431, -0.01323956623673439, -0.05186852812767029, 0.024455217644572258, -0.04874463751912117, 0.016022859141230583, 0.01684228703379631, -0.02156655490398407, -0.03143400698900223, 0.02536057122051716, 0.036637697368860245, -0.011422387324273586, -0.04924066737294197, -0.0076660518534481525, -0.016995826736092567, 0.03384511172771454, 0.03232099488377571, -0.009812560863792896, -0.11250805109739304, 0.06686262041330338, -0.008746640756726265, 0.0045900191180408, -0.03365267068147659, -0.04633782431483269, -0.020288728177547455, -0.014789965935051441, 0.027277005836367607, -0.0016464422224089503, -0.08987966179847717, -0.043050121515989304, -0.019663052633404732, 0.03095606155693531, 0.023475155234336853, -0.025454331189393997, 0.005779818631708622, -0.003047928446903825, 0.03510370850563049, 0.05166441947221756, -0.07835174351930618, 0.02462124451994896, -0.026981428265571594, -0.03185254707932472, 0.02884984016418457, 0.00820709764957428, 0.006046442314982414, -0.07023024559020996, -0.04404270276427269, -0.0037129970733076334, -0.011546232737600803, -0.02861645631492138, 0.0009285846026614308, 0.006617280188947916, -0.0029502674005925655, -0.02974611707031727, -0.039435409009456635, -0.018979523330926895, -0.02845258079469204, 0.010044112801551819, 0.01653221994638443, 0.04723228141665459, -0.061247214674949646, -0.009265795350074768, -0.07183513790369034, 0.024828534573316574, 0.0324346125125885, 0.039411041885614395, -0.024910276755690575, 0.014860698021948338, -0.031220247969031334, 0.009137471206486225, 0.05357936769723892, -0.03566346690058708, -0.03098697029054165, -0.06764309853315353, -0.08100791275501251, -0.09654082357883453, 0.01942252367734909, -0.004907927010208368, 0.048100922256708145, 0.011843550018966198, 0.012553509324789047, -0.013879211619496346, -0.004566100426018238, 0.03710902854800224, -0.08579658716917038, -0.020651400089263916, 0.027786333113908768, 0.03871840238571167, -0.04277914762496948, -0.03644956648349762, -0.027865570038557053, 0.039397429674863815, -0.0496130995452404, 0.00269156601279974, 0.017163926735520363, 0.01026129350066185, 0.07879756391048431, 0.04572732374072075, 0.029419496655464172, -0.07203556597232819, 0.0006895846454426646, 0.01435126457363367, 0.02486368454992771, 0.009160180576145649, 0.02496756799519062, -0.024883447214961052, 0.015617999248206615, -0.07430709153413773, -0.010725991800427437, -0.026237551122903824, 0.005168649833649397, 0.009704099036753178, -0.07503962516784668, 0.026320723816752434, 0.01970748044550419, -0.01908903382718563, 0.019835833460092545, -0.016254572197794914, 0.0013157535577192903, -0.03493746742606163, -0.02320624701678753, 0.002241268055513501, -0.002575821243226528, 0.011826843954622746, 0.013655866496264935, 0.04162008315324783, -0.029275983572006226, -0.007326842285692692, -0.030444717034697533, -0.012277833186089993, -0.00010459343320690095, -0.029308484867215157, -0.014614869840443134, 0.023132216185331345, 0.06911996006965637, 0.022230179980397224, 0.10231990367174149, 0.04151401296257973, 0.007779059931635857, 0.021954573690891266, -0.014814483933150768, 0.016656281426548958, 0.04166712984442711, -0.044090233743190765, 0.008466815575957298, 0.003612855449318886, -0.0019067330285906792, 0.01525207981467247, 0.04795461520552635, -0.007972711697220802, -0.07943985611200333, 0.024648034945130348, -0.0016706328606233, 0.027740731835365295, 0.12508761882781982, -0.07210539281368256, -0.006414287723600864, -0.002455830341205001, -0.017389198765158653, 0.0006195283494889736, -0.04814005643129349, 0.022120393812656403, 0.006313552148640156, -0.005860013421624899, -0.013656042516231537, -0.00013076700270175934, 0.026722392067313194, -0.04012622684240341, 0.02749883383512497, 0.021506303921341896, -0.014486377127468586, 0.015568224713206291, -0.056379370391368866, -0.034473977982997894, 0.002634442178532481, 0.04227675870060921, -0.009175100363790989, -0.07709748297929764, -0.056396398693323135, -0.002587847178801894, 0.0027227643877267838, -0.0005797490011900663, -8.636782149551436e-05, 0.012849202379584312, 0.024486811831593513, 0.02008110098540783, -0.028477275744080544, -0.014639941975474358, 0.040327753871679306, -0.05544807389378548, -0.022891497239470482, 0.05274807661771774, -6.322545506743434e-33, 0.023752287030220032, -0.029279563575983047, 0.05494999885559082, -0.01907452568411827, -0.09529692679643631, 0.022306928411126137, -0.001434256904758513, 0.011277364566922188, -0.03781891241669655, 0.01894659735262394, -0.041950929909944534, 0.026449305936694145, 0.010900512337684631, -0.017261413857340813, 0.010619480162858963, 0.028931686654686928, -0.02609829418361187, 0.005196269601583481, 0.021280907094478607, 0.0017995692323893309, 0.0036195125430822372, -0.0024693601299077272, 0.03916309401392937, -0.004879583604633808, 0.08504509925842285, 0.008443661034107208, -0.026411782950162888, 0.0008073468343354762, 0.08058840781450272, 0.040325701236724854, 0.016475921496748924, -0.007939291186630726, -0.016603661701083183, -0.01519716251641512, 0.0006272444734349847, 0.08950506150722504, -0.04055776819586754, -0.013856335543096066, 0.03507830202579498, -0.034712981432676315, 0.03635592758655548, -0.01882539503276348, -0.022194741293787956, 0.024506397545337677, -0.0569644421339035, 0.030922221019864082, 0.009323496371507645, -0.010460691526532173, -0.014057522639632225, -0.031997449696063995, 0.006951398216187954, 0.01860218122601509, -0.03030640445649624, 0.0593920536339283, -0.018138278275728226, -0.04517807066440582, 0.00872685108333826, -0.02983509562909603, -0.01983626000583172, 0.08038955926895142, 0.04675189405679703, 0.008180235512554646, 0.06963271647691727, 0.013751393184065819, -0.018092714250087738, 0.015578670427203178, 0.010423166677355766, 0.02744373120367527, 0.032235950231552124, -0.0030719691421836615, 0.0030512535013258457, 0.11637088656425476, 0.02000591531395912, -0.013435009866952896, -0.010213655419647694, -0.04711286723613739, -0.008173545822501183, 0.04172779992222786, 0.030363252386450768, 0.04495392367243767, 0.00513846380636096, -0.028742121532559395, -0.03231700509786606, 0.018544957041740417, -0.000856724800541997, 0.06669667363166809, -0.009815449826419353, -0.03932012990117073, 0.02037161961197853, -0.03845035657286644, -0.020720697939395905, 0.04672201722860336, -0.007681683171540499, -0.035376276820898056, 0.026352310553193092, -0.02586478181183338, 0.013263060711324215, -0.009057077579200268, -0.017818115651607513, 0.005566202104091644, 0.025439364835619926, -0.01231478899717331, -0.0012008512858301401, 0.04415132477879524, 0.041409268975257874, -0.030296005308628082, -0.03705828636884689, -0.019837087020277977, -0.04432147368788719, 0.01996108517050743, 0.018681466579437256, 0.014644713141024113, 0.028054386377334595, -0.0502624586224556, 0.005386052653193474, -0.015597942285239697, 0.016895916312932968, -0.03094041347503662, 0.025189511477947235, 0.02621825784444809, -0.011189955286681652, 0.03668880835175514, -0.04138960316777229, 0.03931238874793053, -0.009334458969533443, 0.0007254478987306356, -0.03594242408871651, 0.033214859664440155, 0.05706695839762688, -0.03937307000160217, -0.00789071898907423, -0.01950003020465374, 2.9223113529042166e-07, -0.026196012273430824, 0.08168771117925644, 0.04726602882146835, 0.025150438770651817, -0.005475637502968311, -0.035299867391586304, 0.037968702614307404, 0.024514956399798393, -0.06646580249071121, 0.06577674299478531, 0.019622603431344032, -0.04438289999961853, -0.01946003921329975, -0.04058702662587166, -0.017977965995669365, -0.08559232950210571, -0.04669862985610962, 0.029631495475769043, -0.07748116552829742, -0.0027734788600355387, -0.048120271414518356, -0.0019326701294630766, 0.04394819959998131, -0.01185823604464531, -0.04331797733902931, -0.04730613902211189, -0.054050493985414505, -0.057877495884895325, 0.09278731793165207, 0.07243116945028305, 0.021581439301371574, 0.011688022874295712, 0.03420735150575638, -0.010726682841777802, -0.0027559411246329546, -0.028006168082356453, 0.040409937500953674, -0.002428351202979684, 0.029153794050216675, 0.06584350764751434, -0.014210359193384647, -0.07282672077417374, 0.02230755425989628, -0.009325427934527397, 0.046446412801742554, 0.05524655804038048, -0.014460195787250996, 0.02033829875290394, -0.06678879261016846, -0.027244724333286285, 0.006049219518899918, -0.0421317033469677, -0.0006467265193350613, -0.021083969622850418, 0.01122225634753704, -0.0011996543034911156, 0.00037367866025306284, -0.04307887703180313, 0.048813819885253906, 0.047833483666181564, -0.014636555686593056, -0.06278736889362335, -0.009308218955993652, 0.027077363803982735, 0.059973299503326416, 0.008603022433817387, 0.008942297659814358, 2.934548637608395e-34, 0.02297404780983925, -0.052646324038505554, -0.021146468818187714, 0.0493733175098896, 0.00955425575375557, 0.008091546595096588, 0.018257321789860725, -0.01850595511496067, -0.04747892543673515, -0.017095083370804787, -0.02652861177921295], "fce3078e-c270-459f-a637-5009e3c264e1": [0.006732969079166651, 0.05143578350543976, -0.023263536393642426, -0.019624879583716393, -0.02757258713245392, 0.037383146584033966, -0.028128573670983315, 0.02585616707801819, 0.02091989852488041, -0.020392220467329025, 0.018706874921917915, 0.035622820258140564, 0.011019302532076836, 0.04755068197846413, 0.017176784574985504, 0.07299657166004181, 0.008580733090639114, 0.013538398779928684, 0.02295793779194355, 0.05655524134635925, 0.016981448978185654, 0.027153125032782555, -0.011550781317055225, 0.0008630144875496626, 0.027888309210538864, -0.03994525223970413, -0.003764423541724682, -0.00837217178195715, -0.03588806092739105, -0.02658267505466938, 0.026064319536089897, 0.046129461377859116, -0.03210185840725899, 0.03156289830803871, 2.7929847874474945e-06, 0.027986038476228714, -0.011977553367614746, 0.007169582415372133, -0.027620429173111916, 0.04571416974067688, 0.014902004972100258, -0.06418769061565399, -0.005042100790888071, 0.007651088759303093, 0.04666846618056297, 0.003994133323431015, -0.04413977265357971, 0.043605249375104904, -0.0033832320477813482, 0.045576415956020355, 0.017057599499821663, 0.018319664523005486, -0.012925460934638977, 0.0038304547779262066, 0.05193350091576576, -0.015374716371297836, -0.06351946294307709, 0.09046757966279984, 0.03999140113592148, 0.03346911445260048, 0.019108537584543228, 0.013904177583754063, -0.0013874510768800974, -0.0003401253488846123, 0.03499041870236397, 0.004838238935917616, 0.030489884316921234, -0.10244572907686234, -0.006660911720246077, 0.0017985791200771928, 0.01646789163351059, -0.019479118287563324, 0.009051245637238026, -0.022227991372346878, -0.05179407447576523, -0.00410305755212903, 0.0236809141933918, 0.03780852630734444, -0.02286522276699543, 0.004170882049947977, -0.0723763182759285, -0.07028436660766602, -0.022720959037542343, 0.002162409946322441, 0.06708607077598572, -0.03388913720846176, -0.015817919746041298, -0.02238093875348568, 0.031011158600449562, 0.042455922812223434, 0.03649250045418739, -0.014385190792381763, -0.05891330540180206, 0.025993581861257553, 0.04313316196203232, -0.04026118293404579, 0.03698449581861496, 0.023766618221998215, 0.09830772131681442, 0.04232725501060486, -0.043020009994506836, 0.012528061866760254, -0.05747359246015549, 0.01312057115137577, -0.03187974914908409, 0.13952600955963135, 0.002281678607687354, 0.08426772058010101, -0.01084202155470848, 0.056459374725818634, 0.03461012244224548, 0.03151780739426613, 0.009997659362852573, -0.03721465915441513, -0.027783680707216263, -0.02201567217707634, 0.03726302832365036, 0.009230351075530052, 0.007035148795694113, 0.09870612621307373, -0.017132708802819252, 0.02196352183818817, -0.022703906521201134, 0.029762353748083115, 0.019400378689169884, -0.0832214429974556, 0.004113622475415468, 0.01446160301566124, -0.031313713639974594, 0.03096478432416916, -0.03785828873515129, 0.010838191024959087, -0.022809894755482674, 0.007812650874257088, 0.003236197866499424, 0.05976919084787369, 0.05342761427164078, -0.022605624049901962, 0.03321653604507446, -0.005972682032734156, -0.01982010342180729, -0.009906050749123096, -0.032562654465436935, -0.015522741712629795, -0.010655161924660206, -0.018736064434051514, -0.0020373475272208452, 0.04530082643032074, 0.009939286857843399, 0.00559668755158782, -0.007404739037156105, -0.034270308911800385, 0.03675830736756325, -0.008423998951911926, -0.04331662878394127, 0.018670501187443733, -0.027270693331956863, -0.007337016984820366, -0.0313541553914547, 0.023306913673877716, 0.029795954003930092, 0.0066003561951220036, 0.054898764938116074, -0.01923351362347603, 0.020642990246415138, 0.025475958362221718, 0.07416768372058868, 0.020960792899131775, 0.014482298865914345, -0.0196108128875494, 0.00863078236579895, 0.018123628571629524, 0.0358034186065197, 0.02476544678211212, -0.023105353116989136, -0.001800203463062644, -0.02060399204492569, -0.05631241574883461, -0.02999754622578621, 0.05099530145525932, 0.0144179193302989, -0.017455019056797028, 0.005336510017514229, -0.008484289050102234, -0.048729050904512405, -0.021600667387247086, -0.10089882463216782, 0.023029750213027, 0.00253553525544703, -0.0221233069896698, -0.04862181097269058, -0.03535843268036842, -0.06687529385089874, 0.003199637634679675, 7.017924508545548e-05, 0.010014845058321953, -0.027974987402558327, -0.11067372560501099, 0.04044528305530548, -0.025831645354628563, -0.006460263393819332, 0.002252724254503846, 0.14762111008167267, 0.010211381129920483, 0.04138686880469322, -0.0239784587174654, -0.014550108462572098, -0.01885649375617504, -0.011424579657614231, -0.04322976619005203, -0.006553390994668007, -0.026941660791635513, 0.013793091289699078, -0.0019523384980857372, -0.07267583906650543, -0.07237832993268967, -0.012994704768061638, -0.03343252092599869, 0.005088162142783403, 0.0031391375232487917, 0.004040854051709175, -0.03357832506299019, -0.0581633485853672, 0.05725109577178955, 0.042591676115989685, -0.029436606913805008, -0.022504810243844986, 0.021469129249453545, -0.005747226532548666, 0.028743857517838478, 0.01417757011950016, 0.0027672217693179846, 0.019189566373825073, 0.04006899893283844, 0.00457288883626461, -0.04361686483025551, 0.10769742727279663, 0.003159939544275403, 0.010986813344061375, -0.07308206707239151, -0.003692109137773514, 0.046483345329761505, -0.05136879161000252, 0.03178367391228676, -0.018782611936330795, 0.0067277941852808, -0.022741694003343582, 0.04620214179158211, 0.009817760437726974, -0.019883085042238235, 0.03851469233632088, 0.01087530329823494, -0.0038415309973061085, 0.012356444261968136, 0.012421518564224243, -0.013116062618792057, -0.013027685694396496, -0.012849109247326851, 0.03358810022473335, -0.002159349387511611, -0.019956523552536964, -0.0010920643107965589, -0.03197868540883064, 0.022371193394064903, 0.08916600793600082, -0.017653120681643486, -0.04766117408871651, -0.00012010697537334636, -0.021357111632823944, -0.008503011427819729, -0.040374863892793655, 0.006688972469419241, -0.02645575813949108, 0.002844632836058736, 0.02832193113863468, 0.04740062355995178, -0.05537446215748787, -0.014917046763002872, -0.04172724485397339, -0.002437600865960121, -0.05935468524694443, -0.0005893075140193105, -0.05404771491885185, 0.01795024238526821, 0.002609431743621826, 0.02560845948755741, 0.05495643988251686, 0.004344854038208723, -0.04726610705256462, -0.0014565784949809313, 0.02401183918118477, -0.016445554792881012, 0.020050864666700363, -0.050568412989377975, -0.0023427901323884726, 0.018952108919620514, 0.050879936665296555, -0.022099288180470467, -0.02171209640800953, 0.06674715876579285, 0.015303068794310093, -0.006612221710383892, -0.02403237856924534, -0.004659245256334543, 0.05986466631293297, -0.0010329781798645854, 0.07379608601331711, -0.021993214264512062, 0.009345232509076595, -0.09102271497249603, -0.002949606394395232, -0.0075952825136482716, -0.04304111376404762, -0.004089358262717724, -0.01734219118952751, -0.0031342816073447466, 0.03493206202983856, -0.039783939719200134, 0.0053954953327775, 0.028434574604034424, -0.005370119586586952, -0.0325951911509037, -0.03745037689805031, -0.053704049438238144, -0.0296446792781353, -0.0618453212082386, 0.011817703023552895, -0.03482108563184738, 0.038518115878105164, 0.06380321085453033, -0.022052403539419174, -0.03590551018714905, 0.03617782145738602, 0.017872974276542664, -0.01023691426962614, 0.002800714923068881, 0.02749614045023918, 0.01777333952486515, -0.011348789557814598, -0.025789795443415642, 0.011425359174609184, 0.04955895245075226, -0.006761798169463873, -0.004103193525224924, -0.03826046735048294, -0.03986377641558647, -0.030412707477808, 0.03994782269001007, -0.04269317910075188, 0.003369272919371724, 0.02561509795486927, 0.012427504174411297, 0.06702011078596115, -0.005350177641957998, -0.004479689057916403, -0.04120049998164177, -0.011549102142453194, -0.08145785331726074, 0.01857670210301876, -0.05722953379154205, 0.0009181260829791427, 0.013472253456711769, 0.10025542974472046, 0.07561010867357254, 0.003647611476480961, -0.018852731212973595, -0.015894802287220955, 0.04192682355642319, 0.014678538776934147, 0.025231584906578064, -0.0511508584022522, -0.0020565553568303585, -0.008146077394485474, 0.05067338049411774, 0.04900943115353584, -0.031107420101761818, 0.0017709322273731232, 0.033317770808935165, -0.010186368599534035, 0.005089576821774244, -0.027297262102365494, -0.07968220114707947, 0.02026403695344925, 0.01797405816614628, 0.02277744561433792, -0.017593009397387505, -0.0005259060417301953, -0.00040991525747813284, 0.07337374240159988, -0.004291254561394453, 0.002393204253166914, -0.016482189297676086, -0.06401880830526352, -0.014539714902639389, -0.012619332410395145, -0.04537864029407501, 0.001775855664163828, -0.03551262617111206, 0.044013503938913345, 0.04725731909275055, -0.012410145252943039, -0.04577816277742386, 0.024606961756944656, 0.06563502550125122, -0.0311165452003479, 0.014641718938946724, 0.06906759738922119, -0.011569071561098099, -0.015286588110029697, 0.015210799872875214, 0.08160647004842758, -0.027331411838531494, -0.013953128829598427, 0.024395231157541275, 0.06407783925533295, -0.02288850210607052, 0.0021312765311449766, 0.024677880108356476, -0.009985304437577724, -0.08341752737760544, -0.014782746322453022, 0.008590171113610268, 0.03738138824701309, -0.03265124186873436, -0.03847430273890495, -0.03647289425134659, 0.044980790466070175, -0.0036738598719239235, 0.017889173701405525, 0.013912470079958439, 0.04266306012868881, -0.013509712181985378, 0.042680442333221436, 0.0064066331833601, -0.007596300449222326, 0.04909932613372803, 0.016798628494143486, -0.015661118552088737, -0.0214124396443367, -0.05004507303237915, -0.07734718173742294, -0.004086833447217941, 0.0200812891125679, 0.0015978184528648853, -0.06466710567474365, 0.03412393480539322, 0.0036603922490030527, 0.05854521319270134, 0.00519558833912015, -0.02214496023952961, 0.04308229684829712, -0.04060138016939163, -0.042773306369781494, 0.012103441171348095, 0.010683093219995499, 0.008076994679868221, 0.046253349632024765, 0.0006082318141125143, 0.029746990650892258, 0.03697832673788071, -0.015035931020975113, 0.022959738969802856, -0.034724753350019455, -0.03202319145202637, 0.04757951945066452, -0.032694969326257706, -0.10698658227920532, -0.09118028730154037, -0.002795498352497816, 0.035825856029987335, 0.028289353474974632, -0.017878714948892593, -0.02327224239706993, -0.0571337565779686, -0.01304250955581665, -0.049867913126945496, -0.01017798762768507, 0.04831636697053909, -0.028335511684417725, 0.024910692125558853, -0.005103124305605888, -0.00450286315754056, 0.05333993583917618, 0.03822021931409836, -0.00569544080644846, 0.008163131773471832, 0.011672575026750565, -0.035985540598630905, -0.004917055834084749, 0.005950876045972109, 0.02991967275738716, -0.08384159952402115, -0.022698910906910896, 0.040228985249996185, -0.0355992391705513, 0.056335318833589554, -0.0320088155567646, 0.004280442371964455, 0.037284959107637405, 0.026836466044187546, 0.019986756145954132, -0.05308522284030914, 0.00573692424222827, 0.037187084555625916, -0.08173367381095886, -0.009574503637850285, 0.015909401699900627, -0.01972765102982521, -0.012581098824739456, -4.807921141036786e-05, -0.050337374210357666, -0.030880605801939964, -0.031743478029966354, 0.05185085907578468, 0.04743541032075882, -0.019840829074382782, -0.014482648111879826, 0.0006437961710616946, 0.04591558501124382, -0.0030808094888925552, 0.0033360428642481565, -0.028363153338432312, 0.05099574476480484, -0.025193482637405396, 0.0081260921433568, -0.001890636165626347, 0.005926765035837889, 0.002154874848201871, -0.02141532115638256, 0.0424271896481514, -0.02143671177327633, 0.006869798060506582, -0.02476336993277073, -0.02724032662808895, -0.037893909960985184, -0.014014976099133492, 0.01212150789797306, -0.0018347708974033594, -0.019369248300790787, -0.03911083936691284, 0.006556907668709755, -0.008836960420012474, 0.01066166628152132, 0.03381779044866562, -0.00023181884898804128, -0.0017295255092903972, 0.0065538822673261166, 0.054159391671419144, -0.017401255667209625, -0.047642480581998825, 0.006519623100757599, -0.051001545041799545, -0.005249808542430401, 0.039513345807790756, 0.007982500828802586, -6.36511897339434e-33, -0.023372547701001167, -0.03605332598090172, -0.004599079489707947, 0.03191293403506279, 0.032584354281425476, -0.006100750528275967, -0.027048051357269287, -0.03456921502947807, -0.027509460225701332, -0.03535311296582222, 0.001702170935459435, 0.04350598156452179, 0.004556787665933371, -0.04148533195257187, 0.09923331439495087, 0.03518974408507347, -0.0006817535031586885, -0.005559383425861597, -0.00705885561183095, 0.01214119978249073, -0.06558971107006073, -0.02291911281645298, -0.052927467972040176, 0.006326217204332352, -0.0023030960001051426, -0.02365623041987419, 0.01397687941789627, -0.015033514238893986, -0.015658041462302208, 0.002642313251271844, -0.02349422313272953, -0.02656492590904236, -0.002355058677494526, 0.05996115878224373, 0.00045221089385449886, -0.08160438388586044, 0.0014481728430837393, -0.03414059430360794, -0.008411471731960773, 0.015825849026441574, 0.01095256395637989, -0.015391914173960686, 0.04252011701464653, 0.018117694184184074, 0.022443758323788643, 0.0052589233964681625, 0.0162296611815691, 0.0023091346956789494, 0.003839553100988269, 0.005829437170177698, -0.0785168781876564, 0.022955792024731636, -0.023253237828612328, 0.0554594025015831, -0.02047862485051155, 0.05580397695302963, 0.059869032353162766, 0.010967502370476723, 0.00040181499207392335, -0.025762377306818962, 0.034879207611083984, -0.031356096267700195, 0.040301576256752014, -0.019512256607413292, -0.0459551140666008, -0.044435471296310425, 0.026431670412421227, 0.007198705337941647, 0.017818132415413857, 0.04203061759471893, 0.028244372457265854, -0.01664160005748272, 0.016292566433548927, -0.009259115904569626, -0.09430578351020813, 0.008762860670685768, -0.02042657881975174, 0.05929002910852432, 0.031651902943849564, 0.11063686013221741, 0.02100943587720394, -0.03635009005665779, -0.09268613904714584, 0.01714552752673626, 0.027070103213191032, -0.0565858893096447, -0.01898265816271305, 0.038708291947841644, -0.013953037559986115, 0.056637898087501526, 0.0006285475101321936, -0.06355195492506027, -0.06411225348711014, -0.015094312839210033, 0.07966162264347076, 0.04541468620300293, -0.04218898341059685, -0.00712521793320775, -0.010902566835284233, -0.008869600482285023, -0.028797850012779236, 0.013101851567626, 0.050126153975725174, 0.0182268675416708, 0.06011497601866722, -0.04208698123693466, 0.0003394704544916749, 0.02300950698554516, -0.03274169936776161, 0.009111764840781689, -0.03944852948188782, -0.015683326870203018, 0.00874792505055666, 0.009709374979138374, -0.05512986704707146, -0.023427650332450867, -0.0043883793987333775, 0.02545650117099285, -0.0525541789829731, 0.02119385451078415, -0.017654944211244583, 0.053283482789993286, 0.005376375280320644, -0.042238276451826096, -0.02840910106897354, -0.03595127910375595, 0.047618746757507324, 0.03763112053275108, 0.06261567771434784, 0.002443059114739299, -0.024471856653690338, 0.020211877301335335, 3.5565523148761713e-07, -0.005656502675265074, 0.05456971004605293, 0.018826277926564217, -0.08122342079877853, -0.016516702249646187, -0.015419441275298595, -0.04573500528931618, -0.013661953620612621, -0.06649437546730042, -0.03252322971820831, 0.03192534297704697, -0.022795559838414192, -0.013078353367745876, 0.03975958377122879, 0.07273159176111221, -0.02839883603155613, -0.01600472815334797, -0.0027494526002556086, -0.04548607021570206, 0.0017336198361590505, 0.023337235674262047, 0.03396027162671089, 0.035182029008865356, -0.029925918206572533, -0.011370468884706497, -0.011291908100247383, -0.05919371172785759, 0.029109615832567215, -0.0033229088876396418, 0.005939213093370199, 0.047590676695108414, 0.027514038607478142, -0.0187405776232481, -0.02283495105803013, -0.003721808549016714, -0.0269795972853899, -0.04141343757510185, -0.016324879601597786, 0.044756077229976654, -0.005658271256834269, -0.02495741657912731, -0.002891674404963851, -0.02221776731312275, -0.047976285219192505, 0.04875275865197182, 0.024464668706059456, 0.011194972321391106, 0.01924149878323078, 0.004902842454612255, -0.016741257160902023, 0.03594180941581726, 0.046025458723306656, -0.004083574283868074, -0.0016061567002907395, -0.024100948125123978, -0.07091623544692993, -0.0049089849926531315, -0.023283978924155235, 0.07305145263671875, 0.021623358130455017, -0.04023415595293045, 0.008144121617078781, -0.005732179153710604, 0.009674468077719212, -0.027763858437538147, -0.03773490712046623, 0.04316588118672371, 3.5299810665155204e-34, -0.0038308051880449057, -0.0739155262708664, -0.008384771645069122, -0.09137056767940521, 0.0011887772707268596, -0.007663162425160408, -0.027351155877113342, -0.002500197384506464, -0.001456898171454668, -0.031995777040719986, -0.0370071679353714], "0efe9dfa-f503-40c3-b065-20103e991baf": [0.015680799260735512, 0.07052222639322281, -0.004812600556761026, -0.003108238335698843, -0.02094920165836811, -0.005472732707858086, -0.04017867520451546, -0.012726696208119392, -0.020338106900453568, -0.0036124985199421644, 0.04524858668446541, 0.05856039747595787, -0.015726229175925255, 0.04366005212068558, -0.022101709619164467, 0.030017182230949402, 0.007692796643823385, -0.00828598067164421, -0.002176976064220071, 0.03417693451046944, 0.07107722759246826, 0.0021973801776766777, 0.019475508481264114, -0.030529431998729706, -0.010607399977743626, -0.026755742728710175, -0.03966160863637924, 0.004976760130375624, 0.01700083166360855, -0.011367333121597767, 0.0025639748200774193, 0.058499034494161606, -0.06109275296330452, 0.05127974972128868, 2.435695705571561e-06, 0.007600458338856697, -0.02671637386083603, 0.025512143969535828, -0.04354963079094887, 0.05305313691496849, -0.004341221414506435, -0.045378584414720535, -0.0016134321922436357, 0.004915554076433182, -0.006861788686364889, 0.023463645949959755, -0.03195559233427048, 0.01836327463388443, -0.001442292588762939, 0.003226467641070485, 0.014417690224945545, 0.07313904911279678, -0.013827953487634659, -0.002697956282645464, 0.055626463145017624, -0.05585961788892746, -0.04553462564945221, 0.08198385685682297, 0.05687670409679413, 0.023454895243048668, 0.04297231137752533, 0.017855096608400345, -0.0010075371246784925, -0.008206148631870747, 0.09051303565502167, 0.053337182849645615, -0.013239012099802494, -0.0011911283945664763, -0.036093004047870636, -0.025053394958376884, -0.005921853240579367, -0.010670545510947704, -0.023513490334153175, -0.03281932696700096, -0.006875210907310247, -0.0035575025249272585, 0.00930695328861475, -0.018248779699206352, -0.007302169222384691, 0.010125275701284409, -0.031435221433639526, -0.024329880252480507, -0.005835844669491053, 0.00931327510625124, 0.10390195995569229, -0.06510700285434723, -0.023612024262547493, -0.02989979274570942, -0.002126404782757163, 0.05907433107495308, 0.010078074410557747, 0.02225821278989315, -0.048218078911304474, 0.005329058039933443, 0.02259271964430809, -0.006428218446671963, 0.0484154187142849, -0.0005935389781370759, 0.04984405264258385, 0.0635012537240982, -0.05838807299733162, -0.003776841564103961, -0.00040041888132691383, 0.050393618643283844, -0.04142683371901512, 0.06535951793193817, 0.02023831196129322, 0.059729259461164474, 0.0038089791778475046, 0.019511422142386436, 0.0036336889024823904, 0.017975909635424614, -0.049231819808483124, 0.00780984153971076, 0.032354168593883514, -0.013037278316915035, 0.03742247074842453, 0.03510275483131409, 0.030150391161441803, 0.08329825848340988, -0.010481078177690506, 0.04728946089744568, -0.06369146704673767, -0.020987067371606827, 0.004018933977931738, -0.07329460978507996, 0.014185684733092785, -0.01722314953804016, -0.04550990089774132, 0.012382850982248783, -0.051295362412929535, -0.004180560819804668, -0.04196654260158539, 0.01054476574063301, 0.0008588552009314299, -0.001162748783826828, 0.03866613656282425, 0.002301198896020651, -0.05093171447515488, -0.008812845684587955, -0.018876932561397552, 0.0309415515512228, -0.06066552922129631, -0.0014710085233673453, -0.06991392374038696, -0.027818385511636734, -0.01130136102437973, 0.011737348511815071, -0.009026113897562027, -0.03531884774565697, 0.05569910630583763, 0.011127934791147709, -0.04589506983757019, 0.007091214414685965, -0.02776915766298771, 0.05143370106816292, 0.003055667970329523, -0.017193006351590157, -0.02920975349843502, 0.022390855476260185, 0.013822373002767563, 0.053160496056079865, 0.07750093936920166, 0.026934398338198662, 0.023751892149448395, 0.03117036633193493, 0.09820854663848877, 0.027597956359386444, 0.07023973762989044, 0.003429183503612876, -0.03343483433127403, 0.013586675748229027, 0.025498876348137856, 0.040986087173223495, -0.023710176348686218, -0.025900056585669518, -0.040799640119075775, -0.06469324231147766, -0.039589837193489075, -0.01911964640021324, -0.06170578673481941, -0.04859476909041405, 0.03285449370741844, 0.007773877587169409, 0.04034894332289696, -0.001325950725004077, -0.06072124466300011, 0.05022768676280975, -0.037921588867902756, 0.005665032658725977, -0.04778081551194191, -0.028522342443466187, -0.06654417514801025, 0.02642875351011753, 0.021519910544157028, 0.02469806931912899, -0.004035781137645245, -0.08731701225042343, -0.008675100281834602, 0.009931652806699276, -0.016080744564533234, -0.0499403215944767, 0.10079294443130493, 0.006866635289043188, 0.025152331218123436, -0.023286614567041397, -0.03011852316558361, -0.0038813003338873386, -0.003396088257431984, -0.07539250701665878, -0.018843354657292366, -0.025808483362197876, -0.05619535222649574, -0.00822390429675579, -0.026949314400553703, -0.01814843714237213, -0.003866383573040366, 0.021637775003910065, -0.0030335637275129557, -0.012885416857898235, -0.002286741277202964, 0.027009787037968636, -0.024914095178246498, 0.035404983907938004, 0.02608226053416729, -0.01721970923244953, -0.0027932936791330576, -0.01492584589868784, 0.021612858399748802, 0.04654271528124809, 0.016099972650408745, 0.015247389674186707, 0.015046903863549232, -0.0024608802050352097, -0.012565173208713531, 0.028712943196296692, 0.08978935331106186, 0.01497670542448759, 0.018383294343948364, -0.0702781081199646, -0.03121585212647915, -0.011763500049710274, -0.02083488367497921, 0.024643436074256897, 0.008318733423948288, -0.0025279405526816845, 0.0008631271193735301, 0.014579265378415585, -0.00046285265125334263, 0.007773266639560461, -0.037168238312006, 0.0029907349962741137, 0.0003874198591802269, 0.03577633574604988, 0.0178927481174469, -0.03182874619960785, -0.008197857066988945, 0.030399233102798462, -0.005331276450306177, 0.03712000697851181, -0.0012365527218207717, -0.006924698129296303, -0.018049530684947968, -0.0004703594895545393, 0.05349496379494667, -0.046059511601924896, -0.03373430669307709, 0.0009868243942037225, -0.06101758033037186, 0.0055920034646987915, 0.007898644544184208, -0.028919149190187454, -0.02323797717690468, 0.0013711154460906982, -0.02071807160973549, 0.01552177406847477, -0.024024536833167076, 0.03243871405720711, -0.05882102996110916, 0.02770197205245495, 0.02359791100025177, -0.018355192616581917, 0.010654022917151451, 0.02770358882844448, 0.0024354378692805767, 0.01917770877480507, 0.05459090694785118, -0.020111575722694397, -0.04375472664833069, -0.03203047066926956, 0.042557600885629654, -0.04518214240670204, 0.04731591418385506, -0.032507799565792084, -0.0034609471913427114, 0.004046938382089138, 0.11066660284996033, -0.014232448302209377, -0.02912544459104538, 0.048899851739406586, -0.0021644411608576775, 0.0004932726151309907, -0.028951404616236687, -0.03590219095349312, 0.07056895643472672, -0.006889722775667906, 0.0567764937877655, -0.023551814258098602, 0.04755342751741409, -0.048364538699388504, -0.011652922257781029, -0.00136286998167634, 0.0008056475780904293, 0.03209215775132179, -0.011725778691470623, 0.01626484841108322, 0.0579681359231472, -0.11841975152492523, -0.0005994794191792607, 0.024080466479063034, -0.0009782075649127364, -0.006435499992221594, -0.02475590817630291, -0.025511998683214188, -0.03999613970518112, -0.08902740478515625, 0.008018281310796738, -0.03574782609939575, 0.061307717114686966, -0.007229503244161606, 0.0110568106174469, -0.014642152935266495, -0.00940372608602047, 0.01586248353123665, -0.09534164518117905, 0.01390643510967493, 0.03205566853284836, -0.052090343087911606, -0.004043795168399811, -0.015475519001483917, -0.021040070801973343, 0.006062665022909641, -0.0217303317040205, -0.043747372925281525, -0.05507545545697212, -0.018933558836579323, 0.002321530133485794, 0.07854142040014267, 0.004198416136205196, 0.023125432431697845, -0.0017787000397220254, 0.004355248995125294, 0.05731168016791344, -0.02687767706811428, 0.02948944829404354, -0.056863363832235336, -0.051144376397132874, -0.07423928380012512, 0.019334396347403526, -0.07123704999685287, -0.00618801498785615, 0.02829805761575699, 0.11845167726278305, 0.019119001924991608, -0.007849766872823238, -0.06683367490768433, 1.7672298781690188e-05, 0.031323324888944626, 0.05351388826966286, 0.021531296893954277, -0.020528176799416542, 0.031210653483867645, -0.015124037861824036, 0.02792508341372013, 0.07113128900527954, -0.04796012490987778, 0.026019765064120293, 4.72193569294177e-05, 0.0010695738019421697, 0.00987339299172163, -0.016163645312190056, -0.11148854345083237, 0.027719659730792046, 0.020041562616825104, 0.03711222484707832, -0.044828642159700394, -0.0010320412693545222, -0.0082154655829072, 0.050238706171512604, 0.021372608840465546, 0.0198105089366436, -0.005369323771446943, -0.03221544250845909, 0.015606232918798923, -0.003971189260482788, -0.05758319050073624, 0.008256485685706139, -0.02355402708053589, 0.04263878986239433, 0.030774908140301704, 0.0317637138068676, -0.04505784809589386, 0.03316338360309601, 0.033460211008787155, -0.04485395550727844, 0.030813632532954216, 0.07137039303779602, -0.03170947730541229, 0.07142774015665054, -0.0006658452330157161, 0.0449611060321331, 0.016632655635476112, 0.007068580947816372, -0.00033742841333150864, 0.05074220150709152, -0.06969314068555832, 0.025318142026662827, 0.022299857810139656, 0.020250694826245308, -0.05049441382288933, 0.010317564941942692, -0.02070780098438263, 0.0006132515845820308, -0.028053533285856247, 0.0018739292863756418, -0.016207976266741753, 0.008087312802672386, 0.01947212405502796, 0.014036787673830986, 0.017388183623552322, 0.04971988871693611, 0.02870093286037445, 0.04636768996715546, 0.034831177443265915, -0.015849651768803596, 0.03146505355834961, -0.020247193053364754, 0.02259356901049614, 0.002861844841390848, 0.01264914683997631, -0.10273142158985138, -0.0014135369565337896, 0.053713392466306686, 0.018825875595211983, -0.04518364369869232, -0.02098012901842594, 0.022973105311393738, 0.022576000541448593, 0.04950105771422386, -0.01936127059161663, 0.04326271638274193, -0.024071330204606056, -0.039628058671951294, -0.06948084384202957, -0.0367322601377964, 0.024778500199317932, -0.0005334229208528996, -0.044067077338695526, 0.03365933150053024, 0.04075044393539429, -0.014550577849149704, 0.023239456117153168, -0.02892274595797062, -0.06287963688373566, 0.03261701390147209, -0.0730343759059906, -0.06848950684070587, -0.0752093717455864, -0.02800995670258999, 0.040268510580062866, 0.035236842930316925, -0.0027522514574229717, -0.007536302786320448, -0.0022025504149496555, -0.03706470876932144, -0.004375798627734184, -0.0009327211882919073, 0.008194501511752605, -0.025586018338799477, 0.028269924223423004, 0.008086876943707466, 0.0006469035870395601, 0.004220063332468271, -0.010228857398033142, -0.009969268925487995, 0.005417888518422842, 0.02488621510565281, -0.030243927612900734, -0.017397109419107437, -0.006204880308359861, 0.00975581631064415, -0.07994014769792557, -0.015278446488082409, 0.031204236671328545, -0.09130573272705078, 0.0512511283159256, -0.053283363580703735, 0.015994269400835037, 0.06741607934236526, 0.022228248417377472, 0.017306063324213028, -0.008960893377661705, 0.009061592631042004, 0.017130954191088676, -0.04455547779798508, 0.004506094381213188, -0.014940852299332619, 0.025274543091654778, -0.021325184032320976, 0.009570708498358727, -0.019741220399737358, -0.01774728111922741, -0.03542899340391159, -0.0026725069619715214, -0.017041731625795364, 0.018875109031796455, -0.029801400378346443, 0.08939550071954727, -0.025123588740825653, 0.0008074488141573966, 0.006956285331398249, -0.0017004533438012004, 0.06591258943080902, -0.051160722970962524, 0.010840466246008873, 0.025909950956702232, -0.004949238151311874, -0.011606278829276562, -0.037215206772089005, 0.02948654629290104, -0.10682695358991623, -0.028198666870594025, -0.01708516851067543, -0.011795449070632458, -0.022481875494122505, 0.03213828429579735, 0.054546792060136795, -0.036822471767663956, -0.056780748069286346, -0.03953946381807327, -0.03253760188817978, 0.011326011270284653, -0.038247719407081604, 0.020563602447509766, -0.012809962965548038, 0.035708051174879074, -0.006523194722831249, 0.04712716490030289, -0.01913640648126602, -0.012579227797687054, 0.0211600624024868, -0.0721469521522522, 0.019065948203206062, -0.01918031834065914, 0.026184793561697006, -5.896407866077231e-33, -0.022422755137085915, -0.08550417423248291, 0.010774850845336914, -0.01287531852722168, 0.022807754576206207, 0.015789292752742767, -0.020468231290578842, 0.05877481773495674, -0.006361897103488445, -0.020882591605186462, 0.0162802841514349, 0.04674956575036049, 0.010368486866354942, -0.06380115449428558, 0.1010979637503624, 0.05221131816506386, 0.01742657832801342, 0.00696906354278326, 0.025925148278474808, 0.015178078785538673, -0.07771839201450348, 0.03539488464593887, -0.047194067388772964, 0.018085865303874016, 0.0565837137401104, -0.0031811839435249567, 0.014830169267952442, 0.022226188331842422, 0.016744351014494896, -0.0107386764138937, -0.014319581910967827, -0.024852147325873375, -0.0032590560149401426, 0.019105270504951477, -0.002616623882204294, -0.07027433067560196, 0.005864253267645836, 0.01284332200884819, -0.01223745383322239, 0.013913757167756557, 0.05184611305594444, -0.00658320402726531, -0.003997343592345715, 0.006423725746572018, 0.018085094168782234, 0.03281014412641525, 0.01535006333142519, 0.03779061511158943, -0.008076418191194534, 0.03849533572793007, -0.04729771614074707, 0.009767681360244751, -0.03187873959541321, -0.0016787179047241807, -0.010028060525655746, 0.024234775453805923, 0.02721422165632248, -0.055299822241067886, 0.016058288514614105, 0.01215977780520916, 0.018784847110509872, -0.05542685091495514, 0.009570388123393059, -0.05590848624706268, -0.03531217947602272, -0.0475098192691803, -0.03561779856681824, 0.02368919365108013, 0.0271011833101511, -0.0074659688398242, -0.004312253091484308, -0.017754890024662018, 0.03447170928120613, 0.010468551889061928, -0.050655510276556015, 0.05424628406763077, -0.010145634412765503, 0.038371194154024124, 0.059112079441547394, 0.02455056831240654, 0.025578752160072327, -0.011824791319668293, -0.11239735782146454, 0.033335231244564056, 0.03235733509063721, 0.024526752531528473, -0.0008544788579456508, -0.01687028631567955, -0.04819005727767944, 0.04802767559885979, -0.03309498727321625, -0.012535410933196545, -0.0068464335054159164, -0.016612891107797623, 0.07275871932506561, -7.53789790906012e-05, 0.010227351449429989, -0.017989875748753548, -0.04182867705821991, -0.0002101259451592341, -0.043707940727472305, 0.030509140342473984, 0.04140399023890495, 0.06737727671861649, 0.028944257646799088, -0.024234827607870102, 0.0014562627766281366, 0.018526766449213028, 0.0059115211479365826, 0.0030778255313634872, -0.02010202594101429, -0.009132365696132183, -0.001412076991982758, 0.016762683168053627, -0.061848338693380356, 0.01295389886945486, 0.0005110953352414072, 0.02861141413450241, -0.04565748572349548, -0.013383036479353905, -0.038072243332862854, 0.07532716542482376, -0.0022731127683073282, -0.04681478068232536, -0.01422940008342266, -0.03269326314330101, 0.045778486877679825, 0.024201776832342148, 0.06089646369218826, 0.0627763420343399, -0.014644901268184185, -0.0160587877035141, 3.1883203632787627e-07, -0.018365371972322464, 0.014501373283565044, -0.0015210267156362534, -0.04691164940595627, -0.025874068960547447, -0.03355851024389267, -0.04456252604722977, 0.022958889603614807, -0.027203500270843506, -0.022863375023007393, 0.06982766091823578, -0.006079485639929771, -0.01059649232774973, 0.03160446882247925, 0.031805429607629776, -0.1033865213394165, -0.033154308795928955, 0.025076936930418015, -0.040074437856674194, 0.012953354977071285, 0.010929949581623077, 0.007795582991093397, 0.024321094155311584, -0.010196700692176819, -0.006515510380268097, -0.013282660394906998, -0.03353714570403099, 0.031033406034111977, -0.03544974327087402, 0.025464409962296486, 0.025224661454558372, -0.004667927976697683, -0.016423299908638, 0.004467993043363094, -0.008852544240653515, -0.06265449523925781, -0.04438508674502373, -0.06527457386255264, -0.007412264123558998, -0.02021459862589836, -0.04676426574587822, 0.051163703203201294, -0.009474213235080242, -0.03168901428580284, -0.007145126350224018, -0.016293106600642204, -0.021357133984565735, 0.04078264161944389, 0.04325904697179794, -0.04816743731498718, 0.002595602534711361, 0.076409250497818, 0.042355917394161224, -0.017176417633891106, 0.02047627791762352, -0.030411571264266968, -0.024725142866373062, -0.046599045395851135, 0.028232719749212265, 0.018300164490938187, -0.02536696195602417, -0.03877118229866028, 0.02175351046025753, -0.02028632164001465, -0.023869089782238007, -0.040353596210479736, 0.021618973463773727, 2.7734981055285683e-34, 0.019058242440223694, -0.05309141054749489, -0.02702287584543228, -0.007085136603564024, 0.015786005184054375, -0.00198180484585464, -0.0008656863938085735, -0.03631296381354332, 0.04085258021950722, 0.0213508028537035, -0.04050041735172272], "02041b0f-2b6e-4ef5-9bff-b504d45e83c7": [-5.260251055005938e-05, 0.09879694133996964, -0.0069108023308217525, 0.020929334685206413, -0.04329506680369377, -0.0019591134041547775, -0.02801564335823059, -0.02026756852865219, -0.03502500429749489, -0.040124379098415375, -0.026101309806108475, 0.03395824879407883, -0.02255646139383316, 0.0408136323094368, -0.04478679597377777, 0.019085709005594254, 0.010682200081646442, -0.015913937240839005, -0.04765133187174797, 0.03875541687011719, 0.05729353055357933, -0.0059517440386116505, -0.01329178735613823, -0.010026187635958195, -0.023748988285660744, -0.009687365964055061, -0.021432779729366302, -0.029987851157784462, -0.007882794365286827, 0.007075750734657049, -0.0066514029167592525, 0.0407952144742012, -0.04835215210914612, 0.01792255975306034, 2.3467566734325374e-06, 0.022666938602924347, -0.031059911474585533, 0.003639631439000368, -0.024527298286557198, 0.06640491634607315, 0.004443014040589333, -0.06614626199007034, 0.035974737256765366, 0.005926207173615694, -0.011567589826881886, -0.0038787927478551865, -0.021864986047148705, -0.0029183675069361925, -0.004577673505991697, 0.021992353722453117, 0.016148990020155907, 0.09315625578165054, -0.030054626986384392, -0.015833983197808266, 0.012086339294910431, -0.0628315806388855, -0.028968555852770805, 0.033476874232292175, 0.020102577283978462, -0.01353068184107542, 0.003101775422692299, -0.020439518615603447, -0.017512183636426926, -0.040841374546289444, 0.0975935310125351, 0.018567591905593872, -0.04908222332596779, 0.010933473706245422, -0.06368324160575867, -0.00909070298075676, 0.014586017467081547, -0.03703434392809868, -0.019826458767056465, -0.03831911459565163, 0.03973823040723801, 0.0027886901516467333, 0.01670822873711586, 0.009495178237557411, -0.046905916184186935, 0.0037816367112100124, -0.002885389607399702, -0.015710374340415, 0.022148067131638527, -0.004995123948901892, 0.0981471836566925, -0.05422833561897278, -0.011450315825641155, -0.010714493691921234, 0.011148782446980476, 0.04765424132347107, 0.050648175179958344, -0.0022360095754265785, -0.03745809942483902, 0.023688437417149544, -0.00846157781779766, -0.01007790770381689, 0.01706785149872303, 0.035991817712783813, 0.03327612578868866, 0.12668895721435547, -0.014834921807050705, -0.0003146909293718636, 0.010523964650928974, 0.029242249205708504, -0.03136815130710602, 0.02364189922809601, 0.04369377717375755, 0.061450716108083725, -0.0061194379813969135, 0.0059975446201860905, 0.006420793943107128, 0.00440262584015727, -0.007818654179573059, 0.005616174545139074, -0.02738083340227604, -0.010340782813727856, 0.026372116059064865, 0.07333478331565857, 0.009731155820190907, 0.04388973116874695, 0.004639032296836376, 0.02160993032157421, 0.02084784023463726, 0.008142035454511642, 0.014222446829080582, -0.10203026980161667, 0.030326304957270622, -0.004506551194936037, -0.06524494290351868, 0.013330762274563313, -0.036854296922683716, -0.006369075272232294, -0.0202044527977705, 0.041446179151535034, 0.0020604534074664116, 0.04107646271586418, 0.018348831683397293, -0.0043256450444459915, -0.013405398465692997, -0.019557055085897446, -0.039374303072690964, 0.0639948919415474, -0.0355047881603241, 0.012838076800107956, -0.07370968908071518, -0.050085462629795074, -0.008908920921385288, 0.0330272912979126, -0.009088817983865738, -0.009006652981042862, 0.023207349702715874, 0.005779719911515713, -0.02557138353586197, 0.02480873093008995, -0.06139983981847763, 0.04551020637154579, 0.007381641771644354, -0.002058795653283596, -0.014507539570331573, -0.010757668875157833, -0.005136487539857626, 0.002575143938884139, 0.07634983211755753, 0.03429286554455757, 0.029428431764245033, 0.030697057023644447, 0.09836699068546295, -0.008481097407639027, 0.07309342175722122, -0.02435818314552307, -0.013369671069085598, 0.004911184310913086, -0.0014208899810910225, 0.03723583742976189, -0.03586212545633316, -0.040352754294872284, 0.005704367067664862, -0.010163230821490288, 0.022512901574373245, -0.05078199878334999, -0.050420694053173065, -0.02152714878320694, 0.0021147567313164473, 0.02301487885415554, -0.005919217597693205, -0.006103808525949717, -0.04093261808156967, 0.05234809219837189, -0.027348717674613, -0.015683723613619804, -0.009826501831412315, -0.0250975601375103, -0.05627768859267235, 0.04292643442749977, -0.01446872390806675, 0.03184272348880768, -0.018047232180833817, -0.06281985342502594, 0.0009112702100537717, 0.0031465536449104548, -0.031937677413225174, -0.05599554255604744, 0.07570912688970566, -0.007207483518868685, 0.019613856449723244, 0.0068146660923957825, -0.0678369551897049, 0.00917800609022379, 0.013876449316740036, -0.05956554040312767, 0.0015679503558203578, -0.028295345604419708, -0.01371405366808176, -0.013984251767396927, -0.03946225345134735, -0.02571096457540989, -0.019437536597251892, 0.03170979768037796, 0.002384803956374526, -0.021540643647313118, -0.01625305786728859, -0.011331125162541866, -0.05203786864876747, 0.055846866220235825, 0.016460241749882698, 0.0024632823187857866, 0.027844425290822983, 0.014163948595523834, -0.0015283457469195127, 0.009516353718936443, 0.01972457394003868, 0.03416461497545242, 0.01982487551867962, -0.01792006380856037, -0.004023283254355192, 0.024468909949064255, 0.06644635647535324, 0.01187625527381897, 0.016175473108887672, -0.04131036996841431, -0.009838695637881756, -0.048222851008176804, -0.017027560621500015, 0.007926522754132748, 0.03890511766076088, 0.034035488963127136, 0.016522539779543877, 0.007880846038460732, 0.0012191726127639413, -0.007720522582530975, -0.006223094649612904, 0.019967027008533478, -0.005240369122475386, 0.029774857684969902, -0.015863295644521713, 0.0071188295260071754, 0.017098456621170044, 0.023563962429761887, 0.017290035262703896, 0.042776092886924744, -0.018816616386175156, -0.008592373691499233, -0.004702399484813213, 0.04118509590625763, 0.059622518718242645, -0.03789890930056572, -0.07899289578199387, 0.0168356504291296, -0.034818537533283234, 0.016935892403125763, 0.010923931375145912, -0.013551426120102406, -0.022430190816521645, -0.017134055495262146, -0.018355440348386765, 0.0024779869709163904, -0.02135300263762474, 0.06096229702234268, -0.029052870348095894, 0.011380502954125404, 0.012213650159537792, -0.0482369028031826, 0.012219554744660854, 0.0315256342291832, -0.008619357831776142, 0.03580440953373909, 0.05484212562441826, 0.0038351798430085182, -0.06148919463157654, -0.02289654314517975, 0.02995825745165348, -0.06935647875070572, 0.05055734142661095, -0.02886652946472168, -0.02981037274003029, 0.01682056486606598, 0.09398574382066727, 0.038304008543491364, -0.0013861778425052762, 0.0490141324698925, -0.0012389583280310035, -0.00662133377045393, -0.02233179286122322, -0.03965192660689354, 0.10408233851194382, -0.017770033329725266, 0.06662465631961823, -0.026738137006759644, 0.09190654754638672, -0.015163703821599483, -0.03140392154455185, -0.018436888232827187, 0.014073211699724197, 0.04252045601606369, -0.0023216912522912025, 0.009889008477330208, 0.058753300458192825, -0.17007340490818024, -0.013929028064012527, -0.001865970203652978, -0.012508299201726913, -0.03440945968031883, -0.03278503194451332, -0.019102156162261963, -0.03561520576477051, -0.0651853084564209, 0.00028698856476694345, -0.08227292448282242, 0.01949567347764969, 0.004262213129550219, 0.023918047547340393, -0.015756851062178612, -0.0036409697495400906, 0.022424781695008278, -0.12100173532962799, 0.04077453538775444, 0.0397099032998085, -0.0020003560930490494, -0.006372537929564714, -0.010005222633481026, -0.017987839877605438, -0.024047816172242165, -0.052029337733983994, -0.03559441864490509, -0.05198437720537186, -0.03112301602959633, -0.026262132450938225, 0.038471926003694534, -0.005874509457498789, 0.02088705264031887, -0.036034829914569855, -0.01923302561044693, 0.0362078957259655, -0.023875558748841286, 0.033091772347688675, -0.030850177630782127, -0.046552304178476334, -0.09528139233589172, -0.007137781474739313, -0.04477228224277496, 0.020905453711748123, 0.022470666095614433, 0.11460547894239426, 0.04973222315311432, -0.02138063870370388, -0.04717669636011124, -0.005344831384718418, 0.05454565957188606, 0.07803477346897125, 0.02865399792790413, -0.060096338391304016, 0.012549438513815403, -0.00028744773590005934, 0.0006974262068979442, 0.052915263921022415, -0.04220186918973923, 0.024416012689471245, 0.019922707229852676, 0.012482074089348316, -0.013464859686791897, -0.0030551603995263577, -0.086204893887043, 0.015117080882191658, -0.0007270941860042512, 0.04741406813263893, -0.05861027538776398, -0.012440417893230915, -0.03549305722117424, 0.029909437522292137, -0.004682538099586964, 0.015150428749620914, -0.0031144535169005394, -0.06297075748443604, 0.03237022086977959, -0.009817156940698624, -0.0711836889386177, 0.026558594778180122, -0.018450362607836723, 0.01027145516127348, 0.020388735458254814, 0.05864023417234421, -0.07551097124814987, 0.03695927932858467, 0.0038479967042803764, -0.030043944716453552, 0.03579070419073105, 0.08017738163471222, -0.03982318937778473, 0.05860794335603714, -0.00969023909419775, 0.05698463320732117, 0.0329531691968441, 0.0026284093037247658, 0.011058179661631584, 0.035127539187669754, -0.029015883803367615, 0.038576848804950714, 0.021770477294921875, 0.07484748959541321, -0.020666370168328285, -0.00029160367557778955, 0.013853449374437332, 0.015555149875581264, -0.01839780993759632, -0.030025945976376534, -0.012495194561779499, 0.022564783692359924, 0.011054846458137035, -0.007344424724578857, 0.022789383307099342, 0.041770558804273605, 0.0513572171330452, 0.03702159225940704, 0.004334558732807636, -0.05817699059844017, 0.00798592809587717, 0.04654473811388016, 0.011032652109861374, -0.010138177312910557, 0.009299129247665405, -0.08135031908750534, 0.006097116973251104, 0.02995467185974121, 0.022440463304519653, -0.04608828201889992, -0.05649832263588905, 0.006271071266382933, 0.04885026440024376, 0.030695095658302307, -0.04485045745968819, 0.010217140428721905, -0.046910084784030914, -0.02580253779888153, -0.02556835487484932, -0.039533812552690506, 0.03602639585733414, 0.009992599487304688, -0.060360945761203766, 0.03511013090610504, 0.019713712856173515, -0.02917112410068512, 0.0034779226407408714, 0.0036741746589541435, -0.04478290304541588, 0.061188794672489166, -0.04518567770719528, -0.053652238100767136, -0.03621422499418259, -0.054971594363451004, 0.0071171787567436695, 0.034356310963630676, -0.004000959452241659, 0.0010113322641700506, -0.01674269139766693, -0.036848533898591995, 0.012697729282081127, -0.0045260051265358925, 0.006125860847532749, -0.037763550877571106, 0.0640682727098465, -0.011740711517632008, -0.020291879773139954, 0.0252210795879364, 0.047010913491249084, -0.01770974136888981, -0.020490966737270355, 0.019466793164610863, -0.021625077351927757, 0.004944335203617811, 0.01928417943418026, -0.003928275778889656, -0.04516390711069107, -0.0037123451475054026, 0.054087188094854355, -0.05506618693470955, 0.07046331465244293, -0.01826380379498005, 0.032873909920454025, 0.10762014240026474, -0.011870598420500755, -0.011591034941375256, -0.018968304619193077, 0.017064882442355156, -0.005026685539633036, -0.007115832529962063, -0.006033642683178186, 0.0008757553878240287, -0.018631979823112488, -0.015336115844547749, 0.039059117436409, -0.036256078630685806, -0.031192559748888016, -0.04029322788119316, 0.00937348697334528, 0.042730748653411865, 0.012712258845567703, -0.017887629568576813, 0.06026572361588478, -0.03621896728873253, -0.019211791455745697, 0.0039353868924081326, 0.0274663008749485, 0.05390477553009987, -0.022785551846027374, 0.015603763051331043, 0.03257794305682182, -0.016269510611891747, -0.018360456451773643, -0.041391775012016296, 0.029764605686068535, -0.07832995057106018, 0.006539815571159124, -0.011566465720534325, -0.042451877146959305, -0.021401451900601387, 0.06442145258188248, 0.05955728143453598, -0.0574030838906765, -0.028572913259267807, -0.052517857402563095, -0.03193093091249466, 0.04580119997262955, -0.015143862925469875, -0.03808271512389183, -0.021630894392728806, 0.01539546251296997, -0.01782846823334694, 0.05667435750365257, -0.013649790547788143, -0.02179061807692051, 0.020873626694083214, 6.674617907265201e-05, 0.028728101402521133, -0.01579536870121956, -0.0011836792109534144, -5.7218704648671374e-33, 0.019589608535170555, -0.09320668876171112, 0.018513046205043793, -0.008095871657133102, -0.002248266711831093, 0.028363650664687157, 0.040727172046899796, 0.027393272146582603, -0.019574632868170738, -0.022608399391174316, 0.004952730145305395, 0.04348408058285713, -0.008457178249955177, -0.0654015764594078, 0.09058383107185364, 0.00691927969455719, 0.025728875771164894, -0.028216097503900528, 0.01081089861690998, 0.026094119995832443, -0.0763196349143982, 0.02172107994556427, -0.025831645354628563, 0.0057454477064311504, 0.015330524183809757, 0.03343906253576279, 0.01264134794473648, 0.02637987956404686, 0.021297523751854897, -0.024974986910820007, 0.00796343944966793, -0.0184718519449234, -0.009397332556545734, 0.02880975417792797, -0.008863857947289944, -0.04299679026007652, 0.015619090758264065, 0.015741979703307152, 0.003095976309850812, 0.0029850886203348637, 0.058517936617136, -0.03168749809265137, 0.026707854121923447, 0.012094584293663502, 0.019523609429597855, 0.022508248686790466, -0.016307424753904343, 0.004347876645624638, -0.03252885863184929, -0.0007171603501774371, -0.027031106874346733, 0.002487923251464963, -0.025401396676898003, -0.006647005677223206, -0.02141597308218479, 0.01890728995203972, 0.011113665997982025, -0.06396977603435516, 0.016032187268137932, 0.04378735274076462, 0.07089073210954666, -0.043998152017593384, 0.007586802821606398, -0.005340630654245615, -0.046424560248851776, -0.06720379739999771, -0.015569846145808697, -0.002886943519115448, 0.03474239632487297, 0.0385548435151577, -0.013161303475499153, -0.007631443440914154, -0.01952754706144333, 0.039618853479623795, -0.06946239620447159, 0.046049125492572784, -0.017693806439638138, 0.05709284171462059, 0.07165840268135071, 0.01839526742696762, 0.0369688980281353, -0.026764098554849625, -0.10138486325740814, 0.020284399390220642, 0.045156825333833694, 0.033029165118932724, 0.016522424295544624, -0.001120893401093781, -0.023789409548044205, 0.04057086631655693, -0.013440934009850025, -0.023293370380997658, -0.012644440867006779, -0.009166339412331581, 0.06783664971590042, 0.05116080865263939, 0.008592954836785793, -0.05051324889063835, -0.048109475523233414, -0.023876717314124107, -0.040365852415561676, 0.03301113098859787, 0.07424578815698624, 0.04600806534290314, 0.03454749286174774, -0.014906192198395729, 0.0255491454154253, 0.015324589796364307, -0.03865045681595802, 0.01535975281149149, -0.0025365229230374098, 0.005491687450557947, -0.0012067180359736085, 0.008786364458501339, -0.004312772769480944, 0.008961936458945274, -0.009691796265542507, 0.007843093946576118, -0.037600964307785034, 0.010616486892104149, -0.04716510325670242, 0.06968024373054504, -0.00951048918068409, 0.02015061490237713, -0.01881980337202549, -0.02241361513733864, 0.010902379639446735, -0.04450372979044914, 0.04746846854686737, 0.007575540337711573, -0.019207606092095375, -0.03300515562295914, 3.0891686719769496e-07, -0.022995352745056152, -0.015106502920389175, -0.007158428896218538, -0.03675851970911026, -0.0013914068695157766, -0.03400219604372978, -0.013469565659761429, 0.016875289380550385, -0.0300102811306715, -0.012492629699409008, 0.05373701453208923, -0.04203566163778305, -0.03128601238131523, 0.02850463055074215, 0.030368667095899582, -0.09942057728767395, -0.05248537287116051, -0.016866128891706467, -0.05168093740940094, 0.006248040124773979, -0.024680964648723602, 0.009896940551698208, -0.007288054097443819, -0.018537085503339767, 0.004171125590801239, -0.05637817457318306, -0.008886228315532207, 0.06675974279642105, -0.07378145307302475, 0.042761124670505524, 0.053962983191013336, -0.03113308921456337, -0.027344660833477974, 0.04214856028556824, 0.011887740343809128, -0.017658259719610214, -0.051677972078323364, -0.09736663103103638, 0.016225524246692657, -0.02906719036400318, -0.05251269042491913, 0.021677928045392036, -0.009089663624763489, 0.02077604830265045, 0.022615978494286537, 0.0023545175790786743, -0.015951404348015785, 0.01587098091840744, 0.05814501270651817, -0.032950080931186676, -0.014148217625916004, 0.053423039615154266, 0.029203979298472404, 0.01446440163999796, 0.02119886502623558, -0.010176144540309906, 0.00900936033576727, -0.01413612812757492, 0.025379955768585205, 0.024370549246668816, -0.005109167657792568, -0.023116065189242363, 0.05700021609663963, 0.030609063804149628, -0.005249131005257368, -0.040604472160339355, 0.023168645799160004, 2.8045775333158365e-34, 0.002057030564174056, -0.014587041921913624, -0.017486626282334328, -0.0006191932479850948, 0.0027994834817945957, 0.0014111800119280815, -0.03096846118569374, -0.030926823616027832, 0.03427836298942566, -0.0008101711282506585, -0.022951453924179077], "2d448858-f9d3-4100-99b4-5f915b545d92": [0.029269201681017876, 0.05183836817741394, -0.04258635267615318, -0.023678721860051155, -0.05833812430500984, 0.005193558521568775, -0.0033015215303748846, -0.019889770075678825, -0.04969486966729164, 0.01579366624355316, -0.0029019524808973074, 0.0375119224190712, 0.012243591248989105, 0.046677399426698685, -0.06058792769908905, -0.0584128201007843, 0.022745274007320404, 0.0013969953870400786, -0.02621004730463028, 0.012836183421313763, 0.004216858185827732, 0.02550314925611019, -0.01085221953690052, 0.06230514496564865, -0.020706746727228165, -0.05761994794011116, -0.02018234133720398, -0.008764935657382011, 0.008554062806069851, 0.024426819756627083, -0.008877413347363472, 0.05334029719233513, -0.03945092484354973, 0.05203346908092499, 2.3989725832507247e-06, -0.03199637681245804, -0.014489518478512764, -0.01064385287463665, 0.043691471219062805, -0.019668959081172943, 0.005890378262847662, 0.05605069547891617, 0.009873302653431892, 0.0006594813312403858, -0.023323284462094307, 0.02637437731027603, 0.037876587361097336, -0.04967515543103218, 0.03151265159249306, 0.00467626703903079, 0.015035209245979786, -0.01563100889325142, 0.028686173260211945, 0.0034394084941595793, 0.018627304583787918, -0.0037674272898584604, -0.03517252206802368, 0.09063703566789627, 0.07210053503513336, -0.003942104522138834, 0.028124993667006493, 0.04965783655643463, 0.023267783224582672, -0.01701672188937664, 0.05103551968932152, 0.008288244716823101, -0.04221045970916748, -0.0676792711019516, 0.01430583093315363, -0.004913151729851961, 0.11632613092660904, -0.007996730506420135, 0.031837835907936096, -0.007384154014289379, -0.0130129000172019, -0.01203217264264822, -0.012663695961236954, -0.008130639791488647, -0.008550678379833698, -0.002643449464812875, -0.045021165162324905, -0.004461461678147316, -0.004311786498874426, 0.021883541718125343, 0.0591447539627552, 0.010850407183170319, -0.009657933376729488, 0.015424719080328941, -0.008665976114571095, 0.0017496136715635657, 0.030379243195056915, -0.039069872349500656, 0.010337933897972107, 0.03088442236185074, -0.00912124291062355, -0.00893896073102951, 0.022639460861682892, -0.017912499606609344, 0.022323358803987503, 0.009980031289160252, 0.0352649912238121, 0.01153501681983471, 0.021078620105981827, 0.04975712671875954, 0.020443063229322433, 0.027568258345127106, -0.0317365936934948, -0.011846321634948254, 0.02096465416252613, -0.012777251191437244, -0.07958322018384933, -0.0016827454091981053, -0.0674389898777008, -0.00974355824291706, 0.05610791966319084, -0.0027655991725623608, -0.003506715875118971, 0.03536553680896759, -0.0211779922246933, 0.06372927129268646, 0.04845476523041725, 0.00755886547267437, -0.05866984277963638, -0.010198569856584072, 0.0231623612344265, -0.010264500044286251, -0.04442209377884865, 0.008151845075190067, -0.0308245699852705, 0.001979003893211484, 0.03317536041140556, -0.006631386931985617, -0.022752560675144196, -0.0299057774245739, 0.028556546196341515, 0.007134648039937019, 0.06950462609529495, 0.03215454891324043, 0.02087520994246006, -0.04810144379734993, 0.0316275879740715, -0.014584782533347607, -3.047139944101218e-05, -0.06999359279870987, -0.023531800135970116, -0.004131719935685396, 0.013175487518310547, -0.04820605367422104, -0.03951207548379898, -0.006542589515447617, 0.03547503799200058, 0.015246452763676643, -0.06038319692015648, 0.043766215443611145, 0.025756660848855972, 0.06279419362545013, -0.04300987347960472, 0.028488386422395706, 0.03633273392915726, 0.060240186750888824, 0.05658726021647453, 0.01812019944190979, 0.023690201342105865, 0.012074488215148449, -0.04501500725746155, -0.02227071486413479, 0.03078456223011017, 0.032734762877225876, 0.004739784169942141, 0.007412696722894907, -0.08076341450214386, 0.03839310631155968, -0.007353039458394051, 0.04239483177661896, 0.0231205765157938, 0.015238775871694088, 0.07175689190626144, 0.031531572341918945, -0.0035197511315345764, 0.01945897750556469, 0.032293181866407394, -0.07443103939294815, 0.005749944131821394, 0.06688082218170166, 0.07589566707611084, 0.012911632657051086, -0.031285665929317474, 0.05836569145321846, -0.018541298806667328, -0.01007508859038353, -0.015699462965130806, -0.029460029676556587, -0.03697449341416359, 0.004623617045581341, 0.007083800155669451, 0.016348471865057945, 0.006601952947676182, -0.05527810379862785, -0.05470551550388336, -0.039550796151161194, 0.02080707810819149, -0.04380030184984207, 0.05821236968040466, 0.028079234063625336, 0.06046947464346886, -0.07906441390514374, -0.0012632966972887516, -0.03695664927363396, -0.0007363235927186906, 0.004173449706286192, 0.014692666940391064, -0.05371478572487831, -0.002603963715955615, 0.004244574345648289, -0.041859909892082214, -0.010719886049628258, -0.03205118700861931, -0.01706768199801445, -0.01573738269507885, 0.017131207510828972, -0.0313543975353241, 0.0032286050263792276, -0.0319562591612339, 0.032962389290332794, -0.025542190298438072, 0.02580595202744007, -0.03150814399123192, 0.0040982128120958805, 0.05496520921587944, 0.09087986499071121, -0.026092711836099625, 0.021302713081240654, 0.01991376467049122, 0.02445446513593197, -0.01839543506503105, 0.030999500304460526, 0.058875784277915955, 0.09830618649721146, 0.00663453433662653, -0.10274757444858551, -0.01233553048223257, 0.05790203809738159, 0.02154706045985222, 0.006252391263842583, 0.03424782678484917, -0.007596930023282766, 0.0178779736161232, 0.027997657656669617, 0.00961094256490469, -0.046912189573049545, -0.03812221437692642, 0.002218160778284073, -0.040373802185058594, -0.005647232756018639, -0.011912187561392784, 0.003204281674697995, -0.09382691234350204, 0.05537765473127365, 0.030420254915952682, -0.041474971920251846, 0.0827341377735138, 0.027165789157152176, 0.01841089315712452, 0.05525076016783714, 0.020691629499197006, -0.07917629182338715, -0.011198286898434162, -0.04946179687976837, -0.039705730974674225, -0.011938055045902729, 0.00485425628721714, -0.015577916987240314, -0.0009727624710649252, -0.0032062879763543606, -0.006722720805555582, 0.052533283829689026, 0.025030093267560005, -0.008235787972807884, -0.03937739506363869, 0.030151719227433205, 0.0420084074139595, -0.024050984531641006, -0.025867555290460587, 0.0098982322961092, 0.010333231650292873, -0.00017684880003798753, 0.07639070600271225, -0.04745997488498688, -0.055061619728803635, 0.0029540746472775936, -0.03303610160946846, -0.04828449338674545, 0.030674273148179054, -0.01710568368434906, 0.02945307083427906, 0.016584817320108414, 0.01824950985610485, -0.03767458349466324, -0.04373415187001228, 0.0064700692892074585, 0.06594344228506088, -0.022122468799352646, -0.013454682193696499, -0.0024565982166677713, 0.004262989386916161, -0.029140779748558998, 0.03447233885526657, -0.03948269039392471, 0.02575879730284214, -0.018434934318065643, -0.0015409220941364765, 0.0022630244493484497, -0.031369276344776154, 0.013944013975560665, -0.024913689121603966, -0.004051261581480503, 0.018670454621315002, -0.08947908133268356, -0.025347692891955376, 0.04757579416036606, -0.0273346696048975, -0.06637700647115707, 0.01865454390645027, -0.01795252412557602, -0.009500040672719479, -0.06268706172704697, 0.009969963692128658, -0.05796953663229942, 0.10430145263671875, -0.050368573516607285, -0.005803835112601519, -0.038719676434993744, -0.004127111751586199, -0.031050661578774452, 0.002980766585096717, -0.0023112939670681953, -0.005835788790136576, -0.0360548160970211, -0.014347387477755547, -0.02884751372039318, -0.030707016587257385, 0.048634275794029236, -0.02097272500395775, 0.06737210601568222, -0.03504999727010727, 0.04534615948796272, 0.02676308900117874, 0.01008587796241045, 0.030549567192792892, 0.020470643416047096, 0.025193024426698685, 0.012842509895563126, 0.05480276420712471, -0.013949010521173477, -0.0068810246884822845, -0.05086960271000862, -0.022802477702498436, -0.026088077574968338, -0.03177475184202194, 0.012264478020370007, -0.024572040885686874, 0.019564932212233543, 0.03331806883215904, -0.0022423090413212776, -0.0651509091258049, -0.04401876777410507, 0.05977798253297806, -0.044771719723939896, -0.025535639375448227, 0.013356093317270279, -0.005340300966054201, -0.016751237213611603, -0.011102776974439621, 0.04620361328125, 0.04193245992064476, -0.08855295181274414, -0.007690778002142906, -0.05804406851530075, -0.02753133326768875, 0.012266280129551888, 0.007738627027720213, -0.04990530014038086, 0.05644776299595833, -0.02837294153869152, 0.02333003468811512, -0.012842136435210705, -0.04159541800618172, -0.012674187310039997, 0.033087313175201416, 0.05799484997987747, -0.0034453622065484524, -0.03789960592985153, 0.00307509396225214, -0.03233412280678749, 0.03990299254655838, 0.0069136591628193855, -0.041765473783016205, -0.010871806181967258, 0.0286459531635046, 0.03294327110052109, 0.02397707663476467, -0.01989458128809929, 0.005808690097182989, -0.021937722340226173, -0.05569072067737579, 0.1082015261054039, 0.09871449321508408, 0.062209345400333405, 0.008036292158067226, -0.026555735617876053, 0.01424358505755663, 0.02380778081715107, 0.015722429379820824, -0.010190790519118309, 0.04388628154993057, -0.02901415154337883, 0.010917599312961102, 0.0024526596534997225, -0.04260461404919624, -0.027901360765099525, -0.03870381787419319, 0.03161250799894333, 0.0590721070766449, -0.04930087551474571, -0.0025087762624025345, -0.041500989347696304, 0.026326103135943413, 0.01671927236020565, 0.027078591287136078, 0.007211828138679266, 0.015015864744782448, 0.007519644685089588, 0.00988768320530653, 0.05771132558584213, -0.08342398703098297, -0.011107489466667175, -0.05736069008708, -0.040911514312028885, -0.0007305614417418838, -0.04505481943488121, -0.07225430011749268, 0.008876411244273186, 0.03739769756793976, 0.020799720659852028, 0.0001177687881863676, -0.012670304626226425, 0.022336605936288834, -0.0777067020535469, -0.004939406178891659, 0.022968199104070663, 0.01783156208693981, -0.06595652550458908, -0.0783914104104042, -0.04820793494582176, -0.03640621528029442, 0.009037717245519161, -0.027102181687951088, -0.011232190765440464, 0.014973855577409267, 0.056873999536037445, 0.03310447558760643, 0.03509226813912392, -0.07341106981039047, 0.011344343423843384, -0.05320526286959648, -0.01508998777717352, -0.055502668023109436, -0.018328089267015457, -0.00806478038430214, 0.03431309014558792, -0.019791364669799805, -0.019088728353381157, -0.004813121631741524, -0.016322270035743713, -0.01760050654411316, -0.012139484286308289, 0.020762713626027107, 0.00701218331232667, -0.02576710283756256, -0.007371049840003252, 0.02311304211616516, 0.008872675709426403, -0.051221802830696106, -0.0150977224111557, -0.006422392558306456, -0.006663613487035036, 0.012530171312391758, -0.0057428753934800625, -0.02293243072926998, 0.005728475749492645, -0.008225123398005962, -0.033078379929065704, 0.016983194276690483, 0.04920481890439987, -0.03996964916586876, -0.02492106519639492, -0.0016103385714814067, 0.09743015468120575, 0.0653735101222992, 0.07268126308917999, -0.0019664904102683067, 0.006805464159697294, -0.024431267753243446, 0.031392715871334076, -0.03696415200829506, 0.005707236006855965, 0.01589396223425865, 0.032401151955127716, -0.005863197147846222, 0.006956643424928188, 0.011492127552628517, 0.04034357890486717, -0.02720276452600956, -0.09668450057506561, 0.008506721816956997, 0.005325216334313154, 0.003908931277692318, 0.08653826266527176, 0.02245377004146576, -0.035876478999853134, 0.012588436715304852, -0.028265273198485374, 0.01845073699951172, -0.016070645302534103, -0.019233763217926025, -0.06381047517061234, 0.004208235070109367, -0.0038158688694238663, -0.02088068053126335, 0.05612683668732643, -0.13876157999038696, -0.015768302604556084, -0.05006427317857742, -0.03556172922253609, 0.002050693379715085, -0.008998923003673553, 0.020999042317271233, -0.001946653937920928, -0.037406157702207565, -0.01126058679074049, -0.026476304978132248, -0.05436568707227707, 0.014016655273735523, 0.04447003826498985, -0.005399148911237717, -0.004115383140742779, 0.047636713832616806, 0.03483789786696434, 0.020581617951393127, -0.029948651790618896, -0.017153296619653702, -0.012869510799646378, -0.03792554512619972, -0.007472424767911434, 0.004433088935911655, -5.9115794573845155e-33, -0.023813670501112938, -0.04854768514633179, 0.05411597713828087, 0.034562356770038605, -0.03595178574323654, 0.01040003914386034, -0.05524935945868492, 0.023892918601632118, -0.020221645012497902, -0.014819065108895302, -0.014218473806977272, 0.01177675649523735, -0.0006889888900332153, -0.0652533769607544, 0.08754264563322067, 0.04604310914874077, 0.04851891100406647, -0.009026060812175274, -0.02626185491681099, -0.0010225609876215458, -0.021689290180802345, -0.01189521886408329, 0.010224772617220879, -0.04256231337785721, 0.04764242097735405, 0.009720491245388985, -0.03816748782992363, 0.0018114174017682672, 0.028918497264385223, 0.020788712427020073, 0.019232382997870445, -0.023465286940336227, 0.010497876442968845, -0.013111521489918232, 0.003184383502230048, -0.005156163591891527, -0.037775810807943344, -0.03374150022864342, 0.01433294266462326, 0.008787614293396473, 0.007033493835479021, -0.024466348811984062, 0.005585013888776302, -0.018718646839261055, -0.04595160484313965, -0.0030687591060996056, 0.03921113535761833, 0.007707021199166775, 0.032096363604068756, -0.02790839970111847, -0.06315906345844269, 0.02573651820421219, -0.02638235129415989, 0.02871161699295044, 0.02830447442829609, 0.00798006821423769, 0.0193470548838377, 0.018799684941768646, -0.024144325405359268, 0.032119642943143845, -0.07894724607467651, -0.018111485987901688, 0.07345601916313171, -0.01752219721674919, 0.00253154244273901, 0.02255789004266262, 0.01998423971235752, 0.03428380936384201, 0.015299740247428417, 0.0020315733272582293, -0.006460386328399181, 0.07877375930547714, 0.03267825022339821, 0.023685889318585396, -0.0683731809258461, 0.017473669722676277, 0.03230863809585571, 0.06634644418954849, 0.054575636982917786, 0.051410507410764694, -0.020079011097550392, 0.04046834632754326, -0.07728900015354156, 0.009433109313249588, 0.024236183613538742, -0.04520222917199135, -0.0048890626057982445, -0.03527005389332771, -0.008820222690701485, -0.02227667346596718, -0.005910664331167936, 0.03909742459654808, -0.014722064137458801, -0.026105236262083054, 0.06308268010616302, 0.015055145137012005, -0.019917484372854233, 0.03174246475100517, -0.011803423054516315, 0.010444425977766514, -0.025208141654729843, 0.036626916378736496, 0.028476284816861153, 0.009700133465230465, 0.06291911005973816, 0.00392303429543972, -0.014407414942979813, 0.037119120359420776, 4.802250987268053e-05, -0.002937181154266, -0.0022089991252869368, -0.009135854430496693, 0.023854782804846764, -0.013478424400091171, -0.002265244023874402, -0.012071123346686363, 0.00905610155314207, -0.013231813907623291, 0.004387606866657734, 0.016269473358988762, -0.052612174302339554, 0.014408567920327187, -0.03761409968137741, -0.025174399837851524, -0.010987644083797932, -0.036011356860399246, 0.00025054303114302456, 0.026748739182949066, 0.07457224279642105, 0.03285950794816017, -0.038932304829359055, -0.04866849631071091, 3.277865232576005e-07, 0.02326044626533985, 0.022224316373467445, 0.026313841342926025, 0.035875286906957626, -0.024260979145765305, -0.02329212613403797, -0.046997446566820145, 0.02837761864066124, -0.01292470283806324, 0.037923384457826614, 0.07388973981142044, -0.014838552102446556, 0.0047249807976186275, 0.05539283528923988, -0.02412075363099575, -0.09770374745130539, -0.017428897321224213, -0.02411198988556862, -0.04131953790783882, 0.02183891274034977, 0.007405151147395372, -0.05570382624864578, 0.07778226584196091, -0.011732195504009724, -0.037954121828079224, -0.029563970863819122, -0.051555085927248, -0.03968330845236778, 0.07047723978757858, 0.07684210687875748, -0.013979918323457241, -0.049421366304159164, 0.020914556458592415, -0.026736754924058914, 0.02755751647055149, -0.04352254047989845, 0.03295932710170746, 0.02818862535059452, 0.007290369365364313, 0.02884512208402157, -0.014284591190516949, 0.020171353593468666, 0.013189807534217834, -0.031451571732759476, -0.0023187659680843353, 0.016540847718715668, -0.01607634127140045, 0.01311846636235714, -0.008644059300422668, -0.04142098128795624, 0.03906795755028725, 0.01122768223285675, 0.033491168171167374, -0.01181802898645401, 0.006035706494003534, -0.03307921066880226, -0.007563439197838306, -0.048496369272470474, 0.038034096360206604, -0.02847862057387829, -0.050438497215509415, -0.08193953335285187, 0.006306528113782406, 0.026776516810059547, -0.008261562325060368, -0.05933936685323715, 0.04423109069466591, 2.859867093777755e-34, 0.010727130807936192, -0.07624164968729019, -0.009117970243096352, 0.020085368305444717, 0.013955156318843365, -0.009912444278597832, -0.03419651836156845, -0.012062255293130875, 0.015345952473580837, 0.02802812121808529, -0.06702706962823868], "83517c70-7306-4404-b05e-67fb691d01a8": [0.027845164760947227, -0.048473138362169266, -0.02450053207576275, -0.041176654398441315, -0.04338406026363373, 0.022128010168671608, 0.021451540291309357, 0.016337715089321136, -0.06079178303480148, -0.015617466531693935, 0.06980673968791962, 0.027695463970303535, 0.023533059284090996, 0.0612826831638813, -0.020641744136810303, -0.09619472920894623, 0.025055691599845886, -0.02644139900803566, -0.03867676854133606, 0.005358831491321325, -0.010914619080722332, 0.0204831063747406, -0.017019659280776978, 0.04031684622168541, -0.0301671139895916, -0.03711576759815216, -0.01885628141462803, 0.054615966975688934, -0.007301428355276585, -0.04085966572165489, -0.0006644290988333523, 0.03902456909418106, 0.047638967633247375, -0.003870774758979678, 2.026795755227795e-06, -0.040061987936496735, -0.0088826734572649, 0.03620535880327225, -0.023609742522239685, 0.0018364955903962255, 0.020378289744257927, 0.012565073557198048, 0.02321562170982361, 0.028620976954698563, 0.040494874119758606, -0.03846472501754761, 0.017819691449403763, 0.02832074835896492, 0.06059393659234047, -0.014134799130260944, 0.012715610675513744, -0.09017135947942734, -0.004647344816476107, 0.0005299778422340751, 0.04147800803184509, -0.015702787786722183, -0.03361755609512329, 0.11937397718429565, 0.08506189286708832, 0.014368858188390732, 0.02719314955174923, -0.023546703159809113, 0.018961532041430473, -0.005070268176496029, 0.0469987653195858, -0.011469227261841297, 0.08700944483280182, -0.06895077973604202, 0.04337466508150101, -0.008337829262018204, 0.10627511888742447, -0.010573928244411945, -0.014067080803215504, 0.015281726606190205, -0.012584858573973179, 0.01633727177977562, -0.02519899420440197, -0.012432064861059189, -0.011856612749397755, -0.015070006251335144, 0.0017733408603817225, -0.002758096670731902, -0.039078522473573685, -0.03314319625496864, 0.035983409732580185, 0.034078147262334824, -0.023332709446549416, -0.03436216711997986, 0.005255508702248335, -0.02706312946975231, 0.06599027663469315, -0.030222447589039803, 0.013801411725580692, 0.02142883464694023, 0.01982015185058117, -0.019553979858756065, 0.0295812226831913, -0.022138603031635284, 0.08841536194086075, 0.023805787786841393, 0.023307986557483673, 0.005365285556763411, 0.00058792217168957, 0.06417367607355118, 0.0386272594332695, 0.003919315990060568, 0.036303408443927765, -0.030824175104498863, -0.034417156130075455, 0.023067036643624306, -0.018182208761572838, -0.017123816534876823, -0.06538758426904678, 0.030267702415585518, 0.012286665849387646, 0.02830241061747074, -0.025512810796499252, -0.0007609964814037085, 0.03494923189282417, 0.05257958918809891, 0.022426428273320198, -0.006766590289771557, -0.060179851949214935, -0.010583045892417431, -0.0013532433658838272, -0.08533172309398651, -0.08586452901363373, -0.0034304980654269457, -0.005109387915581465, 0.036313023418188095, 0.03502741828560829, -0.022844277322292328, -0.0020035135094076395, -0.001122087356634438, 0.004362120758742094, 0.028614353388547897, 0.04828287288546562, 0.060043297708034515, -0.03648287430405617, -0.06717360764741898, 0.07607701420783997, -0.03125353157520294, 0.000914656207896769, -0.02669852040708065, -0.020164253190159798, 0.0068013304844498634, -0.014120182953774929, 0.04114462062716484, -0.03965014964342117, 0.018334468826651573, -0.016795523464679718, -0.014347436837852001, -0.03329181671142578, -0.003162742592394352, 0.036348339170217514, 0.039072856307029724, -0.015552977100014687, -0.006666701752692461, -0.02276628091931343, 0.05629986152052879, 0.02054278552532196, -0.029062073677778244, 0.035551007837057114, -0.011283010244369507, -0.05632335692644119, -0.01100707147270441, 0.02067549340426922, 0.022076597437262535, -0.03126769885420799, 0.02749526873230934, -0.01856362819671631, 0.01760857179760933, -0.0208722036331892, 0.08745594322681427, -0.01895543560385704, 0.06432855874300003, 0.1061805859208107, -0.02000398188829422, 0.04584678262472153, 0.050324447453022, 0.06279569119215012, -0.008981917053461075, 0.0034336086828261614, -0.009564648382365704, 0.013404716737568378, -0.005595284979790449, -0.10365598648786545, -0.023281803354620934, -0.031752996146678925, -0.03446505218744278, -0.04750562831759453, 0.03500282019376755, -0.04424630105495453, -0.07093066722154617, 0.002609249670058489, 0.03896533325314522, 0.0013665526639670134, -0.048893239349126816, -0.0006511827232316136, -0.018009915947914124, 0.002956070238724351, -0.0025556038599461317, 0.01790701039135456, 0.06194061413407326, 0.04314478486776352, -0.06412352621555328, -0.0062563614919781685, -0.026621107012033463, 0.006481004413217306, 0.037224315106868744, 0.026595795527100563, -0.007197434548288584, -0.036489855498075485, -0.024227231740951538, -0.06477303057909012, -0.04650574177503586, 0.005883317440748215, -0.018536165356636047, -0.04274200648069382, -0.009796906262636185, -0.05598871037364006, -0.10888248682022095, -0.05612274631857872, 0.01632154919207096, -0.01771535724401474, -0.037801895290613174, -0.027865272015333176, 0.0024458528496325016, 0.04138687998056412, 0.033264026045799255, -0.008673250675201416, 0.024998411536216736, 0.03719398006796837, 0.010624435730278492, 0.010775855742394924, -0.029532138258218765, 0.02442605420947075, 0.11154269427061081, -0.0038180651608854532, -0.057952333241701126, -0.02621166966855526, 0.038234952837228775, 0.008861429058015347, 0.0055060917511582375, 0.002024203771725297, -0.026304373517632484, 0.024347929283976555, 0.023667261004447937, 0.0007507688133046031, 0.006413920316845179, -0.016722869127988815, 0.009147537872195244, 0.00832927692681551, -0.0095180319622159, -0.026259392499923706, 0.04745908081531525, -0.10384390503168106, 0.0017751336563378572, 0.04381083697080612, 0.014970715157687664, 0.02890920452773571, -0.04319726675748825, 0.0012620944762602448, 0.004912670701742172, 0.060747917741537094, -0.007044135592877865, 0.018585937097668648, -0.005518196150660515, -0.03991883620619774, -0.016631273552775383, 0.03039485029876232, 0.0132541973143816, -0.011139076203107834, 0.008889801800251007, -0.015101677738130093, 0.010748311877250671, 0.04974241927266121, -0.0020130255725234747, -0.04969025403261185, 0.041320186108350754, 0.03361167013645172, -0.04196080192923546, -0.01982378028333187, -0.011805340647697449, -0.01946963742375374, 0.025894349440932274, 0.027270343154668808, -0.034469518810510635, -0.04199565201997757, -0.00935719907283783, 0.006098538637161255, 0.0013052044669166207, 0.009195245802402496, 0.00369187886826694, 0.007408799137920141, 0.029979798942804337, 0.03895537555217743, -0.04419682174921036, 0.007235723081976175, 0.10352171957492828, -0.002878764411434531, 0.0031377312261611223, -0.020133228972554207, 0.007978993467986584, 0.027557821944355965, 0.013125106692314148, 0.024497251957654953, -0.0433352030813694, 0.015538248233497143, -0.004831208381801844, -0.006878404412418604, 0.03165547177195549, -0.02511521615087986, 0.011894898489117622, -0.017798354849219322, -0.016242744401097298, -0.006197227165102959, -0.028628461062908173, -0.028194071725010872, 0.0375497005879879, -0.006583502981811762, -0.04329167678952217, 0.003919380251318216, -0.029745496809482574, 0.01154475100338459, -0.09300405532121658, 0.033505138009786606, -0.016371484845876694, 0.11679714173078537, -0.01739778369665146, 0.04047255963087082, -0.010148122906684875, -0.03211282193660736, 0.0452222116291523, -0.01743992045521736, 0.027014287188649178, -0.0010196671355515718, -0.05464286357164383, -0.030497968196868896, -0.03071565181016922, -0.02483566291630268, 0.042960695922374725, 0.0020343575160950422, 0.029173895716667175, 0.012046093121170998, 0.051256220787763596, 0.005410563200712204, 0.036679960787296295, -0.044475529342889786, 0.02460877224802971, 0.059434518218040466, 0.028650479391217232, 0.057656630873680115, -0.006274791434407234, -0.005723713431507349, -0.03648695349693298, -0.016819855198264122, -0.012959870509803295, -0.014531854540109634, -0.012993457727134228, 0.012089861556887627, 0.008970988914370537, -0.05992542952299118, 0.005489405710250139, 0.021484892815351486, -0.06328833848237991, 0.03127078339457512, -0.05534609779715538, -0.02470305562019348, 0.04530267044901848, -0.03850964829325676, -0.028493542224168777, -0.002328930189833045, 0.0008445727289654315, 0.03625067323446274, -0.05335647612810135, 0.02392406389117241, -0.05499463900923729, -0.01974646933376789, -0.015784956514835358, 0.0021465406753122807, -0.09960866719484329, 0.06027410924434662, -0.008387305773794651, 0.019927488639950752, -0.00019782855815719813, 0.020619546994566917, 0.014893220737576485, 0.0332171656191349, 0.06204792484641075, -0.005085170269012451, -0.052788786590099335, -0.0028329065535217524, 0.0035028925631195307, -0.012421091087162495, 0.0621534138917923, -0.016383014619350433, 0.01413202378898859, -0.020558014512062073, -0.02034791000187397, 0.006539403926581144, -0.08754833787679672, -0.06936676055192947, 0.025894565507769585, -0.007474020589143038, 0.0378694050014019, 0.0400853306055069, 0.012344404123723507, -0.03724999353289604, 0.026164347305893898, 0.08205581456422806, 0.0038053859025239944, 0.044541135430336, -0.04110255092382431, 0.00896963570266962, -0.013232708908617496, 0.032314591109752655, 0.0036622569896280766, -0.01264988537877798, -0.0029778110329061747, 0.0016263581346720457, -0.01006515882909298, 0.014410976320505142, -0.06021375209093094, -0.06653762608766556, -0.05146664381027222, 0.046736110001802444, -0.005707558710128069, 0.012223070487380028, 0.023327969014644623, 0.012449517846107483, -0.02474285662174225, -0.03115614503622055, 0.07651767879724503, -0.03720783442258835, 0.04947130009531975, -0.026622304692864418, -0.04366574063897133, 0.011675069108605385, -0.015080144628882408, -0.03422320634126663, 0.039741769433021545, 0.004983021877706051, 0.01119288895279169, -0.01591872237622738, -0.0013427762314677238, 0.003467054106295109, -0.03251812607049942, 0.014927901327610016, 0.029311232268810272, 0.028022119775414467, -0.05164631828665733, -0.1185522973537445, -0.011631850153207779, -0.00252736103720963, -0.02996891736984253, -0.010804728604853153, 0.059940215200185776, 0.03029693476855755, 0.07978519797325134, 0.03970015421509743, 0.0397191047668457, -0.05643349140882492, -0.014974120073020458, -0.025699518620967865, -0.0017816285835579038, -0.06587707996368408, -0.005019712261855602, 0.007616810966283083, -0.002681838348507881, 0.021854590624570847, -0.03517366200685501, -0.018733568489551544, -0.011313156224787235, 0.032243844121694565, -0.05905121937394142, -0.02218903973698616, 0.004062599036842585, -0.0033791724126785994, -0.02674739807844162, -0.0031055654399096966, -0.01580028049647808, 0.020624201744794846, -0.032860204577445984, -0.011472426354885101, 0.029318973422050476, -0.015119737014174461, -0.030091388151049614, -0.00924607366323471, 0.00732826441526413, -0.01235935278236866, -0.03267524018883705, 0.018780846148729324, 0.02558058127760887, -0.028617484495043755, -0.032834235578775406, 0.0023638454731553793, 0.054319169372320175, 0.05696222558617592, 0.013110961765050888, -0.0018206483218818903, -0.038875654339790344, -0.054683707654476166, 0.0009081658208742738, -0.06815922260284424, 0.005812204908579588, -0.015199956484138966, 0.042315755039453506, -0.028538048267364502, 0.006529484875500202, -0.00598199013620615, 0.05867302045226097, 0.015111728571355343, -0.0561552420258522, 0.02198275923728943, -0.051191337406635284, -0.0007751148077659309, 0.07776447385549545, 0.029339035972952843, -0.043259140104055405, 0.020962202921509743, -0.007095424924045801, 0.001896665315143764, -0.03126925602555275, 0.03625739738345146, -0.04642234370112419, 0.03849324211478233, 0.007024754770100117, -0.04742446914315224, 0.043398622423410416, 0.009925300255417824, -0.016127869486808777, -0.017880141735076904, -0.018838832154870033, -0.028757456690073013, 0.0201620701700449, 0.030324190855026245, 0.06652284413576126, -0.036270420998334885, -0.05264903977513313, -0.06867498904466629, -0.0089289965108037, 0.0003302022523712367, 0.04754255712032318, -0.01045170333236456, 0.010603509843349457, 0.026254044845700264, 0.00631890632212162, 0.014682960696518421, -0.06213393807411194, -0.018859634175896645, -0.06032026186585426, -0.05066801235079765, 0.01625797711312771, 0.03234974667429924, -5.488227738329761e-33, -0.018520237877964973, -0.04148351773619652, 0.03401681408286095, 0.031678974628448486, 0.00683973915874958, -0.0032596057280898094, -0.03033692017197609, -0.0071458229795098305, -0.013523109257221222, 0.003857528790831566, 0.016112877056002617, -0.01825788803398609, 0.009750273078680038, -0.035170119255781174, 0.032543737441301346, 0.034586597234010696, 0.04561588168144226, -0.024439463391900063, -0.01974291354417801, 0.009689988568425179, -0.01439613662660122, -0.02318156696856022, 0.045838262885808945, -0.027135252952575684, 0.019012367352843285, -0.003402091795578599, -0.029378652572631836, -0.011480034328997135, -0.014383958652615547, 0.014785239472985268, 0.011187215335667133, -0.02580832503736019, 0.02031666226685047, 0.03966212272644043, 0.010686064139008522, -1.999097366933711e-05, -0.0732579454779625, -0.019651437178254128, 0.020354993641376495, 0.003923226147890091, -0.054817672818899155, -0.011902237311005592, 0.0005661644972860813, 0.017805548384785652, -0.020410025492310524, -0.02824617177248001, 0.013816981576383114, 0.037979986518621445, 0.013477623462677002, -0.021512258797883987, -0.061059776693582535, 0.026836035773158073, 0.0033022535499185324, 0.029637208208441734, -0.03993762657046318, 0.0032620036508888006, 0.032001860439777374, -0.08126086741685867, 0.006280135363340378, -0.0010174805065616965, 0.03022903762757778, -0.019373174756765366, 0.04532518610358238, -0.02541118673980236, -0.006893591955304146, 0.007267082575708628, -0.0363403856754303, 0.08739162236452103, 0.02623964287340641, 0.025707639753818512, -0.012255225330591202, 0.07578195631504059, 0.0001681644207565114, -0.059856146574020386, -0.012281532399356365, 0.02063608728349209, 0.02883334271609783, 0.055407170206308365, 0.042273957282304764, 0.12844838201999664, -0.015613199211657047, 0.0017821954097598791, -0.0512017123401165, 0.002809979021549225, -0.012293582782149315, -0.03272312879562378, -0.02024656906723976, -0.01398125197738409, 0.0016352784587070346, -0.004369267262518406, -0.029419519007205963, -0.009113152511417866, -0.018032671883702278, 0.02863379567861557, 0.05514081194996834, 0.006340723484754562, 0.02645605057477951, 0.023504067212343216, -0.018331829458475113, -0.0017675177659839392, -0.010378861799836159, -0.018667684867978096, -0.008205042220652103, -0.0041350265964865685, 0.04708362743258476, 0.021509649232029915, -0.05384523421525955, 0.01007827464491129, -0.019051162526011467, 0.028039874508976936, 0.02554159238934517, 0.008015381172299385, -0.015791719779372215, -0.01168062537908554, 0.012631617486476898, -0.04593401774764061, 0.03448375314474106, 0.011082439683377743, -0.03164400905370712, -0.046968091279268265, -0.025459587574005127, 0.01716677099466324, 0.001296853180974722, -0.040604475885629654, 0.03104310669004917, 0.009121675975620747, -0.018029725179076195, 0.018737880513072014, 0.14892570674419403, 0.058716900646686554, -0.004122777841985226, 0.054208628833293915, 2.682421040844929e-07, 0.01265786774456501, 0.08010502904653549, 0.012895737774670124, 0.04193081706762314, 0.042132068425416946, -0.04167027771472931, 0.00771524291485548, -0.012357526458799839, -0.01976107247173786, 0.009536251425743103, 0.032449010759592056, -0.03981350362300873, -0.015372081659734249, 0.06945926696062088, -0.018832191824913025, -0.1208948940038681, -0.0069516063667833805, -0.004720980301499367, -0.026821322739124298, -0.027556391432881355, 0.024778181686997414, -0.02584865503013134, -0.018877217546105385, -0.006653245072811842, -0.03704457730054855, -0.0458972305059433, -0.02721230499446392, 0.012393437325954437, 0.05942424759268761, 0.02121121995151043, 0.047508373856544495, -0.0030480094719678164, 0.05823628604412079, -0.008863607421517372, 0.007442697416990995, -0.030356481671333313, -0.019174855202436447, 0.0807487964630127, 0.02729734778404236, 0.04509446397423744, 0.0011473422637209296, -0.05534253641963005, -0.005698823370039463, -0.030153077095746994, -0.004417607560753822, 0.028335006907582283, -0.011199789121747017, 0.004108958877623081, -0.013079280965030193, -0.016358990222215652, -0.0014359259512275457, -0.02195015549659729, -0.01008132565766573, -0.0005352618754841387, 0.00830637663602829, -0.0071999323554337025, -0.008442645892500877, 0.0038044301327317953, 0.05567830055952072, 0.02407296933233738, -0.04940805211663246, -0.05302426591515541, 0.030462326481938362, 0.024314776062965393, -0.0029933196492493153, -0.060683269053697586, -0.015937747433781624, 2.8886308895293996e-34, 0.015588095411658287, -0.058390967547893524, 0.012027771212160587, -0.04653299227356911, -0.0250844843685627, -0.006329831667244434, 0.044560547918081284, 0.012624022550880909, -0.021807298064231873, -0.04968985542654991, -0.03849159553647041], "fe552232-5b34-4657-b842-1fd039e24eb2": [0.019329197704792023, -0.025634102523326874, -0.037744659930467606, -0.048160482197999954, -0.04666108638048172, 0.015272918157279491, 0.0317569226026535, 0.011047713458538055, -0.03886563703417778, -0.005607292056083679, 0.05946732312440872, 0.05249350890517235, 0.01978829875588417, 0.08342025429010391, -0.03014330007135868, -0.05014769732952118, 0.020424416288733482, -0.013082928955554962, -0.03647399693727493, 0.002466482575982809, 0.0013636545045301318, 0.03409063443541527, -0.017517894506454468, 0.03519205003976822, -0.006378049496561289, -0.04179265722632408, -0.014287590980529785, 0.03823057562112808, -0.009621161967515945, -0.014809119515120983, -0.023227471858263016, 0.049859531223773956, -0.0009931710083037615, 0.05773631110787392, 2.175624103983864e-06, -0.05146235600113869, -0.0082588205114007, 0.0463707372546196, -0.0011331499554216862, 0.007330312859266996, 0.011946756392717361, 0.009716872125864029, 0.004102828912436962, 0.033510465174913406, 0.021430179476737976, -0.011953522451221943, 0.0228289607912302, 0.012582788243889809, 0.09037972241640091, 0.010675248689949512, 0.025136573240160942, -0.03099256567656994, 0.017656225711107254, 0.008206279948353767, 0.04794091731309891, -0.03387661650776863, -0.034823399037122726, 0.0956556424498558, 0.07602038234472275, 0.02205328270792961, 0.046240679919719696, -0.018713954836130142, 0.0312507227063179, 0.012052975594997406, 0.019540973007678986, 0.006798423361033201, 0.055682018399238586, -0.10435769706964493, 0.005215228535234928, 0.002541567664593458, 0.10848911851644516, -0.04060414433479309, 0.005331793799996376, 0.027394818142056465, -0.022127680480480194, 0.011725150048732758, -0.004558378830552101, 0.011950216256082058, -0.006429323460906744, -0.012923548929393291, -0.05640619248151779, -0.0241587832570076, -0.04758252203464508, -0.039362695068120956, 0.02466185949742794, 0.0424235537648201, -0.009125255979597569, -0.02754548378288746, -0.0004425013321451843, -0.00641317805275321, 0.03964654356241226, -0.03295213729143143, 0.00969206728041172, 0.0028888187371194363, 0.024686528369784355, -0.04127572476863861, 0.01763320527970791, -0.025996306911110878, 0.07785583287477493, 0.027211859822273254, -0.015093839727342129, -0.0035116083454340696, -0.011610379442572594, 0.054525528103113174, 0.02207675203680992, 0.034218549728393555, 0.008858365006744862, -0.00582535844296217, -0.013883923180401325, 0.0312756672501564, -0.027063556015491486, 0.0009259746875613928, -0.04715912789106369, 0.0221050214022398, 0.02159811556339264, 0.01099594496190548, -0.01783391647040844, 0.008636758662760258, 0.027626756578683853, 0.0723181888461113, 0.03737877681851387, 0.006753387860953808, -0.08978772908449173, -0.011627821251749992, -0.01854517124593258, -0.09130021184682846, -0.07491448521614075, -0.011278051882982254, -0.013907584361732006, 0.014037711545825005, 0.00917463656514883, -0.025498494505882263, -0.005608704406768084, -0.020178506150841713, 0.0061921123415231705, 0.020970137789845467, 0.06227482110261917, 0.05826492980122566, 0.0261858981102705, -0.04522309824824333, 0.05360801890492439, -0.035691626369953156, -0.0110434889793396, -0.022454358637332916, -0.022619374096393585, 0.006171213462948799, -0.01964312046766281, 0.003099651774391532, -0.040088213980197906, 0.00342138041742146, 0.0008374260505661368, -0.003459644503891468, -0.02792511135339737, -0.0038418087642639875, -0.0044185323640704155, 0.047039151191711426, -0.002833866747096181, -0.018934685736894608, -0.03945424035191536, 0.04774507135152817, 0.013360338285565376, -0.007996954023838043, 0.06453999131917953, -0.013960213400423527, -0.023366035893559456, 0.006781355012208223, 0.03980940952897072, 0.04544897750020027, 0.013593295589089394, 0.03195926547050476, -0.015302860178053379, 0.051984481513500214, 0.0025127828121185303, 0.06691817194223404, -0.011488213203847408, 0.03307593613862991, 0.0877424106001854, -0.013710085302591324, 0.008208787068724632, 0.06822893768548965, 0.059725839644670486, -0.029601365327835083, -0.00919874757528305, -0.005090941209346056, 0.006621986161917448, 0.00011008144065272063, -0.0914180725812912, 0.03856794536113739, -0.03687909618020058, -0.004546362441033125, -0.04465296119451523, 0.00968168955296278, -0.06688622385263443, -0.04810728505253792, 0.024107186123728752, 0.0312739759683609, 0.0074496143497526646, -0.03794775903224945, -0.005040762946009636, -0.0026558132376521826, 0.006798327434808016, -0.06002440303564072, 0.03838722035288811, 0.02232043817639351, 0.07091162353754044, -0.0715453177690506, 0.009032436646521091, -0.051227010786533356, 0.006015653721988201, 0.031478412449359894, 0.01042177528142929, -0.015105551108717918, -0.06288221478462219, -0.013770339079201221, -0.06225990131497383, -0.015612746588885784, -0.007564823143184185, -0.012990274466574192, -0.013137239962816238, 0.011729298159480095, -0.06730186939239502, -0.07045523822307587, -0.022386178374290466, 0.033384233713150024, -0.008517155423760414, -0.02843417413532734, -0.05221962556242943, 0.0010699589038267732, 0.04079430550336838, 0.05821465328335762, -0.029994884505867958, 0.00540828425437212, 0.04612104594707489, 0.04765947535634041, -0.024591827765107155, 0.007111774291843176, 0.0542735755443573, 0.09896392375230789, 0.022825324907898903, -0.07672665268182755, -0.03250252082943916, 0.07060270011425018, -0.01582503318786621, 0.027126943692564964, 0.013233982026576996, 0.006615797057747841, 0.0009565880172885954, 0.026503683999180794, 0.001299297553487122, -0.01578623242676258, 0.007872244343161583, 0.015128816477954388, -0.03134685754776001, 0.0019917308818548918, 0.0013516194885596633, 0.025848763063549995, -0.1322682499885559, 0.01255225669592619, 0.0367218554019928, -0.014930146746337414, 0.042550042271614075, -0.03358633071184158, 0.009621834382414818, 0.007873767986893654, 0.06962075084447861, -0.017199574038386345, -0.011018660850822926, 0.0215135645121336, -0.037779614329338074, -0.02418159320950508, 0.024591872468590736, 0.016047067940235138, -0.012739554978907108, 0.001986327115446329, -0.016131985932588577, 0.036819279193878174, 0.0500948429107666, 0.013986562378704548, -0.06408249586820602, 0.030078642070293427, 0.028199603781104088, -0.04647462069988251, -0.016537075862288475, 0.003007124178111553, -0.005624299868941307, 0.02025645412504673, 0.06894107162952423, -0.014817403629422188, -0.07253477722406387, -0.015428238548338413, -0.0028507746756076813, 0.005042634904384613, 0.0337202362716198, -0.026356790214776993, 0.010441495105624199, 0.03414095193147659, 0.03449773043394089, -0.04003036394715309, -0.01345153246074915, 0.08077718317508698, -0.011921553872525692, 0.01499793492257595, -0.02297542430460453, -0.004139092285186052, 0.015969134867191315, -0.036169253289699554, 0.0415475033223629, -0.05036591738462448, 0.007450218312442303, -0.03000195138156414, 0.003597948234528303, 0.016589682549238205, -0.044108301401138306, 0.0187531728297472, -0.003664253745228052, -0.025987209752202034, 0.003857928793877363, -0.021621225401759148, -0.030696162953972816, 0.03777766227722168, -0.01226129848510027, -0.06259924918413162, 0.01490089576691389, -0.04708729311823845, -0.007153518497943878, -0.10734928399324417, 0.03523765504360199, -0.030048813670873642, 0.11737209558486938, -0.006272014696151018, 0.013566937297582626, -0.023044852539896965, -0.009360882453620434, 0.02528311498463154, -0.008088447153568268, 0.004066662397235632, 0.004842856898903847, -0.06879568099975586, -0.022557782009243965, -0.024394258856773376, -0.028496073558926582, 0.06022306904196739, 0.014987166970968246, 0.04021897539496422, 0.004681525286287069, 0.028620293363928795, -0.02033720165491104, 0.03703046962618828, -0.010997354984283447, 0.020354285836219788, 0.06314148753881454, 0.021797284483909607, 0.061051834374666214, -0.01090223342180252, -0.008907939307391644, -0.05921156331896782, -0.015055382624268532, -0.022215723991394043, -0.012482224963605404, -0.008924460969865322, 0.005918943323194981, 0.010278543457388878, 0.005873337388038635, 0.011934158392250538, -0.013246841728687286, -0.06368556618690491, 0.035622283816337585, -0.045806292444467545, 0.0015350249595940113, 0.05571260675787926, -0.04102650657296181, 0.00048580594011582434, -0.006742650177329779, 0.022277584299445152, 0.04219524934887886, -0.07054806500673294, -0.006779865827411413, -0.033272940665483475, -0.0124855637550354, -0.002412587869912386, -0.0015634214505553246, -0.12173796445131302, 0.062400445342063904, -0.004392745438963175, 0.0006016329280100763, -0.0022423644550144672, 0.005926995072513819, 0.021770833060145378, 0.029643813148140907, 0.07595007121562958, -0.012479749508202076, -0.060546278953552246, -0.025257131084799767, 0.010852951556444168, 0.003495075274258852, 0.011894729919731617, -0.007636150810867548, 0.009496206417679787, -0.004210660234093666, 0.004784719552844763, -0.005994510371237993, -0.04375462234020233, -0.03470408171415329, 0.04492177814245224, -0.0392051562666893, 0.06928123533725739, 0.07202179729938507, 0.015358582139015198, -0.036156002432107925, 0.022492676973342896, 0.09910470247268677, 0.01729496568441391, 0.019031034782528877, -0.0389859601855278, 0.031214073300361633, -0.019553227350115776, 0.02086852304637432, -0.0031485434155911207, -0.01173386536538601, -0.02848692424595356, 0.006383407860994339, -0.009854761883616447, 0.031236469745635986, -0.041197121143341064, -0.060556553304195404, -0.03664076700806618, 0.0449334941804409, 0.017090212553739548, 0.033456951379776, 0.005148951895534992, 0.009236613288521767, -0.03357935696840286, -0.024629170075058937, 0.06881700456142426, -0.046297330409288406, 0.0005004074773751199, -0.06272920221090317, -0.02420208975672722, 0.0033827796578407288, -0.04860706999897957, -0.05756988376379013, 0.020922604948282242, 0.015772826969623566, 0.011114859022200108, -0.06136658415198326, -0.01114652305841446, 0.013153234496712685, -0.027317658066749573, 0.006545201875269413, 0.022016726434230804, 0.030889255926012993, -0.0690397322177887, -0.09522389620542526, -0.03354577720165253, -0.013808982446789742, -0.04214296489953995, -0.03737303614616394, 0.04734935984015465, 0.02694876119494438, 0.10513819754123688, 0.02436778135597706, 0.050698067992925644, -0.0583401657640934, -0.021474875509738922, -0.018046293407678604, 0.0055274683982133865, -0.06398067623376846, -0.04322687163949013, 0.019526971504092216, 0.011214318685233593, 0.020949143916368484, -0.041612230241298676, -0.020081015303730965, -0.01453547552227974, 0.016074230894446373, -0.05007304251194, -0.029111666604876518, 0.03882729634642601, -0.03572214022278786, -0.018653808161616325, 0.00019525381503626704, 0.0007881874917075038, 0.02114381454885006, -0.011252631433308125, -0.023196032270789146, 0.020600643008947372, 0.021935852244496346, -0.0026780166663229465, -0.019157296046614647, 0.001112432568334043, 0.008294615894556046, -0.05463738739490509, 0.02045634761452675, 0.05026622861623764, -0.03174958750605583, -0.0022275091614574194, -0.009726452641189098, 0.060054242610931396, 0.053645744919776917, 0.06153634563088417, 0.017485613003373146, -0.03747081384062767, -0.028603287413716316, 0.0163938757032156, -0.08694055676460266, 0.0220931489020586, 0.003948050085455179, 0.04674573987722397, -0.03926966339349747, 0.004272821359336376, 0.010599885135889053, 0.038244158029556274, -0.0153620894998312, -0.027428563684225082, 0.015219063498079777, -0.00033804180566221476, 0.0034991793800145388, 0.10479597747325897, 0.04419117048382759, -0.03093675710260868, 0.019323064014315605, -0.023484529927372932, -0.0036564490292221308, -0.04254000261425972, 0.05538756027817726, -0.04223666340112686, 0.01366493571549654, 0.0042618755251169205, -0.03577227517962456, 0.0370919294655323, -0.035511720925569534, -0.005693026818335056, -0.03389926627278328, -0.01296873390674591, -0.02307256869971752, -0.022545794025063515, 0.0038893288001418114, 0.02059600129723549, -0.030082354322075844, -0.057513751089572906, -0.019226504489779472, -0.02220022864639759, 0.014261584728956223, 0.0819217711687088, -0.00552025530487299, -0.002892351010814309, 0.028999950736761093, 0.021364137530326843, 0.016698503866791725, -0.04955100640654564, -0.00530256750062108, -0.052684370428323746, -0.0316021703183651, 0.007822470739483833, 0.04220164567232132, -5.9323603607971304e-33, -0.021211594343185425, -0.02551298215985298, 0.03536580875515938, 0.03474124148488045, -0.0058698346838355064, -0.005191917531192303, -0.026529815047979355, -0.00939455721527338, -0.02960570529103279, -0.013061120174825191, 0.006402665749192238, 0.014917283318936825, 0.01906386949121952, -0.04767251014709473, 0.04608828201889992, 0.041525453329086304, 0.0446879006922245, -0.0393560528755188, -0.020885834470391273, 0.0036509293131530285, -0.035090431571006775, -0.017650863155722618, 0.002545950934290886, 0.022313272580504417, 0.019611869007349014, -0.0074765319004654884, -0.03779800236225128, 5.511861672857776e-05, -0.020716102793812752, 0.01840032823383808, 0.013450861908495426, -0.03695863485336304, 0.004458809737116098, 0.0015354352071881294, 0.007104029413312674, 0.004891770891845226, -0.07098866999149323, -0.008670865558087826, -0.011855369433760643, 0.007327734027057886, -0.017664898186922073, 0.010184379294514656, 0.006161082070320845, -0.00486453901976347, -0.026439880952239037, -0.023799583315849304, 0.010750704444944859, 0.03650776296854019, 0.02009853534400463, 0.0033700005151331425, -0.06410545855760574, 0.032473161816596985, -0.012196779251098633, 0.04303332045674324, -0.007713730912655592, -0.00036874349461868405, 0.040127504616975784, -0.05188239738345146, -0.016399957239627838, -0.005955015774816275, -0.004351524170488119, -0.014955888502299786, 0.05210570618510246, -0.042101696133613586, -0.0065854256972670555, -0.0028989010024815798, -0.006169166415929794, 0.06000374257564545, 0.014804394915699959, 0.05341073125600815, -0.006805738899856806, 0.0556764230132103, 0.017782149836421013, -0.03323051705956459, -0.06814908236265182, 0.024343350902199745, 0.029301177710294724, 0.06120850145816803, 0.06821798533201218, 0.10571950674057007, 0.00018424233712721616, -0.016919290646910667, -0.08505330979824066, 0.015942171216011047, -0.006545546930283308, -0.02142680622637272, -0.0341852568089962, -0.016577785834670067, -0.006729137152433395, 0.012253920547664165, -0.025799879804253578, 0.007519035134464502, -0.003333758097141981, 0.011984400451183319, 0.066265769302845, -0.0016485864762216806, -0.002459130482748151, 0.048423632979393005, -0.020666882395744324, -0.005258520599454641, -0.027639975771307945, -0.013715391047298908, 0.004993524868041277, 0.02542264014482498, 0.056579552590847015, 0.003406546311452985, -0.035242170095443726, 0.011533606797456741, -0.03676634281873703, 0.03991008177399635, 0.002906191162765026, 0.02053128182888031, 0.005857151933014393, -0.017853325232863426, -0.016376139596104622, -0.02577298693358898, 0.035844091325998306, -0.0011440289672464132, -0.03405965492129326, -0.04593798518180847, -0.037248026579618454, 0.08099937438964844, 0.0010463217040523887, -0.0381699837744236, -0.012260634452104568, 0.0022081818897277117, -0.009902470745146275, 0.04451374337077141, 0.10144083946943283, 0.04820495843887329, -0.014072243124246597, 0.021273747086524963, 2.920767485647957e-07, 0.019275890663266182, 0.06113235279917717, 0.028787782415747643, 0.048253655433654785, 0.026076581329107285, -0.04166392609477043, -0.029763417318463326, 0.019003240391612053, 0.026332082226872444, 0.005188202019780874, 0.024394340813159943, -0.012747075408697128, -0.02380317635834217, 0.04916292801499367, -0.01595264859497547, -0.11934888362884521, -0.028647270053625107, 0.009601607918739319, -0.018086692318320274, -0.004969544243067503, 0.032406482845544815, -0.016552794724702835, 0.009779360145330429, 0.003466098103672266, -0.02930597774684429, -0.05323591083288193, -0.033643800765275955, 0.019535640254616737, 0.06112508475780487, 0.049428585916757584, -0.009779655374586582, -0.006870620884001255, 0.0303189679980278, -0.036980435252189636, 0.004416285548359156, -0.039840035140514374, -0.028590453788638115, 0.06854551285505295, 0.026231030002236366, 0.029801106080412865, 0.002134164562448859, -0.04891379177570343, 0.0008146375766955316, -0.011727527715265751, 0.013519943691790104, 0.004207385238260031, -0.021191531792283058, -0.02055857703089714, -0.008749518543481827, -0.06905844807624817, 0.013468913733959198, -0.0034545669332146645, 0.02545539289712906, -0.017525866627693176, -0.007886267267167568, -0.01168039720505476, -0.014802924357354641, -0.02208530716598034, 0.04418278485536575, -0.002498685149475932, -0.06309757381677628, -0.07281091809272766, 0.026772983372211456, 0.0251742135733366, -0.0187845341861248, -0.06518089026212692, 0.011228996329009533, 3.1909154607393415e-34, 0.028532125055789948, -0.07201816886663437, 0.012651094235479832, -0.04356986656785011, -0.013922957703471184, -0.02520865947008133, 0.05010993033647537, -0.01611967198550701, -0.033403802663087845, -0.040258899331092834, -0.043120309710502625], "60f9d284-345d-448e-b593-0fbe326aa09a": [0.053604889661073685, -0.0031542156357318163, -0.007762325461953878, 0.008844492956995964, 0.006553912069648504, 0.011666438542306423, 0.007802714593708515, 0.03413200005888939, -0.017701109871268272, 0.006185092497617006, -0.007145251147449017, 0.008385171182453632, 0.018231723457574844, 0.06492476165294647, -0.030331505462527275, -0.05945126339793205, 0.0013438090682029724, -0.029915783554315567, 0.0037538488395512104, 0.0039002366829663515, 0.036101605743169785, 0.013746962882578373, -0.004978985525667667, 0.010051127523183823, 0.004752083215862513, -0.01487644575536251, -0.00657495204359293, -0.016101906076073647, 0.06177087873220444, 0.011581584811210632, 0.0011676171561703086, 0.0409824438393116, -0.020631926134228706, 0.02711258828639984, 2.3415539089910453e-06, 0.033150386065244675, 0.01741262525320053, 0.015152638778090477, -0.040606219321489334, -0.01221137959510088, -0.013162004761397839, -0.00881199724972248, -0.010376723483204842, 0.02287544682621956, -0.034844979643821716, 0.01857142150402069, 0.025082863867282867, 0.01717733033001423, -0.025728337466716766, 0.0219646655023098, 0.017555659636855125, 0.05160301923751831, 0.011099646799266338, -0.025448588654398918, 0.08741874247789383, -0.06435821205377579, -0.030716773122549057, 0.09969136118888855, 0.03837133198976517, 0.05653949826955795, 0.02503863349556923, 0.0025562054943293333, 0.004227101802825928, -0.02711639553308487, 0.07968335598707199, 0.06267296522855759, 0.0388999879360199, -0.06718253344297409, 0.005959735251963139, 4.527411510935053e-05, 0.12085248529911041, -0.02324974350631237, 0.022495495155453682, 0.028704287484288216, 0.024891987442970276, 0.03523792326450348, -0.030628079548478127, 0.029930479824543, -0.010401821695268154, 0.016023030504584312, -0.0338779091835022, -0.013107869774103165, -0.02563697285950184, -0.00030705632525496185, 0.10118331015110016, -0.015956513583660126, -0.0012398803373798728, -0.0025251933839172125, -0.013175614178180695, 0.01715518720448017, 0.02220771834254265, -0.023204486817121506, -0.024466542527079582, 0.014177882112562656, 0.031484153121709824, -0.016745256260037422, 0.0455920547246933, -0.027810538187623024, 0.03645192086696625, 0.050051018595695496, 0.004213886335492134, 0.039098743349313736, 0.019242016598582268, 0.03644393011927605, 0.044538162648677826, 0.023842480033636093, 0.00572233647108078, -0.017370689660310745, 0.012844186276197433, 0.005235244985669851, -0.08089423179626465, -0.0043654427863657475, -0.005813296418637037, 0.05331593379378319, -0.019611146301031113, -0.03967311233282089, -0.014892324805259705, 0.06088080257177353, 0.038589946925640106, 0.03365326300263405, 0.05007009208202362, 0.006262106820940971, -0.04387280344963074, -0.006441337522119284, -0.022296587005257607, -0.026110876351594925, -0.029810205101966858, -0.03216854855418205, 0.0010196841321885586, -0.029058922082185745, -0.005177984945476055, -0.02771676518023014, -0.02758743427693844, 0.003488971618935466, -0.03403672203421593, -0.00282492907717824, -0.0068626441061496735, -0.00898963026702404, 0.03329077735543251, -0.02228778973221779, -0.0033667522948235273, -0.001465720939449966, -0.022855747491121292, -0.00349799613468349, 0.023313280194997787, -0.022111816331744194, 0.0023312889970839024, -0.027159368619322777, -0.0016248304164037108, 0.0028371661901474, 0.03502984717488289, 0.005518579389899969, -0.033835478127002716, -0.0006711978348903358, 0.050766609609127045, 0.07119332253932953, -0.01316076423972845, 0.0015836857492104173, -0.034159351140260696, 0.010930676013231277, -0.0013405283680185676, 0.07271531224250793, 0.03642164543271065, -0.042303238064050674, 0.022105233743786812, -0.04546651244163513, 0.08961904793977737, 0.00952643807977438, 0.01200550515204668, 0.013806001283228397, -0.021586211398243904, 0.07378820329904556, -0.021222813054919243, 0.0619954876601696, 0.0100100664421916, -0.021335061639547348, 0.08297181874513626, 0.023213207721710205, -0.03867960348725319, 0.024199452251195908, -0.0488213486969471, -0.07908660918474197, 0.014659589156508446, 0.06464768946170807, -0.0027363889385014772, 0.009345008991658688, -0.0028488028328865767, 0.04526280611753464, -0.049428388476371765, 0.00229938724078238, -0.02988450415432453, 0.00812317430973053, -0.02135189063847065, -0.02440664730966091, 0.006293976213783026, -0.01218084990978241, 0.006357228383421898, -0.05991167947649956, -0.014474070630967617, -0.02201579511165619, 0.013826004229485989, -0.03760578855872154, 0.0591384693980217, 0.07587618380784988, 0.01688472181558609, 0.004727423656731844, -0.04582316800951958, -0.010849599726498127, -0.005233018659055233, 0.0073846811428666115, 0.06100078299641609, 0.007148886099457741, -0.05193701013922691, -0.030490688979625702, -0.011181898415088654, -0.000584921333938837, 0.002688721055164933, 0.012917440384626389, 0.013141629286110401, 0.0687129944562912, -0.03503094241023064, -0.00962840300053358, -0.004419385921210051, 0.0071901543997228146, 0.03799235448241234, 0.01742132008075714, -0.044532183557748795, 0.01082606241106987, 0.06920284777879715, 0.066630519926548, -0.013099182397127151, 0.006815935485064983, 0.014562220312654972, 0.0093606598675251, -0.03304310142993927, 0.0528729073703289, 0.049160830676555634, 0.0487004816532135, 0.03281955048441887, -0.05044053867459297, -0.015032302588224411, 0.026903847232460976, 0.012610334903001785, 0.014361913315951824, -0.0006254969048313797, 0.00461807195097208, 0.04111790657043457, 0.011330150067806244, -0.039434805512428284, 0.04428119212388992, 0.003093234496191144, 0.004981609061360359, 0.0004873359575867653, 0.004685790743678808, -0.03000926598906517, 0.008008822798728943, -0.11978356540203094, 0.01961103454232216, -0.01923331990838051, 0.0558018833398819, 0.04426233097910881, 0.004406149499118328, -0.006780588999390602, 0.012662791647017002, 0.038538608700037, -0.019326671957969666, -0.012218579649925232, -0.02095796726644039, -0.05048970505595207, -0.03124278225004673, 0.019892552867531776, 0.0062374151311814785, 0.0250022541731596, -0.0026499268133193254, -0.01495195273309946, 0.010429080575704575, 0.0025154701434075832, -0.011718317866325378, -0.027770187705755234, 0.0006504978518933058, 0.058170195668935776, 0.014499006792902946, -0.002100525423884392, 0.02493470162153244, 0.015635482966899872, -0.011422393843531609, 0.04298483952879906, -0.10227306187152863, -0.06357211619615555, -0.015310763381421566, -0.0013887530658394098, -0.026654239743947983, 0.008448760025203228, -0.024051977321505547, -0.011002946645021439, 0.0037340447306632996, 0.0635780319571495, -0.010686156339943409, -0.020527461543679237, 0.04329937323927879, 0.002469282364472747, -0.021673358976840973, -0.02497967891395092, 0.005253527779132128, 0.011985252611339092, -0.01119548175483942, 0.010324410162866116, -0.051317352801561356, 0.024839702993631363, -0.03747599944472313, 0.004147268366068602, 0.030531518161296844, -0.03309032693505287, -0.0012248639250174165, -0.007353165186941624, -0.00199277070350945, -0.061921536922454834, -0.07574121654033661, 0.017299296334385872, 0.004480408504605293, -0.0010213585337623954, 0.004794641397893429, -0.010672918520867825, -0.031665485352277756, -0.02894691750407219, -0.0906110480427742, -0.024395540356636047, -0.04419773817062378, 0.09634997695684433, -0.06051509454846382, 0.004041061736643314, -0.01657320000231266, -0.012439883314073086, 0.024431614205241203, -0.06440076231956482, 0.020747534930706024, 0.029327448457479477, -0.060285136103630066, -0.026114726439118385, -0.01649583876132965, -0.013215919956564903, 0.049035388976335526, -0.022907491773366928, 0.04249189421534538, -0.03978954628109932, 0.009683361276984215, 0.04676288738846779, -0.00816020742058754, 0.021617840975522995, 0.048407137393951416, 0.06832253932952881, -0.013352498412132263, 0.06604808568954468, -0.024490175768733025, 0.05141959711909294, -0.04129868373274803, -0.04879594221711159, -0.009225215762853622, -0.018832292407751083, -0.004039907827973366, -0.013585017994046211, 0.040786050260066986, 0.029599474743008614, 0.00794228632003069, 0.022683419287204742, -0.09771797060966492, 0.013640307821333408, 0.01276361383497715, 0.02551630325615406, 0.0087368693202734, 0.03940688818693161, 0.033221662044525146, -0.03715292736887932, 0.052898816764354706, 0.029066024348139763, -0.0682213231921196, -0.01218249648809433, -0.03905598446726799, 0.03636621683835983, -0.0555417574942112, 0.029458390548825264, -0.05838654935359955, 0.0646844357252121, -0.015451308339834213, -0.027428999543190002, -0.0216634813696146, -0.03270837292075157, 0.01126584317535162, 0.03651424124836922, -0.012239970266819, 0.0026843107771128416, -0.06969427317380905, -0.07140403240919113, -0.012505527585744858, 0.008914581499993801, 0.0030036938842386007, -0.0246305912733078, -0.0532216839492321, 0.0036034204531461, 0.020386463031172752, 0.04020150005817413, -0.09037724137306213, -0.020023059099912643, -0.013169679790735245, -0.04215167462825775, 0.07285936176776886, 0.05218464136123657, 0.04408760368824005, 0.030853869393467903, -0.03048294596374035, 0.02885935641825199, 0.03259290009737015, 0.02819623425602913, -0.036249108612537384, 0.04092661291360855, -0.04980769008398056, 0.009718305431306362, 0.026266928762197495, 0.041082751005887985, -0.04582636430859566, 0.02326836995780468, -0.006473654415458441, -4.280006578483153e-06, -0.04362284019589424, 0.0017627195920795202, -0.01633956842124462, 0.06215807795524597, 0.03708391636610031, 0.0377461202442646, -0.01763813942670822, 0.04880031198263168, 0.07069633901119232, -0.009254398755729198, 0.05823787301778793, -0.01401506457477808, -0.0045988187193870544, -0.04641132056713104, 0.015362128615379333, -0.02295817993581295, -0.07813773304224014, -0.030783215537667274, 0.05079111456871033, -0.018179049715399742, -0.013914860785007477, -0.016552671790122986, -0.021694203838706017, 0.04836717247962952, 0.004302176181226969, -0.040672920644283295, -0.03575374186038971, -0.014004334807395935, -0.03843590244650841, -0.09281637519598007, -0.07670775800943375, -0.023163437843322754, 0.00983442272990942, -0.03390822932124138, -0.014533800072968006, 0.015935877338051796, 0.00632789870724082, -0.017014898359775543, 0.028866760432720184, -0.003970258869230747, -0.0029877377673983574, 0.032095227390527725, -0.013785384595394135, -0.018498506397008896, -0.058022014796733856, 0.03872455656528473, -0.014367863535881042, 0.01667080447077751, -0.013277567923069, -0.015913011506199837, -0.009891677647829056, -0.004264975432306528, -0.03455735743045807, -0.00919437687844038, 0.014481419697403908, -0.05744251608848572, -0.01681184396147728, -0.01692264899611473, -0.05582424998283386, 0.010533563792705536, -0.02222543954849243, -0.02085484005510807, 0.02990228682756424, 0.032508496195077896, 0.03024039790034294, -0.024150768294930458, -0.021077020093798637, 0.03453344851732254, -0.04835750535130501, 0.011029687710106373, 0.0602639801800251, -0.01364222913980484, 0.02119407057762146, -0.012043433263897896, -0.01800842210650444, 0.013156789354979992, 0.034688904881477356, -0.009130745194852352, 0.006598509848117828, -0.020100675523281097, 0.016452763229608536, -0.02669643983244896, -0.011971809901297092, 0.013787553645670414, 0.06055419147014618, -0.014089163392782211, -0.05542348325252533, 0.05667330324649811, 0.009059544652700424, -0.044430725276470184, -0.09500246495008469, 0.007216817233711481, -0.015867944806814194, 0.0341993011534214, 0.08998852223157883, 0.0037035250570625067, -0.07636202871799469, 0.0018654222367331386, 0.0037826260086148977, 0.03711838647723198, -0.04697181284427643, 0.06101008877158165, 0.00817952398210764, 0.0007386876968666911, -0.005007288884371519, -0.029154542833566666, 0.010938672348856926, -0.053252074867486954, -0.03796082362532616, 0.03961297869682312, -0.0025846625212579966, -0.015354531817138195, 0.04650313779711723, 0.0014813692541792989, 0.03564826026558876, -0.013749739155173302, -0.029125157743692398, 0.0019588868599385023, -0.0025280544068664312, 0.03480085730552673, 0.027503352612257004, -0.03396690636873245, -0.016096370294690132, 0.05578923970460892, 0.03057265654206276, -0.009729561395943165, -0.02111189253628254, -0.004364862572401762, -0.007238433696329594, -0.029035046696662903, 0.035028666257858276, -0.017240071669220924, -6.40304703330759e-33, -0.02853272669017315, -0.06048024445772171, 0.01873127929866314, 0.060239143669605255, -0.02443518303334713, -0.01599358394742012, -0.006714590359479189, 0.0038500584196299314, -0.055970508605241776, 0.0014073554193601012, 0.018393831327557564, 0.029105065390467644, 0.011380172334611416, -0.048418525606393814, 0.03841230645775795, -0.014752841554582119, 0.026873532682657242, -0.0014799772761762142, 0.008736955933272839, 0.02940981835126877, -0.02440444938838482, 0.025403885170817375, 0.008105279877781868, -0.018519027158617973, 0.0019498884212225676, 0.004791880026459694, -0.006092343479394913, 0.007755971979349852, 0.01168926153331995, 0.010735275223851204, -0.04623221978545189, -0.04222314804792404, -0.00873978529125452, 0.024864012375473976, 0.011216840706765652, 0.056412290781736374, -0.055166564881801605, -0.01798231527209282, 0.0070147085934877396, -0.05065646395087242, 0.034063518047332764, -0.03723694011569023, -0.02444295957684517, 0.008390416391193867, 0.042690835893154144, 0.018420737236738205, 0.009997599758207798, 0.04982475936412811, -0.02172027714550495, 0.03446485847234726, -0.018129996955394745, 0.0032083189580589533, -0.0012920836452394724, -0.00034813015372492373, -0.015366190113127232, -0.016643598675727844, 0.03629789873957634, -0.0718558058142662, -0.06252598762512207, 0.011208639480173588, -0.04728830233216286, 0.01706130988895893, 0.03958551585674286, -0.05283321440219879, -0.027503086254000664, 0.01739523559808731, -0.06367667019367218, 0.05727245658636093, 0.00023493434127885848, -0.00014638248831033707, -0.027855833992362022, 0.0579034797847271, 0.014386138878762722, -0.04336453229188919, -0.045297324657440186, 0.01781505160033703, 0.005982228554785252, 0.01851804554462433, 0.03703362122178078, 0.04223979637026787, -0.016818063333630562, 0.01701943203806877, -0.06969845294952393, 0.012981357984244823, 0.04711567983031273, 0.04391806945204735, -0.0320059135556221, -0.0420711450278759, -0.03860416263341904, 0.06586883217096329, 0.003505856730043888, -0.002135703805834055, -0.010525841265916824, 0.03734617680311203, 0.05928710103034973, 0.009656841866672039, 0.04468975588679314, 0.0036648940294981003, -0.005366106517612934, -0.06224634870886803, -0.09929483383893967, -0.005699438042938709, -0.005846081767231226, 0.07367204129695892, -0.024543344974517822, -0.015865454450249672, 0.011963877826929092, -0.003144096117466688, 0.004280082881450653, 0.009456111118197441, -0.019206296652555466, 0.035976119339466095, -0.007502833381295204, -0.07264254242181778, -0.043489180505275726, 0.011979077942669392, -0.0029650339856743813, 0.03804941847920418, -0.019829392433166504, -0.038622744381427765, -0.027153391391038895, 0.05497545376420021, 0.0018341848626732826, -0.07502387464046478, -0.01747117191553116, -0.0018001110292971134, -0.007262771483510733, 0.05590569227933884, 0.09120256453752518, 0.02835247665643692, -0.006116934586316347, -0.06406106799840927, 3.0643170134680986e-07, 0.05120508745312691, 0.054388564079999924, 0.015568390488624573, -0.021046031266450882, -0.0010967979906126857, -0.06709231436252594, 0.00626796530559659, 0.03349553048610687, -0.005387105047702789, 0.007333708927035332, 0.01205141469836235, 0.04060889035463333, 0.0016194493509829044, 0.04559827595949173, -0.011767102405428886, -0.15847434103488922, -0.07156005501747131, -0.07464044541120529, -0.017048275098204613, -0.01779044419527054, 0.002856787294149399, -0.01795315183699131, 0.05315081775188446, 0.018552536144852638, -0.03256082534790039, 0.007571355905383825, 0.007283782120794058, -0.028510989621281624, 0.002504682634025812, 0.03146525099873543, 0.03945484757423401, -0.012717409990727901, -0.04821597784757614, -0.015909573063254356, 0.012404495850205421, -0.07086516916751862, -0.08487290143966675, -0.03741424158215523, 0.015871241688728333, 0.03180171549320221, -0.020631257444620132, 0.009166433475911617, -0.04897933825850487, 0.019827833399176598, -0.018684163689613342, -0.05339887738227844, 0.012906725518405437, 0.08071092516183853, 0.061204321682453156, -0.045664165169000626, 0.01898905448615551, 0.029619282111525536, 0.06338672339916229, -0.008704721927642822, 0.006448847707360983, -0.012783819809556007, -0.020880497992038727, -0.04119861498475075, 0.03669124096632004, -0.05340166762471199, -0.04322399944067001, -0.08265717327594757, -0.029139595106244087, -0.0807909145951271, -0.05871528387069702, 0.04419981315732002, -0.01389233861118555, 2.6181149715053916e-34, 0.00645238533616066, -0.008336879312992096, -0.05306411162018776, 0.00741772772744298, 0.006452069152146578, -0.0033722505904734135, 0.010135827586054802, -0.03493800386786461, -0.01798657327890396, -0.03332941606640816, -0.018088072538375854], "80badcbb-374e-4a2f-82e0-22acbf1ee2a8": [0.03257017210125923, 0.002784274285659194, -0.012660724110901356, -0.014355736784636974, -0.015159165486693382, 0.015162857249379158, 0.01913655363023281, 0.005803918931633234, -0.03412608057260513, -0.0024798684753477573, 0.02467997372150421, 0.015038725920021534, 0.015241325832903385, 0.0645221695303917, -0.03284876421093941, -0.009374799206852913, -0.013707352802157402, -0.0335700660943985, 0.008483908139169216, 0.011305049993097782, 0.054209914058446884, 0.027061285451054573, -0.025964180007576942, 0.019171668216586113, 0.00044072934542782605, -0.029983671382069588, -0.011004921980202198, -0.002001335844397545, 0.0408441498875618, 0.04268603026866913, -0.00518497359007597, 0.049306705594062805, -0.04225589334964752, 0.05875048413872719, 2.494072987246909e-06, 0.022300338372588158, 0.017116324976086617, 0.020908774808049202, -0.038667190819978714, -0.00955716148018837, -0.017610888928174973, -0.02319132722914219, -0.00798021536320448, 0.008637056685984135, -0.04210110381245613, 0.03879315406084061, 0.04630069062113762, -0.008954755961894989, 0.006198415998369455, 0.026591941714286804, 0.009000597521662712, 0.07070232927799225, -0.0029125309083610773, -0.01840045675635338, 0.08692726492881775, -0.0581512413918972, -0.019781162962317467, 0.09822025895118713, 0.053799621760845184, 0.05634501948952675, 0.043604668229818344, 0.008543889038264751, 0.01061844639480114, -0.03826916590332985, 0.0724906325340271, 0.046916019171476364, 0.04192577674984932, -0.07846616953611374, -0.00033738769707269967, -0.0029251989908516407, 0.11192036420106888, -0.023100413382053375, 0.024493439123034477, 0.0228926669806242, 0.010512799955904484, 0.04940786585211754, -0.03222934901714325, 0.02792775072157383, -0.013087593950331211, 0.019460944458842278, -0.08602553606033325, -0.05281035602092743, -0.03931732475757599, 0.0018830321496352553, 0.07726044207811356, -0.023026738315820694, 0.008410349488258362, 0.0031184577383100986, -0.005136850290000439, 0.006154595874249935, 0.024685056880116463, -0.03761238232254982, -0.010364235378801823, 0.007888716645538807, 0.05834393948316574, -0.022538335993885994, 0.027317678555846214, -0.02865627221763134, 0.043222106993198395, 0.047611650079488754, -0.049296822398900986, 0.04200731962919235, -0.012889471836388111, 0.03655468299984932, 0.05111240968108177, 0.04823168367147446, 0.01503570843487978, 0.0025762044824659824, 0.026150241494178772, 0.023964814841747284, -0.08036909997463226, -0.0040171463042497635, -0.020508963614702225, 0.03311972692608833, -0.03091038390994072, -0.04918993264436722, -0.024210499599575996, 0.05782090127468109, 0.04931430518627167, 0.05147707089781761, 0.0565296970307827, 0.0047577619552612305, -0.03324919566512108, -0.012827419675886631, -0.032636113464832306, -0.06308108568191528, -0.030338073149323463, -0.01606059819459915, 0.006073733791708946, -0.015089137479662895, -0.005157850217074156, -0.028693057596683502, -0.0153393829241395, -0.01739642582833767, -0.02211317978799343, -0.0029505451675504446, 0.014126073569059372, -0.008748175576329231, 0.029980938881635666, -0.017553245648741722, 0.0010404236381873488, 0.0029283775947988033, -0.04617055505514145, 0.010510491207242012, 0.012404580600559711, -0.002341696759685874, -0.01165520679205656, -0.024836072698235512, -0.013517637737095356, 0.01099270861595869, 0.028108015656471252, -0.00417003408074379, -0.04917280003428459, -0.004024615976959467, 0.018556779250502586, 0.03716239333152771, -0.03096265159547329, 0.003113536396995187, -0.03285162150859833, 0.02126537263393402, 0.015543898567557335, 0.050505418330430984, 0.05111318826675415, -0.0228259414434433, 0.006388142239302397, -0.0473034605383873, 0.08968685567378998, 0.03253445401787758, 0.0013830300886183977, 0.0035988115705549717, -0.010950746946036816, 0.057522278279066086, -0.021187186241149902, 0.06426572799682617, 0.009353749454021454, -0.008158516138792038, 0.09843190759420395, 0.0016837194561958313, -0.010508348233997822, 0.03088741935789585, -0.023141834884881973, -0.08296257257461548, -0.0074248467572033405, 0.04602012038230896, -0.004600564483553171, -0.001174497650936246, -0.03942397981882095, 0.04577910900115967, -0.03797931596636772, 0.005024987738579512, -0.03349035978317261, 0.0002508019679225981, -0.059451181441545486, -0.019703233614563942, 0.029230134561657906, -0.01977294497191906, 0.028769057244062424, -0.0556623674929142, -0.024206653237342834, -0.001490117865614593, -0.0071973418816924095, -0.034640125930309296, 0.04312814027070999, 0.07109825313091278, 0.0201269444078207, -0.0343778021633625, -0.02068902738392353, -0.022606298327445984, 0.02895171009004116, -0.009016609750688076, 0.028903450816869736, 0.004740216303616762, -0.04558630287647247, -0.02203104831278324, -0.01169897336512804, -0.0037587368860840797, -0.010741003789007664, -0.015131636522710323, -0.0011355580063536763, 0.07607914507389069, -0.035812731832265854, -0.045410919934511185, -0.01596333645284176, 0.021793918684124947, 0.036721907556056976, 0.010560949333012104, -0.032636649906635284, 0.0019152394961565733, 0.0441414900124073, 0.07153383642435074, -0.01511442381888628, 0.02888381853699684, 0.029668942093849182, 0.020789163187146187, -0.03412003442645073, 0.06065751984715462, 0.06555712968111038, 0.04311968758702278, 0.043762464076280594, -0.04948429763317108, -0.007406372576951981, 0.01061873510479927, -0.0025437548756599426, 0.01720372773706913, -0.004584506619721651, -0.02228606678545475, 0.03668445721268654, 0.014729217626154423, -0.024211978539824486, 0.010308513417840004, 0.005625546909868717, 0.010350062511861324, -0.002501685405150056, 0.023257598280906677, 0.0013097733026370406, 0.019702810794115067, -0.10850060731172562, 0.008364031091332436, -0.01728929951786995, 0.04664473980665207, 0.04854366555809975, -0.013721239753067493, -0.01604970172047615, 0.011841836385428905, 0.014762507751584053, -0.02272617444396019, -0.00996781699359417, -0.0024459396954625845, -0.047689538449048996, -0.022313769906759262, 0.01249782182276249, -0.01538323238492012, 0.0032331685069948435, -0.005528856534510851, -0.03190252184867859, 0.02511102706193924, -0.010470842942595482, -0.016512399539351463, -0.020814640447497368, -0.012162255123257637, 0.061392445117235184, 0.006904102861881256, -0.00490593584254384, 0.019146131351590157, 0.007195230573415756, -0.0031229532323777676, 0.03997364267706871, -0.09505122154951096, -0.07678073644638062, -0.0227852500975132, 0.008542414754629135, -0.02838650904595852, 0.015072278678417206, -0.018462618812918663, -0.003537659300491214, -0.002292310120537877, 0.08662468194961548, -0.034386903047561646, -0.03555919975042343, 0.04376377910375595, -0.013277051039040089, -0.026639826595783234, -0.022772951051592827, -0.004370281472802162, 0.023336902260780334, -0.003737460821866989, 0.03251693397760391, -0.03410780802369118, 0.0026010635774582624, -0.04247739911079407, 0.021800097078084946, 0.02766471914947033, -0.040855228900909424, 0.03387794271111488, -0.005578972399234772, 0.01075214147567749, -0.02412915788590908, -0.053344305604696274, 0.03365132585167885, 0.03342472389340401, 0.010000056587159634, -0.019086886197328568, 7.550934969913214e-05, -0.05634013190865517, -0.044543229043483734, -0.07219106703996658, -0.02634473890066147, -0.02832767367362976, 0.06888551265001297, -0.04290986806154251, -0.016429686918854713, 0.004071888048201799, 0.011077783070504665, 0.06449366360902786, -0.04826044291257858, -0.0027318447828292847, 0.0317063070833683, -0.0803685188293457, -0.011344440281391144, 0.010627132840454578, -0.020199419930577278, 0.06164854019880295, -0.004061073064804077, 0.010241617448627949, -0.04959403723478317, 0.004195750690996647, 0.031938377767801285, 0.004964116495102644, 0.01404893584549427, 0.06378710269927979, 0.06805386394262314, 0.0007513735326938331, 0.05587959289550781, -0.01975642889738083, 0.03866950795054436, -0.04487019404768944, -0.043516211211681366, -0.018159374594688416, -0.009574200958013535, 0.007030236069113016, -0.01608327031135559, 0.020618991926312447, 0.07281985878944397, 0.014625439420342445, -0.005839240737259388, -0.10735674947500229, -0.005270947236567736, -0.003793329233303666, 0.044191211462020874, 0.019223224371671677, 0.0050387089140713215, 0.03704826533794403, -0.038567088544368744, 0.04347783327102661, 0.047989435493946075, -0.0757639929652214, -0.009419473819434643, -0.03133970871567726, 0.01644585095345974, -0.04603689908981323, 0.005597218871116638, -0.08721191436052322, 0.048173367977142334, -0.00717947306111455, -0.0005168748903088272, -0.017380526289343834, -0.03561020269989967, 0.010968688875436783, 0.07545477151870728, -0.02432529255747795, -0.005102541297674179, -0.07284567505121231, -0.04723940044641495, -0.02361244149506092, 0.022374063730239868, -0.022276289761066437, -0.036435481160879135, -0.03831055387854576, 0.0017839795909821987, 0.02244514413177967, 0.021095873787999153, -0.10096818208694458, -0.030625242739915848, -0.004359694197773933, -0.031289275735616684, 0.0651758536696434, 0.07228724658489227, 0.022464564070105553, 0.030636468902230263, -0.024090515449643135, 0.05023684725165367, 0.01867903582751751, 0.018786197528243065, -0.03153712674975395, 0.02521088533103466, -0.05224747955799103, 0.010732700116932392, 0.01521437056362629, 0.05054419860243797, -0.06748911738395691, 0.014364289119839668, -0.006418554112315178, 0.016115427017211914, -0.049227047711610794, 7.178837677201955e-06, -0.018983887508511543, 0.04424574226140976, 0.04379744827747345, 0.035348910838365555, -0.007151222322136164, 0.022533904761075974, 0.041247714310884476, -0.00500823836773634, 0.07424949109554291, -0.003268647473305464, -0.013815823942422867, -0.04970354214310646, 0.011316643096506596, -0.0028934020083397627, -0.05965820699930191, -0.03898270055651665, 0.060764130204916, 0.0015554404817521572, -0.011596913449466228, -0.026997530832886696, 0.006548654288053513, 0.04762947931885719, 0.006371393799781799, -0.013533574528992176, -0.016419067978858948, 0.00378334685228765, -0.03607584163546562, -0.09097655117511749, -0.05998937785625458, -0.02130335196852684, 0.0029105087742209435, -0.031648825854063034, -0.02506415545940399, 0.019716542214155197, 0.004720777273178101, -0.023582691326737404, 0.03384505957365036, -0.031850557774305344, -0.03076835162937641, 0.032997459173202515, -0.05708872899413109, -0.032281674444675446, -0.08704604208469391, 0.03520471975207329, -0.027674946933984756, 0.035743631422519684, -0.022085310891270638, -0.023863492533564568, -0.018276525661349297, -0.032397281378507614, -0.04031722992658615, 0.0025377809070050716, 0.01853911578655243, -0.02214365266263485, -0.008882783353328705, -0.027228230610489845, -0.03908129781484604, 0.029843753203749657, -0.027838751673698425, -0.007115860935300589, 0.03645658865571022, 0.05642784386873245, 0.016974346712231636, -0.031677987426519394, -0.022444842383265495, 0.03505745530128479, -0.0868704691529274, 0.0023160569835454226, 0.04232808202505112, -0.051287706941366196, 0.027886604890227318, -0.01683543249964714, -0.009365891106426716, 0.034690890461206436, 0.047909874469041824, 0.01715143397450447, -0.007369380444288254, -0.007691345643252134, 0.010581055656075478, -0.0486149862408638, -0.01773943565785885, -0.002713593188673258, 0.035812947899103165, -0.026881057769060135, -0.04881558194756508, 0.04941990226507187, -0.0034594866447150707, -0.040069013833999634, -0.07434673607349396, 0.027391623705625534, -0.02381834387779236, 0.048582084476947784, 0.07058388739824295, 0.027705537155270576, -0.03123868815600872, 0.004267275799065828, -0.013233684934675694, 0.04410167783498764, -0.00945537630468607, 0.0716589167714119, -0.02572193369269371, 0.006555618718266487, -0.020134037360548973, -0.029736297205090523, 0.014774962328374386, -0.04931090772151947, -0.023303890600800514, 0.03200232610106468, -0.013269918039441109, -0.013542819768190384, 0.03331122547388077, -0.019095376133918762, 0.028166908770799637, -0.014099583961069584, -0.04677099362015724, -0.0039860839024186134, 0.0049315388314425945, 0.03475835919380188, 0.013421040959656239, -0.0423225536942482, -0.0019458516035228968, 0.05338788405060768, 0.05008969455957413, -0.0038332664407789707, -0.019345471635460854, 0.003755338490009308, -0.012574952095746994, -0.036856748163700104, 0.01620870642364025, -0.028730792924761772, -6.32892770638443e-33, -0.0183241106569767, -0.054360680282115936, 0.012790233828127384, 0.04693375155329704, -0.014962795190513134, -0.005447677802294493, -0.004137282259762287, 0.003638888942077756, -0.04167436808347702, -0.0025158568751066923, 0.014141527935862541, 0.03230782225728035, 0.020378924906253815, -0.06059063971042633, 0.05065638944506645, 0.006878015585243702, 0.02996686100959778, 0.005951386876404285, 0.018764318898320198, 0.02747904695570469, -0.02714579366147518, 0.02058282680809498, -0.007688238751143217, -0.004493407439440489, 0.017003294080495834, -0.014683027751743793, -0.007065931335091591, 0.025144239887595177, 0.04470445215702057, 0.02123940736055374, -0.03991169482469559, -0.02788867987692356, -0.017596891149878502, 0.03164759650826454, 0.002050667302682996, 0.0626310259103775, -0.035473838448524475, -0.002240834990516305, 0.0039853123016655445, -0.023706115782260895, 0.04261692613363266, -0.016866866499185562, -0.0014566510217264295, -0.0033490995410829782, 0.017467383295297623, 0.04034582898020744, 0.01754690334200859, 0.054175715893507004, -0.005405922885984182, 0.0544854961335659, -0.036602169275283813, 0.018496252596378326, -0.028730034828186035, 0.006380127277225256, 0.007242467254400253, -0.013327131047844887, 0.042898815125226974, -0.059203509241342545, -0.048505742102861404, -0.002175896894186735, -0.05470762029290199, -0.010738953948020935, 0.023038296028971672, -0.07238534837961197, -0.03390591964125633, -0.007058460731059313, -0.05596916005015373, 0.052142929285764694, 0.016596278175711632, 0.034723687916994095, -0.02460213378071785, 0.05351652577519417, 0.019829388707876205, -0.04837864264845848, -0.0547822043299675, 0.023572657257318497, 0.0031887495424598455, 0.018307240679860115, 0.06395120173692703, 0.07131475955247879, 0.0022995893377810717, 0.01143280602991581, -0.04822159186005592, 0.03648688644170761, 0.03508228436112404, 0.019481562077999115, -0.03888532519340515, -0.05093139037489891, -0.04019895941019058, 0.05773451179265976, 0.018137898296117783, 0.003891166765242815, -0.0213848315179348, 0.04812823235988617, 0.06957824528217316, 0.0136720547452569, 0.00993322767317295, 0.02198164351284504, -0.008297581225633621, -0.021016763523221016, -0.07244369387626648, 0.017533818259835243, 0.015641862526535988, 0.052022580057382584, 0.004510591737926006, -0.030562851577997208, 0.00200356962159276, 0.001957907574251294, 0.006890777498483658, 0.00955120287835598, -0.01808924414217472, 0.039027512073516846, -0.0209721140563488, -0.04100289195775986, -0.035919252783060074, 0.024031193926930428, -0.007065781392157078, 0.049519315361976624, -0.04485089331865311, -0.038453374058008194, -0.041073188185691833, 0.04778719320893288, -0.0002929205365944654, -0.04817602038383484, -0.03390886262059212, -0.013220053166151047, -0.0028307833708822727, 0.062055233865976334, 0.09932402521371841, 0.026757575571537018, 0.008896307088434696, -0.03936007246375084, 3.133232837626565e-07, 0.048741359263658524, 0.06596055626869202, 0.016344839707016945, -0.010214369744062424, 0.009481173940002918, -0.0802789032459259, -0.02434232272207737, 0.013749546371400356, -0.016519363969564438, -0.003945956006646156, -0.00709394458681345, 0.02330460026860237, 0.00910109467804432, 0.03813321888446808, -0.008431285619735718, -0.18487298488616943, -0.057663656771183014, -0.029080433771014214, -0.025976788252592087, -0.002921157516539097, -0.009823954664170742, -0.02639659121632576, 0.054936498403549194, 0.02391994744539261, -0.03449113667011261, -0.023383429273962975, 0.0030004822183400393, 0.01598893105983734, 0.03469591587781906, 0.03981705382466316, -0.006723887287080288, -0.015364205464720726, -0.04159998893737793, -0.04111919552087784, 0.025953898206353188, -0.05553662031888962, -0.07369091361761093, -0.022570161148905754, 0.018626904115080833, 0.018550850450992584, -0.018505871295928955, -0.0035608378238976, -0.03417663276195526, 0.021396081894636154, -0.00310695031657815, -0.04212716966867447, 0.003353917272761464, 0.054810285568237305, 0.049531448632478714, -0.06608115881681442, 0.009688500314950943, 0.031142903491854668, 0.04942391440272331, -0.020936165004968643, 0.01043356116861105, -0.003938914276659489, -0.03192254155874252, -0.03377324715256691, 0.04360437020659447, -0.053541190922260284, -0.06450417637825012, -0.07333989441394806, -0.03232932463288307, -0.045967791229486465, -0.032133545726537704, 0.009664153680205345, 0.007912597618997097, 2.7256830360989486e-34, 0.008691518567502499, 0.0011446191929280758, -0.060307577252388, 0.03268926590681076, 0.013634386472404003, -0.0016971350414678454, 0.018305405974388123, -0.037478819489479065, -0.021299270913004875, -0.05574500560760498, -0.010259349830448627], "b0ac2673-089e-43a9-b004-cb55670d5613": [0.06818327307701111, -0.03559593856334686, -0.010541061870753765, 0.008239876478910446, -0.02228618413209915, -0.011811199598014355, -0.013643799349665642, -0.01582782156765461, 0.0050301384180784225, 0.02437097206711769, 0.02043294534087181, 0.029324933886528015, 0.006019100081175566, 0.07019276916980743, -0.03309075906872749, -0.06241049990057945, 0.0030767403077334166, -0.03830784186720848, -0.009773366153240204, -0.0171507615596056, 0.06327873468399048, 0.013065370731055737, -0.04675237461924553, 0.0069399806670844555, -0.034988369792699814, -0.03149683028459549, -0.014968151226639748, 0.012650072574615479, 0.055529456585645676, 0.008493766188621521, -0.010887553915381432, 0.01874038204550743, -0.007647083140909672, 0.02609577216207981, 2.1383248167694546e-06, 0.01322038471698761, 0.00350179779343307, -0.008907562121748924, -0.02861884981393814, -0.02873029001057148, -0.01366313174366951, -0.012468848377466202, 0.008923973888158798, 0.019937263801693916, -0.05303439497947693, 0.056789692491292953, 0.028704894706606865, -0.00904146023094654, 0.03118937276303768, 0.02078450284898281, 0.00871374923735857, 0.05669870972633362, -0.010748961009085178, 0.0023225515615195036, 0.029408970847725868, -0.08262783288955688, -0.032520540058612823, 0.053449731320142746, 0.0828518345952034, 0.03593368083238602, 0.010756037198007107, -0.01607339084148407, 0.021737931296229362, -0.04162973538041115, 0.05772799253463745, 0.041663557291030884, 0.009193390607833862, -0.024020206183195114, -0.02121923118829727, 0.020319655537605286, 0.10875357687473297, -0.007027784362435341, 0.02140623889863491, 0.031640294939279556, 0.05440234765410423, 0.06407423317432404, -0.021705619990825653, -0.01244804821908474, -0.0006082665640860796, -0.015531175769865513, -0.02373437024652958, -0.005410938523709774, -0.04836638644337654, -0.02403196692466736, 0.08195293694734573, -0.000771123799495399, -0.002711508423089981, -0.01107710413634777, -0.009274172596633434, -0.0025196655187755823, 0.03450877219438553, -0.021898286417126656, -0.002704852493479848, 0.03311381861567497, -0.008818003349006176, -0.005751329008489847, 0.040888767689466476, -0.024632280692458153, -0.006311604753136635, 0.05736209452152252, -0.052478037774562836, 0.03086419589817524, 0.021589180454611778, 0.03973483294248581, 0.06087392196059227, 0.02042085863649845, 0.056193288415670395, -0.01086706668138504, -0.022791361436247826, -0.01517089456319809, -0.06459296494722366, -0.013967187143862247, -0.05064929276704788, 0.06326978653669357, 0.011608416214585304, -0.07141793519258499, -0.029128219932317734, 0.05959765240550041, 0.018116364255547523, 0.04116349667310715, 0.03795932978391647, 0.027974247932434082, -0.0112549914047122, -0.011228501796722412, -0.03994505852460861, -0.03772027790546417, -0.042590752243995667, -0.01775023713707924, 0.009303455241024494, -0.04732019454240799, -0.01169655192643404, 0.003996940329670906, -0.017497526481747627, 0.003845922416076064, -0.013048464432358742, -0.015447020530700684, -0.0360935814678669, -0.02030019462108612, 0.013432751409709454, -0.025409381836652756, -0.018901096656918526, -0.011039563454687595, -0.01755223609507084, 0.014133116230368614, 0.0026710382662713528, -0.0425180122256279, -0.003076512599363923, 0.008426801301538944, 0.011819499544799328, 0.0008879191009327769, 0.04576069861650467, 0.02254834957420826, -0.035414136946201324, 0.0054728444665670395, 0.022036917507648468, 0.04610198363661766, -0.004037065897136927, 0.025196129456162453, -0.029754452407360077, 0.016060423105955124, 0.003839349839836359, 0.06864304095506668, 0.03529214859008789, 0.027630995959043503, 0.005491995252668858, -0.047394342720508575, 0.059894513338804245, 0.018060239031910896, -0.006893109530210495, 0.048783279955387115, -0.042733486741781235, 0.038873545825481415, 0.0033661923371255398, 0.06555036455392838, -0.00030138454167172313, 0.016032394021749496, 0.061680424958467484, 0.004439647309482098, 0.003975746221840382, 0.020262738689780235, -0.022480666637420654, -0.06693080812692642, 0.013583584688603878, 0.0575910322368145, 0.01707460731267929, 0.008437513373792171, 0.008918629959225655, 0.01616317220032215, -0.04403255879878998, -0.00024849854526109993, -0.007568878587335348, 0.002319212071597576, -0.011937586590647697, -0.006891023367643356, 0.01630178838968277, -0.009712086990475655, -0.004904250614345074, -0.021360663697123528, -0.04599452763795853, 0.0077961101196706295, -0.0053665186278522015, -0.03953896835446358, 0.04161790758371353, 0.06441162526607513, 0.034390807151794434, -0.012547837570309639, -0.05605772137641907, 0.008466743864119053, -0.007274283096194267, 0.011292402632534504, 0.06292437016963959, 0.013293582014739513, -0.08169222623109818, -0.005833072122186422, 0.004735852126032114, 0.015948886051774025, 0.006784913130104542, -0.0008805786492303014, 0.010792666114866734, 0.05768726393580437, -0.03493364900350571, -0.0039992560632526875, 0.0025803223252296448, -0.011872496455907822, 0.004796749912202358, 0.023180026561021805, -0.013705944642424583, -0.0018860382260754704, 0.050075747072696686, 0.08616049587726593, -0.016049355268478394, 0.03180058300495148, 0.0120572280138731, 0.0015702963573858142, -0.0019954040180891752, 0.055168405175209045, 0.01020188070833683, 0.013611515052616596, 0.0676695927977562, -0.05161469429731369, -0.010392751544713974, 0.04618123918771744, 0.02805977500975132, 0.009666940197348595, 0.0006061813328415155, 0.0235803984105587, 0.056090760976076126, 0.022522639483213425, -0.043987419456243515, 0.03390331193804741, -0.021138709038496017, 0.028683101758360863, -0.017882544547319412, 0.028137819841504097, -0.022549143061041832, 0.00836975872516632, -0.07034383714199066, 0.0010190429165959358, -0.05597013607621193, 0.030001921579241753, 0.014840319752693176, -0.014256017282605171, -0.019054660573601723, -0.01563543826341629, 0.022807564586400986, -0.06003062427043915, 0.014558866620063782, -0.059159740805625916, -0.049082279205322266, -0.03256110101938248, -0.010212165303528309, 0.0020999235566705465, 0.013734928332269192, -0.0032823688816279173, -0.042308490723371506, -0.02191162109375, 0.018174679949879646, 0.01598035730421543, -0.017335670068860054, 0.008915808983147144, 0.05887865647673607, -0.0017408288549631834, 0.027963045984506607, 0.012185003608465195, -0.002540445886552334, 0.0056462413631379604, 0.05322275683283806, -0.052070800215005875, -0.047110721468925476, -0.009922835975885391, -0.01020604744553566, -0.05562739819288254, 0.0011870319722220302, -0.007250186521559954, 0.00943700596690178, -0.007695217616856098, 0.0717795118689537, -0.014858660288155079, 0.02696344070136547, 0.004339554347097874, -0.025146029889583588, -0.024721238762140274, -0.013982159085571766, 0.001020201831124723, 0.008273022249341011, -0.0018253361340612173, 0.025697531178593636, -0.035987142473459244, 0.023560579866170883, -0.056063439697027206, -0.021946558728814125, 0.035957206040620804, -0.022628067061305046, 0.05503511056303978, 0.005467242561280727, 0.025731872767210007, -0.03055998682975769, -0.07637050002813339, 0.010153007693588734, 0.017715338617563248, -0.010307541117072105, 0.039873410016298294, -0.007880805060267448, -0.02919885143637657, -0.01620394177734852, -0.08003395795822144, -0.05368874967098236, -0.02698562853038311, 0.05085381492972374, -0.07136762887239456, 0.013411174528300762, 0.028090761974453926, -0.01960650458931923, 0.02183753438293934, -0.07071991264820099, -0.016737643629312515, 0.01567515730857849, -0.04817644879221916, -0.029174255207180977, -0.00926192756742239, -0.0029252800159156322, 0.05807332322001457, -0.03999427333474159, 0.01739025115966797, -0.06389623135328293, 0.019418517127633095, 0.05386916175484657, -0.025322962552309036, 0.00026451071607880294, 0.02612420916557312, 0.03821573778986931, -0.00038086442509666085, 0.025258589535951614, -0.012236160226166248, 0.051757991313934326, -0.03324142470955849, -0.0309140682220459, 0.05672328546643257, -0.004691068548709154, 0.03625112399458885, -0.004969053901731968, 0.04906759038567543, 0.0289283636957407, -0.016042452305555344, -0.001313708839006722, -0.10555591434240341, 0.029943417757749557, -0.0027537501882761717, 0.06532666832208633, 0.033147603273391724, 0.04764418676495552, 0.060096148401498795, -0.05075480788946152, 0.02762419730424881, 0.012695255689322948, -0.04393262043595314, 0.018662448972463608, -0.042052097618579865, 0.05722040310502052, -0.052569568157196045, 0.039017774164676666, -0.12086997181177139, 0.022584058344364166, -0.012472674250602722, 0.01905716024339199, -0.026769300922751427, -0.042974356561899185, -0.015024729073047638, -0.003382582450285554, -0.009124302305281162, 0.018893081694841385, -0.059033915400505066, -0.038385506719350815, -0.008328264579176903, -0.007188065908849239, -0.007678883150219917, 0.01221800222992897, -0.04344240576028824, 0.020611561834812164, 0.017027830705046654, 0.02478763274848461, -0.11440291255712509, -0.026645416393876076, 0.02215104177594185, -0.01632213033735752, 0.027684884145855904, 0.027178984135389328, 0.020807649940252304, 0.02119438350200653, -0.039291635155677795, -0.00459922943264246, 0.04800208657979965, 0.05219564586877823, -0.04043828696012497, -0.005945201497524977, -0.05282275006175041, 0.01586027443408966, 0.017035983502864838, 0.07863730192184448, -0.017148638144135475, 0.03674319386482239, 0.036254629492759705, 0.0032319454476237297, -0.01608540117740631, 0.014435707591474056, -0.01745861954987049, 0.05344543233513832, 0.053735606372356415, 0.05231975018978119, -0.025944847613573074, 0.029331721365451813, 0.0384850949048996, 0.013220567256212234, 0.07089462876319885, -0.050980500876903534, -0.0455687940120697, -0.08314359933137894, 0.04018518701195717, 0.023825135082006454, -0.029614625498652458, -0.025679685175418854, 0.04495813325047493, -0.0012420729035511613, -0.00518632959574461, -0.00563459238037467, -0.04291760176420212, 0.07078448683023453, -0.0003588888794183731, 0.0027288293931633234, -0.01387774758040905, 0.023316772654652596, -0.03351430967450142, -0.10565485060214996, -0.054851699620485306, -0.046007853001356125, 0.006848460994660854, -0.01217605546116829, -0.03521708399057388, 0.010523210279643536, 0.010499898344278336, -0.014098171144723892, 0.02454046532511711, -0.004539752844721079, -0.008114570751786232, 0.056263990700244904, 0.02575669251382351, 0.022372376173734665, -0.1060955673456192, 0.021210119128227234, -0.022589655593037605, 0.06488078087568283, -0.012477262876927853, -0.004014141857624054, -0.012623383663594723, -0.024134013801813126, -0.029336746782064438, 0.025114022195339203, -0.0036887316964566708, -0.05332254245877266, 0.006139940116554499, 0.01132720522582531, -0.07813508808612823, -0.007184586022049189, -0.030343925580382347, 0.016481555998325348, 0.016817042604088783, 0.05544000491499901, -0.014406336471438408, -0.030630478635430336, -0.022128907963633537, -0.0006324847927317023, -0.09302742779254913, 0.03750200569629669, 0.04794307053089142, -0.044068899005651474, 0.045235391706228256, -0.04249267652630806, -0.020670106634497643, 0.018037138506770134, 0.020302297547459602, -0.009028235450387001, -0.009879856370389462, -0.002560089807957411, -0.004943340551108122, -0.009366897866129875, 0.005816641729325056, 0.005896854214370251, 0.06926526874303818, -0.009215704165399075, -0.03463726490736008, 0.023001529276371002, 0.009130572900176048, -0.04089575260877609, -0.10325680673122406, 0.019631344825029373, 0.003121218178421259, 0.009477301500737667, 0.09465720504522324, -0.040373124182224274, -0.06322021037340164, 0.026937419548630714, 0.002582377754151821, 0.033875733613967896, -0.053512152284383774, 0.06877130270004272, 0.03148674964904785, -0.008779685012996197, -0.0018626180244609714, -0.01696080155670643, 0.016130032017827034, -0.07891962677240372, -0.02897641621530056, 0.049674615263938904, 0.008187209255993366, -0.048891112208366394, 0.0339980386197567, 0.01836995594203472, 0.06755910813808441, 0.008222916163504124, -0.03194323182106018, -0.043310169130563736, 0.0016164382686838508, 0.028936035931110382, 0.00014177146658767015, -0.05462684482336044, -0.02284461446106434, 0.03555306792259216, 0.050473038107156754, 0.003074497217312455, -0.01075771078467369, -0.004736688919365406, 0.002012580167502165, -0.024350404739379883, 0.012093029916286469, -0.006683590821921825, -5.6778823642334136e-33, -0.01011013425886631, -0.07700638473033905, 0.047127459198236465, 0.029396602883934975, -0.0369160920381546, -0.03334241732954979, 0.02007618360221386, 0.03086845763027668, -0.040259506553411484, -0.015851737931370735, 0.02039215713739395, 0.015114820562303066, 0.005917835049331188, -0.05597171559929848, 0.004817188251763582, -0.025636233389377594, 0.03605872020125389, -0.015476386062800884, 0.021319793537259102, 0.03773952275514603, -0.04249453917145729, 0.02757125534117222, -0.015665091574192047, -0.02431049756705761, 0.025499269366264343, 0.01720290072262287, 0.009533332660794258, 0.02913711592555046, 0.030862456187605858, -0.02043304406106472, 0.0031819322612136602, -0.01545534748584032, 0.00039230918628163636, 0.022672001272439957, 0.0159765537828207, 0.07271579653024673, -0.05562977492809296, -0.019651265814900398, 0.018400248140096664, -0.0068311369977891445, -0.009769925847649574, -0.016974376514554024, -0.002359462436288595, 0.0012386817252263427, 0.010711180046200752, 0.03560618683695793, 0.026685670018196106, 0.04838532581925392, -0.032531753182411194, 0.05105168744921684, -0.009403837844729424, -0.005774656310677528, -0.0288784671574831, -0.016178568825125694, -0.016471007838845253, 0.029984207823872566, 0.018974544480443, -0.07359284907579422, -0.04520270973443985, 0.046474751085042953, -0.0416891947388649, 0.01697753183543682, 0.03277944400906563, -0.05244474112987518, -0.022684752941131592, 0.01435739267617464, -0.03008570708334446, 0.04914061725139618, 0.02569190040230751, -0.009294809773564339, -0.03298342972993851, 0.04793643206357956, 0.0060599371790885925, -0.017963094636797905, 0.008324422873556614, 0.010010995902121067, 0.014697621576488018, 0.01793445646762848, 0.06774520874023438, 0.007954375818371773, -0.014146658591926098, -0.00123168108984828, -0.04459642991423607, 0.01869388110935688, 0.018201716244220734, 0.07238191366195679, -0.01535733137279749, -0.06597382575273514, -0.046961065381765366, 0.06372436136007309, -0.04093838855624199, -0.003764744848012924, -0.00025555520551279187, 0.035365793853998184, 0.06460928916931152, -0.0006326980073936284, 0.05840272456407547, -0.008498165756464005, -0.026812691241502762, -0.037734027951955795, -0.08004038780927658, 0.010395877994596958, -0.009870517067611217, 0.07044599205255508, -0.0026418576017022133, -0.0010253801010549068, -0.022350016981363297, -0.0007396378205157816, 0.007092057261615992, -0.012387892231345177, -0.006509614177048206, 0.03324972093105316, -0.04650150611996651, -0.0695023462176323, -0.03386826813220978, 0.037596702575683594, -0.0170731358230114, 0.039464060217142105, -0.03509967401623726, -0.048951175063848495, -0.014159620739519596, -0.00032028855639509857, 0.010109544731676579, -0.0699746310710907, -0.03291813284158707, -0.02441497892141342, -0.008687133900821209, 0.02598920650780201, 0.07476820796728134, 0.0177921149879694, 0.01505744457244873, -0.021461844444274902, 2.831918379797571e-07, -0.01595211774110794, 0.0180581733584404, -0.010771971195936203, -0.004072248004376888, 0.012930992059409618, -0.07400458306074142, 0.013794478960335255, 0.007616257760673761, -0.010552412830293179, -0.01690499670803547, 0.0008464328129775822, 0.059732504189014435, -0.009977458044886589, 0.024780262261629105, -0.05803621560335159, -0.14631816744804382, -0.08543790131807327, -0.014265572652220726, -0.014597713015973568, 0.006331117823719978, 0.05365821346640587, -0.014901655726134777, 0.02423224225640297, 0.02516249194741249, -0.028790848329663277, -0.035948220640420914, -0.014923110604286194, 0.016016904264688492, -0.01913370005786419, 0.051610689610242844, 0.011997285299003124, -0.030751636251807213, -0.026550253853201866, 0.03059377893805504, 0.013888143002986908, -0.05496368184685707, -0.06272876262664795, -0.021287770941853523, 0.006153572350740433, -0.0021575524006038904, -0.03956282511353493, 0.041822947561740875, -0.03252255916595459, 0.027662530541419983, 0.0016399096930399537, -0.038854021579027176, -0.007705769035965204, 0.04662360996007919, 0.03529267758131027, -0.06016607582569122, -0.01733693853020668, 0.04191093519330025, 0.05747923254966736, 0.015005860477685928, 0.014247780665755272, 0.009167151525616646, -0.013899662531912327, -0.033169932663440704, 0.028739886358380318, -0.03908408433198929, -0.07911613583564758, -0.0981130301952362, -0.016305509954690933, -0.0806814581155777, -0.06441136449575424, 0.020790796726942062, -0.01619674637913704, 2.3080395359788865e-34, -0.023944659158587456, 0.026781870052218437, -0.0789184495806694, 0.07676874846220016, 0.013471621088683605, 0.003434795420616865, 0.04897411912679672, -0.0091477632522583, 0.03244033828377724, -0.031242184340953827, -0.022646315395832062], "ff718593-9a32-4079-8566-b2eeccec373d": [0.04884980991482735, -0.03130948171019554, -0.001856916700489819, 0.02657919190824032, -0.03558085113763809, 0.0032938821241259575, -0.017224792391061783, 0.03429355472326279, -0.008935400284826756, -0.002792020095512271, 0.006008525844663382, -0.024161197245121002, 0.016223551705479622, 0.057934101670980453, -0.04792213439941406, -0.0243330467492342, 0.02799859084188938, -0.03685491159558296, -0.02453606203198433, -0.03127842769026756, 0.01952959969639778, 0.016912830993533134, -0.043797314167022705, 0.012385940179228783, 0.009495985694229603, -0.013199131935834885, -0.0010498862247914076, -0.006599261425435543, 0.04907376319169998, 0.028486665338277817, -0.00818916130810976, 0.019762814044952393, 0.018888531252741814, 0.041176725178956985, 2.465790657879552e-06, 0.015917398035526276, -0.008740951307117939, 0.018001340329647064, -0.027490990236401558, -0.0011159562272951007, -0.01740686409175396, -0.021754354238510132, -0.03471660986542702, 0.02330472320318222, -0.03615109622478485, 0.005028268322348595, 0.05550670251250267, -0.0075702909380197525, 0.00528716342523694, 0.047734346240758896, 0.005946238059550524, 0.06058049947023392, 0.006933014839887619, -0.027937576174736023, 0.09500119090080261, -0.07135464251041412, -0.034399937838315964, 0.015371106564998627, 0.035658929497003555, 0.06702002882957458, 0.008869044482707977, -0.024250900372862816, 0.005278846714645624, -0.005233717150986195, 0.03632330894470215, 0.07553032785654068, 0.03522929549217224, -0.06975347548723221, -0.01923413760960102, -0.023431336507201195, 0.14695073664188385, -0.019092146307229996, 0.009877940639853477, 0.09138064831495285, 0.0007829959504306316, 0.025035381317138672, -0.00864602904766798, 0.014514470472931862, -0.029583854600787163, 0.046000853180885315, 0.003680286230519414, -0.009966224431991577, -0.04160201549530029, -0.01700418069958687, 0.04386245086789131, 0.03375064581632614, 0.010531711392104626, -0.002547086449339986, -0.03845089673995972, -0.0017268401570618153, 0.06164265424013138, -0.024206560105085373, -0.029126713052392006, 0.022702369838953018, 0.050086911767721176, -0.03203277289867401, 0.02437512017786503, 0.01199635025113821, 0.019127296283841133, 0.06221913918852806, 0.011982196941971779, 0.04953224956989288, -0.014517975971102715, 0.05929014831781387, 0.03574052453041077, 0.02850158140063286, 0.013630999252200127, 0.008406621403992176, 0.027719149366021156, 0.0027861439157277346, -0.03815974295139313, 0.009045052342116833, 0.005864724516868591, 0.06490761786699295, -0.016157271340489388, -0.032354820519685745, -0.01729951985180378, 0.04344750568270683, 0.018417323008179665, 0.050018273293972015, 0.04080352559685707, 0.016074586659669876, -0.06834422051906586, -0.026095503941178322, -0.05852781981229782, -0.05217885598540306, -0.03747960552573204, -0.04407781735062599, 0.0062897405587136745, -0.06727737933397293, -0.027077142149209976, -0.03331690654158592, -0.02106976881623268, -0.01567714661359787, -0.03370538726449013, -0.015114123933017254, -0.024218400940299034, -0.011053786613047123, 0.036743465811014175, -0.007422624621540308, -0.02882598526775837, -0.0011547125177457929, -0.0007243888103403151, 0.017923584207892418, -0.001983206020668149, -0.030049044638872147, 0.016189726069569588, -0.030083289369940758, 0.011169768869876862, 0.007988998666405678, 0.023166384547948837, 0.011208253912627697, -0.014818830415606499, 0.0011886653956025839, -0.00747424503788352, 0.05429079756140709, 0.03546834737062454, 0.00043249063310213387, -0.059481408447027206, 0.0019521088106557727, -0.009502226486802101, 0.04864106327295303, 0.048753444105386734, -0.030460793524980545, 0.021145107224583626, -0.04399533197283745, 0.0539737194776535, -0.0016225725412368774, 0.008383066393435001, 0.0009381321724504232, 0.012000658549368382, 0.0618131197988987, -0.017542261630296707, 0.04072797670960426, -0.015121580101549625, -0.02771645225584507, 0.045234523713588715, 0.025768551975488663, -0.04297593608498573, -0.013131427578628063, -0.05223230645060539, -0.0703776478767395, 0.01085970364511013, 0.03859053552150726, -0.023725444450974464, -0.0022969115525484085, 0.00022972840815782547, 0.023947276175022125, -0.027739327400922775, 0.0016731778159737587, 0.0022729774937033653, 0.005552948452532291, -0.02976958453655243, -0.03144131228327751, 0.03330664336681366, -0.012204761616885662, 0.011956300586462021, -0.05613962560892105, -0.010098468512296677, 0.002210144652053714, -0.005684486590325832, -0.08151259273290634, 0.026590028777718544, 0.08050484955310822, 0.033718135207891464, -0.024828623980283737, -0.026293735951185226, 0.0008532516076229513, -0.004504427779465914, 0.03389735147356987, 0.07687053084373474, 0.0028412521351128817, -0.029244910925626755, -0.01791973039507866, 0.0007172804907895625, 0.014950207434594631, 0.0018967235228046775, 0.045921288430690765, 0.014511868357658386, 0.07648509740829468, -0.0408712774515152, -0.017630476504564285, 0.008757372386753559, 0.0034779212437570095, 0.018459541723132133, 0.0008829854195937514, 0.0030562325846403837, -0.005098020192235708, 0.03830121457576752, 0.03726420924067497, -0.02505207248032093, 0.017655745148658752, 0.04141159728169441, 8.936053200159222e-05, 0.03582867607474327, 0.020099597051739693, 0.01945466548204422, 0.016563603654503822, 0.04550035670399666, -0.04313192516565323, -0.014922067523002625, 0.085874542593956, -0.0039541213773190975, 0.02085288241505623, 0.016910770907998085, 0.03373342379927635, 0.07896239310503006, -0.012905443087220192, -0.03998992219567299, 0.029393626376986504, 0.01271632220596075, 0.006825931370258331, -0.01838955283164978, 0.015605689957737923, -0.029825661331415176, 0.03268635645508766, -0.1751212328672409, 0.01076524704694748, -0.040095970034599304, 0.019223330542445183, 0.030474741011857986, -0.02818809077143669, -0.030405869707465172, 0.0191014613956213, 0.0010954522294923663, -0.005577649921178818, -0.015010373666882515, -0.0021527220960706472, -0.029683174565434456, -0.021105442196130753, 0.034413233399391174, 0.009005410596728325, 0.014986147172749043, -0.01252658013254404, -0.020433777943253517, 0.019616516306996346, -0.037869665771722794, -0.024648770689964294, -0.037662483751773834, 0.0159315038472414, 0.047928616404533386, 0.016826556995511055, 0.007988429628312588, 0.0012522031320258975, 0.0227041095495224, 0.002028222195804119, 0.04225935786962509, -0.09904191642999649, -0.049438316375017166, -0.05526506528258324, 0.015983104705810547, -0.02293548174202442, 0.0014659811276942492, -0.03279130533337593, -0.021885497495532036, 0.002067029243335128, 0.05385585501790047, 0.017137739807367325, -0.006969422567635775, 0.09796767681837082, -0.014498237520456314, 0.011064776219427586, -0.03810183331370354, 0.009520730935037136, -0.012270713225007057, -0.017349032685160637, 0.014210951514542103, -0.030378499999642372, 0.03696000948548317, -0.036982662975788116, -0.023936528712511063, 0.02551395259797573, -0.018343450501561165, 0.011195167899131775, 0.014042955823242664, 0.00028251789626665413, -0.04018907994031906, -0.04257085546851158, -0.00831185095012188, 0.03671279177069664, -0.014625323936343193, -0.024959061294794083, -0.009897981770336628, -0.0250182393938303, -0.044443532824516296, -0.10815341025590897, -0.008696402423083782, -0.021986879408359528, 0.0805484876036644, -0.034155067056417465, 0.029767345637083054, 0.0018829029286280274, -0.012297803536057472, 0.04389135167002678, -0.0706331804394722, 0.0017108904430642724, 0.020084001123905182, -0.0382436066865921, -0.02327601984143257, 0.006267364602535963, -0.030582942068576813, 0.040537893772125244, -0.03913073614239693, 0.027900507673621178, -0.013171639293432236, -0.021138662472367287, -0.0037530353292822838, -0.011768126860260963, -0.025804489850997925, 0.006701571401208639, 0.026815859600901604, 0.02976200543344021, 0.032920245081186295, -0.03417113423347473, 0.035282596945762634, -0.0583622008562088, -0.039833229035139084, -0.011503564193844795, 0.00013806310016661882, 0.013250368647277355, -0.016607115045189857, 0.014794304035604, -0.011545121669769287, 0.0036245924420654774, -0.0013057678006589413, -0.0984111800789833, 0.04304886236786842, -0.0073242527432739735, 0.038143474608659744, 0.05163857340812683, -0.00908031314611435, 0.014962419867515564, -0.056046031415462494, 0.03072243742644787, 0.0174062829464674, -0.04518502205610275, -0.003503730520606041, -0.01100079994648695, 0.11433656513690948, -0.029776431620121002, -0.005955096334218979, -0.0813242644071579, 0.06692136824131012, 0.005895298905670643, -0.0016003515338525176, -0.03979639708995819, -0.0051998235285282135, 0.01810360886156559, 0.02904333919286728, 0.03109343722462654, 0.0013082838850095868, -0.0661359652876854, -0.10551049560308456, 0.03914105147123337, 0.004715647082775831, 0.008726565167307854, -0.019993990659713745, -0.019513197243213654, -0.004945958498865366, 0.0409112274646759, 0.019264305010437965, -0.14303140342235565, -0.016794441267848015, 0.01157232467085123, -0.00067287462297827, 0.07852014899253845, 0.06264995038509369, 0.013321701437234879, -0.028833145275712013, -0.050075992941856384, 0.08047886192798615, 0.017995033413171768, 0.02977956086397171, -0.04746263101696968, 0.030421797186136246, -0.04048227146267891, -0.011922536417841911, 0.022881092503666878, 0.049752745777368546, -0.035913098603487015, 0.007093761116266251, 0.019102267920970917, 0.032383158802986145, -0.04675925523042679, -0.009237829595804214, -0.024471456184983253, 0.06041957065463066, 0.04368731752038002, 0.03949801251292229, -0.017998255789279938, 0.05632622539997101, 0.05066855624318123, -0.033142559230327606, 0.08734690397977829, -0.03826100006699562, -0.00544680655002594, -0.03891998529434204, 0.04062787815928459, -0.05439682677388191, -0.04106338322162628, 0.01116146706044674, 0.04619961604475975, -0.0005060852272436023, -0.032217781990766525, -0.038766343146562576, -0.043330442160367966, 0.04402327910065651, 0.0011682662880048156, 0.0038420353084802628, -0.04910436272621155, 0.0018639819463714957, -0.035151805728673935, -0.07185778021812439, -0.06711255759000778, -0.0071093859151005745, -0.04248311370611191, -0.04821452870965004, 0.01590542308986187, 0.004772707354277372, 0.040503304451704025, -0.0016588022699579597, 0.03708917647600174, 0.04052137956023216, 0.0016074745217338204, 0.07099607586860657, -0.0069536627270281315, -0.03955727070569992, -0.014690055511891842, 0.025266507640480995, -0.0008716717711649835, -0.0013367542997002602, -0.031792569905519485, -0.014320064336061478, 0.005988657474517822, 0.03247887268662453, -0.029691457748413086, -0.0181768499314785, 0.043712906539440155, -0.018875353038311005, 0.002745159901678562, -0.01662769913673401, -0.031859032809734344, 0.029266955330967903, 0.006134937051683664, -0.028604762628674507, 0.015272174030542374, 0.06358061730861664, 0.0503176748752594, -0.015342270024120808, -0.05906926095485687, 0.02873224765062332, -0.06909829378128052, -0.011047369800508022, 0.031665440648794174, -0.04014166072010994, 0.05447209253907204, -0.007546158041805029, -0.0020682881586253643, 0.018268439918756485, 0.0474492572247982, 0.01482694037258625, -0.019760755822062492, -0.002595844678580761, 0.04924404248595238, -0.06109945476055145, -0.007274182513356209, 0.001936415210366249, 0.04050106555223465, -0.002616824582219124, -0.033881932497024536, 0.04431265965104103, -0.004246878903359175, -0.05319434031844139, -0.04511735588312149, 0.02552751637995243, -0.0031408292707055807, 0.024763111025094986, 0.10716013610363007, -0.017148179933428764, -0.07871919125318527, 0.0216634813696146, -0.010284465737640858, 0.05049212649464607, -0.008148066699504852, 0.06457310169935226, 0.030047772452235222, -0.009981412440538406, -0.008706051856279373, -0.012859310954809189, 0.027870619669556618, -0.04545482620596886, -0.007624204736202955, 0.05758116766810417, 0.02051892690360546, -0.012236041016876698, -0.004720075987279415, -0.00617388216778636, 0.027510998770594597, 0.008631700649857521, -0.027970029041171074, -0.005209732335060835, 0.012587008066475391, 0.07121144235134125, 0.020700613036751747, -0.048256587237119675, -0.052866920828819275, 0.034233491867780685, 0.018010588362812996, 0.007202891167253256, -0.01112944446504116, 0.010547623969614506, -0.009194483980536461, -0.005240116734057665, 0.03235678747296333, 0.02216331474483013, -6.734094160489979e-33, -0.029079634696245193, -0.01680702529847622, -0.0046137310564517975, 0.05857590585947037, -0.029318058863282204, -0.031924210488796234, 0.032912012189626694, -0.02776232548058033, -0.05692242458462715, -0.012141314335167408, 0.03104545548558235, 0.02616053633391857, 0.022984016686677933, -0.030351826921105385, 0.004437670577317476, -0.04029364511370659, 0.02566429413855076, 0.0061134593561291695, 0.02321450784802437, 0.018596554175019264, -0.050844691693782806, 0.03462619706988335, 0.003889031708240509, 0.015256810002028942, 0.009516067802906036, 0.0382859893143177, -0.006819301284849644, 0.006608142983168364, 0.0007915326859802008, 0.022430554032325745, -0.016666986048221588, -0.019668081775307655, 0.0006273933104239404, -0.02555774711072445, 0.012867593206465244, 0.06150675192475319, -0.08896461129188538, -0.0009737832588143647, 0.010098567232489586, -0.04570618271827698, 0.028306134045124054, -0.056725144386291504, -0.020488420501351357, 0.007103235926479101, 0.013287325389683247, 0.00564079312607646, 0.004479412920773029, 0.008485703729093075, -0.03245073929429054, -0.006746493745595217, -0.029743926599621773, 0.0009495748672634363, -0.029077086597681046, 0.01627540960907936, -0.003439165186136961, -0.020476870238780975, 0.03929232433438301, -0.0384380929172039, -0.0389573909342289, 0.01235455647110939, -0.0111428527161479, 0.027066275477409363, 0.023808196187019348, -0.03195736184716225, -0.021997258067131042, -0.023105600848793983, -0.07566045969724655, 0.07641468197107315, -0.017321186140179634, 0.01330025214701891, -0.030149880796670914, 0.05821138247847557, -0.03631317988038063, -0.03195494785904884, -0.011683736927807331, 0.012754760682582855, -0.038745082914829254, 0.04140776768326759, 0.050131119787693024, 0.0529925711452961, 0.015978338196873665, -0.027681643143296242, -0.04031859338283539, 0.012654847465455532, 0.016005724668502808, 0.061321407556533813, -0.03692219406366348, -0.018430739641189575, -0.027676831930875778, 0.042499132454395294, 0.008379602804780006, -0.012079586274921894, -0.025759870186448097, 0.018601035699248314, 0.03703508898615837, -0.026780705899000168, 0.04154416546225548, 0.0044816164299845695, -0.020480981096625328, -0.022872906178236008, -0.06776340305805206, -0.03378918394446373, 0.016401829198002815, 0.07607357949018478, 0.008089079521596432, -0.027860786765813828, 0.016880221664905548, 0.009710573591291904, -0.041547443717718124, 0.021179430186748505, -0.005003475118428469, 0.04617595300078392, 0.0009869990171864629, -0.03753189742565155, -0.02211441658437252, -0.003077449044212699, 0.01299842819571495, 0.010245628654956818, -0.017620788887143135, -0.01195551361888647, -0.014440223574638367, 0.05734466388821602, -0.01881164312362671, -0.051180243492126465, -0.052413783967494965, 0.01426455844193697, -0.005349061917513609, 0.04167892038822174, 0.07546386867761612, 0.040344223380088806, -0.01072775386273861, -0.05674925819039345, 3.077759913594491e-07, 0.02168031595647335, 0.042340151965618134, 0.015540110878646374, -0.01405227929353714, 0.021019641309976578, -0.09392544627189636, 0.0005421615205705166, 0.05076498165726662, -0.006318977102637291, 0.014391424134373665, -0.0036047035828232765, 0.026260724291205406, -0.02034083381295204, 0.0008632762474007905, -0.02668253518640995, -0.1168970987200737, -0.10964994877576828, -0.0190691240131855, -0.039942048490047455, 0.022401100024580956, 0.00803279597312212, 0.025895768776535988, 0.02067997306585312, 0.01614389754831791, -0.0038711323868483305, 0.024996988475322723, 0.009535638615489006, -0.05446844547986984, -0.006902078632265329, 0.0140469865873456, 0.05057239904999733, 0.003153557889163494, -0.022364379838109016, -0.03035813570022583, 0.02112523466348648, -0.029822813346982002, -0.07258164137601852, -0.008855546824634075, 0.012640179134905338, 0.031558867543935776, -0.01831546239554882, -0.0036564439069479704, -0.02586332894861698, 0.03296782076358795, 0.04564201086759567, -0.02055445685982704, 0.014962133951485157, 0.024349991232156754, 0.024034373462200165, -0.06076180562376976, -0.006445094011723995, 0.02519332617521286, 0.05736474692821503, -0.01677563041448593, 0.030352149158716202, -0.020290637388825417, -0.0061280326917767525, -0.03907836973667145, 0.04369983822107315, -0.07959591597318649, -0.05428893491625786, -0.07312293350696564, -0.013097109273076057, -0.07146623730659485, -0.03570704907178879, 0.01191666815429926, -0.01019283477216959, 3.1305953813866285e-34, 0.015782635658979416, -0.0036869964096695185, -0.07462192326784134, 0.027835018932819366, -0.014844297431409359, -0.021773388609290123, 0.04160243272781372, -0.03279554843902588, -0.023399127647280693, -0.033738140016794205, -0.006538962945342064], "a0611aa2-9601-457a-9a45-7ebdea9de014": [0.05345135182142258, -0.006476730573922396, -0.008910663425922394, 0.0010073903249576688, -0.016505885869264603, 0.02640250325202942, 0.01986474171280861, 0.02883427031338215, 0.0004234764783177525, -0.002599485218524933, -0.0016241075936704874, -0.009660040028393269, 0.004234567750245333, 0.04496829956769943, -0.044904906302690506, 0.007227130234241486, 0.014617997221648693, -0.022565875202417374, -0.0021162754856050014, -0.020325778052210808, -0.0036656230222433805, 0.026823706924915314, -0.023510508239269257, -0.004837059415876865, 0.01600254327058792, -0.00319121265783906, -0.007475667167454958, 0.0014380387729033828, 0.04103410989046097, 0.008026253432035446, 0.01547338254749775, 0.03804079070687294, 0.023972531780600548, 0.020492950454354286, 2.454162313370034e-06, 0.014688176102936268, -0.008891032077372074, 0.029682576656341553, -0.03712364286184311, 0.016364620998501778, -0.035748742520809174, -0.04340170696377754, -0.04301586002111435, -0.0034701128024607897, -0.03501248359680176, 0.030536282807588577, 0.05676082894206047, -0.011226426810026169, -0.0029034025501459837, 0.05019329488277435, 0.013732895255088806, 0.06367114931344986, 0.031490258872509, -0.035333409905433655, 0.10415187478065491, -0.056748535484075546, -0.007004623766988516, 0.03855559229850769, 0.024882139638066292, 0.10207602381706238, 0.022286204621195793, 0.003787181107327342, 0.001201669336296618, 0.005637787282466888, 0.03609703108668327, 0.06898488849401474, 0.050677765160799026, -0.06745845079421997, -0.016753487288951874, -0.027827678248286247, 0.13500703871250153, -0.024151012301445007, 0.012662439607083797, 0.056621428579092026, -0.008126677013933659, 0.0052172280848026276, -0.02147720567882061, 0.005814633797854185, -0.015500559471547604, 0.02107115648686886, -0.016966676339507103, -0.012065946124494076, -0.04438143968582153, -0.02521628886461258, 0.04461462423205376, 0.04189777001738548, 0.006526866927742958, 0.00294413766823709, -0.033060263842344284, -0.0033455882221460342, 0.06208612397313118, -0.02920588292181492, -0.03269229456782341, 0.010573158971965313, 0.04743744432926178, -0.0386536568403244, 0.0519593246281147, -0.03174670413136482, 0.03596258908510208, 0.011233188211917877, -0.012603632174432278, 0.054613709449768066, 0.008000340312719345, 0.03634576126933098, 0.0430464930832386, 0.005353901069611311, 0.023659972473978996, 0.01932295225560665, 0.0417732298374176, 0.011641466058790684, -0.0661468356847763, 0.0013496211031451821, -0.0068707773461937904, 0.057741928845644, -0.02286219410598278, -0.01904645562171936, -0.036536868661642075, 0.032074421644210815, 0.031661294400691986, 0.03352799639105797, 0.05272999405860901, 0.02845519781112671, -0.08022528886795044, -0.011108719743788242, -0.04283379390835762, -0.02438637800514698, -0.042995940893888474, -0.04073694348335266, 0.013621518388390541, -0.029978148639202118, -0.022914649918675423, -0.03716662898659706, -0.02547360025346279, -0.035978201776742935, -0.024284759536385536, -0.039064597338438034, -0.016509657725691795, -0.014512372203171253, 0.04463615268468857, 0.011717361398041248, -0.04214939847588539, 0.0028655424248427153, -0.01262650080025196, 0.00019164683180861175, 1.8755905330181122e-05, -0.010803739540278912, 0.0225466750562191, -0.051230695098638535, 0.0030904747545719147, -0.0004333583638072014, 0.01737062633037567, 0.008843811228871346, -0.025867078453302383, -0.01986594870686531, 0.007775233127176762, 0.04387296736240387, 0.03323625400662422, 0.013080251403152943, -0.059946801513433456, 0.01697223074734211, 0.003877457929775119, 0.0438128262758255, 0.048883456736803055, -0.020116537809371948, 0.007627594750374556, -0.019313177093863487, 0.05939272418618202, -0.0006095924763940275, -0.03772387281060219, -0.010130144655704498, -0.010083718225359917, 0.06407371908426285, -0.0021673759911209345, 0.052927158772945404, -0.010021819733083248, -0.03393005207180977, 0.057476695626974106, 0.0019624531269073486, -0.04472503811120987, 0.0059417299926280975, -0.06102399900555611, -0.07717359066009521, 0.0068315244279801846, 0.04205239191651344, -0.014246084727346897, 0.006621829234063625, 0.01593545638024807, 0.04518524929881096, -0.03966956213116646, 0.033932752907276154, 0.006324504967778921, -0.0009448704076930881, -0.014168580994009972, -0.020848628133535385, 0.051827847957611084, 0.002014081459492445, 0.016515808179974556, -0.03226248174905777, 0.023694343864917755, 0.004948909394443035, -0.02030405029654503, -0.05640175938606262, 0.020424284040927887, 0.04641148820519447, 0.013268952257931232, -0.013981485739350319, -0.02087133564054966, -0.004734160844236612, 0.013342583552002907, 0.03438100591301918, 0.061019957065582275, 0.014245274476706982, -0.04597941413521767, -0.009966771118342876, 0.003411319339647889, -0.004934989381581545, 0.003040802665054798, 0.05126688629388809, 0.024235181510448456, 0.048924531787633896, -0.03701946884393692, -0.003319451352581382, -0.006890184711664915, 0.00014034555351827294, -0.005173321347683668, -0.011284776963293552, -0.015370518900454044, -0.009983689524233341, 0.06596489995718002, 0.04940168187022209, -0.014207420870661736, 0.006141067948192358, 0.04332991689443588, -0.01750754751265049, 0.003670443082228303, -0.003089618170633912, 0.06618153303861618, 0.015055815689265728, 0.02149643376469612, -0.022415349259972572, -0.023319320753216743, 0.08510135114192963, -0.023312199860811234, 0.04007586091756821, 0.004837834741920233, 0.038717832416296005, 0.06947291642427444, -0.021356133744120598, -0.04259831830859184, 0.022197794169187546, 0.016275741159915924, -4.321497544879094e-05, -0.012837382964789867, -0.0003973485145252198, -0.04686005786061287, 0.0011229591909796, -0.15698233246803284, 0.010777916759252548, -0.04696434363722801, 0.04139331355690956, 0.04837852343916893, -0.013221780769526958, -0.037562984973192215, 0.014261388219892979, 0.010427171364426613, 0.002787491539493203, -0.020368952304124832, 0.012477775104343891, -0.028064360842108727, -0.026063837110996246, 0.025873780250549316, 0.014346745796501637, 0.023407384753227234, 0.000714026449713856, -0.0038659702986478806, 0.015552390366792679, -0.041660625487565994, -0.014143499545753002, -0.021658912301063538, 0.009146393276751041, 0.053247589617967606, -0.0024276950862258673, 0.015122110024094582, 0.013504276052117348, 0.017609020695090294, -0.00979555118829012, 0.05301777273416519, -0.1382758617401123, -0.07159724086523056, -0.0630449652671814, -0.005105082876980305, -0.02484791725873947, 0.00626016641035676, -0.028847649693489075, -0.021124782040715218, 0.011380180716514587, 0.04647252708673477, -0.011076495051383972, -0.005088876932859421, 0.07978610694408417, -0.011436748318374157, 0.026635456830263138, -0.02299605868756771, 0.021512480452656746, -0.048134155571460724, -0.01159899402409792, 0.014610826969146729, -0.03656013309955597, 0.044276945292949677, -0.059219907969236374, -0.0022930423729121685, 0.018370501697063446, -0.016502493992447853, 0.01195971854031086, 0.03299776092171669, 0.005702126305550337, -0.016352441161870956, -0.060160081833601, 0.0035108295269310474, 0.04713986814022064, -0.00944617297500372, -0.015419146046042442, 0.0001885410165414214, -0.04312581941485405, -0.03853817656636238, -0.08862132579088211, -0.023856088519096375, -0.049423277378082275, 0.05753485858440399, -0.037090569734573364, 0.013923056423664093, 0.008471758104860783, -0.006381486542522907, 0.03978121280670166, -0.05632997304201126, -0.01991136372089386, 0.048511963337659836, -0.05590583011507988, 0.012266656383872032, 0.0002585789770819247, -0.010282536037266254, 0.029062122106552124, -0.025554625317454338, 0.018896546214818954, -0.044855523854494095, -0.005586264189332724, 0.033640529960393906, -0.027709543704986572, 0.005035301670432091, 0.06157929450273514, 0.04311833903193474, 0.010433529503643513, 0.015791315585374832, -0.029649412259459496, 0.02809431217610836, -0.06351729482412338, -0.04018748179078102, -0.026137759909033775, -0.002664651721715927, 0.011446204036474228, -0.026347937062382698, 0.0012446785112842917, 0.011940927244722843, 0.03810040280222893, -0.0026365567464381456, -0.08272551745176315, 0.027036579325795174, -0.008005844429135323, 0.025551574304699898, 0.006364631000906229, -0.0021843696013092995, 0.03229552134871483, -0.05119587108492851, 0.03505602106451988, 0.030004242435097694, -0.059532273560762405, -0.0023804993834346533, -0.0018531603273004293, 0.10298189520835876, -0.04369994252920151, 0.00980846956372261, -0.061649322509765625, 0.052405502647161484, 0.0036834178026765585, -0.007139476481825113, -0.03584699332714081, -0.01817554607987404, -0.009244360029697418, 0.038056179881095886, 0.043158043175935745, 0.010315526276826859, -0.03992857038974762, -0.09826714545488358, 0.002462213858962059, 0.015989186242222786, 0.025976495817303658, -0.030871855095028877, -0.037018854171037674, 0.007973992265760899, 0.03629373386502266, 0.00852610170841217, -0.12072183936834335, -0.013689816929399967, 0.010831375606358051, 0.006375938653945923, 0.08216674625873566, 0.07284175604581833, 0.03282412514090538, -0.015780635178089142, -0.03536079823970795, 0.08330368995666504, 0.014233805239200592, 0.014209717512130737, -0.04834785684943199, 0.03438246622681618, -0.04976682364940643, 0.0038646103348582983, 0.027758926153182983, 0.047209836542606354, -0.03509875386953354, 0.01596193201839924, 0.004359210375696421, 0.01848944090306759, -0.042368192225694656, 0.0017318269237875938, -0.01806778833270073, 0.09022484719753265, 0.054303497076034546, 0.03216981142759323, -0.020178401842713356, 0.02833610028028488, 0.08546122908592224, -0.029024763032794, 0.072286456823349, -0.003279461059719324, -0.004365189932286739, -0.0261746346950531, 0.006298619322478771, -0.0746317058801651, -0.05966592952609062, 0.02601858787238598, 0.04038058966398239, 0.013939379714429379, -0.020286086946725845, -0.013492176309227943, -0.041537102311849594, 0.05316014960408211, 0.02927381917834282, -0.022932562977075577, -0.01769724115729332, -0.0033904642332345247, -0.05747554078698158, -0.07383894175291061, -0.05677510052919388, -0.029432937502861023, -0.04965469613671303, -0.03930347412824631, -0.025297541171312332, -0.010577233508229256, 0.01781555451452732, -0.004839515313506126, 0.037477005273103714, 0.04760625585913658, -0.01120627112686634, 0.02613263763487339, 0.005671915598213673, 0.017937136813998222, 0.0018362425034865737, 0.04592052847146988, -0.027153529226779938, 0.02050338126718998, -0.024494865909218788, -0.022961294278502464, 0.002113293157890439, 0.03977791592478752, -0.018316995352506638, -0.004765447229146957, 0.030211875215172768, -0.04508334398269653, -0.0063719418831169605, -0.008116393350064754, -0.04548054188489914, 0.029288873076438904, -0.041756097227334976, -0.017416464164853096, 0.019945772364735603, 0.05118494853377342, 0.05251437798142433, -0.03108394704759121, -0.05583496764302254, 0.016506586223840714, -0.07710292190313339, 0.0045603602193295956, 0.06250154227018356, -0.029241865500807762, 0.050116896629333496, 0.01399238407611847, -0.01609065942466259, 0.009611915796995163, 0.05613920837640762, 0.007746967952698469, -0.011014111340045929, 0.0005635567358694971, 0.03511407598853111, -0.07342027127742767, -0.0021058006677776575, -0.002380456542596221, 0.02539302408695221, -0.0029305992648005486, -0.06440120190382004, 0.02398253045976162, -0.011819412931799889, -0.08837700635194778, -0.05696354806423187, 0.020874492824077606, -0.007154867518693209, 0.026675881817936897, 0.12445594370365143, 3.018776624230668e-07, -0.09426337480545044, -0.0006762580014765263, -0.015949061140418053, 0.04115768149495125, -0.016932876780629158, 0.05558956414461136, -0.011641031131148338, 0.005067422986030579, -0.005357616581022739, -0.012722653336822987, 0.004983827471733093, -0.008658288978040218, -0.03358537703752518, 0.03521246835589409, 0.006122967693954706, -0.009237946942448616, 0.009974122978746891, -0.0022256087977439165, 0.04623161628842354, 0.009911660104990005, -0.02995622530579567, 0.006882866378873587, 0.009692375548183918, 0.058792177587747574, 0.021410519257187843, -0.05419953167438507, -0.04703743755817413, 0.017121851444244385, 0.0031547313556075096, -0.014581928960978985, -0.02858090028166771, 0.021861139684915543, -0.03646891191601753, -0.013409243896603584, 0.019564945250749588, 0.025470685213804245, -7.004768632498103e-33, -0.020408784970641136, -0.027523120865225792, -0.02812550775706768, 0.0745219811797142, -0.03197208046913147, -0.016982385888695717, 0.028199531137943268, -0.034562159329652786, -0.03851484879851341, -0.009710450656712055, 0.013444346375763416, 0.014512745663523674, 0.022916050627827644, -0.029409540817141533, 0.012776114046573639, -0.012102608568966389, 0.020624956116080284, -0.004659830126911402, 0.016822505742311478, 0.037752363830804825, -0.016171589493751526, 0.05543243885040283, -0.008088118396699429, 0.02700536698102951, 0.015026695095002651, 0.03177111968398094, -0.009945753961801529, 0.03168998658657074, 0.006344072986394167, 0.025457868352532387, -0.016806114464998245, -0.0440693274140358, 0.0013263322180137038, -0.015194403938949108, 0.013479708693921566, 0.048338714987039566, -0.07377650588750839, 0.0066044386476278305, -0.014673339203000069, -0.05017409101128578, 0.07143088430166245, -0.014824762009084225, -0.018215354532003403, -0.0027415284421294928, 0.035269562155008316, 0.022347023710608482, -0.0016242223791778088, 0.024885013699531555, -0.031404975801706314, 0.0037702114786952734, -0.028099458664655685, -0.020767783746123314, -0.012267125770449638, 0.018610145896673203, -0.005834755953401327, -0.0011158018605783582, 0.032185785472393036, -0.003525427309796214, -0.05673467740416527, -0.002596464706584811, -0.00035536434734240174, 0.002165911253541708, 0.027383625507354736, -0.022852081805467606, -0.03790593519806862, -0.020479215309023857, -0.04324856027960777, 0.06379018723964691, -0.03762740641832352, -0.007610367611050606, -0.028943927958607674, 0.044406987726688385, -0.01738390512764454, -0.014230513945221901, -0.0026812176220119, 0.004078785423189402, -0.028495829552412033, 0.044245507568120956, 0.05418780818581581, 0.033311646431684494, 0.028076015412807465, -0.03574445843696594, -0.039393872022628784, -0.004824402742087841, 0.04463029280304909, 0.04817067086696625, -0.03016134724020958, -0.04869253933429718, -0.018988920375704765, 0.026794185861945152, 0.014644811861217022, -0.00846649706363678, -0.02224300429224968, 0.02360319346189499, 0.032131295651197433, -0.0062292227521538734, 0.0424230583012104, 0.02467190846800804, -0.019160671159625053, -0.045111823827028275, -0.0726645365357399, -0.01570306159555912, 0.02154151350259781, 0.08251822739839554, 0.000803603557869792, -0.05365106463432312, 0.05700138956308365, -0.006524673197418451, -0.04077601060271263, 0.01859590969979763, -0.0016315701650455594, 0.0532701276242733, -0.0007999835070222616, -0.05623440444469452, -0.03935585170984268, 0.007385831326246262, 0.010575857944786549, 0.02735970728099346, -0.0037488846573978662, -0.012788611464202404, -0.007950316183269024, 0.0748174712061882, -0.027368206530809402, -0.029172036796808243, -0.036767978221178055, 0.024643439799547195, -0.0013121914817020297, 0.029466627165675163, 0.07451581209897995, 0.014179203659296036, -0.002414955524727702, -0.07601113617420197, 3.115381730367517e-07, 0.020816467702388763, 0.042768463492393494, -0.008206539787352085, -0.024213433265686035, 0.016386374831199646, -0.07892915606498718, -0.003014586167410016, 0.03336917981505394, 0.007074666675180197, 0.00892268680036068, 0.014078433625400066, 0.015584449283778667, -0.00618939520791173, 0.017503995448350906, -0.05386694520711899, -0.1281965672969818, -0.07100386917591095, -0.012599091045558453, -0.05198266729712486, 0.021958284080028534, 0.007664680480957031, -0.013268536888062954, 0.047058556228876114, 0.02186928130686283, -0.009810368530452251, 0.03986086696386337, 0.010844532400369644, -0.040859416127204895, 0.00729945907369256, 0.02574019692838192, 0.019535141065716743, -0.028694991022348404, -0.00852318573743105, -0.015879927203059196, 0.002347277943044901, -0.04031391814351082, -0.08050894737243652, -0.021009746938943863, -0.007956082932651043, 0.009635154157876968, -0.005437258165329695, 0.032585326582193375, -0.035018667578697205, 0.02719927579164505, 0.015533344820141792, -0.07857416570186615, 0.00760496873408556, 0.026683205738663673, 0.028635675087571144, -0.05408046022057533, -0.01254641730338335, 0.02735268883407116, 0.0381106436252594, -0.014944854192435741, 0.0187700018286705, -0.018389912322163582, -0.0014291336992755532, -0.039226990193128586, 0.05825478583574295, -0.072954922914505, -0.05159933492541313, -0.08773097395896912, -0.009808026254177094, -0.07820261269807816, -0.030556943267583847, 0.02494429238140583, 0.005692245438694954, 3.281914105938593e-34, 0.03164653852581978, -0.0021018479019403458, -0.05842707306146622, 0.028006790205836296, -0.0060829161666333675, -0.027512289583683014, 0.05428801849484444, -0.03235447779297829, -0.006542027462273836, -0.051676541566848755, -0.01047773938626051], "f0d8f067-0996-400a-9679-3f8393fc11ff": [0.04743851348757744, -0.032326847314834595, -0.013423961587250233, 0.03757882118225098, -0.04229819029569626, -0.007109891157597303, 0.020868290215730667, 0.004288776312023401, -0.02534409984946251, 0.007630897685885429, -0.03290720283985138, -0.0006261775852181017, 0.02114112116396427, 0.07322070747613907, -0.015970338135957718, -0.04880327731370926, 0.008544104173779488, -0.03289182856678963, -0.03502751514315605, -0.01787184551358223, 0.043815918266773224, 0.0024968052748590708, -0.049928005784749985, 0.029552137479186058, -0.010268335230648518, -0.026951538398861885, -0.011274865828454494, 0.0023811007849872112, 0.07011234760284424, 0.06681930273771286, -0.0006139239412732422, 0.010252228006720543, -0.017805980518460274, 0.06947220116853714, 2.2979431832936825e-06, 0.04172773286700249, -0.01950160600244999, 0.01238530408591032, 0.01277290191501379, -0.0173010416328907, -0.0022325620520859957, 0.05583428218960762, -0.020200377330183983, 0.028028454631567, -0.04546568542718887, 0.02435232885181904, 0.06540747731924057, -0.07268825173377991, 0.03218246251344681, 0.006689952686429024, 0.010613852180540562, 0.0654183104634285, -0.016274206340312958, -0.0018476294353604317, 0.05094069242477417, -0.06046309322118759, -0.042284440249204636, 0.056705545634031296, 0.080538310110569, 0.04197230190038681, 0.005578634329140186, -0.005367342382669449, 0.012594047002494335, -0.037446342408657074, 0.04761053994297981, 0.05778297409415245, -0.010163197293877602, -0.04846232384443283, -0.01583069935441017, -0.01214397232979536, 0.10809286683797836, -0.004460228607058525, -0.01303014624863863, 0.07538303732872009, 0.013506939634680748, 0.08886808902025223, 0.008609415963292122, 0.00016962407971732318, -0.029000578448176384, 0.035129256546497345, -0.05103209614753723, -0.014044411480426788, -0.05021444335579872, -0.0023376380559056997, 0.05635695159435272, -0.018100328743457794, 0.0057968869805336, -0.0027177759911864996, -0.011300614103674889, 0.01310514472424984, -0.0021625240333378315, 0.018229389563202858, -0.008057578466832638, 0.02340739592909813, 0.034823983907699585, -0.029243100434541702, 0.03354797884821892, -0.007388825993984938, -0.0024162086192518473, 0.09949689358472824, 0.015086553059518337, 0.02712102048099041, -0.007102440111339092, 0.05270203575491905, 0.029020696878433228, 0.011254888027906418, 0.01542839128524065, 0.009228135459125042, 0.008644815534353256, -0.008371260948479176, -0.07289379090070724, 0.006796995643526316, -0.010750791989266872, 0.053543541580438614, -0.007849426940083504, -0.029950641095638275, -0.017762411385774612, 0.03621334955096245, -0.010328446514904499, 0.044889889657497406, 0.018551301211118698, 0.02688426710665226, -0.0569903627038002, -0.012466337531805038, -0.0334709957242012, -0.04398036003112793, -0.007936299778521061, -0.041105590760707855, -0.02643209509551525, -0.06676507741212845, 0.0014009475708007812, -0.01813027262687683, -0.027612067759037018, -0.034349892288446426, -0.016675245016813278, 0.008356968872249126, -0.028560535982251167, 0.008312782272696495, 0.01731208525598049, -0.021065806970000267, 0.003949168603867292, 0.005434855818748474, 0.0059167155995965, 0.019468778744339943, 0.006611897610127926, -0.049575988203287125, -0.006710496731102467, 0.004642745014280081, 0.005007528234273195, 0.009047807194292545, 0.018306506797671318, 0.046999361366033554, -0.030342785641551018, 0.008469699881970882, 0.016749940812587738, 0.05935891345143318, -0.025961782783269882, -0.008674701675772667, -0.009042251855134964, -0.007470327895134687, -0.00339968572370708, 0.0602063350379467, 0.023855838924646378, 0.011133859865367413, 0.010129868052899837, -0.05517367273569107, 0.04209642857313156, 0.016192704439163208, 0.05591031536459923, 0.01309362705796957, -0.014489858411252499, 0.07221285998821259, -0.012943004257977009, 0.03044830821454525, 0.010026130825281143, 0.004028624854981899, 0.05679861828684807, 0.05930597335100174, -0.011292852461338043, 0.019910916686058044, 0.008814224973320961, -0.08360642939805984, 0.0023169564083218575, 0.027643153443932533, 0.03123534470796585, 0.016821060329675674, 0.0027160882018506527, 0.06584955751895905, -0.021475495770573616, 0.0006779922405257821, 0.014582476578652859, -0.0014826800907030702, -0.03106888011097908, -0.02545652724802494, 0.024008406326174736, -0.03233692795038223, 0.01010485552251339, -0.11586086452007294, -0.018785877153277397, -0.006055059842765331, 0.024525891989469528, -0.07951397448778152, 0.008348917588591576, 0.0744825154542923, 0.05724513530731201, -0.04820385202765465, -0.023128464818000793, -0.029117194935679436, -0.0016301939031109214, 0.046599891036748886, 0.06032619997859001, -0.019019940868020058, -0.047274135053157806, -0.01077544316649437, -0.005181151442229748, 0.007124245632439852, -0.03924794867634773, 0.022343244403600693, 0.016879500821232796, 0.0576588399708271, -0.05539828538894653, -0.018808338791131973, 0.02235252410173416, 0.011123760603368282, -0.013212712481617928, 0.03157014027237892, -0.01219308003783226, 0.006527287419885397, 0.01038037333637476, 0.07619736343622208, -0.04220558702945709, 0.023013044148683548, 0.030321607366204262, 0.006477744784206152, 0.020858237519860268, 0.038051899522542953, 0.002445759018883109, 0.02262958325445652, 0.05948691815137863, -0.0949113741517067, -0.0022350086364895105, 0.07193560153245926, 0.02070211060345173, 0.03546663001179695, 0.0190040934830904, 0.03525350242853165, 0.09560244530439377, 0.004136316478252411, -0.03341856971383095, 0.010864774696528912, -0.015596495941281319, -0.015531523153185844, -0.011343849822878838, 0.03254256770014763, 0.004602417349815369, 0.010372081771492958, -0.12542660534381866, 0.018920695409178734, -0.022851895540952682, 0.03179323673248291, -0.017318516969680786, 0.0007755749975331128, -0.015006894245743752, 0.011143491603434086, 0.011637735180556774, -0.026850642636418343, -0.018806111067533493, -0.0006041128071956336, -0.03780509531497955, -0.012919805943965912, 0.03197386860847473, 0.017946522682905197, -0.025746161118149757, -0.011394795961678028, -0.019527578726410866, -0.0029912146274000406, -0.00051848404109478, -0.0200781412422657, -0.03832510858774185, 0.0223515797406435, 0.04337438941001892, 0.017825419083237648, 0.011237856931984425, -4.72142273792997e-05, 0.006463033612817526, 0.0387975238263607, 0.06591042131185532, -0.0599997416138649, -0.045966796576976776, -0.019683878868818283, 0.0027158199809491634, -0.032012082636356354, 0.013049084693193436, -0.036634355783462524, -0.0118693383410573, 0.01936384290456772, 0.07931358367204666, 0.003189199138432741, -0.025944756343960762, 0.03918354958295822, -0.019198566675186157, -0.010882833041250706, -0.02070479467511177, 0.018524372950196266, -0.0001899958442663774, -0.03739636018872261, 0.018610477447509766, -0.030922191217541695, -0.00527555588632822, -0.02243676595389843, -0.05376214534044266, 0.022035347297787666, -0.012595688924193382, 0.041529081761837006, 0.023949921131134033, 0.010910292156040668, -0.045166078954935074, -0.06475476920604706, 0.024995869025588036, -0.01917402446269989, -0.03197312727570534, -0.020342107862234116, 0.0047263349406421185, -0.039156410843133926, -0.04816117137670517, -0.11164785921573639, -0.020817114040255547, -0.006897251587361097, 0.09883174300193787, -0.049341361969709396, 0.025925470516085625, -0.0066861617378890514, 0.0010280520655214787, 0.015057308599352837, -0.05510099232196808, 0.010892819613218307, 0.02150535397231579, -0.05038854107260704, -0.04283367469906807, -0.00642097694799304, -0.023809973150491714, 0.043789684772491455, -0.03226751834154129, 0.05372002348303795, -0.004650454968214035, -0.00622711144387722, 0.004474699031561613, -0.024397240951657295, 0.0016714957309886813, 0.009748741053044796, 0.04484778270125389, 0.01447911374270916, 0.04451845586299896, -0.026365555822849274, 0.029394764453172684, -0.05408034473657608, -0.05054516717791557, 0.006129254121333361, -0.00865920353680849, 0.01031162217259407, -0.009575455449521542, 0.042903777211904526, -0.004465616308152676, -0.06337065249681473, 0.00989760272204876, -0.09969917684793472, 0.034635622054338455, -0.028739992529153824, 0.03683854639530182, 0.0593135766685009, 0.030112067237496376, 0.025381432846188545, -0.08038941770792007, 0.0006791434716433287, 0.02281382493674755, -0.06769179552793503, -0.011123983189463615, -0.05964867025613785, 0.09420368075370789, -0.01773194968700409, 0.0029902474489063025, -0.07614684849977493, 0.06020976975560188, 0.0007430788828060031, 0.01814224384725094, -0.040286675095558167, -0.0266430526971817, 0.0010035759769380093, -0.002125237602740526, 0.029293106868863106, -0.01593989133834839, -0.06215805932879448, -0.03915540501475334, 0.025898169726133347, 0.006250677164644003, 0.011781877838075161, 0.018570709973573685, -0.015988700091838837, -0.001094345236197114, 0.055438216775655746, 0.037651579827070236, -0.09282872080802917, -1.315421650360804e-05, -0.006758349947631359, -0.03392646834254265, 0.048785869032144547, 0.030088359490036964, 0.0032124577555805445, 0.01604643277823925, -0.0715470239520073, 0.04751861095428467, 0.037652403116226196, 0.05826880410313606, -0.02558242343366146, 0.03098459169268608, -0.055385515093803406, -0.002679771976545453, 0.019531510770320892, 0.06866859644651413, -0.05625518038868904, 0.016163302585482597, 0.014906670898199081, 0.04052860289812088, -0.03262195736169815, 0.012212484143674374, -0.006661832798272371, 0.03757890313863754, 0.04213186353445053, 0.04491027817130089, -0.018698489293456078, 0.024289507418870926, 0.015236591920256615, -0.011693966574966908, 0.08062884956598282, -0.01695822924375534, -0.03708679601550102, -0.07132497429847717, 0.037091076374053955, -0.013043207116425037, -0.0291152186691761, -0.018348202109336853, 0.06263018399477005, 0.002364275511354208, -0.01951528713107109, -0.042390674352645874, -0.011387328617274761, 0.027299854904413223, -0.030609792098402977, 0.008828670717775822, -0.07122816145420074, 0.028605084866285324, -0.018810903653502464, -0.08137766271829605, -0.0800483450293541, -0.04294882342219353, -0.018065035343170166, -0.10235259681940079, -0.006564682815223932, 0.0034590817522257566, 0.051833536475896835, 0.01115974597632885, 0.033725082874298096, 0.03869767114520073, 0.010700475424528122, 0.052532508969306946, 0.01108977384865284, -0.029853515326976776, -0.07452240586280823, 0.0013871487462893128, -0.01799836754798889, 0.019535064697265625, -0.0185114536434412, -0.02086779661476612, 0.015578970313072205, -0.016953151673078537, 0.01849808357656002, 0.0008575471583753824, 0.033712033182382584, 0.013114872388541698, 0.009372152388095856, -0.02099045366048813, -0.01620212011039257, 0.01134535763412714, 0.03513280302286148, -0.01396096870303154, 0.0237512718886137, 0.02479611150920391, 0.04300187528133392, -0.03219550848007202, -0.05824143439531326, 0.023593546822667122, -0.06192527711391449, 0.008645113557577133, -0.0069316355511546135, -0.02552705444395542, 0.04301278293132782, -0.03636515140533447, 0.05360472574830055, 0.013192055746912956, 0.03580659255385399, 0.016358066350221634, -0.015687676146626472, 0.009667527861893177, 0.012787342071533203, -0.04659738391637802, 0.015926213935017586, 0.0007882264326326549, 0.04434809461236, 0.018201595172286034, -0.03645278140902519, 0.060245756059885025, 0.017076000571250916, -0.0378391295671463, -0.10058433562517166, 0.01640739105641842, 0.015312578529119492, 0.007669363170862198, 0.11355949193239212, -0.06136760860681534, -0.06394792348146439, 0.023740902543067932, 0.011049915105104446, 0.027925146743655205, -0.036503251641988754, 0.04038158059120178, 0.007023465819656849, -0.009735243394970894, -0.008533641695976257, -0.0032918527722358704, 0.03488989546895027, -0.07144042104482651, -0.021006958559155464, 0.05757174268364906, -0.007832441478967667, -0.017141075804829597, -0.02297808788716793, 0.02414090558886528, 0.00240100035443902, 0.00026797971804626286, -0.0008076970698311925, -0.0022958540357649326, -0.021080968901515007, 0.03779708594083786, 0.006222042720764875, -0.041937947273254395, -0.04538695886731148, 0.03767762705683708, 0.031065169721841812, 0.026284627616405487, 0.004510862287133932, 0.008619902655482292, 0.020956089720129967, 0.03298996388912201, 0.023880211636424065, 0.007981427945196629, -6.02967182392003e-33, 0.024570103734731674, -0.03269442170858383, 0.029893526807427406, 0.04445897042751312, -0.033761244267225266, -0.02530418522655964, 0.029311522841453552, -0.003424979979172349, -0.043940551578998566, -0.0032963124103844166, 0.008538683876395226, 0.02826714515686035, 0.018191317096352577, -0.01893717609345913, -0.011929175816476345, -0.03285045176744461, 0.01888098753988743, -0.007301616482436657, 0.027792396023869514, 0.014142862521111965, -0.06756924092769623, 0.029761219397187233, -0.021483002230525017, -0.0035577532835304737, 0.01804313063621521, -0.006979380734264851, 0.007602549623697996, 0.025479067116975784, 0.02449549175798893, 0.009813754819333553, -0.015370710752904415, -0.012893417850136757, -0.0015427275793626904, -0.0226958729326725, 0.0026014766190201044, 0.06911378353834152, -0.09695148468017578, 0.003064867341890931, -0.013940371572971344, -0.022638389840722084, 0.014699078164994717, -0.02451932802796364, 0.027190711349248886, -0.01958448626101017, 0.003186298767104745, 0.01625637337565422, 0.00851461011916399, 0.01886484958231449, -0.015295790508389473, 0.029807765036821365, -0.023879680782556534, -0.009354512207210064, -0.05069446191191673, 0.011396590620279312, 0.000781572365667671, -0.06253471225500107, 0.0386786162853241, -0.05853879451751709, -0.03956376761198044, 0.021444011479616165, -0.045769013464450836, 0.03678305819630623, 0.05878443270921707, -0.029011284932494164, -0.008235253393650055, 0.010969671420753002, -0.047582175582647324, 0.06673232465982437, 0.0033476196695119143, 0.01124882884323597, -0.03331282362341881, 0.047736600041389465, 0.0039015673100948334, -0.018806567415595055, -0.02783745713531971, 0.018696729093790054, -0.029017945751547813, 0.020185263827443123, 0.055104322731494904, 0.0303844902664423, -0.016232101246714592, -0.00402170279994607, -0.04389004781842232, 0.010638494975864887, -0.0018729683943092823, 0.05001238361001015, -0.03308780491352081, -0.02328796684741974, -0.0373150110244751, 0.024214137345552444, -0.008422324433922768, 0.0032850869465619326, -0.01135256141424179, -0.0022393858525902033, 0.0648530051112175, -0.050310809165239334, 0.03658765181899071, -0.004966618027538061, -0.022705132141709328, -0.015533111058175564, -0.07713977247476578, -0.012608383782207966, -0.02231898345053196, 0.05580122023820877, 0.01517490204423666, -0.00592450425028801, 0.0018503942992538214, 0.015542147681117058, -0.03597133606672287, 0.03232167661190033, -0.028604475781321526, 0.056543491780757904, -0.010086335241794586, -0.03140753135085106, -0.011948147788643837, -0.010909994132816792, -0.004123548045754433, -0.024980340152978897, -0.017072336748242378, 0.004727762192487717, -0.012045210227370262, 0.02869780920445919, -0.04424739256501198, -0.0753239095211029, -0.039010919630527496, -0.01514129526913166, 0.01107404101639986, 0.03191647306084633, 0.08321640640497208, 0.030824866145849228, -0.003201395506039262, -0.05120475962758064, 2.9233817144813656e-07, 0.015576569363474846, 0.035703279078006744, 0.028929593041539192, -0.017917828634381294, 0.0012150980764999986, -0.08578795939683914, 0.011998322792351246, 0.05741763114929199, 0.011122576892375946, 0.013720864430069923, 0.0017321762861683965, 0.03860224783420563, -0.008625038899481297, 0.005858371499925852, -0.014679500833153725, -0.12361638993024826, -0.08758679032325745, -0.023537034168839455, -0.026762811467051506, 0.012112407013773918, 0.008349504321813583, -0.012975539080798626, 0.031136993318796158, 0.003982775378972292, -0.015683351084589958, -0.04344647750258446, -0.002204460557550192, -0.04029834643006325, 0.01167385559529066, 0.05379903316497803, 0.029100241139531136, -0.026963986456394196, -0.011995184235274792, -0.004649483133107424, 0.04034072160720825, -0.04751177504658699, -0.047094978392124176, -0.010098417289555073, 0.02654721587896347, 0.03624329715967178, -0.02435167506337166, -0.027179598808288574, -0.015068280510604382, 0.04167349264025688, 0.015423208475112915, -0.038060713559389114, -0.00047811405966058373, 0.07339873909950256, 0.00069740682374686, -0.06726879626512527, -0.010323548689484596, 0.017298270016908646, 0.07163060456514359, 0.000602579559199512, 0.0157211534678936, -0.015302052721381187, -0.012946211732923985, -0.017591215670108795, 0.01617700420320034, -0.0791696161031723, -0.0455305390059948, -0.08730114996433258, -0.012932331301271915, -0.05526721477508545, -0.04174019768834114, -0.008236304856836796, -0.0066878474317491055, 2.7598274735704898e-34, -0.008509272709488869, -0.035972971469163895, -0.050601959228515625, 0.03524855524301529, 0.005080820061266422, -0.010310836136341095, 0.02336546778678894, -0.020791932940483093, -0.01040161307901144, -0.00936900544911623, -0.022921375930309296], "ddf0d0fa-a27a-4231-966b-2d71c5f40d99": [0.04431937262415886, 0.05328637734055519, -0.0017763507785275578, 0.013776183128356934, -0.07623784989118576, -0.004879919812083244, 0.00833694264292717, -0.004459399729967117, -0.07379094511270523, -0.009304176084697247, -0.047725871205329895, 0.030239105224609375, -0.0010179628152400255, 0.030763907358050346, -0.03823336586356163, 0.026817431673407555, 0.015400011092424393, -0.02470976673066616, -0.006821863353252411, 0.006324982736259699, 0.05875752121210098, 0.010466448962688446, -0.025551076978445053, 0.01735931634902954, -0.026288118213415146, -0.02372058294713497, -0.010631839744746685, 0.01032701414078474, 0.033334411680698395, -0.0028198519721627235, -0.0007599425734952092, 0.045646268874406815, -0.04099815711379051, 0.05958220362663269, 2.8283889150770847e-06, 0.013262811116874218, -0.0174713097512722, 0.012049791403114796, -0.009799838066101074, 0.030096320435404778, -0.013935270719230175, 0.00934597197920084, -0.002605180721729994, -0.006463908590376377, -0.017288994044065475, 0.00830766186118126, 0.00808902271091938, 0.0029918306972831488, -0.0007201323169283569, 0.02378244325518608, 0.025998800992965698, 0.07604256272315979, -0.04173135384917259, -0.031622711569070816, 0.101744644343853, -0.041313305497169495, -0.04065878316760063, 0.06358124315738678, 0.03290562331676483, 0.06083616614341736, 0.02244056947529316, 0.010702838189899921, -0.022971585392951965, -0.03775344789028168, 0.07852079719305038, 0.032932765781879425, 0.0232174564152956, -0.035414181649684906, -0.0069129327312111855, -0.03945843130350113, 0.07256428152322769, -0.009979743510484695, 0.012006728909909725, 0.013060720637440681, -0.016225667670369148, 0.044829610735177994, 0.004613843746483326, -0.012449899688363075, -0.02446066029369831, 0.00936721358448267, -0.041693270206451416, -0.003467457601800561, -0.005565457511693239, -0.013697534799575806, 0.09163670986890793, -0.026574213057756424, -0.03558306023478508, -0.010838665999472141, 0.007478478830307722, 0.03396040201187134, 0.06139534339308739, -0.04143800586462021, -0.047015901654958725, 0.021695714443922043, 0.03211449086666107, -0.04240506887435913, 0.022124191746115685, 0.01220783218741417, 0.05652335658669472, 0.14404889941215515, -0.02106892317533493, 0.00880857091397047, -0.02616378851234913, 0.045974455773830414, 0.007089476101100445, 0.029185589402914047, 0.026913100853562355, 0.036333564668893814, 0.010121451690793037, 0.010139244608581066, -0.029564712196588516, -0.000908195273950696, -0.014569415710866451, 0.02548135258257389, 0.0033747528214007616, -0.010553763248026371, 0.0269265566021204, 0.024566996842622757, 0.013477652333676815, 0.07303109019994736, 0.049290191382169724, 0.016948280856013298, -0.018478604033589363, -0.006301660556346178, -0.023387771099805832, -0.08969767391681671, -0.04239631071686745, -0.001783335697837174, -0.01408994011580944, 0.04670226573944092, -0.04019714146852493, -0.02053592912852764, 0.0036046775057911873, -0.030946819111704826, 0.011268778704106808, 0.029249073937535286, 0.030841393396258354, -0.024531306698918343, 0.025183001533150673, -0.008132440969347954, 0.0016352779930457473, 0.031617723405361176, -0.011662459000945091, -0.009294150397181511, -0.015630537644028664, -0.04852006956934929, -0.01667475886642933, 0.03806747868657112, -0.00153396709356457, -0.005862154066562653, 0.00906323827803135, 0.017071889713406563, -0.04856445640325546, 0.022578613832592964, -0.03723679110407829, 0.04396985471248627, -0.014595977030694485, -0.012170186266303062, -0.041315410286188126, -0.005715399049222469, 0.041050199419260025, 0.053779590874910355, 0.047194451093673706, 0.0019631055183708668, -0.010989348404109478, -0.009395765140652657, 0.12321610003709793, 0.010967780835926533, 0.03184885531663895, -0.021274549886584282, -0.02352161519229412, 0.05636269971728325, -0.020309224724769592, 0.01316206157207489, -0.01124141737818718, 0.05719051510095596, 0.026116585358977318, 0.006322584114968777, -0.026470685377717018, 0.017424212768673897, -0.023523658514022827, -0.0519346185028553, 0.007047558203339577, 0.03661166504025459, 0.004079943988472223, -0.03242383524775505, -0.0769478976726532, 0.05278237536549568, -0.013814261183142662, -0.0018781137187033892, -0.022727079689502716, -0.018538864329457283, -0.04534321278333664, -0.015363859012722969, -0.008209023624658585, 0.014731468632817268, -0.004657745361328125, -0.11344059556722641, -0.01601509377360344, -0.014340840280056, 0.005274615716189146, -0.032590195536613464, 0.09507499635219574, 0.022671179845929146, 0.03588450327515602, -0.04199372977018356, -0.019178342074155807, -0.019670380279421806, 0.0003293815825600177, -0.05042552202939987, 0.07624369114637375, -0.017831362783908844, -0.022113751620054245, -0.0032950262539088726, -0.05560271814465523, -0.044864725321531296, 0.00036878176615573466, 0.02909035049378872, 0.009762578643858433, 0.04850682243704796, -0.03418555483222008, 0.009237004444003105, -0.0025155849289149046, 0.029715953394770622, 0.04678787291049957, 0.017541922628879547, -0.024541378021240234, 0.005584641359746456, 0.0074921357445418835, 0.05574146658182144, -0.013048762455582619, 0.024548852816224098, 0.04721459746360779, 0.01038974616676569, -0.011272687464952469, 0.03810315951704979, 0.09556319564580917, 0.0041807726956903934, -0.01468135230243206, -0.08382664620876312, -5.196329584578052e-05, -0.01532627921551466, 0.003061561146751046, 0.022851761430501938, 0.006550562102347612, 0.014894130639731884, 0.05035167932510376, 0.0061634439043700695, -0.047377653419971466, -0.043129537254571915, -0.009639201685786247, 0.0009331238688901067, -0.013366659171879292, 0.04663820192217827, 0.0009797131642699242, -0.02295345813035965, -0.09069248288869858, 0.03860572725534439, 0.006477914284914732, -0.013008815236389637, -0.003234617877751589, -0.01777983456850052, -0.018121225759387016, 0.022037649527192116, 0.05602177977561951, -0.03912239149212837, -0.039774131029844284, -0.01642196998000145, -0.0482095405459404, -0.017830871045589447, 0.04210083931684494, -0.017988353967666626, 0.0013252809876576066, 0.003703849855810404, -0.0019218312809243798, 0.02015242539346218, -0.01840715855360031, 0.02738254889845848, -0.031534284353256226, 0.03283315896987915, 0.030357858166098595, -0.0012767487205564976, 0.00769868353381753, 0.031053243204951286, 0.013489814475178719, 0.04630010947585106, 0.07632213830947876, -0.021070610731840134, -0.06605296581983566, -0.025434652343392372, -0.006942710839211941, -0.04092048481106758, 0.04039904102683067, -0.03233659639954567, -0.008270105347037315, 0.016931001096963882, 0.04975176975131035, -0.015046712011098862, -0.028283778578042984, 0.056943804025650024, -0.018456075340509415, -0.021846607327461243, -0.020031694322824478, -0.020248474553227425, 0.08918802440166473, -0.01775241829454899, 0.03460698947310448, -0.0032005759421736, 0.061668768525123596, -0.04682137444615364, -0.019646821543574333, -0.015288068912923336, -0.03285747393965721, 0.02317574806511402, -0.007278995588421822, 0.012051778845489025, -0.00651447381824255, -0.13931941986083984, 0.015415300615131855, 0.006551634054630995, -0.015313267707824707, -0.013178646564483643, -0.003084394382312894, -0.055777132511138916, -0.043042607605457306, -0.04601002484560013, 0.02086855284869671, -0.02736145257949829, 0.08580989390611649, -0.0258485134691, -0.0014057919615879655, -0.0069266255013644695, 0.003324426244944334, 0.048622552305459976, -0.048550352454185486, 0.002218336332589388, 0.009348428808152676, -0.07257669419050217, -0.013171291910111904, -0.020386485382914543, -0.007564073894172907, 0.028186669573187828, -0.0204180758446455, 0.012263953685760498, -0.03678392246365547, -0.0350983701646328, 0.008619843982160091, 0.05297961086034775, -0.016062850132584572, 0.033302195370197296, 0.005104605108499527, 0.004703668877482414, 0.040088336914777756, -0.025569584220647812, 0.031853578984737396, -0.06202458590269089, -0.079144187271595, -0.08228000998497009, -0.004570291843265295, -0.017110154032707214, -0.04676997289061546, 0.032846346497535706, 0.07284455746412277, 0.021771147847175598, 0.009305926971137524, -0.06175393983721733, 0.02339586615562439, 0.020886916667222977, 0.0032740358728915453, 0.0037337124813348055, -0.025699187070131302, -0.008970791473984718, -0.049949344247579575, 0.020046908408403397, 0.03460969403386116, -0.09116032719612122, 0.016629232093691826, -0.05299853906035423, 0.024438180029392242, -0.0031572114676237106, 0.004360211547464132, -0.11355812102556229, 0.028538985177874565, 0.00021344680862966925, 0.0021721080411225557, -0.04867411404848099, -0.03024538792669773, -0.011206306517124176, 0.07372316718101501, 0.020262010395526886, -0.008892395533621311, -0.05643065646290779, -0.03978055343031883, 0.011003613471984863, -0.01314772479236126, -0.04001878574490547, -0.0646907165646553, -0.006680586840957403, 0.02280714549124241, 0.02125352993607521, 0.004323803354054689, -0.0608186274766922, 0.004967539105564356, 0.050205592066049576, -0.03127038851380348, 0.044442545622587204, 0.09111510217189789, 0.0030125314369797707, 0.05258185788989067, -0.019503269344568253, 0.040330369025468826, -0.0025342563167214394, 0.04073268920183182, 0.0009536311845295131, 0.07474516332149506, -0.061268821358680725, 0.02038358896970749, 0.05615144968032837, 0.02575557306408882, -0.08188937604427338, -0.0003886017366312444, -0.0012640468776226044, 0.02395491674542427, -0.054940346628427505, -0.024059344083070755, -0.015015128999948502, 0.009845096617937088, 0.02063097432255745, 0.04721919447183609, -0.0007878276519477367, 0.02208474650979042, 0.05224038287997246, 0.014405726455152035, 0.04445544257760048, -0.043283186852931976, 0.028703290969133377, -0.02366161160171032, -0.010134079493582249, 0.016297612339258194, -0.03294318914413452, -0.05785362794995308, 0.016612393781542778, 0.02689763903617859, 0.0019397452706471086, -0.03809394687414169, -0.03815321624279022, 0.005244260188192129, 0.023107366636395454, 0.009076596237719059, -0.022473998367786407, 0.03666706010699272, 0.005490130744874477, -0.0595255084335804, -0.046625759452581406, -0.005847716238349676, 0.0028020674362778664, -0.047128066420555115, -0.06872773915529251, 0.04077660292387009, 0.0023333728313446045, -0.015373836271464825, 0.042434703558683395, 0.02556152455508709, -0.021240996196866035, 0.04080783203244209, -0.04231343790888786, -0.09481897205114365, -0.05075573921203613, -0.026249894872307777, -0.016511553898453712, 0.03695110231637955, -0.002550572156906128, -0.027543503791093826, -0.02744768187403679, -0.026805706322193146, -0.019299326464533806, -0.06250045448541641, 0.02605280466377735, -0.0038833492435514927, -0.02021462470293045, 0.008144786581397057, 0.012159038335084915, 0.04264741763472557, 0.0037479118909686804, 0.002436606679111719, 0.02553456462919712, 0.05119827762246132, -0.0037130764685571194, -0.025514645501971245, -0.026473330333828926, 0.02142403833568096, -0.08117686957120895, -0.02715098299086094, 0.0681077167391777, -0.03173413127660751, 0.04596320912241936, -0.04113880172371864, 0.02017674222588539, 0.09196628630161285, 0.0009245970868505538, 0.016757283359766006, -0.034637387841939926, -0.012061484158039093, 0.01493211928755045, -0.04745218902826309, -0.025648828595876694, -0.033649247139692307, 0.002763019874691963, -0.007084048818796873, -0.004996711388230324, 0.033490464091300964, -0.001792200026102364, -0.07766455411911011, -0.02058982104063034, 0.02179701253771782, 0.010190324857831001, -0.0017716182628646493, 0.05493016541004181, 0.016557054594159126, -0.03372328355908394, 0.026948222890496254, 0.00029980484396219254, 0.04352002590894699, -0.041267674416303635, -0.010891193524003029, -0.009359520860016346, 0.007699606474488974, -0.010403911583125591, -0.04164397716522217, 0.042075030505657196, -0.0892241895198822, -0.013105521909892559, -0.048889536410570145, -0.022644702345132828, -0.03138914704322815, 0.01960945688188076, 0.047732897102832794, 0.0001486175460740924, -0.02124890871345997, -0.046239256858825684, 0.0001943922834470868, 0.008563135750591755, 0.02202187106013298, 0.02143936976790428, -0.014904148876667023, 0.020816966891288757, 0.024525277316570282, 0.06522920727729797, -0.004095399286597967, -0.036187589168548584, 0.02749466523528099, -0.02493925951421261, 0.025747083127498627, -0.006914948113262653, 0.007925489917397499, -6.839052581706962e-33, 0.027234185487031937, -0.08462151139974594, 0.004534554202109575, 0.0325181782245636, -0.05628962814807892, -0.01738455519080162, 0.00874211173504591, -0.010797855444252491, -0.020681001245975494, -0.018058527261018753, -0.013541684485971928, 0.0328073725104332, 0.019413229078054428, -0.050825413316488266, 0.08149310946464539, 0.01995016448199749, 0.020398853346705437, -0.027305835857987404, 0.014435170218348503, 0.015457555651664734, -0.06736606359481812, 0.016171744093298912, 0.0062321946024894714, 0.04940858110785484, 0.015135806985199451, 0.017570428550243378, 0.008501113392412663, 0.019695507362484932, 0.003696025349199772, -0.019853221252560616, -0.004167895298451185, -0.034372057765722275, 0.0027856221422553062, 0.032069139182567596, 0.03232051432132721, -0.029594482854008675, -0.02451772429049015, -0.009281373582780361, 0.006890405900776386, -0.0006789606995880604, 0.037032004445791245, -0.002975373761728406, 0.04341883584856987, 0.0070585529319942, 0.01992744579911232, 0.022646300494670868, -0.006360988132655621, 0.015594086609780788, -0.022757548838853836, -0.0011905728606507182, -0.020447641611099243, -0.009327982552349567, -0.04428019002079964, 0.02833186462521553, 0.02190176025032997, 0.023287244141101837, 0.05685548856854439, -0.01138094998896122, 0.003031293163076043, 0.02464032731950283, -0.02000408247113228, 0.005549788475036621, 0.024917125701904297, -0.02355431579053402, 0.0004954214673489332, -0.020381199195981026, -0.06782548129558563, 0.0014344833325594664, 0.005573478061705828, 0.01579398103058338, 0.013682733289897442, 0.03049096278846264, 0.021635988727211952, 0.037265170365571976, -0.054850805550813675, -0.0005852835602127016, -0.019806131720542908, 0.04584268480539322, 0.06511879712343216, 0.06899216026067734, 0.04278956726193428, 0.008982912637293339, -0.04634945094585419, 0.012702416628599167, 0.007470529060810804, -0.020292066037654877, -0.032332632690668106, 0.011106415651738644, -0.04076334834098816, 0.03421102836728096, 0.0008792016888037324, 0.030350886285305023, -0.02256385236978531, -0.01770300418138504, 0.10296041518449783, 0.054512444883584976, -0.013494298793375492, -0.022331148386001587, -0.021757960319519043, -0.05511299520730972, -0.04021638631820679, 0.03563612699508667, 0.03544757887721062, 0.030329233035445213, 0.0663599818944931, -0.0314619317650795, 0.004502744879573584, 0.003937260713428259, -0.04201130196452141, 0.017763130366802216, -0.011602038517594337, 0.043819304555654526, -0.013681733049452305, -0.03833191469311714, -0.02316245622932911, -0.0032940427772700787, 0.008861935697495937, -0.03027578815817833, -0.012437880039215088, 0.02185574173927307, -0.06084828823804855, 0.054565105587244034, -0.034389980137348175, -0.029972663149237633, -0.024051155894994736, -0.013471793383359909, 0.03895772248506546, -0.0041325693018734455, 0.08920049667358398, 0.024627070873975754, -0.022135788574814796, -0.02178683876991272, 3.5847619983542245e-07, -0.0051911622285842896, 0.04113714396953583, -0.009381706826388836, -0.04747970774769783, 0.009771434590220451, -0.03117484413087368, -0.03444850072264671, 0.0512385368347168, -0.039166245609521866, -0.02655666694045067, 0.017491525039076805, -0.013657595962285995, 0.009222209453582764, 0.059387076646089554, 0.017725598067045212, -0.1114303395152092, -0.09203688055276871, -0.03117525950074196, -0.03126547485589981, -0.0069810389541089535, -0.015395893715322018, -0.023659653961658478, 0.043174419552087784, -0.011362952180206776, -0.013293745927512646, -0.019717276096343994, 0.004006522707641125, 0.0010904421797022223, -0.0009160994668491185, 0.05052119120955467, 0.08250462263822556, -0.05832948535680771, -0.0030006086453795433, 0.034361179918050766, 0.031385388225317, -0.037106916308403015, -0.04216878488659859, -0.03742559254169464, 0.0328197181224823, -0.012217092327773571, -0.027215708047151566, -0.01759716123342514, -0.01923236809670925, -0.021237941458821297, 0.017218073830008507, 0.020559825003147125, 0.041108764708042145, 0.05794816464185715, 0.043744541704654694, -0.04766319319605827, 0.04061637073755264, 0.042233847081661224, 0.04058687761425972, 0.0008582438458688557, 0.02095971442759037, -0.022713474929332733, -0.024228576570749283, -0.02983452007174492, 0.01600005105137825, -0.05421511083841324, -0.046302784234285355, -0.037924643605947495, 0.031793419271707535, -0.019625766202807426, -0.04638991877436638, -0.06450262665748596, 0.040811486542224884, 3.1473289567303165e-34, -0.013740796595811844, -0.06089937686920166, -0.046364765614271164, -0.022007377818226814, -0.0016987251583486795, -0.006168704479932785, -0.007158637046813965, -0.027508817613124847, -0.033844463527202606, 0.006186850368976593, -0.03628474846482277], "5aadd0c8-686f-46f2-8311-14f79994b627": [0.07624155282974243, -0.019689347594976425, -0.009569155052304268, -0.020755384117364883, -0.03113124892115593, -0.003165082773193717, 0.0031641442328691483, -0.033603813499212265, -0.07249109447002411, 0.0006864001625217497, -0.010613981634378433, -0.02063908241689205, 0.010257679037749767, 0.05842795968055725, -0.039247918874025345, -0.062143031507730484, 0.0018416860839352012, -0.05972282588481903, -0.02136613428592682, 0.005795649718493223, 0.04736849665641785, 0.004043341148644686, -0.04748714715242386, 0.036931686103343964, -0.051060035824775696, -0.03459411486983299, -0.008981137536466122, 0.028125548735260963, 0.04974058270454407, 0.017813123762607574, 0.0075669423677027225, -0.0007159582455642521, 0.019508320838212967, 0.0012805763399228454, 2.55484724220878e-06, 0.010585373267531395, -0.02462906576693058, 0.0019509646808728576, -0.004855098202824593, -0.020020077005028725, -0.025051089003682137, 0.037338513880968094, 0.0331084169447422, 0.017970534041523933, -0.04714971035718918, 0.010988657362759113, 0.036353737115859985, -0.03225361183285713, 0.00037954593426547945, -0.013591764494776726, 0.014728807844221592, 0.059080783277750015, -0.0456351712346077, -0.03145475685596466, 0.08959841728210449, -0.08352541923522949, -0.006144852843135595, 0.01163323875516653, 0.0316757932305336, 0.030437355861067772, -0.008587571792304516, -0.011841555126011372, 0.007677260786294937, 0.017595766112208366, 0.08825880289077759, 0.06392040848731995, 0.005430768709629774, -0.047387730330228806, -0.01989014632999897, -0.026214752346277237, 0.1001434251666069, 0.04029224067926407, 0.02181197889149189, 0.022655535489320755, 0.015215224586427212, 0.07159882038831711, 0.013635153882205486, -0.005887279752641916, -0.009938018396496773, 0.03778604045510292, -0.016532177105545998, 0.013474118895828724, -0.028407828882336617, -0.028941122815012932, 0.022832319140434265, -0.0032818038016557693, -0.013859272003173828, 0.006321316584944725, -0.00799042358994484, 0.020705360919237137, -0.001209851005114615, 0.009495478123426437, -0.04540077969431877, 0.001582419266924262, 0.034339539706707, -0.019698789343237877, -0.034720536321401596, 0.010417800396680832, -0.005036990623921156, 0.1504601538181305, -0.01470947079360485, -0.005224558990448713, -0.026251139119267464, 0.06254974007606506, 0.021066009998321533, 0.007205253932625055, -0.0032899128273129463, -0.025969531387090683, 0.00045179345761425793, -0.02144140750169754, -0.06708472967147827, -0.004689481109380722, -0.06541518121957779, 0.014544844627380371, -0.03282393887639046, -0.024477804079651833, 0.00549830449745059, 0.06844016164541245, 0.021945009008049965, 0.03248952701687813, 0.05559312179684639, 0.002637009136378765, -0.03740503266453743, -0.011582578532397747, -0.06666750460863113, -0.05025628209114075, 0.0037301944103091955, -0.016175538301467896, -0.020583581179380417, 0.0006041732267476618, -0.00599824171513319, -0.040258754044771194, -0.035265002399683, -0.0519244447350502, -0.01378764770925045, 0.013295856304466724, -0.0018918339628726244, -0.007420327514410019, 0.006825859658420086, 0.01588083617389202, 0.03252982348203659, 0.036782555282115936, -0.005151362624019384, -0.008634325116872787, -0.04836956784129143, 0.010499933734536171, 0.0052663409151136875, 0.005956889595836401, 0.004025395028293133, -0.011556126177310944, 0.01685367524623871, 0.019402137026190758, -0.044555243104696274, 0.01430374477058649, 0.0011295253643766046, 0.052534595131874084, -0.06591591984033585, 0.0070458208210766315, -0.01675577089190483, -0.006167288403958082, -0.012191391550004482, 0.07124596834182739, 0.022625913843512535, -0.012379399500787258, -0.015308450907468796, 0.00018777813238557428, 0.11045943200588226, 0.011676016263663769, 0.020242461934685707, -0.0035099550150334835, -0.0178091898560524, 0.04131798446178436, -0.03360266983509064, 0.04232802242040634, 0.005162212532013655, 0.01720697619020939, 0.03223542869091034, 0.03920668736100197, -0.012273300439119339, 0.04251370206475258, -0.06550723314285278, -0.07287917286157608, 0.013424547389149666, 0.06726448982954025, 0.04266497492790222, -0.0047830697149038315, -0.054250914603471756, 0.09682359546422958, -0.020387129858136177, 0.023183468729257584, 0.024318858981132507, -0.006900339853018522, -0.038698140531778336, -0.0649983212351799, 0.023712489753961563, 0.01902495138347149, 0.04481074959039688, -0.0261848084628582, -0.013753227889537811, 0.026826931163668633, 0.013593127019703388, -0.03698170930147171, 0.02470420114696026, 0.02440982311964035, 0.0307479128241539, -0.0724787637591362, -0.03384467214345932, -0.03484212979674339, -0.012429121881723404, -0.010409723967313766, 0.0820477232336998, 0.007692243438214064, -0.034602418541908264, 0.003220268525183201, -0.04146857559680939, -0.002133072353899479, -0.03390577808022499, 0.023040303960442543, -0.03754632920026779, 0.05071548372507095, -0.06395606696605682, -0.051201291382312775, 0.04286062717437744, 0.029897261410951614, -0.037485986948013306, 0.03161940351128578, 0.0028047130908817053, 0.012980706989765167, -0.0063329944387078285, 0.019984325394034386, -0.008551886305212975, 0.01360570639371872, 0.051112864166498184, -0.0037493943236768246, 0.024755045771598816, 0.0378066785633564, 0.031301017850637436, 0.022654308006167412, -0.022429747506976128, -0.07239785045385361, -0.01267475076019764, 0.0026813161093741655, 0.02756430022418499, 0.03245566040277481, 0.02223409153521061, 0.048426948487758636, 0.0648101270198822, 0.012238864786922932, -0.03565698489546776, 0.0014136580284684896, 0.003924613352864981, -0.002983502112329006, -0.017571106553077698, 0.0506843626499176, -0.02538738027215004, 0.025066282600164413, -0.13478682935237885, 0.04314979165792465, -4.474049273994751e-05, 0.011581635102629662, -0.02404501475393772, -0.022581718862056732, -0.0261125098913908, -0.022227099165320396, 0.0016684223664924502, 0.010429115034639835, -0.023166576400399208, 0.03239699825644493, -0.042758435010910034, -8.046966831898317e-05, 0.025642432272434235, -0.02278277836740017, 0.005838517565280199, -0.01625128649175167, -0.010938741266727448, -0.009555756114423275, -0.004895557649433613, -0.015566329471766949, -0.019615862518548965, 0.05270932614803314, 0.059074606746435165, 0.018426835536956787, 0.00449650501832366, 0.025283895432949066, 0.03490816056728363, 0.027254197746515274, 0.045189712196588516, -0.04857373237609863, -0.07700539380311966, -0.03212038427591324, 0.026641923934221268, -0.05251229181885719, 0.013920685276389122, -0.01164339855313301, -0.036923181265592575, 0.015938136726617813, 0.05657746642827988, -0.03047911822795868, -0.04795175418257713, 0.0807000994682312, 0.016624603420495987, -0.012773890048265457, -0.005561992526054382, 0.0029034335166215897, 0.05704892799258232, 0.018825039267539978, -0.014751135371625423, 0.010723092593252659, 0.022121064364910126, -0.0366692952811718, -0.027240995317697525, 0.007520946674048901, 0.0016338133718818426, 0.017665376886725426, -0.0036428221501410007, 0.027079228311777115, -0.01549453753978014, -0.0787813737988472, 0.01492131408303976, 0.004232275765389204, -0.03031791001558304, -0.0064183007925748825, -0.0030282018706202507, -0.021896377205848694, -0.032269179821014404, -0.12598983943462372, 4.3952048145001754e-05, 0.003554200055077672, 0.06667513400316238, -0.03740471974015236, -0.01647096872329712, 0.02337866649031639, 0.024282891303300858, 0.021100230515003204, -0.020924566313624382, -0.010354097932577133, 0.04959731921553612, -0.04535774886608124, -0.0005710994591936469, 0.0020856286864727736, -0.05222520977258682, 0.025912607088685036, -0.06779170781373978, -0.0001524338440503925, -0.0006551116239279509, 0.018936706706881523, 0.05906861275434494, -0.020680425688624382, 0.029064396396279335, 0.026026038452982903, 0.028153151273727417, 0.0013460866175591946, 0.0332343690097332, -0.04060088470578194, 0.019612230360507965, -0.0356481559574604, -0.03106001392006874, -0.028309302404522896, -0.008224797435104847, 0.03317440673708916, -0.039354048669338226, 0.003935086075216532, 0.025150127708911896, -0.0209822915494442, -0.008912627585232258, -0.05949245020747185, 0.013615068048238754, -0.02747107483446598, 0.013640868477523327, 0.03920090198516846, -0.009632237255573273, 0.024114347994327545, -0.03073251247406006, -0.020606817677617073, 0.018289681524038315, -0.06405501812696457, 0.008094742894172668, -0.02977033518254757, 0.08116813004016876, 0.02537498250603676, -0.013117142952978611, -0.11232049763202667, 0.03603384271264076, -0.0019866456277668476, -0.026111530140042305, -0.03445619344711304, -0.012482545338571072, -0.010949702002108097, 0.0599900558590889, 0.02612890675663948, -0.020708194002509117, -0.07871599495410919, -0.05663171038031578, 0.03541314974427223, 0.03059999831020832, 0.025629334151744843, -0.061054863035678864, -0.02583334408700466, -0.03153982758522034, 0.038037337362766266, 0.03336279094219208, -0.04337288811802864, 0.0034072636626660824, -0.025910217314958572, -0.049998532980680466, 0.05269096791744232, 0.04332175850868225, 0.004224609583616257, 0.02045673504471779, -0.01670055091381073, -0.020699452608823776, 0.030984533950686455, 0.0579497255384922, -0.004966197535395622, 0.04332077503204346, -0.018651768565177917, 0.005212272983044386, 0.06539175659418106, -0.01833827793598175, -0.08800426125526428, 0.010625099763274193, 0.007930667139589787, 0.05764241889119148, -0.028728676959872246, -0.0032415275927633047, -0.027655605226755142, -0.020985092967748642, 0.05451921001076698, 0.036397021263837814, -0.01593177393078804, 0.004077801946550608, 0.060312818735837936, -0.018414486199617386, 0.07975061237812042, -0.006948071997612715, 0.058031611144542694, -0.016318654641509056, -0.02730853669345379, 0.028032807633280754, 0.0005621639429591596, 0.008818255737423897, 0.06404849141836166, 0.0446302704513073, 0.003963648807257414, 0.032299499958753586, 0.016181334853172302, 0.005588069092482328, 0.01702774502336979, -0.020008940249681473, -0.01093322318047285, 0.022704295814037323, 0.003290614578872919, -0.08417460322380066, -0.07717590034008026, -0.08418530970811844, -0.016249198466539383, -0.08553490787744522, -0.03287426009774208, 0.04169795289635658, 0.01197214238345623, -0.034863755106925964, 0.026325028389692307, 0.01236434280872345, -0.008368059992790222, 0.026773706078529358, 0.004952798597514629, -0.08988021314144135, -0.0013836284633725882, 0.016084017232060432, -0.009879258461296558, 0.02974247746169567, -0.025916822254657745, -0.023589419201016426, -0.011437647044658661, -0.030616676434874535, -0.014560739509761333, -0.03734952211380005, 0.006050816271454096, 0.0012691293377429247, -0.032215096056461334, -0.0032651983201503754, 0.018443752080202103, 0.05198386311531067, 0.04236740991473198, -0.021388843655586243, 0.02954680286347866, 0.07510841637849808, 0.05006645619869232, -0.035242512822151184, -0.019481496885418892, 0.05158262327313423, -0.033832333981990814, -0.011899285018444061, 0.0023972534108906984, 0.032589156180620193, 0.03737589344382286, 0.0015718055656179786, 0.028124533593654633, 0.12058330327272415, 0.023914428427815437, 0.035243187099695206, -0.006255358457565308, 0.0005547678447328508, 0.007713949773460627, -0.04590006172657013, -0.035446904599666595, -0.02680736966431141, 0.01803216151893139, 0.022027315571904182, -0.0438159704208374, 0.06014230474829674, 0.007155898958444595, -0.005814548581838608, -0.07816360890865326, 0.05654950812458992, 0.02807403914630413, 0.03771606832742691, 0.08204024285078049, -0.008235827088356018, -0.04402122646570206, 0.024992819875478745, -0.007631082087755203, 0.010807156562805176, -0.03601931780576706, -0.02476600557565689, 0.02588803879916668, -0.008314212784171104, -0.01142431516200304, 0.0018123514018952847, 0.04851359501481056, -0.018874945119023323, -0.006861183792352676, -0.03150685504078865, -0.009070111438632011, 0.005030423402786255, 0.06419432908296585, 0.07706696540117264, 0.007331477012485266, -0.02402881160378456, 0.009387918747961521, 0.01031875517219305, 0.011815550737082958, 0.03834015130996704, -0.01683163270354271, -0.04302087426185608, -0.01645785942673683, 0.019765101373195648, 0.06122959405183792, 0.018923679366707802, -0.061431899666786194, 0.0029305163770914078, -0.026676995679736137, 0.019185205921530724, 0.005483201239258051, 0.01699320413172245, -6.418232950952276e-33, 0.03327403590083122, -0.03781920671463013, 0.023479187861084938, 0.026982566341757774, -0.048176705837249756, -0.020865393802523613, 0.07229012250900269, -0.009224443696439266, -0.02145598828792572, -0.0038243846502155066, 0.023162726312875748, 0.015144704841077328, 0.0038490979932248592, -0.02079569175839424, 0.029856717213988304, -0.014318181201815605, 0.017010394483804703, -0.0044497656635940075, 0.030037760734558105, 0.014040031470358372, -0.09256269037723541, 0.027574876323342323, 0.005388704594224691, 0.04115258902311325, -0.019221868366003036, 0.008042526431381702, 0.013559950515627861, 0.014034783467650414, -0.00443312618881464, 0.019133375957608223, -0.005782662890851498, -0.033444225788116455, 0.013740483671426773, -0.03302793949842453, 0.016541456803679466, 0.051106736063957214, -0.07125036418437958, -0.024350227788090706, -0.014445909298956394, -0.030695028603076935, -0.018773630261421204, -0.013326701708137989, -0.02705676481127739, 0.018786156550049782, 0.00903272908180952, 0.03134985268115997, 0.014609511941671371, 0.024249497801065445, -0.02694726549088955, 0.02932637557387352, -0.04037224128842354, -0.03245554864406586, -0.007308380212634802, 0.023265134543180466, 0.022684141993522644, -0.027194375172257423, 0.02974287047982216, -0.016089385375380516, -0.039370130747556686, 0.008150557987391949, -0.09622368216514587, 0.04242144897580147, 0.00995580293238163, -0.007467395160347223, 0.0032082085963338614, -0.005769958719611168, -0.09712589532136917, 0.02932666800916195, 0.01804693602025509, -0.008228147402405739, -0.01678815484046936, 0.035516489297151566, -0.05398131534457207, -0.04185250401496887, -0.042355552315711975, -0.006114737596362829, -0.0307767316699028, 0.00020345467783045024, 0.09136857092380524, 0.036635302007198334, 0.027098923921585083, 0.026439305394887924, -0.03642845153808594, 0.018755728378891945, -0.012129041366279125, -0.05457804352045059, -0.048941656947135925, -0.012423917651176453, -0.004863394424319267, 0.024581698700785637, 0.0069715771824121475, 0.060544904321432114, -0.0019926168024539948, 0.009195046499371529, 0.041781242936849594, 0.05126965418457985, 0.013788276351988316, -0.0237102173268795, -0.012251945212483406, -0.011548659764230251, -0.09271148592233658, 0.008175739087164402, 0.03282013535499573, 0.013969638384878635, 0.008741730824112892, -0.0022173200268298388, 0.0019349539652466774, -0.014448313042521477, -0.011834266595542431, 0.014950086362659931, 0.004662006627768278, 0.04632192477583885, -0.01613520458340645, -0.013603412546217442, -0.035192977637052536, -0.009843300096690655, -0.004675019532442093, -0.008355895057320595, -0.00462149316444993, -0.020537016913294792, -0.06306509673595428, 0.004749319050461054, -0.08636286854743958, -0.0631881132721901, -0.018957285210490227, 0.010077822022140026, -0.009813958778977394, 0.03903312236070633, 0.07134861499071121, 0.0034428215585649014, -0.015265898779034615, -0.03632305935025215, 3.2553359119447123e-07, -0.007567243184894323, 0.058040011674165726, -0.005840820726007223, 0.008569864556193352, 0.0048708985559642315, -0.06767749786376953, -0.03148192539811134, 0.055819980800151825, 0.015632400289177895, 0.029052844271063805, 0.005462488159537315, 0.017144029960036278, -0.025969581678509712, 0.025464626029133797, -0.02808181568980217, -0.1202215924859047, -0.06860881298780441, -0.009958461858332157, -0.031397316604852676, -0.03979938477277756, 0.05620979145169258, -0.01323707215487957, 0.021398892626166344, 0.01262436993420124, -0.0003397738328203559, -0.0026607965119183064, -0.010487834922969341, -0.014533189125359058, -0.0004941688966937363, 0.05839056894183159, 0.09173043072223663, -0.04674375802278519, -0.013053251430392265, -0.006424470338970423, 0.03634229302406311, -0.04223369061946869, -0.03865755721926689, -0.04569746553897858, 0.007633962668478489, 0.0015801694244146347, 0.010691603645682335, 0.010207119397819042, -0.024203384295105934, 0.010626504197716713, -0.0041086673736572266, -0.02455790527164936, 0.05274967476725578, 0.048815708607435226, 0.01629449799656868, -0.04657513275742531, -0.0016449767863377929, 0.0497930571436882, 0.05856844037771225, -0.017755020409822464, 0.03937019780278206, -0.02378370240330696, -0.025663021951913834, -0.0122219892218709, 0.02948232926428318, -0.051659759134054184, -0.03145472705364227, -0.005270375404506922, -0.0006283069378696382, -0.03692352771759033, -0.0006563659408129752, 0.023281019181013107, 0.013834727928042412, 3.1114529609787164e-34, -0.03257931396365166, -0.05935877561569214, -0.049786027520895004, -0.0012886334443464875, -0.01419672928750515, -0.024499638006091118, -0.04110652953386307, -0.028272273018956184, -0.04104676470160484, -0.003347602905705571, -0.01643376424908638], "f7f09540-e847-4d0c-a813-b6e580bedcb4": [0.06398065388202667, -0.03138178214430809, -0.01888359524309635, -0.0052103316411376, 0.012005871161818504, 0.006040655076503754, 0.043594200164079666, -0.0488155297935009, -0.009175056591629982, 0.013480700552463531, 0.035989899188280106, -0.06709133833646774, 0.005804854910820723, 0.059305787086486816, -0.018266038969159126, -0.04991374537348747, 0.002506260760128498, -0.02367570996284485, 0.011272369883954525, 0.013147137127816677, 0.0195285864174366, 0.02993779629468918, -0.028242386877536774, -0.004934675991535187, -0.07054868340492249, -0.001515876268967986, -0.007048467639833689, 0.05785836651921272, 0.08069383352994919, -0.012945839203894138, 0.012703308835625648, 0.009958700276911259, 0.012219924479722977, -0.012281556613743305, 2.522096110624261e-06, 0.01740219257771969, -0.03226246312260628, -0.014429008588194847, 0.003771493909880519, -0.0388265922665596, 0.014360658824443817, -0.04867951199412346, -0.01720086671411991, 0.0242695901542902, -0.006200221832841635, 0.06330103427171707, 0.008504485711455345, -0.009550523944199085, 0.05291030928492546, -0.0014680250314995646, 0.005229049827903509, -0.009464437142014503, -0.05094484984874725, -0.03250274434685707, 0.04749167710542679, -0.13131067156791687, 0.00495576299726963, 0.030112551525235176, -0.011395331472158432, 0.022974703460931778, -0.011294486001133919, -0.030968839302659035, -0.0028789029456675053, -0.01998824253678322, 0.10233072191476822, 0.009542123414576054, 0.06376614421606064, -0.03657567501068115, -0.013424281030893326, 0.021006207913160324, 0.057547781616449356, 0.034875791519880295, 0.02135256677865982, 0.015317842364311218, 0.025547416880726814, -0.012819956056773663, 0.008753675036132336, 0.003360871924087405, 0.002703327452763915, 0.015557920560240746, -0.06472672522068024, 0.012677138671278954, -0.03759821131825447, -0.0409962423145771, -0.026996275410056114, 0.04450666904449463, -0.03144396096467972, -0.04029024392366409, 0.01909184455871582, 0.044202692806720734, -0.018653107807040215, 0.05448218807578087, -0.026004578918218613, 0.04355717822909355, -0.058421213179826736, -0.011706281453371048, 0.028381314128637314, -0.07232791185379028, 0.017328375950455666, 0.03161416947841644, 0.0029009717982262373, 0.020943470299243927, -0.003962913993746042, 0.033786531537771225, -0.0026127018500119448, 0.09065686911344528, 0.01136617362499237, -0.0017859752988442779, -0.00883256085216999, -0.01910092867910862, 0.03989488631486893, -0.0101096723228693, -0.01740982197225094, -0.03702518343925476, 0.0045096189714968204, 0.016180241480469704, -0.0013314229436218739, 0.025432419031858444, 0.005163742695003748, 0.03270728513598442, 0.018305351957678795, -0.0032030704896897078, -0.03380737081170082, -0.010239320807158947, -0.045318204909563065, -0.030017616227269173, 0.004980138968676329, -0.003611666616052389, -0.0007396474247798324, 0.005570232402533293, 0.018577884882688522, -0.05599815770983696, -0.000422412296757102, 0.037576332688331604, -0.0007619502139277756, -0.006446507293730974, -0.019436923786997795, 0.05308273807168007, -0.013598390854895115, -0.017466388642787933, 0.002918881131336093, 0.014569617807865143, -0.0033309569116681814, 0.01763097383081913, -0.01149828266352415, -0.02606155537068844, -0.02066449634730816, 0.01744733937084675, 0.036805056035518646, 0.020490381866693497, -0.0034904214553534985, -0.03046897053718567, 0.03488174080848694, 0.021920926868915558, 0.017503300681710243, 0.04744330421090126, -0.02713513933122158, 0.013196108862757683, 0.01525341346859932, 0.05315805599093437, -0.018278639763593674, 0.04245573654770851, 0.04287124425172806, 0.022861843928694725, -0.01520587783306837, 0.024993345141410828, 0.06593320518732071, -0.035883836448192596, -0.029539451003074646, 0.026394687592983246, 0.04011332616209984, 0.041260797530412674, -0.008070087060332298, 0.04208959639072418, -0.024398110806941986, -0.012136959470808506, 0.07382038980722427, 0.01246984675526619, 0.02634035237133503, 0.020402655005455017, -0.025757653638720512, -0.05822097882628441, -0.02483201213181019, 0.041122350841760635, 0.07727474719285965, 0.012819653376936913, -0.08000258356332779, 0.09669074416160583, -0.010156271979212761, 0.04157400131225586, 0.029057994484901428, 0.03506495803594589, -0.08776406198740005, -0.05715537816286087, -0.0004757109272759408, -0.01359017938375473, -0.06653177738189697, -0.05925776809453964, -0.023188626393675804, -0.00861283391714096, 0.004298520274460316, 0.017370546236634254, -0.05438011884689331, 0.02003852277994156, 0.01747719943523407, -0.033807422965765, -0.04878035932779312, -0.03860000520944595, -0.0043434398248791695, 0.030616145581007004, 0.1064453274011612, -0.021060775965452194, -0.0396224781870842, 0.0200844444334507, -0.04000937193632126, 0.06736932694911957, -0.02695331908762455, 0.04905293136835098, -0.03934963047504425, -0.01309566292911768, -0.03257342427968979, 0.003068153513595462, -0.016481706872582436, 0.04732661694288254, -0.005597725976258516, -0.020764222368597984, -7.220219413284212e-05, 0.009333180263638496, -0.0076764971017837524, 0.012557574547827244, -0.02931487374007702, 0.016218798235058784, -0.014590658247470856, 0.014295939356088638, 0.04816129803657532, -0.038985107094049454, -0.08512914180755615, 0.04095032811164856, 0.02754903770983219, -0.008585224859416485, -0.048346322029829025, 0.02313445508480072, -0.020739905536174774, 0.0048489198088645935, 0.011528436094522476, 0.02871822938323021, -0.007412083446979523, 0.02204694040119648, -0.019511261954903603, 0.004697185941040516, -0.03435877338051796, 0.0001144812413258478, 0.0031602876260876656, 0.009002587758004665, -0.007737559266388416, 0.058799125254154205, -0.0949121043086052, -0.0053691803477704525, -0.04481859877705574, 0.02463749796152115, -0.016640400514006615, 0.01996018923819065, -0.0185166597366333, -0.001962116686627269, 0.03313806280493736, -0.014028211124241352, -0.00473932595923543, 0.004088243469595909, -0.023258036002516747, 0.022644897922873497, 0.0033777651842683554, -0.004622607957571745, 0.011239824816584587, -0.023121695965528488, -0.032583702355623245, -0.015625134110450745, -0.05008209869265556, 0.0338996984064579, -0.051234856247901917, 0.02001740038394928, 0.05530080944299698, -0.05173564702272415, -0.01486741378903389, 0.023911677300930023, -0.015161811374127865, -0.018646271899342537, 0.049641747027635574, -0.06641381978988647, -0.024346163496375084, -0.05417923629283905, 0.014522670768201351, -0.0073495591059327126, -0.028500128537416458, -0.03288944810628891, -0.036833178251981735, -0.0011020258534699678, 0.09247767180204391, 0.009901640005409718, -0.050379909574985504, 0.06798244267702103, 0.018234945833683014, 0.027032669633626938, 0.011706608347594738, -0.0026270831003785133, 0.028961075469851494, 0.01482465397566557, -0.0011538799153640866, 0.039713844656944275, -0.030513577163219452, -0.030468937009572983, -0.005956809036433697, 0.010326324962079525, 0.04769591614603996, -0.0014553485671058297, 0.0023906610440462828, 0.02860151045024395, -0.018071480095386505, -0.05090142786502838, -0.035405341535806656, 0.07642324268817902, -0.02066740021109581, 0.0012729647569358349, -0.017400458455085754, -0.032925985753536224, -0.07247930765151978, -0.07379458099603653, -0.02008688822388649, -0.007938606664538383, 0.04079895094037056, -0.026919448748230934, 0.015277924947440624, -0.04115990176796913, -0.06214824318885803, -0.019352467730641365, -0.024264557287096977, -0.01777040958404541, 0.007004286628216505, -0.026659637689590454, -0.05251801386475563, 0.001582752214744687, -0.06826356798410416, 0.011716898530721664, -0.06095880642533302, 0.03876485303044319, 2.7878139007952996e-05, 0.020163053646683693, 0.010380767285823822, 0.011911265552043915, -0.02999376319348812, 0.010251839645206928, 0.053778670728206635, 0.03387625887989998, -6.166687671793625e-05, 0.0022197419311851263, 0.00977451540529728, -0.053634241223335266, -0.033386651426553726, -0.0053689321503043175, 0.007670059334486723, -0.034896668046712875, 0.060016706585884094, -0.027938252314925194, -0.040025245398283005, -0.017184782773256302, 0.003514676121994853, -0.037391297519207, -0.00982297956943512, -0.028066178783774376, 0.04130066931247711, 0.0700714960694313, -0.04815465584397316, -0.001672137062996626, 0.0008424806292168796, 0.019127899780869484, 0.024545321241021156, -0.061595369130373, -0.022307340055704117, -0.008000579662621021, 0.024488890543580055, -0.027975916862487793, 0.00577842490747571, -0.025983484461903572, 0.10358180105686188, -0.01144407968968153, 0.033173222094774246, -0.025924745947122574, 0.013917424716055393, -0.019658325240015984, 0.04613462835550308, 0.02622632123529911, 0.003214616794139147, -0.05976938456296921, -0.03711048513650894, 0.017956573516130447, 0.010322298854589462, -0.004126465879380703, -0.011053398251533508, 0.017550310119986534, -0.030803967267274857, -0.017133330926299095, 0.021058637648820877, 0.0073600648902356625, 0.05167943239212036, -0.02518356777727604, -0.019925732165575027, 0.018984109163284302, 0.07981105148792267, -3.150940392515622e-05, 0.0034719775430858135, 0.013700328767299652, 0.11401326954364777, 0.020265335217118263, 0.011331881396472454, -0.007666836492717266, 0.009314030408859253, -0.03528473153710365, -0.02237514592707157, -0.0013865510700270534, -0.008825352415442467, -0.030732491984963417, 0.036590248346328735, 0.03384113311767578, 0.007251792587339878, -0.012903423979878426, 0.0069597382098436356, -0.03200623765587807, 0.07537434995174408, 0.01355019211769104, 0.010108601301908493, -0.018140606582164764, 0.003124120645225048, 0.02669486775994301, -0.011920077726244926, 0.0913088247179985, -0.0189327672123909, -0.037683095782995224, -0.03525100275874138, -0.016151737421751022, 0.04453981667757034, 0.040283817797899246, 0.024391058832406998, 0.08684742450714111, 0.03357015922665596, 0.0200452022254467, -0.026390517130494118, -0.01574118062853813, 0.00390447280369699, 0.054985929280519485, -0.017970282584428787, -0.02889854647219181, 0.036097653210163116, -0.03799154981970787, -0.0637882873415947, -0.04492243751883507, -0.01891997456550598, -0.019907308742403984, -0.12342719733715057, 0.017562203109264374, -0.005512609612196684, 0.026570890098810196, 0.011827360838651657, 0.038278140127658844, -0.005267496220767498, 0.031673774123191833, 0.0014844761462882161, -0.025650912895798683, -0.0209709033370018, -0.0018780012615025043, 0.018354088068008423, -0.03828572854399681, 0.119160495698452, -0.04311973601579666, -0.016452394425868988, -0.026949333027005196, 0.054042749106884, -0.027786126360297203, -0.010301977396011353, 0.01634654588997364, -0.05005437135696411, -0.029205622151494026, 0.00036706632818095386, -0.03753302991390228, 0.02532166801393032, 0.011021442711353302, -0.0318925678730011, 0.005159025080502033, -0.0018852854846045375, 0.005814482923597097, -0.012173947878181934, 0.011229568161070347, 0.02312438376247883, -0.02138455957174301, 0.013306470587849617, -0.07837869971990585, 0.006761360913515091, 0.012637965381145477, -0.006354384124279022, 0.007750560063868761, 0.01082991436123848, 0.038637347519397736, 0.007478184066712856, -0.02066289633512497, -0.0022692738566547632, -0.003039919538423419, -0.018828602507710457, -0.01338101178407669, 0.02089664526283741, 0.028920607641339302, -0.0269305519759655, -0.03225887194275856, -0.01016321126371622, -0.002361311810091138, -0.004402998834848404, -0.06538508087396622, 0.017893347889184952, 0.024754473939538002, -0.021840393543243408, 0.06325279176235199, 0.03601900860667229, -0.030160145834088326, 0.04351132735610008, 0.006507737562060356, -0.01163513120263815, -0.023943230509757996, 0.04771830514073372, 0.026959465816617012, -0.015559440478682518, 0.01835131086409092, -0.024108940735459328, 0.03764840587973595, 0.03625350445508957, -0.044122178107500076, -0.04248471185564995, 0.01947079971432686, -0.008926326408982277, 0.024884795770049095, 0.05787438154220581, -0.0070131635293364525, 0.00224124314263463, 0.005915242712944746, -0.03322185203433037, 0.0723005086183548, 0.06311309337615967, 0.015773078426718712, 0.014246984384953976, -0.04886038601398468, -0.004357907921075821, 0.0054460084065794945, -0.004256067331880331, -0.0026035383343696594, 0.00116506009362638, -0.05781059339642525, 0.04296252503991127, 0.002314299810677767, -0.013195990584790707, -6.392333871667784e-33, -0.04016311466693878, -0.03444070369005203, 0.021075278520584106, 0.02518198825418949, -0.04859906807541847, -0.0076955570839345455, 0.036517731845378876, -0.017233211547136307, -0.04588190093636513, -0.03691559284925461, 0.024751853197813034, 0.004935797303915024, 0.0002001984539674595, 0.00578732555732131, 0.012168966233730316, 0.006608221214264631, 0.05462280660867691, 0.0015903390012681484, 0.0136232515797019, 0.03644178807735443, -0.08905400335788727, 0.03050859272480011, -0.02326067164540291, 0.03637658432126045, 0.00941647868603468, -0.050845008343458176, 0.005313154775649309, 0.04822671413421631, -0.0326901413500309, -0.01069559808820486, 0.03395787253975868, -0.08725394308567047, -0.009816078469157219, -0.008755866438150406, 0.016732025891542435, 0.13081307709217072, -0.09282168000936508, -0.017585642635822296, -0.02220103144645691, 0.00964459776878357, 0.009335656650364399, -0.025869598612189293, -0.01353607326745987, 0.002037000609561801, 0.036986369639635086, -0.0251085814088583, 0.03019047901034355, 0.02715824544429779, 0.03112506866455078, 0.016419675201177597, -0.03684944286942482, -0.015598295256495476, -0.015981728211045265, 0.011188508942723274, 0.023906497284770012, -0.03016521967947483, 0.02398853190243244, -0.011447490192949772, -0.0335216149687767, -0.026186009868979454, -0.0801832303404808, -0.012242170050740242, -0.016119061037898064, 0.030136773362755775, -0.06066318601369858, 0.01970541849732399, -0.09505470842123032, 0.08745358139276505, 0.0012233408633619547, -0.008310291916131973, -0.0329633504152298, 0.03713589906692505, -0.09275797754526138, -0.0923224687576294, -0.010045792907476425, 0.014834292232990265, -0.017109230160713196, 0.023771634325385094, 0.10323721915483475, 0.08161133527755737, -0.06712048500776291, 0.021023346111178398, 0.0010097711347043514, 0.008902650326490402, 0.027625687420368195, -0.069537453353405, -0.01659540645778179, -0.006003610324114561, -0.007312094327062368, 0.002372752409428358, -0.014317017048597336, -0.028513295575976372, -0.009771243669092655, 0.020282575860619545, 0.044676605612039566, -0.04167465493083, -0.0045857541263103485, 0.0017235511913895607, -0.02060365118086338, -0.02109675481915474, -0.06882195919752121, -0.0019402469042688608, 0.04206043481826782, -0.001768802641890943, 0.006204747129231691, -0.0017340659396722913, -0.002525472780689597, -0.028976188972592354, -0.028488587588071823, 0.022457554936408997, 0.017874380573630333, 0.027624942362308502, 0.005883776117116213, 0.020910311490297318, -0.07012736797332764, -0.047781385481357574, 0.02274017594754696, 0.023776693269610405, -0.0035390513949096203, -0.05075567588210106, 0.011820227839052677, 0.05668141692876816, -0.027792248874902725, -0.059713173657655716, -0.05788896232843399, -0.005845302250236273, 0.007860487326979637, 0.006935226731002331, 0.07043640315532684, -0.0028022730257362127, -0.015905020758509636, -0.03774688392877579, 3.1290380775317317e-07, 0.030105961486697197, 0.022667214274406433, 0.019988659769296646, 0.017782270908355713, 0.04238459840416908, -0.06015787273645401, -0.023832708597183228, 0.010648474097251892, 0.043007202446460724, 0.02864469774067402, 0.03405972197651863, 0.0029424349777400494, -0.04204746335744858, -0.010807041078805923, -0.005567194428294897, -0.09858433157205582, -0.053743865340948105, -0.03146173804998398, -0.046013373881578445, 0.01710115559399128, 0.07067311555147171, -0.01159705687314272, 0.020906919613480568, -0.026447512209415436, -0.03318841755390167, -0.03401771932840347, -0.02156205289065838, 0.03185166046023369, 0.044538646936416626, 0.07488223165273666, 0.07491174340248108, -0.030051497742533684, -0.01648658700287342, 0.03748872131109238, 0.0778486505150795, -0.01102033443748951, -0.014429686591029167, 0.023346461355686188, 0.03894106671214104, 0.05354152247309685, 0.051124949008226395, 0.01549178920686245, 0.00791952759027481, 0.04517125338315964, 0.02429213747382164, 0.03508738428354263, 0.030104070901870728, -0.01290823332965374, -0.015954453498125076, -0.03847147524356842, -0.0038006040267646313, 0.04800614342093468, 0.04148771986365318, -0.012916935607790947, 0.026942914351820946, -0.029159750789403915, -0.03553216904401779, 0.047706715762615204, 0.03279118984937668, 0.01444152556359768, 0.029246533289551735, -0.099760502576828, 0.04359017685055733, 0.013067569583654404, -0.030620308592915535, -0.012390177696943283, -0.06302481889724731, 3.242698741957948e-34, 0.007137858774513006, -0.059088777750730515, -0.03152128681540489, -0.01735997572541237, 0.03293754905462265, -0.011083599179983139, -0.015702303498983383, -0.010119130834937096, -0.0282664243131876, -0.0129499277099967, 0.0003228051355108619], "fc8c1d05-99cf-471d-a569-8b4398a28a04": [0.05546580255031586, -0.03454751893877983, -0.009571804665029049, 0.01601707562804222, 0.0032779851462692022, 0.02398432046175003, 0.003228517482057214, -0.0648207738995552, -0.033455416560173035, -0.004720956087112427, 0.04894048720598221, -0.07137114554643631, -0.008477596566081047, 0.02046242356300354, -0.033199626952409744, -0.08504674583673477, -0.022717168554663658, 0.004335437901318073, 0.016522638499736786, 0.009272796101868153, 0.05536132678389549, 0.022548988461494446, -0.02367563359439373, -0.015614477917551994, -0.1013297513127327, -0.03357601538300514, -0.0347730778157711, 0.08790912479162216, 0.04323337599635124, -0.035540953278541565, 0.009173006750643253, 0.001869866973720491, 0.01957784779369831, -0.005962845403701067, 2.0868642423010897e-06, 0.00825076550245285, -0.0309017151594162, -0.028464222326874733, 0.02797158621251583, -0.046733956784009933, 0.010289433412253857, -0.06618032604455948, -0.0032740735914558172, 0.030346615239977837, 0.014220558106899261, 0.02488238364458084, 0.01080396119505167, 0.015622916631400585, 0.03731808066368103, 0.0006437451811507344, -0.013136004097759724, -0.032671988010406494, -0.05600115284323692, -0.02396887168288231, 0.021662637591362, -0.11614049226045609, -0.01280115731060505, 0.04304676502943039, 0.005905888043344021, -0.006494056433439255, -0.023662036284804344, -0.038635894656181335, -0.004478285554796457, -0.007462705951184034, 0.09095562249422073, -0.013228194788098335, 0.05169537663459778, 0.03325698897242546, -0.019387342035770416, 0.043599020689725876, 0.06375858932733536, 0.02716030925512314, 0.049937035888433456, 0.008604902774095535, 0.05922103673219681, -0.014785334467887878, -0.006201892159879208, 0.005326289217919111, 0.008972118608653545, 0.015911800786852837, -0.052176911383867264, 0.02520941197872162, -0.02953069470822811, -0.021476758643984795, -0.007381841540336609, 0.025517331436276436, -0.023503735661506653, -0.04722604528069496, 0.011275756172835827, 0.05181718245148659, -0.029625659808516502, 0.02810080163180828, -0.03889937698841095, 0.06791844964027405, -0.050850190222263336, 0.005215567070990801, -0.004738704301416874, -0.056790791451931, -0.020624559372663498, 0.07182419300079346, 0.011986445635557175, 0.004713661037385464, 0.018979109823703766, 0.04587851092219353, -0.0036784426774829626, 0.09067606180906296, 0.04114193469285965, 0.0048227328807115555, 0.020299280062317848, -0.03339722380042076, 0.0170426182448864, 0.0010835957946255803, -0.04421691223978996, -0.010888456366956234, 0.027081932872533798, 0.009569508954882622, 0.01072782464325428, 0.012251022271811962, -0.004535855259746313, 0.026845617219805717, 0.01560466829687357, 0.0071524060331285, -0.03387138247489929, -0.010755268856883049, -0.05480613932013512, -0.04266549274325371, -0.013207810930907726, 0.01539111603051424, 0.021079828962683678, 0.012323684059083462, 0.012691300362348557, -0.027012070640921593, -0.004385571461170912, 0.05901653319597244, 0.009751759469509125, -0.028709115460515022, -0.041912395507097244, 0.030872464179992676, -0.052953191101551056, 0.005453788675367832, -0.01475538033992052, 0.013306474313139915, 0.0026372235734015703, 0.0014138839906081557, -0.006119025405496359, -0.02483896166086197, -0.007554474752396345, 0.009203263558447361, 0.03390316665172577, 0.01684470847249031, -0.005643692798912525, -0.03267737105488777, 0.03356626629829407, 0.037335604429244995, 0.0007057597395032644, 0.043704804033041, -0.02534143067896366, 0.019872566685080528, -0.007382440380752087, 0.04912541061639786, -0.016877684742212296, 0.05639362335205078, 0.04725484549999237, 0.021127279847860336, -0.0008082731510512531, 0.0354156531393528, 0.027377473190426826, -0.04526983201503754, -0.02385920099914074, 0.04511192813515663, 0.06796181946992874, 0.041003815829753876, -0.0006065971683710814, 0.06244978681206703, -0.0332845076918602, 0.0024816852528601885, 0.049250707030296326, 0.039982277899980545, 0.05618629604578018, 0.028418883681297302, -0.020976388826966286, -0.04390587657690048, -0.06399331241846085, 0.016537627205252647, 0.07805408537387848, 0.019495880231261253, -0.08014073222875595, 0.10271500051021576, -0.01593252271413803, 0.030881743878126144, 0.018004801124334335, 0.019996628165245056, -0.07012202590703964, -0.03506344184279442, -0.00978237297385931, 0.017987826839089394, -0.07500279694795609, -0.044304948300123215, -0.04683831334114075, 0.007910194806754589, 0.0019255051156505942, 0.04255295544862747, -0.008187205530703068, 0.0013314876705408096, 0.027167733758687973, -0.01883687824010849, -0.01965954340994358, -0.04350828751921654, -0.007713878061622381, 0.018546316772699356, 0.0636669173836708, -0.02584906853735447, -0.06353835016489029, 0.027771059423685074, -0.03065694309771061, 0.07113783061504364, -0.002306729555130005, 0.047210365533828735, -0.03319421410560608, -0.0023030289448797703, -0.021072205156087875, 0.00813324749469757, 0.0065529486164450645, 0.03971904143691063, 0.010590881109237671, -0.03982072323560715, 0.007643119897693396, 0.002916954457759857, -0.010542009025812149, 0.00862705148756504, -0.02837122231721878, 0.022383030503988266, 0.0019487341633066535, 0.019644545391201973, 0.04989215359091759, -0.028767842799425125, -0.045009732246398926, 0.04487290978431702, 0.039951715618371964, 0.018985172733664513, -0.03107680380344391, 0.013439863920211792, -0.01513500977307558, -0.020046483725309372, -0.007263979408890009, 0.04153190925717354, -0.01004948653280735, 0.009302047081291676, -0.028952626511454582, 0.043979838490486145, -0.049540042877197266, 0.007405368145555258, -0.015436572022736073, 0.027761997655034065, 0.006790933199226856, 0.03034280240535736, -0.06284251809120178, 0.020697683095932007, -0.003560480894520879, -0.006523687392473221, -0.05572029575705528, -0.012325674295425415, -0.01844870112836361, -0.009524340741336346, 0.021756691858172417, -0.003145370865240693, -0.0035217523109167814, 0.02071114256978035, -0.04812039062380791, -0.007206891663372517, -0.010958986356854439, -0.0006466974155046046, 0.01661635935306549, -0.028691990301012993, -0.04785092920064926, -0.02603350393474102, -0.012564687058329582, 0.046440884470939636, -0.055302757769823074, 0.03230304643511772, 0.07611464709043503, -0.08008694648742676, 0.006617577280849218, 0.02570522390305996, 0.015306922607123852, -0.011174116283655167, 0.022640354931354523, 0.0012338373344391584, -0.018180036917328835, -0.08414901793003082, 0.008815252222120762, -0.02105829305946827, -0.013134674169123173, -0.039785727858543396, -0.02257157862186432, 0.016215089708566666, 0.052632756531238556, 0.013137184083461761, -0.031842898577451706, 0.007985762320458889, 0.01755409687757492, 0.0032554673962295055, 0.009638260118663311, -0.005998685024678707, 0.0411117747426033, 0.007001336198300123, -0.00173263403121382, 0.03586484491825104, -0.0029762096237391233, 0.03852272406220436, -0.008647010661661625, 0.024730974808335304, 0.060725294053554535, -0.018653616309165955, 0.029068130999803543, 0.0550539493560791, -0.020667901262640953, -0.06753373891115189, -0.012177486903965473, 0.07555737346410751, -0.012931744568049908, 0.026484085246920586, -0.05237307399511337, -0.032442718744277954, -0.05032573640346527, -0.06062975898385048, 0.00998528953641653, 0.010227379389107227, 0.012551777996122837, -0.038225531578063965, 0.013980189338326454, 0.0032983385026454926, -0.015187503769993782, -0.005987245589494705, -0.04964860528707504, 0.01616417057812214, 0.023401154205203056, -0.026525475084781647, -0.04859059303998947, 0.003318726783618331, -0.0733407586812973, -0.003334005828946829, -0.0675823912024498, -0.009259873069822788, -0.0017301600892096758, 0.04960993304848671, 0.01805558241903782, 0.007513652555644512, -0.035865020006895065, 0.003470013150945306, 0.023434914648532867, -0.017513487488031387, -0.0004057142068631947, 0.012313536368310452, 0.018353693187236786, -0.045457419008016586, -0.013502334244549274, 0.012330454774200916, -0.008573313243687153, 0.005815956741571426, 0.03599230572581291, -0.012823885306715965, -0.01563183031976223, -0.021008998155593872, -0.008376779034733772, -0.062208279967308044, -0.015228780917823315, -0.02544543705880642, 0.03578157722949982, 0.09792393445968628, -0.02978895977139473, 0.03288155421614647, -0.033724453300237656, 0.0019754080567508936, 0.04282650351524353, -0.03579728677868843, -0.019111299887299538, 0.0038191364146769047, 0.014000398106873035, -0.012914246879518032, 0.027206433936953545, -0.059243619441986084, 0.07168269902467728, -0.016474124044179916, 0.03778178244829178, -0.03981699049472809, 9.881205187411979e-05, -0.012310637161135674, 0.0494268462061882, 0.02942061424255371, 0.031601663678884506, -0.04317447170615196, -0.05077099800109863, 0.028675660490989685, 0.01594533771276474, -0.02786892279982567, -0.012388018891215324, -0.01158525887876749, -0.037011101841926575, -0.025426477193832397, 0.0306573286652565, 0.005029323045164347, 0.03368020057678223, -0.04254213348031044, -0.01822749525308609, 0.009638335555791855, 0.0817326158285141, -0.02229774370789528, 0.037376366555690765, 0.012097420170903206, 0.08641692250967026, 0.05288531258702278, -0.00951746478676796, 0.020797496661543846, -0.028555119410157204, -0.042103491723537445, -0.007847827859222889, 0.019950194284319878, 0.007730924990028143, -0.010126420296728611, 0.03258204832673073, 0.03402300551533699, -0.028275664895772934, 0.0027150316163897514, 0.03628186136484146, -0.003988905344158411, 0.052285049110651016, 0.07936622947454453, 0.02378743886947632, 0.009984145872294903, 0.04500323161482811, 0.00036125403130427003, -0.019179269671440125, 0.07760906219482422, -0.041065625846385956, 0.01762912981212139, -0.01746869832277298, -0.009947328828275204, 0.03837108984589577, 0.046238046139478683, 0.007823114283382893, 0.08373507112264633, -0.01700768433511257, 0.011656038463115692, -0.07449235767126083, 0.007135206367820501, -0.003965666517615318, 0.024675874039530754, -0.009310755878686905, -0.033408328890800476, 0.034960225224494934, -0.0410209558904171, -0.09595253318548203, -0.03198323771357536, -0.007941498421132565, -0.01693265698850155, -0.0549212247133255, -0.021381869912147522, 0.020239919424057007, 0.040412478148937225, -0.009266944602131844, 0.012273149564862251, 0.000783194787800312, 0.012296754866838455, 0.02743072621524334, -0.031079834327101707, -0.05468330904841423, -0.029709486290812492, -0.0034155480097979307, -0.03460327535867691, 0.12260063737630844, -0.03845098987221718, -0.010553301312029362, -0.016207624226808548, 0.08690693974494934, -0.027560656890273094, -0.029309533536434174, 0.010928599163889885, -0.07112225145101547, -0.034507960081100464, 0.0043230215087533, -0.04185367375612259, 0.007495115045458078, 0.0060488455928862095, -0.006460236385464668, -0.0087759830057621, 0.010964425280690193, -0.0163692869246006, -0.01960020326077938, 0.0026664661709219217, 0.0325203537940979, -0.03434360399842262, 0.03465923294425011, -0.05062445253133774, -0.01351461373269558, 0.01137480977922678, -0.03774549439549446, -0.00733453594148159, 0.02426304668188095, -0.029570112004876137, -0.022040585055947304, -0.01846449449658394, -0.008875562809407711, -0.018621016293764114, 0.0169545765966177, -0.0016531326109543443, 0.025658603757619858, 0.033896394073963165, 0.007682323455810547, -0.008357490412890911, 0.00023488755687139928, -0.008442151360213757, 0.035438623279333115, -0.010652565397322178, -0.01232194621115923, 0.016743522137403488, -0.01976839266717434, 0.04078884795308113, -0.020039277151226997, -0.01935606263577938, 0.032898448407649994, 0.004743978846818209, 0.00772667583078146, -0.04738578200340271, 0.03329070657491684, 0.08640885353088379, -0.02449168637394905, 0.007971650920808315, -0.04444681480526924, 0.03491795435547829, 0.009434998966753483, -0.037372149527072906, 0.0007327919593080878, 0.007191087584942579, -0.04005599021911621, 0.04429013654589653, 0.07558838278055191, -0.009675553068518639, -0.004528845194727182, 0.012843023054301739, -0.05831947550177574, 0.0702197328209877, 0.03601280227303505, 0.013130005449056625, -0.03388088569045067, -0.02633010968565941, -0.002212016610428691, -0.009521542116999626, -0.007118303794413805, 0.007002646569162607, -0.01607218198478222, -0.044866468757390976, 0.03915705904364586, -0.026047004386782646, -0.021120669320225716, -5.70423621289488e-33, -0.03963492065668106, -0.046664487570524216, 0.016417590901255608, 0.011340177617967129, -0.020849676802754402, -0.02964754030108452, 0.05162865296006203, 0.007929747924208641, -0.026402365416288376, 0.012086438946425915, 0.032626673579216, -0.008885596878826618, -0.010771991685032845, 0.02464025281369686, -0.0002224679192295298, -0.015339269302785397, 0.05138425901532173, -0.03157999739050865, 0.006918719504028559, 0.04391050711274147, -0.07847076654434204, 0.02829975262284279, -0.02497096359729767, -0.01373365893959999, 0.017037540674209595, -0.021049831062555313, -0.03821071237325668, 0.04065860062837601, -0.015274289064109325, 0.0003289793967269361, 0.047798410058021545, -0.07835356891155243, -0.002788328332826495, -0.0031226202845573425, 0.00437210313975811, 0.12807634472846985, -0.10180731117725372, 0.00168610957916826, -0.019478727132081985, -0.0015076015843078494, -0.0016948961419984698, -0.014780632220208645, -0.011593084782361984, 0.00470705097541213, 0.06595630198717117, -0.010202271863818169, 0.02090025506913662, 0.034600481390953064, -0.0008594085229560733, 0.02048601023852825, -0.040027543902397156, -0.041009571403265, -0.005660794209688902, -0.041283152997493744, 0.06437674164772034, -0.029122764244675636, -0.0045683193020522594, -0.0032197500113397837, -0.0010159150697290897, -0.01247786171734333, -0.06587964296340942, -0.021015435457229614, -0.015474672429263592, 0.057851701974868774, -0.05452177673578262, 0.01572555862367153, -0.1309221088886261, 0.0717245414853096, -0.025272274389863014, 0.02256598137319088, -0.052643533796072006, 0.02181044965982437, -0.12222882360219955, -0.04887969046831131, -0.004104964900761843, 0.06303611397743225, 0.010896923020482063, 0.027782421559095383, 0.11061417311429977, 0.056115806102752686, -0.07592929899692535, -0.005104477517306805, -0.025193989276885986, -0.004361024126410484, 0.0279838889837265, -0.046178705990314484, -0.002508744830265641, -0.0072220610454678535, -0.017787501215934753, 0.023495523259043694, -0.02409967966377735, -0.02643354795873165, -0.02552059292793274, 0.015105466358363628, 0.018790148198604584, -0.029402639716863632, 0.027743417769670486, -0.023354407399892807, -0.03326266631484032, -0.023597372695803642, -0.06475988775491714, -0.007645014673471451, 0.045689284801483154, -0.004240321461111307, -0.009759901091456413, -0.008677144534885883, -0.013085421174764633, -0.03949941322207451, -0.015498180873692036, 0.02787076123058796, 0.02699744701385498, 0.05541311576962471, -0.006035308353602886, 0.028238972648978233, -0.09316465258598328, -0.03894506394863129, 0.007020401302725077, 0.02791486866772175, -0.007563781458884478, -0.07794522494077682, 0.03735373914241791, 0.03605077415704727, -0.005973977502435446, -0.05903308093547821, -0.06485807150602341, -0.030992260202765465, 0.02554660104215145, 0.0005895316717214882, 0.08285605907440186, 0.04219336807727814, -0.004828148055821657, -0.049335725605487823, 2.676833616988006e-07, 0.05805716663599014, -0.014426353387534618, 0.039329059422016144, 0.017958708107471466, 0.048393141478300095, -0.04327985271811485, -0.019826553761959076, 0.019199900329113007, -0.01936979405581951, -0.007713353261351585, 0.05879531055688858, 0.014334237203001976, -0.020994408056139946, -0.020481595769524574, -0.017595581710338593, -0.06337638199329376, -0.049247194081544876, -0.046685416251420975, -0.0232909694314003, 0.02012072131037712, 0.0644921287894249, -0.01650848053395748, -0.01284070685505867, -0.014753250405192375, -0.04483959451317787, -0.01661028154194355, -0.022307276725769043, 0.03979862108826637, 0.021564960479736328, 0.06535124033689499, 0.09063217788934708, -0.026079490780830383, -0.007021665573120117, 0.048996638506650925, 0.04813842102885246, -0.030729034915566444, -0.018386056646704674, 0.024899529293179512, 0.020091090351343155, 0.02814103290438652, 0.024797238409519196, 0.04569859802722931, 0.013138512149453163, 0.01843746192753315, -0.018656987696886063, 0.018345139920711517, 0.021750910207629204, 0.008901300840079784, -0.000628224341198802, -0.020237214863300323, -0.01720285415649414, 0.054042454808950424, 0.053666990250349045, -0.007091302890330553, 0.03719048574566841, -0.0049966187216341496, -0.014044723473489285, 0.042141471058130264, 0.021338703110814095, 0.03216179832816124, 0.013231273740530014, -0.053144752979278564, 0.023558486253023148, -0.019824376329779625, -0.02267361246049404, -0.049504127353429794, -0.044858384877443314, 2.159199910645707e-34, -0.010368376038968563, -0.026903651654720306, -0.05679355561733246, -0.010317313484847546, 0.02189687080681324, -0.022454997524619102, -0.026267630979418755, -0.005465912166982889, -0.02396763488650322, -0.030204501003026962, 0.019672486931085587], "a5af40e6-1d06-41d6-9640-9b0b047b263a": [0.034779809415340424, -0.05594148114323616, -0.014494409784674644, 0.01534001249819994, 0.030846938490867615, 0.017017457634210587, 0.002329018199816346, -0.05382566526532173, -0.03977958485484123, 0.007344615180045366, 0.059395525604486465, -0.07948320358991623, 0.005596276838332415, 0.029620811343193054, -0.028115684166550636, -0.07662831991910934, 0.0026365385856479406, 0.00952743086963892, 0.014877596870064735, 0.012179541401565075, 0.06676056981086731, 0.021884793415665627, -0.01625046692788601, -0.020279621705412865, -0.07040325552225113, -0.038489267230033875, -0.04831103980541229, 0.08302776515483856, 0.02811749093234539, -0.056272126734256744, 0.0033375760540366173, -0.0001412047422491014, 0.018106786534190178, -0.01889336295425892, 2.0585923721228028e-06, 0.011952301487326622, -0.03285219892859459, -0.03294612094759941, -0.003016149625182152, -0.031365811824798584, 0.01167038269340992, -0.062325093895196915, 0.0027967109344899654, 0.03230719268321991, 0.021038420498371124, -0.0006389486370608211, -0.004959971643984318, 0.0208071731030941, 0.03756985813379288, 0.025769643485546112, -0.0013309725327417254, -0.03411219269037247, -0.056927818804979324, -0.027071410790085793, 0.007522262632846832, -0.0976657047867775, -0.02964930050075054, 0.032912783324718475, 0.0021997818257659674, -0.02488522045314312, -0.010448158718645573, -0.043815188109874725, -0.01713728904724121, 0.0020472693722695112, 0.09520702064037323, -0.009017015807330608, 0.03521706536412239, 0.019881559535861015, -0.024544047191739082, 0.05438246950507164, 0.05711980536580086, 0.028061581775546074, 0.055649545043706894, -0.00404104869812727, 0.061767227947711945, -0.02915445901453495, -0.007335978094488382, 0.005806914996355772, -0.0037661101669073105, 0.02230701595544815, -0.0765041932463646, 0.006437455303966999, -0.024959344416856766, -0.013087760657072067, 0.020262664183974266, 0.027549991384148598, -0.022755753248929977, -0.03384876996278763, 0.011295934207737446, 0.0314384363591671, -0.006003628019243479, 0.032567109912633896, -0.05091606825590134, 0.053691405802965164, -0.040030378848314285, -0.00024704524548724294, 0.0037841203156858683, -0.04066883772611618, -0.01400982029736042, 0.04297647252678871, -0.0008785420213826001, 0.0015579535393044353, 0.038099613040685654, 0.03775326535105705, -0.0005077120731584728, 0.07255977392196655, 0.04080180451273918, -0.03484722226858139, 0.014914372004568577, -0.02698185294866562, 0.012698664329946041, 0.017145438119769096, -0.04155919328331947, 0.008136250078678131, 0.04068436846137047, -0.00019489509577397257, 0.00485182274132967, 0.02728217840194702, 0.026236599311232567, 0.026972178369760513, 0.005134779028594494, 0.010200835764408112, -0.035798948258161545, -0.003906530793756247, -0.04451752454042435, -0.030093451961874962, -0.0011514712823554873, 0.010791148990392685, 0.013038440607488155, -0.020147519186139107, 0.01830938458442688, -0.011389505118131638, -0.00963291060179472, 0.07390742748975754, 0.013127011246979237, -0.025702442973852158, -0.04364001378417015, 0.021408963948488235, -0.04647456482052803, 0.0017112677451223135, -0.002010511001572013, 0.004614129662513733, 0.022698532789945602, -0.009374178014695644, 0.0009826127206906676, -0.01906226947903633, 0.011652949266135693, 0.0038684247992932796, 0.03396597504615784, 0.02281826175749302, -0.0010405350476503372, -0.04452379792928696, 0.0002654969575814903, 0.02480224333703518, 0.010488277301192284, 0.05113377422094345, -0.0025689147878438234, 0.024943910539150238, -0.02419569529592991, 0.04781395196914673, -0.012394475750625134, 0.03849896416068077, 0.03911329433321953, 0.021988585591316223, 0.013365902937948704, 0.021012501791119576, 0.026023464277386665, -0.03686871379613876, -0.013371515087783337, 0.06984427571296692, 0.04099271818995476, 0.03790080174803734, -0.0007953685708343983, 0.06312969326972961, -0.04291825741529465, -0.0028157103806734085, 0.050613921135663986, 0.050643324851989746, 0.06153899431228638, 0.05170881003141403, -0.02360033616423607, -0.04735102504491806, -0.05648862570524216, 0.01726142130792141, 0.06357622146606445, 0.028391573578119278, -0.057573091238737106, 0.10145305097103119, -0.02564920112490654, 0.04049619287252426, -0.005598962306976318, 0.016581837087869644, -0.07781325280666351, -0.04741459712386131, -0.039663515985012054, 0.014679072424769402, -0.08809550106525421, -0.03405492752790451, -0.04713665321469307, -0.01806512288749218, -0.013009555637836456, 0.05340161174535751, 0.010695134289562702, -0.006005023140460253, 0.01443477999418974, 0.012755746953189373, -0.027289651334285736, -0.04924703761935234, -0.004723299294710159, 0.021568214520812035, 0.09364571422338486, -0.0216858871281147, -0.0402248315513134, 0.003963339142501354, -0.009172745048999786, 0.07090973854064941, -0.005710901692509651, 0.030730227008461952, -0.018585601821541786, -0.01605398580431938, -0.017527654767036438, 0.022969352081418037, 0.0032403755467385054, 0.0281576719135046, 0.0216242503374815, -0.04261745139956474, 0.017831571400165558, -0.0015648023691028357, 0.01325084175914526, 0.011582417413592339, -0.03433745354413986, 0.00032416326575912535, -0.008660601451992989, 0.033927012234926224, 0.029825812205672264, -0.0051592448726296425, -0.03986990824341774, 0.03805861249566078, 0.03356349095702171, 0.009457394480705261, -0.049101635813713074, -0.0022788236383348703, -0.0037889883387833834, -0.016531240195035934, -0.013113708235323429, 0.04343395680189133, -0.005089533515274525, 0.019646381959319115, -0.018659919500350952, 0.05501418933272362, -0.02715381234884262, 0.017564360052347183, -0.014215677045285702, 0.025009894743561745, 0.004156853072345257, 0.03505880758166313, -0.08221376687288284, 0.03532521799206734, -0.028564613312482834, 0.007171567529439926, -0.04511271417140961, -0.00920554157346487, -0.013981076888740063, -0.017918748781085014, 0.018799610435962677, -0.028476357460021973, 0.014003255404531956, 0.0004478560294955969, -0.03688620403409004, 0.002816187683492899, -0.0037432080134749413, -0.0009866044856607914, 0.008787614293396473, -0.04121077433228493, -0.05277690291404724, -0.017050376161932945, 0.01231628842651844, 0.052109163254499435, -0.05264529213309288, 0.03499709069728851, 0.08998622000217438, -0.06322848051786423, -0.001420321292243898, 0.02005859464406967, 0.003630932653322816, -0.0006939578452147543, 0.030930090695619583, 0.00504837092012167, -0.01361933071166277, -0.07260078936815262, 0.014172466471791267, -0.026299886405467987, -0.010034061037003994, -0.03949381783604622, -0.021408824250102043, 0.011627471074461937, 0.06713426858186722, 0.006379721686244011, -0.011750997044146061, -0.0035432507283985615, 0.007719005458056927, 0.009219959378242493, 0.02028215304017067, -0.011259503662586212, 0.034538425505161285, 0.03177667036652565, -0.000998939503915608, 0.0010013856226578355, -0.0007038425537757576, 0.020197294652462006, 0.0018659294582903385, 0.013127220794558525, 0.0503421388566494, -0.013818047009408474, 0.03372790291905403, 0.05622382462024689, -0.028552109375596046, -0.06494197249412537, 0.005889409687370062, 0.0706244632601738, 0.010941988788545132, 0.016381027176976204, -0.05797727778553963, -0.04363429918885231, -0.04996415600180626, -0.07109066098928452, 0.00025042484048753977, 0.007151943165808916, -0.011378941126167774, -0.04228069260716438, 0.01687459461390972, 0.020007820799946785, -0.011880442500114441, 0.001837273477576673, -0.060341931879520416, 0.01673147827386856, 0.038756970316171646, -0.025445064529776573, -0.06046751141548157, -0.01670736074447632, -0.06264377385377884, 0.02662711963057518, -0.06881041824817657, -0.026674345135688782, -0.006258533801883459, 0.031025046482682228, 0.019562633708119392, -0.0003316804359201342, -0.04822539910674095, 0.003960329573601484, 0.013964633457362652, -0.03686729446053505, -0.0036535710096359253, 0.0005620733136311173, 0.04339271038770676, -0.04152102768421173, -0.028049364686012268, 0.008524232544004917, 0.006193656474351883, -0.020481359213590622, 0.056887660175561905, -0.007135467138141394, -2.2838687073090114e-05, 0.012901674956083298, -0.016245419159531593, -0.0819365531206131, -0.025850381702184677, -0.01876080222427845, 0.032899435609579086, 0.0897538959980011, -0.03674712032079697, 0.027922479435801506, -0.022506972774863243, 0.00863332487642765, 0.02588091418147087, -0.0313323549926281, -0.01993178389966488, 0.018695656210184097, 0.0153493732213974, -0.02095988020300865, 0.03164254128932953, -0.054874081164598465, 0.07370579987764359, -0.032612577080726624, 0.05102996528148651, -0.025517761707305908, 0.007715481799095869, -0.020726734772324562, 0.04857800900936127, 0.0010096104815602303, 0.029533902183175087, -0.07063738256692886, -0.05457472801208496, 0.026244884356856346, -0.0035838268231600523, -0.014073205180466175, -0.0015436820685863495, -0.012119308114051819, -0.03961499035358429, -0.02223885990679264, 0.025911206379532814, -0.023971064016222954, 0.01126158144325018, -0.027175793424248695, -0.011780797503888607, 0.021764252334833145, 0.07952263951301575, -0.019808445125818253, 0.033213790506124496, 0.009531611576676369, 0.08416935801506042, 0.04773326218128204, 0.011018775403499603, 0.006686060689389706, -0.012224697507917881, -0.04755730554461479, 0.004907588940113783, 0.03142065927386284, 0.014927199110388756, 0.0004884644295088947, 0.022842977195978165, 0.04394018277525902, -0.05473032593727112, -0.01503626350313425, 0.02415713109076023, -0.005243913270533085, 0.0861472338438034, 0.06571461260318756, 0.01732552982866764, 0.005840247962623835, 0.057342346757650375, 0.012612431310117245, -0.012491599656641483, 0.08514492213726044, -0.03170860558748245, -0.011005466803908348, -0.009680340066552162, -0.010794182308018208, 0.04265398532152176, 0.05494781956076622, -0.0055601950734853745, 0.07233570516109467, -0.009988086298108101, 0.004542491398751736, -0.053131766617298126, -0.017174268141388893, 0.02145165391266346, 0.02876192331314087, 0.021198730915784836, -0.01714611053466797, 0.011267503723502159, -0.08373789489269257, -0.09923534840345383, -0.02463626302778721, -0.013591649010777473, -0.007694344036281109, -0.042386703193187714, -0.028739942237734795, 0.03111254796385765, 0.04620674252510071, -0.021513914689421654, 0.011495253071188927, 0.0037327148020267487, 0.033707745373249054, 0.0433180071413517, -0.031164780259132385, -0.06356208771467209, -0.019974613562226295, 0.008858141489326954, -0.022130053490400314, 0.13569532334804535, -0.03749183937907219, -0.015206447802484035, -0.007926398888230324, 0.06555105000734329, -0.04431143403053284, -0.04389578849077225, -0.012304939329624176, -0.07703819125890732, -0.04168449714779854, 0.015994923189282417, -0.027822328731417656, 0.00706546800211072, -0.007811821065843105, -0.007995717227458954, -0.0013091961154714227, 0.01657143235206604, -0.027000704780220985, -0.005250375717878342, -0.006066679488867521, 0.007199978921562433, -0.04094511270523071, 0.034176938235759735, -0.027232281863689423, -0.04588412865996361, 0.035643044859170914, -0.02630046010017395, 0.02724616229534149, 0.02775075100362301, -0.03466516360640526, -0.03239800035953522, -0.0233335979282856, -0.01361288595944643, -0.020718488842248917, 0.0015795062063261867, -0.00492464005947113, 0.027597220614552498, 0.06345468759536743, -0.0008591131772845984, -0.009871228598058224, 0.020104149356484413, -0.009411130100488663, 0.05014763027429581, -0.023283610120415688, -0.01529956515878439, 0.010740160010755062, -0.05331001058220863, 0.029031774029135704, -0.018384460359811783, -0.028384007513523102, 0.03725723922252655, -0.0008620655280537903, 0.007644574623554945, -0.057016100734472275, 0.03215652331709862, 0.12075939774513245, -0.02866009995341301, 0.007212536409497261, -0.04654978588223457, 0.04573676735162735, 0.0011638308642432094, -0.045506421476602554, 0.02679029293358326, 0.008284788578748703, -0.05827976390719414, 0.06464292109012604, 0.08654236793518066, 0.0024196049198508263, 0.0037533584982156754, 0.017447462305426598, -0.06535772234201431, 0.07412546128034592, 0.03084569051861763, 0.005854443646967411, -0.030723165720701218, -0.025550443679094315, 0.022596754133701324, 0.009012390859425068, -0.01880389265716076, -0.0013990820152685046, -0.022299325093626976, -0.03126596659421921, 0.04077393189072609, -0.019441360607743263, -0.016512099653482437, -5.5528314384830154e-33, -0.042364370077848434, -0.038256727159023285, 0.013859037309885025, -0.00046959760948084295, -0.013157123699784279, -0.025286279618740082, 0.04912315309047699, 0.01232707779854536, -0.04116586595773697, 0.001526019535958767, 0.017989063635468483, 0.011562956497073174, -0.010737312026321888, 0.0208657868206501, -0.01155687402933836, -0.004660501144826412, 0.05065327510237694, -0.03193576633930206, 0.006116307340562344, 0.04617319256067276, -0.08350683748722076, 0.0337858684360981, -0.02436603419482708, -0.018738452345132828, 0.008422515355050564, -0.022183353081345558, -0.044024430215358734, 0.023610621690750122, 0.002020677085965872, -0.02488408237695694, 0.03689843788743019, -0.08892079442739487, -0.0016241940902546048, 0.00012524933845270425, 0.01015170756727457, 0.09493192285299301, -0.05663681402802467, 0.010315440595149994, -0.016708334907889366, 0.005211043171584606, 0.020427998155355453, -0.023451462388038635, -0.020959563553333282, -0.003401828231289983, 0.08138808608055115, -0.019713539630174637, 0.025501225143671036, 0.03390749543905258, -0.01571953296661377, 0.013658244162797928, -0.03695179149508476, -0.02324158512055874, -0.0029956228099763393, -0.03515895456075668, 0.056753892451524734, -0.014657942578196526, -0.0038931488525122404, -0.03591912239789963, -0.025042662397027016, 0.015291390009224415, -0.030722856521606445, -0.020771507173776627, -0.00772841414436698, 0.03222287818789482, -0.045711737126111984, -0.0004712701484095305, -0.08972752839326859, 0.07692909985780716, -0.009716409258544445, 0.022946473211050034, -0.05333126708865166, 0.014041589573025703, -0.09028838574886322, -0.03593023121356964, -0.008177927695214748, 0.07364912331104279, 0.013162448070943356, 0.04320696368813515, 0.08700694143772125, 0.043832726776599884, -0.0704137310385704, -0.005974086467176676, -0.04004759341478348, 0.01345290057361126, 0.033785879611968994, -0.034772396087646484, 0.017673809081315994, -0.0208562221378088, -0.029636017978191376, 0.03211440518498421, -0.023129811510443687, -0.03851502388715744, -0.020399566739797592, 0.03902207314968109, 0.036605123430490494, -0.013955356553196907, 0.026306351646780968, -0.04107881709933281, -0.039589814841747284, -0.03964942693710327, -0.08724982291460037, 0.007064652629196644, 0.03951938822865486, 0.012873220257461071, 0.003146403469145298, -9.839544509304687e-05, -0.019838757812976837, -0.021659668534994125, -0.0180572047829628, 0.02329290099442005, 0.032482217997312546, 0.04187634587287903, -0.020114704966545105, 0.00521058076992631, -0.10120371729135513, -0.02318536676466465, 0.00714122224599123, 0.05573303624987602, -0.02646026574075222, -0.07303132116794586, 0.037371885031461716, 0.01662447676062584, 0.005548484157770872, -0.05932603031396866, -0.06808529049158096, -0.036928690969944, 0.02404606342315674, 0.005623195320367813, 0.10832837224006653, 0.043679509311914444, 0.006142292637377977, -0.03129423409700394, 2.6554991450211674e-07, 0.0476250946521759, -0.0008317923056893051, 0.038672301918268204, 0.006071473937481642, 0.03252183645963669, -0.030989553779363632, -0.017661454156041145, 0.0072854747995734215, -0.029935695230960846, 0.015626829117536545, 0.0635179951786995, 0.028487039729952812, -0.03049098514020443, -0.0008329481934197247, -0.027813056483864784, -0.0851287692785263, -0.06200655177235603, -0.05586904659867287, -0.03490437567234039, -0.00477395486086607, 0.03711487725377083, 0.011323386803269386, -0.013565192930400372, 0.0025632018223404884, -0.028194664046168327, 0.008908510208129883, -0.03423019498586655, 0.031468894332647324, 0.01234239712357521, 0.05591997876763344, 0.07724117487668991, -0.04009553790092468, -0.03145756945014, 0.030004624277353287, 0.04839207977056503, -0.04757028445601463, -0.021799979731440544, 0.009948275052011013, 0.024956094101071358, 0.02781287021934986, 0.04406969994306564, 0.040174197405576706, -0.0029000730719417334, 0.009859418496489525, -0.016158204525709152, 0.0010950886644423008, 0.013249947689473629, 0.009133871644735336, -0.01574651151895523, -0.0048439945094287395, 0.0041048270650208, 0.05763379856944084, 0.050394557416439056, 0.00032813611323945224, 0.032164644449949265, -0.008717206306755543, -0.012150001712143421, 0.03443330526351929, 0.024045590311288834, 0.0294294785708189, -0.00597997335717082, -0.058379366993904114, 0.023014068603515625, -0.03015184961259365, -0.027015604078769684, -0.02472846768796444, -0.04398222640156746, 2.1119923330231724e-34, -0.010738663375377655, -0.02876335196197033, -0.06589119881391525, -0.0032826003152877092, 0.022914735600352287, -0.04425958916544914, -0.0030535291880369186, -0.016677595674991608, -0.01389539334923029, -0.027678675949573517, 0.016751114279031754], "8a8133a4-4245-4942-8cb0-db3cb28c44f9": [0.02278616465628147, -0.042908936738967896, -0.03517904505133629, 0.024837587028741837, 0.007351983338594437, 0.036374837160110474, -0.016278835013508797, 0.0529206283390522, -0.011929696425795555, -0.010469132103025913, -0.03230999410152435, 8.070626790868118e-05, -0.018268411979079247, 0.02909138612449169, -0.012529933825135231, -0.0588051863014698, 0.049399688839912415, 0.03770948946475983, 0.018965110182762146, 0.021930593997240067, -0.027474217116832733, 0.007889669388532639, 0.009234968572854996, 0.006488634739071131, 0.030254609882831573, -0.029034452512860298, -0.030626337975263596, 0.032920971512794495, -0.030018173158168793, -0.0350186713039875, -0.0008557278197258711, 0.02146507054567337, 0.013025750406086445, -0.02579415589570999, 2.139595153494156e-06, 0.0005930519546382129, -0.047067396342754364, -0.018986746668815613, -0.042074449360370636, -0.005305807571858168, -0.019112300127744675, -0.007682202849537134, -0.05034074932336807, 0.016258733347058296, -0.01627727597951889, -0.05757404491305351, -0.06685854494571686, 0.09971070289611816, -0.05125955492258072, 0.04092949628829956, 0.02345694787800312, -0.01609114743769169, -0.025186682119965553, -0.026014097034931183, 0.06534077227115631, -0.0026119803078472614, -0.043913837522268295, 0.08515799790620804, -2.5988898414652795e-05, -0.061951737850904465, 0.020455172285437584, 0.027769766747951508, -0.04884520545601845, -0.03292832896113396, 0.046849071979522705, 0.003100019646808505, -0.02897598408162594, -0.09329994022846222, 0.030644699931144714, 0.026725610718131065, 0.08822321891784668, -0.02043003775179386, 0.024535687640309334, 0.00876903347671032, -0.034705691039562225, 0.05672641098499298, -0.04156375303864479, -0.03184087947010994, -0.010631239973008633, 0.005451220087707043, 0.007519249338656664, -0.0041566332802176476, 0.014920349232852459, -0.0064817313104867935, 0.08220760524272919, -0.046138349920511246, -0.0074436478316783905, -0.07516872882843018, 0.017522677779197693, -0.014560072682797909, 0.08803674578666687, -0.05283080041408539, 0.023742465302348137, 0.009858432225883007, 0.05094759538769722, -0.03718363866209984, -0.0025204394478350878, -0.040644533932209015, 0.04791110008955002, 0.016520807519555092, 0.008347676135599613, -0.007854755036532879, 0.04847896844148636, 0.00963990855962038, 0.030810730531811714, 0.02227778173983097, -0.0025503234937787056, -0.005307430401444435, -0.049779266119003296, 0.09565646201372147, -0.004597307648509741, 0.02116529829800129, -0.00394578417763114, -0.029284682124853134, -0.004581888671964407, -0.024962065741419792, 0.03621814399957657, 0.03411828354001045, 0.022114137187600136, 0.044525064527988434, 0.009373289532959461, 0.008725376799702644, -0.024273628368973732, 0.03158055990934372, -0.00039012014167383313, -0.007987136952579021, 0.02136084996163845, -0.034280966967344284, -0.005348429549485445, 0.03681650385260582, 0.01230201218277216, 0.03225484862923622, 0.01452524121850729, 0.07945026457309723, -0.026622699573636055, 0.12221108376979828, 0.01170274242758751, -0.016028085723519325, 0.022183887660503387, -0.030778206884860992, 0.06501629203557968, -0.014168701134622097, 0.012855559587478638, -0.004235149826854467, 0.05723472312092781, 0.030817128717899323, -0.014390809461474419, 0.03804265707731247, 0.041703227907419205, 0.008727789856493473, -0.028768427670001984, 0.02209542691707611, 0.0453924797475338, 0.01958095096051693, 0.046344924718141556, 0.012425662018358707, -0.034785058349370956, -0.015184313990175724, 0.018626010045409203, 0.007454007863998413, 0.046564485877752304, 0.04011112451553345, 0.030508464202284813, -0.03877665475010872, -0.012834809720516205, 0.01784035749733448, 0.06532800197601318, 0.038625288754701614, 0.06424760073423386, -0.0021167637314647436, -0.06529058516025543, -0.007108672987669706, -0.0366194024682045, 0.0646917074918747, -0.03352305293083191, 0.04384942725300789, 0.04786476120352745, 0.015100335702300072, -0.0178181491792202, 0.002251169178634882, -0.029718343168497086, 0.005688745528459549, -0.03305476903915405, -0.02286064252257347, -0.03334622457623482, -0.01630847342312336, 0.0053284624591469765, -0.028073616325855255, 0.022889941930770874, -0.012537023052573204, -0.036054790019989014, 0.028171217069029808, -0.02306470461189747, -0.04634925723075867, -0.0033254155423492193, 0.008543213829398155, -0.09474039822816849, -0.01980205997824669, -0.04563954472541809, -0.026942744851112366, 0.04192832112312317, 0.05363686382770538, 0.0418318547308445, 0.01829523965716362, 0.0917619839310646, 0.0026756867300719023, -0.08242680877447128, -0.03035896271467209, -0.04100515693426132, -0.022898666560649872, 0.07529991865158081, -0.023683948442339897, 0.002384959254413843, -0.036452703177928925, -0.02484271489083767, 0.0006425051251426339, -0.018677065148949623, -0.025455292314291, 0.002877860562875867, -0.02643107809126377, 0.03298371285200119, -0.05834675952792168, 0.01108328253030777, 0.022899607196450233, 0.01770273968577385, -0.062437739223241806, -0.024061689153313637, 0.007419907953590155, 0.07621563971042633, 0.0010896115563809872, -0.02548210322856903, -0.002589612966403365, 0.03985586017370224, 0.032444100826978683, 0.013651375658810139, 0.0011127827456220984, -0.003116854000836611, -0.03995569050312042, -0.05157041922211647, -0.09534764289855957, 0.01679711416363716, -0.01860855519771576, 0.005237055476754904, 0.005079254973679781, -0.03826281055808067, 0.053748611360788345, 0.014496018178761005, -0.020633351057767868, 0.04612698405981064, 0.046873509883880615, -5.895674621569924e-05, -0.0064673107117414474, 0.0464140884578228, -0.012094337493181229, -0.0444524809718132, 0.04189430549740791, -0.003827053587883711, 0.00821952149271965, -0.0641237199306488, 0.08953803032636642, 0.02251957729458809, -0.013681423850357533, -0.016238365322351456, 0.013042337261140347, 0.02644091099500656, -0.003051341976970434, -0.02499980479478836, -0.05775308981537819, -0.00734580447897315, 0.0015857112593948841, 0.033763475716114044, 0.0032282075844705105, 0.021152954548597336, -0.01826547086238861, 0.024326631799340248, -0.002942744642496109, -0.038446515798568726, 0.02280908264219761, -0.043384846299886703, -0.024947844445705414, 0.011328352615237236, -0.008639826439321041, -0.05529610812664032, -0.008482537232339382, -0.008907674811780453, -0.018530767410993576, 0.03604413941502571, -0.05175046995282173, -0.04937376827001572, -0.06365038454532623, -0.012452487833797932, 0.009137525223195553, 0.03720219433307648, -0.04085918143391609, -0.017526889219880104, -0.007505978923290968, 0.00799820851534605, 0.006387933623045683, -0.02840663678944111, 0.044455062597990036, 0.048740167170763016, -0.03868669643998146, -0.010075871832668781, 0.01621427945792675, -0.033830348402261734, 0.08932814002037048, 0.014863690361380577, -0.013122644275426865, 0.017232779413461685, -0.057251375168561935, 0.07539806514978409, 0.059267546981573105, 0.022214295342564583, -0.07581056654453278, 0.006436311174184084, -0.025537174195051193, -0.008548957295715809, -0.029261402785778046, 0.008322205394506454, 0.057497620582580566, 0.02628413960337639, 0.0071898470632731915, -0.036311037838459015, -0.002050320850685239, 0.014479896053671837, -0.0450536385178566, 0.02692463807761669, -0.019696436822414398, 0.01882152631878853, 0.026253538206219673, 0.021554009988904, -0.03548666462302208, 0.0017602547304704785, -0.016704566776752472, -0.03702905774116516, -0.0013931788271293044, -0.01750224083662033, -0.024900544434785843, -0.002864049980416894, -0.01180731039494276, 0.004447704181075096, 0.06056446209549904, -0.043029870837926865, 0.015921518206596375, 0.02296782098710537, 0.03427240252494812, -0.04501187428832054, 0.015069518238306046, -0.11658141762018204, 0.027035433799028397, 0.0009327216539531946, 0.017160197719931602, 0.03999727964401245, -0.026979485526680946, -0.023009998723864555, 0.04393444210290909, -0.043729983270168304, -0.025418171659111977, 0.03250357136130333, -0.0393436960875988, 0.003963564056903124, 0.029083112254738808, 0.05288417637348175, 0.07368683815002441, 0.07042137533426285, 0.03575312718749046, -0.027349309995770454, -0.016393830999732018, 0.0047190263867378235, -0.030828338116407394, -0.09641767293214798, -0.026390818879008293, 0.042106885462999344, 0.04656399041414261, 0.023799292743206024, -0.04709942266345024, 0.008516734465956688, -0.05343759059906006, -0.010560575872659683, -0.051051072776317596, 0.03601176664233208, -0.00014944872236810625, 0.039547149091959, 0.019803447648882866, 0.04476065933704376, -0.01793885976076126, 0.06047375127673149, -0.010020356625318527, 0.06370904296636581, -0.01979413628578186, 0.016933847218751907, 0.008409478701651096, 0.009600895456969738, -0.04414284601807594, -0.024431398138403893, 0.006316474173218012, 0.01449066586792469, 0.015218977816402912, -0.005787920206785202, -0.05378352850675583, -0.03097100369632244, 0.00207779323682189, -0.03874104842543602, 0.036530982702970505, 0.03135157376527786, 0.024829696863889694, 0.06863322108983994, 0.057994380593299866, 0.018656780943274498, 0.030173273757100105, 0.03012547269463539, 0.03835657984018326, 0.013657541014254093, -0.023645803332328796, 0.020699864253401756, -0.04859313741326332, 0.04594500735402107, -0.029861638322472572, -0.027062371373176575, -0.015609385445713997, -0.028128845617175102, 0.018674055114388466, 0.03868773579597473, -0.048471394926309586, 0.018201880156993866, -0.04641079157590866, 0.07212866097688675, 0.0027701719664037228, 0.03680325672030449, -0.01903228834271431, 0.06980477273464203, -0.024821041151881218, 0.00993848592042923, 0.04802168533205986, 0.0611933134496212, 0.0736299604177475, 0.020499294623732567, -0.10852644592523575, -0.03465580940246582, -0.039487943053245544, -0.028833668678998947, 0.008070314303040504, 0.0517270602285862, 0.0063064428977668285, -0.022450732067227364, 0.016849219799041748, 0.01659572869539261, 0.048427801579236984, -0.023382706567645073, -0.030766429379582405, -0.04636463150382042, -0.12036990374326706, -0.049179039895534515, 0.005695134401321411, -0.00017416151240468025, 0.021232163533568382, 0.01842612586915493, 0.011945157311856747, -0.018011054024100304, -0.0041144732385873795, -0.06862989068031311, 0.04251715540885925, 0.05283470079302788, -0.0019610782619565725, 0.028947047889232635, -0.017723113298416138, -0.0490160807967186, -0.02619486302137375, -0.015386935323476791, 0.02205679938197136, -0.025636816397309303, 0.007024364545941353, -0.001016719383187592, -0.049263082444667816, 0.038339659571647644, -0.06964780390262604, -0.02309100143611431, -0.007289528381079435, -0.014253661967813969, -0.029849065467715263, 0.027686186134815216, -0.01440521702170372, 0.02610909193754196, -0.058404795825481415, -0.02540898136794567, 0.07967466861009598, -0.04302596673369408, -0.012552810832858086, -0.008263276889920235, -0.04085233807563782, -0.012296025641262531, 0.021194200962781906, 0.005530723370611668, 0.008613520301878452, -0.05915422365069389, 0.03439025953412056, -0.03018016554415226, -0.019423609599471092, -0.021227572113275528, -0.031683873385190964, 0.013813216239213943, -0.06103720888495445, -0.03816138207912445, 0.09469447284936905, -0.050479818135499954, -0.05191538482904434, -0.0485108308494091, 0.04266948625445366, -0.008289910852909088, 0.014237993396818638, -0.0764242485165596, -0.00782999861985445, -0.038908861577510834, -0.04957811161875725, -0.00018350384198129177, -0.022288324311375618, -0.048417914658784866, -0.06307423859834671, 0.029040517285466194, -0.018040021881461143, 0.013439230620861053, 0.00844950508326292, 0.028671998530626297, 0.014043349772691727, -0.004189642611891031, 0.00033394599449820817, 0.03623385727405548, 0.038218725472688675, 0.03497452661395073, 0.033470530062913895, -0.018512137234210968, -0.03568059951066971, 0.013451565988361835, -0.01654777303338051, -0.0559723898768425, 0.028746621683239937, 0.048553064465522766, -0.004145569633692503, 0.0019554735627025366, -0.02442549541592598, -0.015558958984911442, -0.012591770850121975, 0.017068391665816307, 0.029339494183659554, -0.01464039646089077, -0.015124493278563023, 0.011183981783688068, 0.03382164612412453, 0.029382582753896713, -0.04026755690574646, 0.01183435507118702, -0.0027270177379250526, 0.04097839072346687, 0.022202350199222565, 0.005905387457460165, -5.9090073288081225e-33, -0.047094374895095825, -0.030979005619883537, -0.009011728689074516, 0.03371616080403328, 0.0197650995105505, -0.029013236984610558, -0.006316933315247297, -0.061692386865615845, -0.00675836531445384, -0.04649115726351738, -0.02294895052909851, -0.033942610025405884, 0.027418427169322968, -0.011411956511437893, -0.01414084155112505, -0.00017917982768267393, 0.03957488387823105, 0.003047982230782509, -0.021927816793322563, 0.01184269692748785, 0.013260315172374249, -0.03193590044975281, -0.010178904049098492, -0.018810661509633064, -0.040997814387083054, -0.05774567648768425, -0.004974126350134611, -0.04819953814148903, -0.013248898088932037, 0.003480559913441539, -0.0627809464931488, -0.03934657946228981, -0.009014511480927467, 0.045436833053827286, 6.086044231778942e-05, 0.045920319855213165, -0.04691861569881439, -0.028634293004870415, 0.01184500940144062, 0.012452189810574055, 0.034477923065423965, -0.008955523371696472, -0.025981411337852478, 0.005640947259962559, 0.05224621668457985, 0.017113033682107925, -0.0009370059706270695, 0.04469117522239685, -0.060588568449020386, 0.037968505173921585, -0.06117825582623482, 0.02654041163623333, 0.003021604148671031, 0.026056820526719093, -0.008182695135474205, -0.004177409689873457, 0.012668736279010773, -0.06343506276607513, -0.03383190184831619, -0.02082228474318981, 0.03487113490700722, 0.0031323491130024195, 0.07502983510494232, 0.007512756623327732, 0.002332691801711917, 0.014956236816942692, 0.028639551252126694, 0.08863311260938644, -0.00015895134129095823, -0.04191554710268974, 0.012777676805853844, 0.003145590191707015, -0.03945915028452873, -0.02627679519355297, -0.031004754826426506, 0.03539571911096573, -0.014753875322639942, 0.04387115314602852, 0.002689403248950839, 0.07527229934930801, 0.008064926601946354, 0.01787261851131916, -0.01772255264222622, -0.011379900388419628, 0.02069901116192341, -0.0266839861869812, -0.005574807990342379, -0.01732603833079338, 0.00931430421769619, 0.024642130360007286, 0.013552326709032059, -0.052934885025024414, -0.0541851632297039, 0.06219905987381935, 0.01901998184621334, 0.09035057574510574, 0.04195963218808174, -0.02351619303226471, -0.0464034229516983, -0.053442444652318954, -0.014107054099440575, -0.02456723339855671, 0.01357575599104166, -0.017421923577785492, -0.001058670924976468, -0.026403293013572693, -0.03813367709517479, 0.021827219054102898, -0.016256118193268776, -0.007905683480203152, 0.011629552580416203, -0.04296981915831566, 0.04520779103040695, -0.043763168156147, 0.02986467257142067, -0.03556673228740692, -0.029536139219999313, -0.009048739448189735, -0.0012449065688997507, -0.002313693519681692, 0.0031858915463089943, -0.006189132109284401, 0.017966972663998604, -0.010072385892271996, -0.03416675701737404, 0.02442282624542713, -0.03205723315477371, -0.03228697180747986, 0.09450463205575943, 0.027884723618626595, 0.011359316296875477, -0.011595752090215683, 2.815841639858263e-07, 0.04754636436700821, 0.02509985864162445, 0.0024367468431591988, 0.0021902762819081545, 0.002692015375941992, -0.01970111019909382, -0.021042130887508392, 0.0026555010117590427, -0.03852470591664314, 0.016963809728622437, 0.07943864911794662, -0.015849152579903603, 0.006891222205013037, 0.07625790685415268, 0.012102674692869186, 0.06327532976865768, -0.024952033534646034, -0.007729622069746256, -0.02032427303493023, -0.045169632881879807, 0.010648167692124844, 0.013355202972888947, 0.05453655868768692, -0.006838665343821049, -0.04759257286787033, 0.053265489637851715, -0.02383452095091343, -0.04854613542556763, -0.03540528193116188, -0.039246950298547745, 0.0314343199133873, 0.01579594798386097, 0.0006302996771410108, -0.019779827445745468, -0.015488691627979279, 0.00024198874598369002, -0.009786531329154968, 0.043625470250844955, 0.02343873120844364, 0.056831762194633484, 0.06462404876947403, -0.0374968945980072, -0.01156673114746809, -0.003173371311277151, 0.00514377374202013, 0.004467020742595196, 0.02902761660516262, 0.06122748181223869, -0.07356882095336914, 0.013093825429677963, 0.012926989234983921, 0.031354136765003204, 0.001674752333201468, 0.04025011882185936, -0.031483862549066544, -0.03787215054035187, -0.004043054301291704, -0.01902705244719982, 0.017479578033089638, 0.003034133929759264, -0.03414425253868103, 0.018019162118434906, 0.019301047548651695, -0.03415241837501526, 0.014139172621071339, -0.0072475215420126915, -0.02490128204226494, 3.3975639237827937e-34, 0.01920253410935402, -0.02080981619656086, -0.014622295275330544, -0.02545526623725891, 0.02948339469730854, -0.02372536063194275, 0.05054843798279762, 0.01680849865078926, 0.025356188416481018, -0.10741744935512543, -0.014788109809160233], "2b17d74a-862c-435b-a4fe-b602778b2680": [0.03308200463652611, -0.014745487831532955, -0.023100662976503372, 0.017238110303878784, -0.012757346965372562, 0.03331233561038971, 0.03074689395725727, 0.07281827926635742, 0.007165645714849234, -0.007928838022053242, -0.03695657104253769, 0.05196407809853554, 0.019185205921530724, 0.04500468075275421, -0.037521664053201675, 0.00454504182562232, 0.04589400440454483, 0.010648866184055805, -0.005786907393485308, -0.018755218014121056, -0.04237695783376694, 0.031890515238046646, -0.014516910538077354, 0.0010144716361537576, 0.15101198852062225, -0.032240111380815506, -0.0003318924573250115, -0.022399507462978363, -0.000193437808775343, -0.016987409442663193, -0.008449825458228588, 0.03742249310016632, -0.011193623766303062, 5.8936577261192724e-05, 2.1192681742832065e-06, -0.005952848587185144, -0.02208416722714901, 0.01190032996237278, -0.025968922302126884, -0.006932941265404224, 0.03320695087313652, 0.015790607780218124, -0.004517499357461929, 0.0359385646879673, 0.017115749418735504, -0.0390683151781559, -0.017670469358563423, 0.030954813584685326, -0.04944920539855957, 0.0008229390368796885, 0.03687487915158272, -0.03923624008893967, 0.04205891489982605, -0.006293006706982851, 0.08433355391025543, -0.07302901893854141, -0.03974348306655884, 0.027204886078834534, 0.022864805534482002, 0.04299726337194443, -0.0008395646000280976, 0.054470520466566086, -0.021385276690125465, -0.004158762749284506, 0.06505433470010757, 0.028943875804543495, 0.021958008408546448, -0.10583074390888214, 0.0330093577504158, 0.035959392786026, 0.14177756011486053, -0.018795356154441833, 0.02765912190079689, 0.04383635148406029, -0.051108989864587784, 0.06290669739246368, 0.007319074124097824, 0.07121578603982925, -0.026923662051558495, 0.004167827311903238, -0.017295775935053825, -0.03638901934027672, 0.002535470062866807, 0.039977315813302994, 0.043380722403526306, -0.03434178605675697, -0.020290900021791458, -0.03650261461734772, 0.08963250368833542, -0.03408311679959297, 0.05882614105939865, 0.010119003243744373, -0.03686223551630974, 0.00900497380644083, 0.06906726956367493, -0.03743741288781166, 0.015764065086841583, -0.022252600640058517, 0.04422587901353836, -0.010168787091970444, 0.02164725586771965, 0.008980656042695045, -0.03983905538916588, 0.010217413306236267, 0.023126233369112015, 0.012790795415639877, -0.031242581084370613, -0.04275800660252571, -0.0012168037937954068, 0.09425267577171326, 0.0288174320012331, 0.010115284472703934, 0.034650031477212906, -0.04651462659239769, -0.041612014174461365, -0.0399622768163681, 0.01773384027183056, 0.01777014695107937, 0.05320396274328232, 0.04447288438677788, 0.02460254728794098, 0.007127835880964994, -0.05435973405838013, -0.011234364472329617, -0.011030124500393867, -0.07606635242700577, 0.07762181758880615, -0.0222565196454525, -0.021966418251395226, -0.0241131279617548, -0.03018873557448387, -0.019473863765597343, 0.0019331038929522038, 0.03513168916106224, -0.0032949764281511307, 0.06797046214342117, 0.01723172701895237, -0.025734150782227516, 0.018124248832464218, -0.017517559230327606, 0.07071220129728317, 0.006338464096188545, -0.0027298585046082735, 0.024691931903362274, 0.012756559066474438, 0.015093255788087845, 0.017273755744099617, 0.019442057237029076, 0.025675315409898758, 0.04542336240410805, -0.04945793375372887, 0.010429702699184418, 0.008266223594546318, -0.014118497259914875, 0.04250601306557655, 0.03252445533871651, 0.009105220437049866, -0.0258234441280365, -0.03257030248641968, -0.0017778299516066909, 0.0020233052782714367, 0.03518913313746452, 0.029028255492448807, -0.0684395581483841, -0.0017751160776242614, -0.03758803755044937, 0.0687619149684906, 0.016753369942307472, -0.0015619598561897874, 0.03104163520038128, -0.010780136100947857, 0.03366810828447342, -0.044152338057756424, 0.013889419846236706, -0.024295637384057045, -0.02199743315577507, 0.0665648803114891, 0.03286945819854736, -0.042206909507513046, 0.017455343157052994, 0.029194315895438194, -0.07464773207902908, -0.01673443429172039, 0.0029634488746523857, -0.103776715695858, -0.0010845547076314688, -0.0068685440346598625, -0.031085697934031487, 0.016983576118946075, -0.005326846614480019, -0.02633940614759922, -0.0011301359627395868, 0.020360438153147697, -0.07242783904075623, 0.014341006986796856, 0.0025713173672556877, -0.06580693274736404, -0.1057479977607727, 0.014089751057326794, -0.0004174579808022827, 0.03164926916360855, -0.03715326637029648, 0.024594256654381752, 0.018414845690131187, 0.08002787083387375, -0.024396780878305435, 0.04570953920483589, -0.022280367091298103, -0.041022658348083496, 0.037459131330251694, 0.020964795723557472, 0.009632628411054611, 0.0021700230427086353, -0.03140528127551079, -0.04958711192011833, -0.02417096495628357, -0.008580083027482033, -0.018378883600234985, -0.014652296900749207, 0.01950034312903881, 0.021231135353446007, -0.07328704744577408, -0.027511635795235634, 0.02374085783958435, 0.013253457844257355, -0.04708525538444519, -0.0239720419049263, 0.01459729764610529, 0.04332531616091728, 0.010349991731345654, -0.008175760507583618, 0.004374207928776741, -0.013525509275496006, 0.051154572516679764, 0.006580431945621967, -0.03755328431725502, 0.004059323109686375, 0.026445258408784866, -0.018909070640802383, -0.11587035655975342, 0.03093571588397026, 0.08040278404951096, 0.014742091298103333, 0.027313685044646263, 0.014868724159896374, 0.004534061998128891, -0.0066988482140004635, -0.021393325179815292, 0.005807350855320692, 0.049320559948682785, 0.03532983735203743, 0.010018477216362953, 0.04938548058271408, -0.019234515726566315, -0.007489004172384739, 0.05746879428625107, -0.10764120519161224, -0.026279358193278313, -0.019218068569898605, 0.06294889003038406, -0.0007934269960969687, -0.012744718231260777, -0.0005136879626661539, -0.00867318082600832, 0.023060472682118416, 0.0145468944683671, 0.006552272941917181, -0.007662253454327583, 0.01791371963918209, -0.0015396574744954705, 0.0047565363347530365, 0.015761664137244225, -0.013543454930186272, -0.01870262622833252, 0.0687042698264122, 0.0549994558095932, 0.02146637625992298, 0.0009579635807313025, -0.05801711976528168, -0.030492784455418587, -0.02325214259326458, 0.022123314440250397, -0.016873963177204132, 0.016422322019934654, -0.0014438751386478543, -0.041034821420907974, 0.010908626951277256, -0.04032004997134209, 0.0016782254679128528, 0.013828315772116184, 0.010218445211648941, 0.009526929818093777, 0.0050751096569001675, -0.0005267192609608173, -0.035276174545288086, 0.01909628137946129, -0.05820755660533905, 0.012660478241741657, -0.036557406187057495, 0.052689023315906525, 0.06732463836669922, -0.004857724066823721, -0.013825587928295135, 0.021806534379720688, 0.006218165159225464, 0.01580842398107052, -0.00027133739786222577, -0.052438218146562576, -0.006675476673990488, -0.09659301489591599, 0.0519898384809494, 0.03570035845041275, -0.014946536161005497, -0.044173356145620346, -0.014772268943488598, -0.057783715426921844, -0.02580093964934349, -0.0037240784149616957, -0.011271154507994652, 0.05393659695982933, 0.012136322446167469, -0.004240700043737888, -0.042924914509058, 0.008911675773561, 0.030122769996523857, -0.10248974710702896, 0.03365625441074371, -0.019060684368014336, 0.06077771633863449, -0.02580098994076252, 0.04181831330060959, 0.04528699815273285, 0.005702358670532703, 0.011490292847156525, 0.035255685448646545, 0.03106260485947132, -0.028927361592650414, -0.009380405768752098, -0.005088275298476219, -0.042224492877721786, -0.031304117292165756, 0.0841238722205162, -0.005028804764151573, 0.0006269465084187686, 0.004482857417315245, -0.019689597189426422, -0.007309298496693373, -0.015310320071876049, -0.07383836060762405, -0.006779462099075317, 0.08375046402215958, 0.03960258886218071, 0.026531627401709557, -0.00780426524579525, -0.005033470224589109, -0.04839976131916046, 0.0017296544974669814, -0.03272812440991402, -0.032432567328214645, -0.03954895958304405, 0.014929435215890408, -0.002885433379560709, -0.031599972397089005, 0.032911304384469986, 0.10131877660751343, 0.019693084061145782, 0.004769698716700077, 0.009744205512106419, -0.0021058761049062014, 0.018902549520134926, -0.09003753215074539, 0.007190230768173933, -0.008913703262805939, 0.05097294971346855, 0.03706757724285126, -0.08214866369962692, -0.0385148786008358, -0.047583144158124924, -0.010029825381934643, -0.04411353915929794, -0.027547843754291534, -0.059814970940351486, 0.047282230108976364, 0.026194442063570023, 0.05551454424858093, -0.008174424059689045, 0.0242499727755785, 0.013637815602123737, 0.07072672247886658, -0.019165774807333946, -0.0014127297326922417, -0.07489832490682602, -0.021073047071695328, -0.005095268599689007, -0.027128133922815323, -0.04580378159880638, -0.0286763533949852, 0.003916013520210981, -0.020380031317472458, 0.026396015658974648, -0.015530215576291084, 0.05905211344361305, -0.023175785318017006, 0.014989067800343037, 0.019035788252949715, 0.044953566044569016, -0.004874455276876688, 0.03578007221221924, -0.010400989092886448, 0.04842829331755638, 0.04540807753801346, 0.003830456640571356, 0.003381752409040928, -0.03155618533492088, 0.03633308410644531, -0.010769964195787907, 0.04586333408951759, -0.030378464609384537, 0.018919076770544052, -0.008602925576269627, -0.005283014383167028, 0.0077348751947283745, 0.0245036818087101, 0.001861898461356759, -0.004967825021594763, -0.022015465423464775, 0.039643675088882446, -0.029546847566962242, 0.02740059792995453, -0.055655427277088165, 0.05127696692943573, 0.022148188203573227, 1.814150709833484e-05, 0.020451581105589867, 0.02898460067808628, -0.03046562895178795, -0.004885953851044178, -0.07247928529977798, -0.07710067927837372, -0.026093564927577972, -0.0003606436657719314, -0.049432944506406784, -0.004335695877671242, 0.015868861228227615, -0.027017906308174133, 0.04703223332762718, 0.03288392350077629, -0.008520204573869705, -0.06704478710889816, -0.061918705701828, -0.03714983910322189, -0.039438214153051376, -0.04365817457437515, 0.009821629151701927, -0.04496623948216438, -0.018731165677309036, 0.00646247249096632, 0.11288651078939438, -0.008807052858173847, 0.036514654755592346, -0.021937958896160126, 0.03615427389740944, -0.009965336881577969, 0.0049403365701437, -0.016399802640080452, 0.004957401659339666, 0.024893522262573242, -0.03134696185588837, 0.038339510560035706, 0.020719468593597412, 0.0025530681014060974, -0.0287986621260643, -0.009237215854227543, -0.038588058203458786, 0.00598524697124958, -0.07997379451990128, -0.042636796832084656, 0.006258341949433088, -0.035057343542575836, -0.00016565548139624298, -0.020516084507107735, -0.021186446771025658, 0.0218498632311821, 0.00629012705758214, -0.04785687476396561, 0.06790415197610855, -0.019587166607379913, 0.024427564814686775, 0.018662814050912857, -0.0007982528186403215, 0.07992783933877945, -0.04268576204776764, -0.0007163952686823905, 0.00038506390410475433, 0.012360583990812302, 0.016379134729504585, 0.022618401795625687, 0.03260437026619911, 0.04087754711508751, 0.03972812369465828, -0.02087762951850891, -0.04751453921198845, -0.020487654954195023, 0.04683667793869972, -0.07964736223220825, -0.015071677975356579, 0.017652280628681183, 0.047497641295194626, -0.0001225729356519878, -0.009118035435676575, -0.019893761724233627, -0.015132982283830643, -0.05517840385437012, -0.008816243149340153, 0.061900489032268524, -0.0015721505042165518, -0.026834018528461456, -0.004979084711521864, 0.034030310809612274, -0.012254176661372185, 0.015642449259757996, -0.0022066952660679817, 0.036186058074235916, -0.01887887716293335, 0.023430941626429558, 0.013038420118391514, 0.016156025230884552, 0.030964916571974754, 0.012081033550202847, 0.03587723523378372, 0.011249144561588764, -0.006193523295223713, 0.005724471062421799, 0.002954952884465456, -0.028277266770601273, -0.046040430665016174, -0.00041025824612006545, 0.02479068748652935, 0.019709814339876175, 0.013680782169103622, 0.02071930468082428, 0.0027466434985399246, 0.01764722168445587, 0.043965116143226624, 0.031637705862522125, -0.011267269030213356, 0.018396036699414253, 0.02671893499791622, -0.010815172456204891, -0.116537906229496, -0.029780052602291107, 0.005558617413043976, -0.08083697408437729, 0.03593076765537262, 0.02969515323638916, -5.967782046349237e-33, -0.029083633795380592, 0.028297048062086105, -0.02049572765827179, 0.0007297365227714181, 0.013159960508346558, -0.01818874292075634, -0.02227693423628807, -0.04954586550593376, -0.06770282238721848, -0.05385855957865715, -0.024423621594905853, 0.006249144207686186, 0.007405838929116726, -0.022409426048398018, 0.003057701513171196, 0.009024365805089474, -0.024000931531190872, -0.016099870204925537, -0.003994019702076912, 0.019137289375066757, -0.029160622507333755, -0.04260993376374245, -0.043053582310676575, 0.027559679001569748, -0.005827006418257952, -0.08932404220104218, -0.031697534024715424, -0.01485060341656208, -0.016147051006555557, 0.009301971644163132, -0.07424414902925491, -0.055114634335041046, -0.002970924135297537, 0.005495508201420307, 0.03547084704041481, 0.022222764790058136, -0.016011085361242294, -0.002393203554674983, 0.03029175102710724, -0.005474369041621685, 0.0017102500423789024, -0.04715421050786972, -0.02296742983162403, 0.02269626595079899, -0.021484848111867905, -0.01580878719687462, 0.022194379940629005, 0.007169301621615887, -0.030446695163846016, 0.011922216042876244, -0.045978136360645294, 0.020288029685616493, -0.01838594116270542, 0.04921094328165054, -0.010294788517057896, -0.007618168368935585, -0.0017374595627188683, -0.07030658423900604, 0.003902358002960682, -0.033307746052742004, 0.02279445342719555, 0.019589701667428017, 0.02969726175069809, 0.010507586412131786, 0.005912416614592075, -0.010700900107622147, -0.0368734635412693, 0.03473905101418495, -0.017125651240348816, 0.027306530624628067, -0.0022133816964924335, -0.010567648336291313, -0.01620894856750965, -0.022033927962183952, -0.06185305118560791, 0.007465198170393705, -0.02886679209768772, 0.026073971763253212, -0.01308442372828722, 0.10815934091806412, -0.002613780088722706, -0.022856490686535835, -0.025308066979050636, 0.016569100320339203, -0.007956740446388721, -0.04230038821697235, -0.04755823314189911, -0.008063583634793758, 0.0029392214491963387, 0.006055008620023727, -0.01961512677371502, -0.0808149054646492, -0.039390794932842255, 0.024465467780828476, 0.02868242934346199, 0.0396563746035099, 0.0430290587246418, 0.01662846840918064, -0.030258044600486755, -0.05681362375617027, -0.0853765457868576, -0.035111233592033386, 0.011218181811273098, 0.019632745534181595, -0.005147929303348064, -0.030826807022094727, -0.04553046077489853, 0.013704104349017143, -0.020769519731402397, 0.006498765200376511, 0.003527750726789236, -0.04943430796265602, 0.04470837116241455, 0.016755104064941406, -0.011322328820824623, -0.04484102129936218, 0.005397023633122444, -0.00017948371532838792, -0.009474665857851505, 0.03404213488101959, -0.03330770134925842, -0.0030960552394390106, 0.018515752628445625, -0.022109761834144592, 0.02049233578145504, 0.05299537628889084, 0.010479534976184368, 0.02493858151137829, 0.032135672867298126, -0.022795187309384346, 0.010810552164912224, 0.003987829200923443, 2.883733429825952e-07, 0.011812940239906311, 0.04840971902012825, -0.0004699363198596984, 0.030207747593522072, -0.028759891167283058, -0.040820442140102386, 0.013571335934102535, 0.029413769021630287, -0.027003055438399315, 0.0018506944179534912, 0.07882969081401825, 0.021241571754217148, -0.007542105857282877, 0.01559227891266346, 0.01493936125189066, 0.011757556349039078, -0.02780710719525814, -0.0332464762032032, -0.014839721843600273, -0.036114733666181564, 0.043554771691560745, 0.0035596759989857674, 0.022120974957942963, 0.011752759106457233, -0.01462196372449398, -0.005083813797682524, -0.022153114899992943, -0.02030797488987446, 0.00749065401032567, -0.014646912924945354, 0.05665402486920357, 0.08069586008787155, -0.006863234099000692, -0.11266851425170898, -0.0033794622868299484, -0.0019524124218150973, -0.035982079803943634, 0.015776928514242172, 0.036027077585458755, 0.01831609196960926, 0.05769338831305504, -0.03808966651558876, -0.02225177176296711, -0.0012500346638262272, 0.05215292051434517, 0.12439224123954773, 0.01776110753417015, 0.06538588553667068, -0.0027241013012826443, -0.013215015642344952, 0.03291711583733559, 0.019271014258265495, 0.026558417826890945, -0.00978183839470148, -0.025332698598504066, -0.04701818898320198, 0.02455206960439682, -0.03585045784711838, 0.018892301246523857, -0.015443992801010609, -0.016540363430976868, 0.0052109044045209885, 0.01956333965063095, 0.021088911220431328, -0.016736578196287155, -0.004467789549380541, -0.019303733482956886, 2.9399954008855256e-34, 0.03934861347079277, -0.06032884120941162, -0.0006400339188985527, -0.05308878794312477, -0.011445414274930954, -0.011471303179860115, 0.03078928031027317, 0.014110499992966652, -0.009216462261974812, -0.07671606540679932, -0.030240029096603394], "d27c338e-31f3-4279-a7e5-01daae284dbc": [0.04588518664240837, 0.04075905308127403, -0.035639308393001556, 0.013587976805865765, 0.010698183439671993, 0.03384166955947876, -0.020127978175878525, 0.029360778629779816, -0.057678066194057465, 0.007642233744263649, 0.018234822899103165, 0.009189529344439507, -0.012369517236948013, 0.06262529641389847, -0.027118613943457603, -0.0033572623506188393, 0.033175643533468246, -0.010986890643835068, -0.030223891139030457, 0.03149677813053131, -0.028022324666380882, 0.042094070464372635, 0.007475453894585371, 0.039095405489206314, 0.02942592464387417, 0.0002479136746842414, -0.0006583056529052556, -0.0005452354089356959, 0.010475189425051212, -0.05078749358654022, 0.01303244661539793, 0.03635929524898529, -0.03273190185427666, 0.0022157791536301374, 2.647267592692515e-06, 0.013659533113241196, -0.03398161754012108, -0.03614671528339386, -0.0481078140437603, 0.006695663556456566, -0.01828848011791706, -0.0019294251687824726, -0.030031317844986916, 0.012454383075237274, -0.01665198616683483, -0.008690312504768372, -0.01528736762702465, 0.019149174913764, -0.0684027373790741, 0.020101038739085197, 0.048579346388578415, 0.025901101529598236, -0.026766261085867882, -0.05213530361652374, 0.13278751075267792, -0.07777930051088333, -0.01601392589509487, 0.03449651598930359, 0.004727652296423912, 0.0642971396446228, 0.0054392097517848015, 0.039326827973127365, -0.036814507097005844, 0.005375534761697054, 0.06915747374296188, 0.037402957677841187, 0.06234404444694519, -0.11783457547426224, 0.0372038297355175, 0.01441576424986124, 0.11611837148666382, -0.003121176501736045, 0.023094234988093376, 0.020182980224490166, -0.056892164051532745, 0.009567148983478546, 0.0011694467393681407, 0.022763939574360847, -0.0331404022872448, 0.010938446037471294, -0.027612149715423584, 0.0062549603171646595, -0.0190085768699646, -0.017535047605633736, 0.04266906529664993, -0.018217485398054123, -0.027657749131321907, -0.004628055728971958, 0.0041871746070683, -0.007192991208285093, 0.071634940803051, -0.031557969748973846, -0.008297989144921303, -0.005057959351688623, 0.021266723051667213, -0.03059828095138073, 0.037404511123895645, -0.039998140186071396, 0.052660632878541946, 0.043381378054618835, -0.035553865134716034, 0.030881047248840332, -0.049450427293777466, 0.05711980536580086, 0.033557161688804626, 0.10179700702428818, 0.0017240019515156746, -0.03228398784995079, -0.0005762630025856197, 0.04404979944229126, -0.015193536877632141, 0.026764022186398506, -0.02604539506137371, -0.049441829323768616, -0.019491804763674736, 0.020201442763209343, 0.0014055705396458507, 0.03730510175228119, 0.03321855887770653, 0.059989623725414276, 0.047578439116477966, 0.0023320571053773165, -0.03500041738152504, 0.010636691004037857, -0.03503939509391785, -0.04541216045618057, -0.013933575712144375, -0.03749848157167435, -0.0385952889919281, 0.03491024300456047, -0.010150693356990814, -0.01932487078011036, -0.016355933621525764, -0.004968747030943632, 0.0011902665719389915, 0.06486288458108902, 0.034295644611120224, -0.033050209283828735, 0.030159171670675278, -0.011873790994286537, 0.004651891533285379, 0.0005461464170366526, -0.020162370055913925, -0.011639315634965897, -0.007566158659756184, 0.01574777066707611, 0.00979164894670248, -0.017350684851408005, 0.015355909243226051, 0.03234277665615082, -0.019559280946850777, 0.0337476022541523, -0.014513437636196613, 0.006118011195212603, -0.015426757745444775, 0.031627628952264786, -0.0495157316327095, -0.010827074758708477, -0.029911549761891365, 0.02148408442735672, 0.0326046496629715, 0.04833953082561493, 0.020229462534189224, -0.03238657861948013, -0.019194437190890312, -0.00033396805520169437, 0.06762074679136276, 0.007653859443962574, 0.033125393092632294, -0.0532858781516552, -0.038727328181266785, -0.0036508305929601192, -0.00025863564223982394, 0.0654163807630539, 0.011063318699598312, 0.035992734134197235, 0.06309070438146591, 0.01914292201399803, -0.04782247170805931, 0.01442731823772192, -0.025519078597426414, -0.0649779886007309, 0.0046858531422913074, 0.044301554560661316, -0.05200899764895439, -0.023368481546640396, -0.08462342619895935, 0.029858343303203583, 0.008909642696380615, 0.0035803436767309904, -0.01997797191143036, -0.0006059493171051145, -0.02625838853418827, -0.04647521302103996, 0.03632321581244469, 0.0018749445443972945, -0.034812457859516144, -0.08986607939004898, 0.001966570969671011, -0.02845744974911213, 0.03549433499574661, 0.004773289430886507, 0.06385336816310883, 0.03299230709671974, 0.028355393558740616, -0.047423917800188065, -0.04889153316617012, -0.012634593062102795, -0.03207504749298096, -0.021509988233447075, 0.044070690870285034, 0.009714173153042793, -0.022932996973395348, 0.0037404827307909727, -0.06668378412723541, 0.014489134773612022, -0.015462169423699379, 0.009038249030709267, -0.013958456926047802, -0.009023025631904602, -0.025666603818535805, -0.054060205817222595, 0.024333568289875984, 0.04014529660344124, 0.02474449947476387, -0.027205508202314377, -0.018208220601081848, 0.008397086523473263, 0.043287549167871475, 0.02049322985112667, 0.010875402018427849, -0.004098482429981232, 0.043332066386938095, 0.012248991057276726, -0.0034781198482960463, -0.024186285212635994, 0.09326668828725815, 0.006194430403411388, -0.0240074060857296, -0.05170353874564171, -0.022919531911611557, 0.04527691751718521, -0.0014457390643656254, 0.031725283712148666, 0.007575860247015953, 0.0032104384154081345, -0.03359709307551384, 0.030306082218885422, 0.005887929815798998, 0.007112364750355482, 0.014236340299248695, -0.01518273912370205, 0.054965537041425705, 0.004990732297301292, -0.02001437544822693, 0.06376392394304276, -0.11595400422811508, 0.0005982315051369369, -0.0630793645977974, 0.05520706623792648, 0.06537292152643204, 0.013647379353642464, -0.027873830869793892, 0.02515527419745922, 0.02813786454498768, 0.023347824811935425, -0.020696232095360756, 0.013250823132693768, -0.022302882745862007, 0.002542161615565419, 0.01897769793868065, 0.007128062192350626, 0.0074213906191289425, -0.022251153364777565, 0.012235318310558796, 0.031473543494939804, -0.05375972017645836, 0.03247126191854477, -0.06847681105136871, -0.015739362686872482, -0.0037564001977443695, -0.01240190677344799, -0.040867600589990616, 0.03640984371304512, -0.024353066459298134, -0.03583817556500435, 0.02372092939913273, -0.14469796419143677, -0.06040996313095093, -0.011182999238371849, 0.008928218856453896, -0.03193473815917969, 0.028022782877087593, -0.025143703445792198, -0.022370293736457825, 0.03331777825951576, 0.01504521444439888, -0.022397920489311218, -0.03502923995256424, 0.11116322129964828, 0.024841541424393654, -0.02910527028143406, -0.012104624882340431, 9.072041575564072e-05, 0.009171971119940281, 0.04414747282862663, 0.03079318068921566, -0.027732931077480316, 0.009489407762885094, -0.07909583300352097, 0.05031594634056091, 0.041849903762340546, -0.019144807010889053, -0.010043059475719929, -0.016357475891709328, 0.005153911653906107, -0.0014443087857216597, -0.025724975392222404, -0.004716950934380293, 0.05899971351027489, -0.0007664200966246426, -0.004695557523518801, -0.015248767100274563, -0.014194317162036896, -0.029304636642336845, -0.060343384742736816, 0.011767139658331871, -0.026622885838150978, 0.06332433223724365, 0.026777589693665504, 0.008395599201321602, -0.022415362298488617, 0.00016726598551031202, 0.023908283561468124, 0.017037319019436836, -0.018490834161639214, -0.0057600680738687515, 0.00742546608671546, 0.033163364976644516, -0.02258436195552349, -0.023746391758322716, 0.07189243286848068, -0.038144901394844055, -0.012655839323997498, -0.04522407799959183, 0.020921701565384865, 0.036343660205602646, -0.0032995056826621294, -0.05246926099061966, 0.04219718277454376, 0.056270089000463486, 0.008085045963525772, 0.048982635140419006, -0.050468385219573975, -0.026938173919916153, -0.0638425350189209, -0.024764982983469963, -0.05034441873431206, -0.014229608699679375, -0.02509307488799095, -0.005517791025340557, 0.03118368424475193, 0.045090191066265106, 0.045636292546987534, 0.018744712695479393, 0.004222072195261717, -0.0060791140422225, 0.009911887347698212, 0.020957818254828453, 0.01355996634811163, -0.06284765899181366, 0.009467005729675293, -0.004019660409539938, 0.05730390548706055, 0.020529987290501595, -0.03797776252031326, 0.017542764544487, 0.017718659713864326, 0.0017212911043316126, -0.021468501538038254, -0.006186498329043388, -0.02032405324280262, 0.03021843358874321, -0.0064142001792788506, 0.02523193694651127, -0.003771039890125394, 0.0034915986470878124, -0.0041663204319775105, 0.09709189087152481, -0.022014496847987175, 0.014326030388474464, -0.061855971813201904, -0.06082610413432121, -0.022016623988747597, 0.01941109634935856, -0.03549560159444809, -0.053360119462013245, 0.0012493839021772146, 0.015744881704449654, 0.004817294888198376, -0.015583212487399578, -0.014836006797850132, 0.004733079578727484, 0.037888411432504654, -0.015815362334251404, 0.04042121767997742, 0.10243546217679977, 0.054600853472948074, 0.01990615949034691, 0.045462220907211304, 0.032075390219688416, 0.010426411405205727, 0.02034621313214302, -0.007439370267093182, 0.0976623073220253, -0.040744200348854065, 0.009845194406807423, 0.0071304719895124435, -0.03988305851817131, -0.06673106551170349, -0.02099037915468216, 0.014278874732553959, 0.036790188401937485, -0.039005815982818604, 0.05229737237095833, -0.029451308771967888, 0.06876222044229507, -0.008315426297485828, 0.02046181634068489, -0.021496890112757683, 0.011375466361641884, 0.061536505818367004, -0.04011614993214607, 0.07385075092315674, 0.0366019532084465, 0.003023626049980521, 0.0005628890939988196, -0.07870441675186157, -0.008906196802854538, -0.03295252099633217, -0.0357777439057827, 0.041855230927467346, 0.038060203194618225, -0.008564572781324387, 0.006764068268239498, 0.0604751780629158, 0.040296297520399094, 0.04504035413265228, -0.039760638028383255, -4.4298711145529523e-05, 0.004956572782248259, -0.04492387920618057, -0.07507719844579697, -0.02619410865008831, -0.022633474320173264, 0.003935431595891714, 0.01635703817009926, -0.013469543308019638, 0.007144015282392502, -0.035166360437870026, -0.04948713630437851, 0.0522882305085659, -0.04884551465511322, -0.02154914103448391, 0.013569911941885948, -0.09069602936506271, -0.06389223784208298, -0.0054925489239394665, 0.03813285008072853, -0.015071975998580456, 0.029079347848892212, -0.030613893643021584, -0.013469336554408073, -0.027715090662240982, 0.0361596941947937, -0.07552611827850342, 0.007581623736768961, -0.03738464042544365, -0.03886999189853668, -0.019828660413622856, 0.002006546827033162, 0.04024985060095787, 0.03331375494599342, -0.04480773210525513, -0.02448071539402008, 0.028840847313404083, -1.4150446077110246e-05, 0.022992800921201706, -0.002847489668056369, -0.01647166721522808, 0.043623894453048706, -0.033961277455091476, -0.016775919124484062, 0.018733398988842964, -0.01888035424053669, 0.0056781526654958725, -0.024443786591291428, -0.01766938343644142, 0.01624479331076145, 0.005482764448970556, 0.023458300158381462, -0.0350489616394043, 0.0032633135560899973, 0.059898000210523605, -0.04638957977294922, -0.04862621799111366, 0.013775779865682125, -0.0069587803445756435, -0.03033050335943699, -0.03803441300988197, -0.024795740842819214, -0.0233357772231102, -0.07680690288543701, -0.027366410940885544, 0.07184718549251556, -0.013852600939571857, 0.02923261560499668, 0.02342568337917328, 0.05001075938344002, -0.03831082582473755, 0.015119833871722221, -0.0044406414963305, 0.010050441138446331, -0.004964491818100214, 0.0453818142414093, -0.01824222505092621, 0.013483085669577122, 0.02123391628265381, -0.005424285773187876, 0.06633572280406952, 0.02707941085100174, -0.019473254680633545, -0.02806449681520462, -0.02501295693218708, -0.018046267330646515, 0.05364762246608734, 0.01853964850306511, 0.027651656419038773, -0.02169247716665268, -0.0067934514954686165, 0.013289243914186954, 0.012284969910979271, 0.07137736678123474, 0.02960122749209404, 0.004771610721945763, -0.04901951551437378, 0.023008735850453377, 0.022006450220942497, -0.013919421471655369, -0.06865549087524414, 0.006690331269055605, -0.03260442614555359, -0.010986728593707085, 0.06492261588573456, -0.009251955896615982, -7.054569185354659e-33, -0.0418519601225853, -0.0864601880311966, -0.014565938152372837, 0.04750094935297966, 0.0033336931373924017, -0.0145390834659338, 0.008815660141408443, -0.03834051638841629, -0.05120446905493736, -0.0785261020064354, -0.0013111853040754795, -0.009562095627188683, 0.01041900459676981, -0.04356522113084793, 0.04701854661107063, -0.004023429471999407, 0.029243355616927147, 0.02083940990269184, -0.017431840300559998, 0.0037346442695707083, -0.006226740311831236, -0.005958534777164459, -0.0026840833015739918, -2.5815774279180914e-05, -0.0257648304104805, -0.04061175882816315, -0.024609394371509552, 0.009588251821696758, 0.005772679578512907, 0.032483119517564774, -0.06097319349646568, -0.07288552820682526, -0.011715630069375038, 0.0019651297479867935, -0.017524713650345802, 0.027357786893844604, -0.02956521138548851, -0.023706132546067238, -0.036827489733695984, -0.002504996955394745, 0.06598715484142303, -0.00016516947653144598, -0.01648569107055664, 0.020608030259609222, 0.005608511622995138, 0.02966768853366375, 0.034735217690467834, 0.009861454367637634, -0.0075277299620211124, 0.06893474608659744, -0.07798352092504501, 0.01636815257370472, -0.0015634867595508695, 0.05246376246213913, 0.005953717045485973, 0.04355263337492943, 0.03967631608247757, 0.0059555345214903355, -0.07662635296583176, -0.05100683122873306, -0.03766169399023056, -0.0014402009546756744, 0.045835718512535095, 0.02557820826768875, -0.03772775083780289, 0.0075166672468185425, -0.014837215654551983, 0.0685647651553154, -0.0557025745511055, -0.037933554500341415, -0.01621694676578045, 0.015828337520360947, 0.023854544386267662, -0.05045673996210098, -0.04903295636177063, -0.010232591070234776, -0.04011794924736023, 0.04220030829310417, 0.06926645338535309, 0.09587336331605911, 0.02260066755115986, 0.02784215658903122, -0.03826272115111351, 0.027706896886229515, 0.04004295542836189, -0.0802103579044342, -0.022616632282733917, -0.005729090888053179, 0.003225197782739997, 0.01471985038369894, 0.0011623065220192075, -0.012918345630168915, -0.04090537875890732, 0.023833831772208214, 0.04020630568265915, 0.05745622143149376, -0.008851761929690838, -0.0012081045424565673, -0.04070134088397026, -0.04233666509389877, -0.045595891773700714, 0.011197300627827644, 0.023919982835650444, 0.016741354018449783, 0.020145049318671227, -0.03192490339279175, -0.025274857878684998, -0.03801841288805008, -0.04018108919262886, 0.005209395661950111, -0.017371883615851402, -0.008440353907644749, 0.001291867345571518, -0.024027325212955475, -7.101971277734265e-05, -0.03952022269368172, 0.005828035995364189, -0.004183910321444273, 0.003282093210145831, 0.0013811830431222916, -0.04095521569252014, 0.02906269021332264, -0.01834782399237156, -0.02775726653635502, -0.022040406242012978, -0.001214841497130692, -0.005199162755161524, 0.040052689611911774, 0.07816743850708008, -0.013047908432781696, -0.01319103129208088, -0.024629034101963043, 3.4121518410756835e-07, 0.018470237031579018, 0.06696414202451706, 0.008618420921266079, -0.02513115294277668, -0.011232583783566952, -0.004128134809434414, -0.056750569492578506, 0.009029231034219265, -0.024211257696151733, -0.021416008472442627, 0.04123061150312424, 0.003275800496339798, 0.010171903297305107, 0.06669904291629791, 0.046973817050457, -0.10524328798055649, -0.004767986014485359, -0.016571274027228355, -0.05276254191994667, 0.0038503031246364117, 0.059267621487379074, 0.008176300674676895, 0.08496232330799103, 0.015137137845158577, -0.013192370533943176, -0.0040062591433525085, -0.01774287037551403, -0.015358501113951206, -0.004126113839447498, -0.0013090136926621199, 0.011023296043276787, -0.016148719936609268, -0.0571596585214138, -0.029403919354081154, 0.0195675790309906, -0.016767261549830437, 0.0019410174572840333, 0.0035246037878096104, 0.01063159666955471, 0.045755282044410706, 0.017656752839684486, 0.0019248977769166231, -0.03812631964683533, 0.014315585605800152, -2.429051892249845e-05, 0.03224089369177818, 0.04505914822220802, 0.08341746032238007, 0.02686438523232937, -0.006826460827142, 0.01870746910572052, 0.06820797175168991, 0.03135736286640167, -0.01920720562338829, 0.012817367911338806, -0.023474877700209618, -0.0451577752828598, -0.003734216559678316, 0.04667260870337486, -0.028563132509589195, -0.059174247086048126, -0.02698853611946106, 0.002549538854509592, 0.019249847158789635, 0.0021464615128934383, 0.02835557609796524, -0.008454003371298313, 3.945282761483554e-34, 0.02420683205127716, -0.03972483426332474, -0.024438761174678802, -0.0735660195350647, -0.0007737466366961598, -0.0144606688991189, -0.02136680670082569, 0.011858665384352207, 0.0016963582020252943, -0.09093266725540161, -0.03281606361269951], "baacf820-88ef-4e27-ab64-5a55a04f1e5f": [0.05319809168577194, 0.04682188853621483, -0.024916520342230797, 0.004358302801847458, -0.018847480416297913, 0.0008179614669643342, -0.032724857330322266, 0.006653444841504097, -0.014987661503255367, 0.01396043598651886, 0.018221724778413773, -0.006754766684025526, -0.020111804828047752, 0.052094023674726486, -0.04430955648422241, -0.029524628072977066, 0.021689534187316895, -0.010265331715345383, -0.0036227921955287457, -0.0010571937309578061, 0.01787624880671501, 0.02794586308300495, 0.008742334321141243, 0.048633698374032974, -0.013384650461375713, 0.02026558108627796, -0.013799495995044708, 0.0008642295724712312, 0.037672001868486404, -0.015993518754839897, -0.008307050913572311, 0.006363801192492247, -0.031169423833489418, 0.03532973676919937, 2.4363878310396103e-06, 0.02111547440290451, -0.038174524903297424, -0.03154008463025093, 0.01597309112548828, -0.040709082037210464, -0.008483107201755047, 0.021524649113416672, -0.040252435952425, 0.0181895699352026, -0.04615221172571182, 0.01658007875084877, 0.0674782544374466, -0.02231050655245781, -0.013349467888474464, 0.009320614859461784, 0.023558707907795906, 0.05916344001889229, -0.013182039372622967, -0.019265927374362946, 0.1371290534734726, -0.058319006115198135, -0.009576489217579365, 0.02627556584775448, 0.04690095782279968, 0.053065426647663116, 0.03170207142829895, 0.027736959978938103, -0.01885818876326084, -0.005480179563164711, 0.07934582978487015, 0.04095197468996048, 0.03987470641732216, -0.07309447228908539, -0.01930425502359867, -0.0057605355978012085, 0.11914850771427155, 0.01497240923345089, -0.006167218089103699, 0.03226581588387489, -0.02735351398587227, 0.0074118501506745815, 0.0011205985210835934, 0.009437047876417637, -0.031530242413282394, 0.015830783173441887, -0.01691734790802002, 0.02924743853509426, -0.0345124676823616, -0.0030405435245484114, 0.019033169373869896, 0.04639506712555885, 0.00863688439130783, 0.014978449791669846, -0.020245347172021866, 0.012332461774349213, 0.03753381222486496, -0.020711999386548996, 0.009745502844452858, 0.0032578057143837214, -0.014797921292483807, -0.02610122784972191, 0.024096591398119926, -0.007100256159901619, 0.05131130293011665, 0.05648938566446304, -0.005861251149326563, 0.032320860773324966, -0.0281699039041996, 0.07078642398118973, 0.037876665592193604, 0.08347772806882858, -0.01437669713050127, -0.014217982068657875, -0.0009336962830275297, -0.025376033037900925, -0.05821920186281204, 0.019031977280974388, -0.0395209975540638, -0.0018097336869686842, -0.005511859431862831, 0.004165512043982744, -0.01633261702954769, 0.05473823472857475, 0.012150613591074944, 0.025450848042964935, 0.06373786926269531, 0.010864959098398685, -0.04394986107945442, 0.00047968237777240574, -0.07548189908266068, -0.06382464617490768, -0.05680037662386894, -0.015034867450594902, -0.04158338904380798, -0.029614979401230812, -0.022197745740413666, -0.006273346953094006, -0.023263026028871536, -0.05190969631075859, 0.017085125669836998, 0.007554129231721163, 0.06566055119037628, -0.013541617430746555, 0.025552384555339813, 0.03790932148694992, -0.013333450071513653, -0.0034320433624088764, 0.0038703244645148516, 0.0013157943030819297, -0.022209132090210915, -0.02222377620637417, 0.022309722378849983, -0.03672017157077789, 0.0015924201579764485, 0.028916921466588974, 0.014763706363737583, 0.0271547082811594, -0.03292752429842949, -0.0005290011176839471, -0.05119718983769417, 0.011555099859833717, -0.05584349110722542, 0.007068822626024485, -0.034585244953632355, 0.04470185190439224, -0.0027808016166090965, 0.06683452427387238, 0.06346201151609421, -0.020422225818037987, -0.03454473614692688, 0.004078859928995371, 0.06610728055238724, 0.03555439040064812, 0.04386582225561142, -0.0014804566744714975, -0.03953127935528755, 0.06391482800245285, 0.002010827185586095, 0.04894345998764038, 0.01261902041733265, 0.016179200261831284, 0.05438196286559105, 0.008804661221802235, -0.019726302474737167, -0.012265480123460293, -0.011499504558742046, -0.09041797369718552, 0.022822242230176926, 0.07284650951623917, -0.0036748249549418688, -0.02102477476000786, -0.07548816502094269, 0.04412458464503288, -0.019774960353970528, 0.011517057195305824, -0.006301104091107845, 0.0032398889306932688, -0.03350894898176193, -0.02687818743288517, 0.050259482115507126, 0.003003944642841816, -0.029036303982138634, -0.1208915263414383, -0.00825984962284565, -0.011456898413598537, 0.006751303561031818, -0.04306169971823692, 0.03296927362680435, 0.040078453719615936, 0.03183269500732422, -0.07078521698713303, -0.029877161607146263, -0.020133521407842636, -0.05572245642542839, 0.01238164771348238, 0.07974140346050262, -0.000854247307870537, -0.058163173496723175, -0.01181984692811966, -0.03961047902703285, 0.07339441776275635, -0.015813415870070457, 0.015220087952911854, 0.005994652397930622, 0.02809935063123703, -0.0526876300573349, -0.05646762624382973, 0.0744398683309555, 0.043422769755125046, 0.018973199650645256, 0.021240035071969032, -0.002035795943811536, -0.014948045834898949, 0.07047267258167267, 0.046227194368839264, 0.007025106344372034, 0.011757190339267254, 0.0389721654355526, -0.020303530618548393, -0.005868066102266312, -0.02216174826025963, 0.060359202325344086, 0.04907164350152016, 0.01582278683781624, -0.05351409688591957, -0.016087766736745834, 0.05258934199810028, -0.009072431363165379, 0.02758306823670864, 0.02946908213198185, 0.014636440202593803, 0.0029481390956789255, -0.00800828542560339, -0.010040931403636932, 0.0007782686734572053, -0.025871217250823975, -0.006215889472514391, 0.04110842943191528, 0.03842407464981079, -0.01667415164411068, 0.03101256489753723, -0.16837580502033234, 0.011028778739273548, -0.04524204879999161, 0.019727177917957306, 0.03983759135007858, 0.017991401255130768, -0.0047482773661613464, 0.016477108001708984, 0.018064912408590317, 0.001138576422818005, -0.039624862372875214, 0.013428072445094585, -0.04356522113084793, 0.0025274637155234814, 0.015210545621812344, -0.03722280636429787, -0.001152773736976087, -0.0033496038522571325, -0.007468040566891432, 0.022711001336574554, -0.03351894021034241, 0.005247017368674278, -0.06139982491731644, 0.006235294975340366, 0.00964360311627388, -0.014264252968132496, -0.03862916678190231, 0.03881985321640968, -0.01752926968038082, -0.011747749522328377, 0.0338832288980484, -0.09765434265136719, -0.05780770257115364, -0.041141312569379807, -0.012297071516513824, -0.029266193509101868, 0.0385340079665184, -0.031918201595544815, -0.0066206492483615875, 0.013753380626440048, 0.05212375894188881, -0.05011030286550522, -0.032445166260004044, 0.06642326712608337, 0.01059726532548666, -0.018179653212428093, -0.023279067128896713, -0.010960545390844345, 0.005759899038821459, 0.0013953736051917076, 0.04122697934508324, -0.011785626411437988, 0.03246033191680908, -0.0698649138212204, 0.008995536714792252, 0.015319755300879478, -0.058689799159765244, 0.023059798404574394, 0.014570626430213451, 0.02504660002887249, -0.02681163139641285, -0.04302752763032913, 0.013292759656906128, 0.03451986238360405, 0.0008359697530977428, -0.016922174021601677, 0.013836569152772427, -0.028508851304650307, -0.03133734315633774, -0.11637003719806671, 0.016979428008198738, -0.02716083824634552, 0.08730616420507431, 0.0017395075410604477, 0.00788675807416439, -0.03631976619362831, 0.044048335403203964, 0.02424524910748005, -0.013503966853022575, -0.008136515505611897, 0.008866858668625355, -0.04457462206482887, 0.04983597248792648, 0.00040910724783316255, -0.03661247342824936, 0.0561106838285923, -0.04363710805773735, -0.006312876008450985, -0.048869725316762924, 0.03700308874249458, 0.05729437246918678, 0.018621031194925308, -0.034279339015483856, 0.061930716037750244, 0.027442438527941704, 0.008357900194823742, 0.028840888291597366, -0.027446318417787552, -0.005914975889027119, -0.07415705919265747, -0.02194533869624138, -0.05191807821393013, -0.01264137215912342, 0.01340659148991108, -0.03355726972222328, 0.007806059904396534, 0.06837277859449387, -0.0029649229254573584, -0.030091483145952225, -0.03087521530687809, 0.030970154330134392, -0.02046593464910984, 0.039891112595796585, 0.03400719538331032, -0.05336616560816765, -0.012592961080372334, -0.00434658769518137, 0.01777762733399868, 0.0422181598842144, -0.07437669485807419, -0.003160752821713686, 0.012240498326718807, 0.04038697108626366, -0.012543425895273685, -0.0050156437791883945, -0.044207051396369934, 0.05179230123758316, 0.001939668320119381, -0.02079017087817192, -0.029865851625800133, -0.011792836710810661, -0.022301526740193367, 0.048237476497888565, 0.03349026292562485, 0.002192680025473237, -0.0161498561501503, -0.07750744372606277, -0.02151109278202057, 0.03778409957885742, -0.027460681274533272, -0.08043278008699417, 0.0005057223606854677, -0.006889333017170429, 0.019181331619620323, -0.0251761507242918, -0.03356972709298134, 0.009502964094281197, 0.03651588037610054, -0.038431566208601, 0.06552863121032715, 0.12022580206394196, 0.06095707416534424, 0.018006328493356705, -0.016195179894566536, 0.016160519793629646, 0.03415870666503906, -0.010795981623232365, -0.022223135456442833, 0.04191268980503082, -0.04286613315343857, -0.02048274129629135, 0.00975932739675045, -0.004396593663841486, -0.06487326323986053, 0.01775156334042549, 0.0038534211926162243, 0.05964086204767227, -0.05119291692972183, 0.05575680732727051, -0.0445093959569931, 0.04728108271956444, 0.04732883721590042, 0.0650157779455185, -0.014415213838219643, -0.0009615382878109813, 0.04640931263566017, -0.03165914863348007, 0.07315915822982788, -0.008822079747915268, -0.001518894569016993, -0.02947932295501232, -0.04657392203807831, -0.007962324656546116, -0.03504989296197891, -0.019603323191404343, 0.050807978957891464, 0.038745034486055374, 0.0038706364575773478, -0.0070908390916883945, 0.038569748401641846, 0.03760180249810219, 0.040494758635759354, -0.007369275204837322, 0.0005886516300961375, 0.008310679346323013, -0.038302067667245865, -0.10617943108081818, -0.00807135459035635, -0.03292351961135864, -0.0237356498837471, -0.047675687819719315, 0.014552002772688866, 0.020664773881435394, 0.040786243975162506, -0.011038788594305515, 0.039140764623880386, -0.04446655139327049, -0.040085580199956894, 0.04483230412006378, -0.07934048026800156, -0.045965127646923065, -0.005784895271062851, -0.017829444259405136, -0.019642729312181473, 0.027042174711823463, -0.047373779118061066, -0.0073820254765450954, -0.007029043976217508, 0.05717248469591141, -0.041594091802835464, 0.03252749890089035, 0.004175375681370497, -0.015621146187186241, 0.0016060604248195887, -0.010516892187297344, 0.053750019520521164, 0.006510073784738779, -0.05298081412911415, 0.0006592455902136862, 0.005236598663032055, 0.024634407833218575, 0.02835090458393097, -0.03302549943327904, -0.027518529444932938, 0.002620402257889509, -0.07872924953699112, -0.022069605067372322, 0.012317207641899586, -0.05693848058581352, 0.048777077347040176, 0.007775440346449614, 0.041431888937950134, 0.04424866661429405, 0.056131910532712936, 0.004934364464133978, -0.025473203510046005, -0.0036887896712869406, 0.039368677884340286, -0.05769667401909828, -0.026048673316836357, 0.003965338226407766, -0.009670412167906761, -0.011343497782945633, -0.05435881018638611, 0.026986826211214066, -0.009577417746186256, -0.050122927874326706, -0.030014369636774063, 0.04266674444079399, -0.011096175760030746, 0.03517857939004898, 0.08642514050006866, 0.009145631454885006, -0.043035272508859634, -0.001587375532835722, -0.02732841484248638, -0.0028220880776643753, -0.00591224106028676, 0.04869609326124191, 0.009840519167482853, 0.0029376025777310133, -0.003656892105937004, -0.04605792090296745, 0.023922529071569443, -0.018592406064271927, -0.03908621892333031, -0.012671426869928837, -0.025770416483283043, -0.015268426388502121, 0.017757991328835487, -0.03437986969947815, -0.005805816035717726, -0.004568304866552353, -0.015524525195360184, -0.006533530540764332, 0.03086046501994133, 0.03279164060950279, 0.035119276493787766, -0.04351099953055382, -0.010516243986785412, 0.030367668718099594, 0.025459490716457367, -0.0007075745961628854, -0.008977263234555721, 0.01643659546971321, -0.03646375611424446, -0.028417762368917465, 0.026028122752904892, 0.008900105953216553, -6.894814360290125e-33, -0.02364763244986534, -0.045808594673871994, 0.019770456477999687, -0.005598972085863352, -0.0049211387522518635, -0.032377518713474274, 0.02302299626171589, -0.03255494683980942, -0.06080412119626999, -0.03559407591819763, -0.0010305712930858135, -0.005162979010492563, 0.017652254551649094, -0.03523905947804451, 0.05092136189341545, -0.0026220157742500305, 0.05435611680150032, 0.03556925058364868, 0.0036844750866293907, 0.020172206684947014, -0.030670039355754852, -0.004401915241032839, -0.016429712995886803, 0.013307577930390835, 0.008794449269771576, 0.0036381022073328495, -0.041514839977025986, 0.03600738197565079, 0.0192849300801754, 0.05478418245911598, -0.030933864414691925, -0.016427062451839447, -0.026407625526189804, -0.006128636188805103, -0.008081556297838688, 0.04381473734974861, -0.03626463934779167, 0.0033043092116713524, -0.050480544567108154, -0.025230925530195236, 0.09406933933496475, -0.009596792049705982, -0.04598727449774742, 0.02402413822710514, -0.005192700307816267, 0.034905970096588135, 0.03219100832939148, -0.00022840611927676946, -0.002589975483715534, 0.041238345205783844, -0.03902576118707657, 0.014887669123709202, 0.012460002675652504, 0.03787292167544365, 0.02817261964082718, 0.011690412648022175, 0.03222396969795227, 0.046997539699077606, -0.0535641610622406, -0.008405681699514389, -0.07668078690767288, -0.006698863580822945, 0.023221857845783234, -0.0052166166715323925, -0.027758341282606125, 0.01731940545141697, -0.06438422948122025, 0.03149418905377388, -0.049306437373161316, -0.029349466785788536, -0.04570584371685982, 0.006321931257843971, 0.05192188546061516, -0.043907009065151215, -0.01995442993938923, 0.011236604303121567, -0.020611265674233437, 0.04448217153549194, 0.10312185436487198, 0.08473630994558334, 0.01720273494720459, 0.0002530463971197605, -0.022476712241768837, 0.03821108490228653, 0.03062109462916851, -0.05535311624407768, -0.03453788906335831, -0.02213236130774021, -0.01323346421122551, 0.004394443705677986, 0.0032981038093566895, 0.014555521309375763, 0.0016252623172476888, 0.019803840667009354, 0.046924155205488205, 0.0214998796582222, -0.0228357445448637, 0.011153852567076683, -0.008103365078568459, 0.0034687418956309557, -0.04253673925995827, 0.010203643701970577, 0.03533356264233589, 0.03976833447813988, 0.012032079510390759, -0.019892551004886627, -0.023558687418699265, -0.018814455717802048, -0.07506141066551208, 0.008922072127461433, -0.009710337966680527, 0.01091060135513544, -0.02851543202996254, -0.017723338678479195, -0.0064737689681351185, -0.006108802277594805, 0.031597040593624115, -0.0018071308732032776, -0.025635890662670135, 0.009360112249851227, -0.035630952566862106, 0.04766951501369476, -0.04272427782416344, -0.022776855155825615, -0.018359772861003876, -0.005106546450406313, 0.001295773428864777, 0.05843813717365265, 0.07479207217693329, 0.026060760021209717, -0.01618211343884468, -0.02767443098127842, 3.2009987194214773e-07, 0.008241088129580021, 0.05716809257864952, -0.017719479277729988, -0.018246201798319817, -0.02693299762904644, -0.012449181638658047, -0.04271751642227173, 2.2929321858100593e-05, -0.03321141377091408, 0.006997060962021351, 0.012971926480531693, 0.003909184597432613, 0.0051343487575650215, 0.048743147403001785, 0.0026753258425742388, -0.12983889877796173, -0.057926736772060394, 0.0032776121515780687, -0.05737367272377014, 0.011644255369901657, 0.038658808916807175, 0.04033403471112251, 0.09088721871376038, 0.021086443215608597, -0.0209540743380785, 0.01669003628194332, -0.0027350643649697304, -0.015726011246442795, -0.013397431932389736, 0.04177405685186386, 0.020337525755167007, -0.05741453915834427, -0.024902071803808212, -0.013885118998587132, 0.03497321158647537, -0.03346491977572441, -0.023807238787412643, -0.03450722619891167, -0.004025353118777275, 0.008532080799341202, -0.01320378016680479, 0.03454246371984482, -0.019608106464147568, 0.03788163512945175, -0.0036448673345148563, 0.02160799503326416, 0.033636484295129776, 0.011756735853850842, 0.016917282715439796, -0.011488278396427631, 0.030262848362326622, 0.040616992861032486, 0.030221136286854744, -0.024652276188135147, 0.029803333804011345, -0.01142311841249466, -0.02859361469745636, -0.019471751525998116, 0.056470178067684174, -0.07277122884988785, -0.057801295071840286, -0.055176377296447754, -0.003574680769816041, 0.002235408639535308, 0.005780585575848818, 0.004609449300915003, 0.02886049821972847, 3.3389411939878208e-34, 0.03751193359494209, -0.0434998981654644, -0.05987481772899628, -0.027667883783578873, -0.007660476490855217, -0.009427754208445549, -0.010200529359281063, -0.01269138976931572, -0.02302493341267109, -0.04691716656088829, -0.011197172105312347], "14a40177-16bb-46f1-96fd-b86f287158c0": [0.0021126586943864822, -0.03869030252099037, -0.013552499935030937, -0.007860186509788036, -0.03302571922540665, 0.014021460898220539, 0.05851845070719719, 0.05493108928203583, -0.0132689094170928, -0.006814916152507067, -0.03478097915649414, -0.001831428031437099, 0.024632800370454788, 0.0725514367222786, 0.01929428055882454, -0.029163723811507225, 0.023899948224425316, 0.0008801869116723537, -0.02893117628991604, 0.011261442676186562, -0.013230597600340843, 0.019695119932293892, -0.03132815659046173, -0.007854962721467018, 0.07344197481870651, -0.02643785998225212, 0.016893962398171425, 0.00882034469395876, 0.024811914190649986, 0.035532914102077484, 0.017628537490963936, 0.04476560279726982, -0.01865139789879322, 0.05538753792643547, 2.40582630794961e-06, 0.0038236058317124844, -0.02437538281083107, 0.011583746410906315, -0.020419567823410034, -0.02284669503569603, 0.04438282176852226, -0.0008936923113651574, -0.046938683837652206, 0.029949838295578957, -0.009852539747953415, 0.002936132252216339, -0.027137232944369316, 0.0026862286031246185, -0.021804193034768105, 0.025689411908388138, -0.005349769722670317, 0.050841011106967926, -0.02428499236702919, -0.018931208178400993, 0.02680971659719944, -0.056914448738098145, -0.0015536193968728185, 0.09399895370006561, 0.01818167231976986, 0.02387358620762825, 0.04601874575018883, -0.008522999472916126, -0.018636386841535568, 0.002652278169989586, 0.030744537711143494, 0.04088520631194115, 0.009442226029932499, -0.14651447534561157, 0.016913361847400665, 0.007205496542155743, 0.06649859249591827, -0.013574095442891121, -0.0031763201113790274, 0.07660531252622604, -0.03349325805902481, 0.07039809972047806, -0.0021328076254576445, 0.035979263484478, -0.006344110704958439, 0.005786358844488859, -0.07920954376459122, -0.03088965453207493, -0.047937456518411636, -0.004316029604524374, 0.05557042732834816, -0.04623209312558174, 0.006494011729955673, -0.021169813349843025, 0.0048734587617218494, -0.004059476312249899, 0.050755664706230164, 0.004000233486294746, 0.017971601337194443, 0.0103455213829875, 0.03968803584575653, -0.03530611842870712, 0.0475965291261673, -0.002966932486742735, 0.023601511493325233, 0.05033910647034645, -0.012585594318807125, 0.006787880789488554, 0.013777321204543114, 0.03462551161646843, 0.05158410593867302, -0.014122525230050087, 0.0024760509841144085, -0.050208501517772675, 0.008394446223974228, 0.07090583443641663, -0.0001273492380278185, 0.01607111096382141, -0.01114544179290533, -0.03296626731753349, -0.08364639431238174, -0.0361022986471653, 0.02342667430639267, 0.035993628203868866, 0.07190822809934616, 0.04543253406882286, 0.035976845771074295, -0.0038045260589569807, -0.046709995716810226, -0.008607934229075909, -0.04201999306678772, -0.050056468695402145, -0.0015114053385332227, -0.016016054898500443, -0.021350188180804253, -0.04251530393958092, -0.003615883644670248, 0.001762045081704855, -0.018307354301214218, 0.013827988877892494, -0.009406543336808681, 0.05261599272489548, -0.0038122159894555807, -0.0027581050526350737, 0.05500103905797005, -0.048047393560409546, 0.04318223521113396, -0.011299990117549896, 0.00907252449542284, 0.015606699511408806, 0.08530538529157639, -0.03793513774871826, -0.020525839179754257, 0.039007142186164856, -0.0010980216320604086, 0.007620725315064192, -0.0004382175102364272, 0.023536233231425285, -0.02547198161482811, -0.01871742121875286, 0.038023777306079865, 0.027272438630461693, -0.04796750470995903, -0.03025859221816063, -0.0474640354514122, 0.029712827876210213, 0.02423706278204918, 0.044107962399721146, 0.03753282129764557, -0.008012824691832066, 0.002444568322971463, -0.020205534994602203, 0.01715008355677128, 0.008303853683173656, 0.006364126224070787, -0.032206226140260696, -0.05494607612490654, 0.036617085337638855, -0.032307639718055725, 0.05955323576927185, -0.005723976530134678, 0.05033084377646446, 0.07853252440690994, 0.03404458239674568, -0.07436007261276245, 0.07341153919696808, -0.03050250932574272, -0.0644690990447998, -0.009084832854568958, 0.003774303710088134, -0.07375849038362503, -0.0031994914170354605, 0.020949136465787888, 0.02904963493347168, 0.007224993780255318, -0.014856753870844841, -0.0073533919639885426, 0.01639062725007534, -0.025414733216166496, -0.038903627544641495, 0.03853147104382515, 0.006544214673340321, -0.02143474854528904, -0.1256510615348816, 0.014870790764689445, -0.018095413222908974, -0.007108526304364204, -0.046177513897418976, 0.04423040524125099, 0.06492479890584946, 0.06530813127756119, 6.164779188111424e-05, -0.022533826529979706, -0.013859158381819725, -0.0029321862384676933, 0.04575121030211449, 0.037204962223768234, 0.016928093507885933, -0.030772235244512558, -0.0260693971067667, -0.04326045513153076, 0.030572235584259033, -0.024540971964597702, 0.02246302179992199, -0.015307365916669369, -0.004510079976171255, -0.022410068660974503, -0.09649480134248734, 0.02675667405128479, 0.001776085700839758, 0.02613632194697857, -0.03502434864640236, -0.06161680817604065, 0.029850833117961884, 0.03547932207584381, 0.01977495290338993, -0.017885377630591393, 0.0023027542047202587, 0.029289888218045235, -0.0005206447094678879, -0.006620823405683041, 0.02062448486685753, 0.019778873771429062, 0.013217683881521225, 0.0013533139135688543, -0.07138251513242722, 0.02858494408428669, 0.043347060680389404, 0.020283017307519913, 0.029278820380568504, 0.011554376222193241, 0.02258468046784401, 0.027321111410856247, -0.006387284025549889, 0.01361976470798254, 0.032052215188741684, 0.044686269015073776, -0.0005412925966084003, 0.03966716304421425, 0.01057025883346796, -0.012450522743165493, 0.009583923034369946, -0.13401854038238525, -0.027555620297789574, -0.052409760653972626, 0.08955404162406921, 0.008448798209428787, -0.012683282606303692, -0.03966645896434784, -0.014473708346486092, 0.03719748929142952, -0.01700303517282009, -0.025780089199543, -0.004320726729929447, 0.0039810254238545895, -0.02116912417113781, 0.01628800854086876, 0.05756949633359909, 0.02375427447259426, -0.03467404469847679, -0.0008667422225698829, -0.008492881432175636, -0.04650081694126129, 0.0065661328844726086, -0.03598534315824509, -0.018229441717267036, -0.005199200473725796, -0.009746979922056198, 0.0043991971760988235, -0.021043604239821434, -0.011473877355456352, -0.020520642399787903, 0.016707923263311386, -0.10600069910287857, -0.031040795147418976, 0.005812023766338825, -0.000660402758512646, -0.00901584979146719, 0.009510842151939869, -0.055053241550922394, -0.027780447155237198, 0.0008913553901948035, 0.022793089970946312, 0.011723720468580723, -0.02667028084397316, 0.044320810586214066, 0.03356535732746124, 0.016003303229808807, -0.01943008042871952, 0.005691543221473694, 0.005399463698267937, 0.037289172410964966, 0.04304089397192001, -0.053916990756988525, 0.0007703849114477634, -0.06840415298938751, 0.005473955534398556, 0.03366292268037796, 0.0004763304896187037, 0.052379123866558075, 0.0062717413529753685, -0.015653248876333237, -0.02010228857398033, -0.01972358673810959, 5.0583887059474364e-05, 0.034673020243644714, -0.011828090995550156, -0.021505294367671013, -0.020099235698580742, -0.03607159107923508, -0.027825169265270233, -0.11301299929618835, -0.021281728520989418, 0.021433847025036812, 0.07486576586961746, -0.0340350866317749, 0.008119447156786919, -0.015073764137923717, -0.036417074501514435, 0.029768381267786026, -0.02563244104385376, 0.012968993745744228, -0.02431640215218067, -0.07323828339576721, -0.006669262424111366, -0.026482101529836655, -0.03202018514275551, 0.062344372272491455, -0.013623234815895557, 0.04701254889369011, 0.009193054400384426, -0.01932726800441742, -0.012221608310937881, -0.024921197444200516, -0.04065534099936485, 0.01446356251835823, 0.06547552347183228, 0.027932459488511086, 0.03096715919673443, -0.014722530730068684, 0.017403341829776764, -0.03141104057431221, 0.004278121050447226, 0.03019578568637371, -0.04465736448764801, -0.015507937408983707, 0.04274813458323479, 0.01909184455871582, 0.039255522191524506, -0.0038510283920913935, 0.05928592011332512, -0.01889283023774624, 0.007515145931392908, 0.006585802882909775, 0.03641529008746147, -0.003414424601942301, 0.0061792125925421715, 0.007996216416358948, 0.009584049694240093, 0.036941561847925186, 0.019359691068530083, -0.09265784919261932, -0.028379037976264954, -0.05848625674843788, -0.0031953854486346245, -0.04309197887778282, 0.013934689573943615, -0.028421254828572273, 0.06988821923732758, 0.0037063665222376585, 0.032604627311229706, 0.005299746990203857, -0.006948751863092184, 0.025828635320067406, 0.0377032533288002, -0.02632962353527546, 0.03048560954630375, -0.08016764372587204, -0.034040432423353195, -0.007383926771581173, -0.0029529284220188856, -0.0008005229756236076, 0.04886208847165108, -0.013967547565698624, -0.011624305509030819, 0.0059271324425935745, 0.012123613618314266, -0.009818792343139648, -0.004549361765384674, 0.012823391705751419, 0.007416476961225271, 0.019739629700779915, 0.04769505187869072, 0.046480242162942886, 0.05359147489070892, -0.0018631501588970423, 0.05948317050933838, 0.022198740392923355, 0.049368664622306824, -0.004007472191005945, 0.0336151160299778, -0.028306135907769203, 0.03286279737949371, -0.0017241189489141107, 0.0188585314899683, -0.039135102182626724, -0.03430371358990669, -0.0008185197948478162, 0.032301899045705795, -0.01049837376922369, 0.0350225605070591, -0.013637235388159752, 0.09704175591468811, 0.019111979752779007, 0.04161561280488968, -0.0288709606975317, 0.022119002416729927, -0.001884734258055687, -0.014591856859624386, 0.06520073115825653, 0.025050470605492592, -0.017920413985848427, -0.0195765420794487, -0.03171314299106598, -0.030470117926597595, -0.030506202951073647, -0.030647559091448784, 0.06293964385986328, 0.0423894040286541, -0.028369279578328133, -0.04689905419945717, 0.038611266762018204, 0.05280720442533493, -0.01159664150327444, -0.02326144278049469, -0.057151563465595245, -0.00991324707865715, -0.015580269508063793, -0.05534303933382034, -0.04859638586640358, -0.018917279317975044, -0.002497568028047681, -0.05896653234958649, 0.05777806416153908, -0.002855234080925584, -0.03741659224033356, -0.013201920315623283, 0.04623415321111679, 0.021747121587395668, -0.005584379658102989, 0.04636058956384659, 0.02291584014892578, -0.03572581708431244, -0.11282647401094437, 0.03833107650279999, 0.032363492995500565, 0.04345991834998131, -0.019732018932700157, -0.029259979724884033, -0.05265633761882782, -0.003561822697520256, -0.03974113240838051, 0.012257102876901627, -0.013522589579224586, -0.041860755532979965, -0.008894532918930054, -0.009449716657400131, -0.04774652048945427, 0.02907659113407135, 0.0068263160064816475, -0.02212115377187729, 0.05919479951262474, 0.019847791641950607, 0.014002296142280102, 0.00269235298037529, -0.012255090288817883, 0.01972535066306591, -0.06298066675662994, 0.01093989796936512, 0.06901604682207108, -0.04159603640437126, 0.010730664245784283, -0.00055626907851547, 0.014363916590809822, -0.03253563120961189, -0.01335236057639122, 0.017735645174980164, -0.032789599150419235, -0.024524634703993797, 0.023238634690642357, -0.054358113557100296, -0.008564847521483898, -0.014104807749390602, 0.020670032128691673, -0.016371212899684906, -0.031294457614421844, -0.02150093764066696, 0.025979984551668167, -0.04580637067556381, -0.05902012437582016, 0.06384897232055664, -0.004047575872391462, -0.004892372991889715, 0.0300934836268425, 0.008409804664552212, -0.019173070788383484, 0.019703315570950508, -0.017749618738889694, 0.004291365388780832, -0.04972328245639801, 0.018334656953811646, -0.031486477702856064, 0.028191475197672844, 0.014580395072698593, 0.03869394585490227, 0.04370054602622986, -0.061600882560014725, -0.0314137227833271, 0.07269354909658432, -0.018130667507648468, -0.06300834566354752, -0.046046484261751175, -0.025636795908212662, 0.02237844467163086, 0.010028756223618984, -0.008504333905875683, 0.03283936530351639, -0.00610669469460845, 0.012991541065275669, 0.025178123265504837, -0.008802564814686775, -0.02799486555159092, 0.022728770971298218, 0.027119653299450874, -0.01854150928556919, -0.03945350646972656, 0.0045240274630486965, 0.01632368192076683, 0.004756595939397812, 0.091404028236866, 0.00046525406651198864, -6.454971557519288e-33, -0.008042491041123867, -0.03834690526127815, -0.0013673679204657674, 0.008214854635298252, -0.018907438963651657, -0.05194825679063797, -0.013774032704532146, -0.028483817353844643, -0.048941802233457565, -0.044329460710287094, 0.0033651033882051706, 0.020782597362995148, 0.0373101532459259, -0.014837460592389107, -0.04983125254511833, 0.020802073180675507, 0.026167862117290497, -0.010782669298350811, 0.01471715234220028, 0.012456179596483707, -0.03399747982621193, 0.01252342015504837, -0.04427177459001541, -0.011803414672613144, -0.03482300415635109, -0.05351981520652771, -0.010732482187449932, 0.021357614547014236, 0.007553867530077696, 0.010366242378950119, -0.041545502841472626, -0.05244029685854912, -0.018619360402226448, 0.043311506509780884, -0.011693581007421017, 0.11575589329004288, -0.04833699017763138, -0.014040783978998661, -0.026864992454648018, 0.005781341344118118, 0.0013316289987415075, -0.019004110246896744, -0.022311056032776833, 0.0017211583908647299, 0.02646656520664692, 0.025496328249573708, 0.005019594915211201, 0.015275834128260612, -0.05684531480073929, 0.050584472715854645, -0.06280504912137985, 0.0034968655090779066, -0.02683570422232151, 0.03218032419681549, -0.023552661761641502, 0.015813130885362625, 0.04534175246953964, -0.14882905781269073, -0.060410093516111374, 0.013393676839768887, -0.020083261653780937, -0.011917762458324432, 0.03923914581537247, -0.005212090909481049, 0.013698237016797066, 0.013099843636155128, 0.006916942540556192, 0.04415317252278328, -0.04502280056476593, 0.00712303863838315, -0.02102799527347088, 0.030427956953644753, -0.013419617898762226, -0.08529814332723618, -0.07603128254413605, -0.00335904979147017, -0.012909010984003544, -0.012298048473894596, 0.03598129376769066, 0.060060933232307434, 0.05735737457871437, -0.004245067946612835, -0.009991428814828396, 0.0047949450090527534, 0.05438162386417389, -0.004281355533748865, -0.03916562348604202, -0.041983313858509064, 0.0054518599063158035, 0.05073953792452812, -0.007111217360943556, -0.06003323569893837, -0.030938681215047836, 0.026289161294698715, 0.07083436101675034, 0.030510814860463142, 0.05278397351503372, -0.027746815234422684, -0.024431265890598297, -0.060009635984897614, -0.045526035130023956, -0.022169027477502823, -0.017251694574952126, 0.03426871821284294, -0.0048312833532691, -0.004995994735509157, -0.026935646310448647, 0.010961241088807583, -0.004700121004134417, 0.00956772081553936, -0.03296202793717384, 0.04083723947405815, 0.03690904751420021, -0.011130585335195065, 0.02089718170464039, -0.01690536178648472, 0.00738918874412775, 0.027340244501829147, -0.027316369116306305, 0.005318810697644949, -0.001637960085645318, 0.038580045104026794, -0.010361144319176674, -0.028699364513158798, -0.036824487149715424, -0.0039345696568489075, -0.029560459777712822, 0.04489652439951897, 0.13255146145820618, 0.02037682943046093, 0.0020811655558645725, -0.06447380036115646, 3.172795288719499e-07, -0.003235587850213051, 0.06204746663570404, 0.0015848682960495353, 0.007455105893313885, -0.005118087399750948, -0.06215690076351166, 0.0071363444440066814, 0.009016493335366249, 0.017906395718455315, 0.006755559239536524, 0.016975583508610725, 0.034037716686725616, 0.0377931110560894, 0.05129266530275345, -0.002971495734527707, -0.10892060399055481, -0.022037474438548088, -0.015415704809129238, -0.004967773333191872, 0.018837323412299156, 0.03428656607866287, 0.029438847675919533, 0.05395600199699402, 0.015545550733804703, -0.00915661919862032, -0.047548696398735046, -0.009858985431492329, -0.035554129630327225, -0.017468975856900215, -0.005367692559957504, 0.015896715223789215, 0.022488893941044807, -0.00709106307476759, -0.027850117534399033, -0.007286139763891697, -0.015250658616423607, -0.05130544304847717, 0.025393564254045486, -0.00329419388435781, -0.0066342162899672985, 0.024754149839282036, -0.06630391627550125, -0.02423274889588356, 0.08998003602027893, 0.013346979394555092, 0.002995477756485343, 0.011395576409995556, 0.11746565252542496, 0.004265143070369959, -0.03939519822597504, -0.005071669816970825, 0.018684662878513336, 0.04439961537718773, 0.013874546624720097, 0.0010306632611900568, -0.009752177633345127, -0.030980147421360016, 0.012375328689813614, 0.05021657049655914, 0.006562280934303999, -0.060186803340911865, -0.05951742082834244, 0.006684879772365093, -0.01691555418074131, 0.0018196352757513523, 0.018960915505886078, -0.044597409665584564, 3.465523338883409e-34, 0.010349584743380547, 0.00155885040294379, -0.0038798802997916937, -0.0031322361901402473, 0.0027771256864070892, -0.007303443271666765, 0.0631837323307991, 0.01953527331352234, 0.012596601620316505, -0.09572375565767288, -0.037220023572444916], "fb1a7658-c476-4a44-b85d-212669923fd8": [0.00873985793441534, -0.017333487048745155, -0.012131111696362495, 0.0008473109337501228, -0.05186915397644043, 0.0014691207325085998, 0.035989392548799515, 0.04203426092863083, 0.019332915544509888, 0.024739975109696388, -0.05184001103043556, -0.034614644944667816, -0.008180256932973862, 0.10649976134300232, -0.0006499637383967638, -0.0412910096347332, 0.014729438349604607, -0.020642252638936043, -0.04287656024098396, 0.017437409609556198, -0.009858936071395874, -0.017146199941635132, -0.019691381603479385, -0.015261753462255001, 0.0007559610530734062, -0.020972372964024544, -0.005097012966871262, -0.03392091020941734, 0.041143570095300674, 0.06365756690502167, -0.004413699731230736, 0.04281860589981079, 0.012379670515656471, 0.045897867530584335, 2.270131062687142e-06, 0.022039886564016342, -0.02640320360660553, 0.003908342681825161, -0.002388403983786702, -0.017458761110901833, 0.009416001848876476, 0.013424154371023178, -0.04323097690939903, 0.01553537417203188, -0.04054941609501839, 0.004910588730126619, 0.004785152617841959, -0.04775398597121239, -0.01864657737314701, 0.0039870841428637505, -0.0286422036588192, 0.03906978294253349, -0.029759833589196205, -0.03075546585023403, 0.021914126351475716, -0.0495186448097229, 0.0012116519501432776, 0.09129151701927185, 0.03589924797415733, 0.006022624671459198, 0.051557306200265884, 0.0048956372775137424, -0.006801951210945845, -0.009606270119547844, 0.04365764185786247, 0.019552486017346382, -0.027316389605402946, -0.07324710488319397, -0.03086715377867222, 0.005848785396665335, 0.07353043556213379, -0.002693319460377097, -0.001924066455103457, 0.04703665152192116, 0.011101923882961273, 0.04644149914383888, -0.006508422549813986, 0.01357584074139595, 0.028001993894577026, -0.016638675704598427, -0.09858623892068863, -0.012296151369810104, -0.05967049300670624, 0.0032626325264573097, 0.0451553538441658, -0.06936374306678772, 0.03584505245089531, -0.013961809687316418, -0.07977529615163803, -0.003994941245764494, -0.009135710075497627, 0.02650156244635582, 0.040441494435071945, 0.009803633205592632, -0.0016327996272593737, -0.017314743250608444, 0.037668079137802124, 0.013290144503116608, -0.001492941752076149, 0.06550169736146927, -0.007183268200606108, -2.6690211598179303e-05, 0.008692831732332706, 0.017775142565369606, 0.0393378771841526, -0.00916703324764967, 0.008118929341435432, -0.04305460676550865, 0.008500008843839169, 0.0253607165068388, 0.011199663393199444, 0.012435737997293472, -0.04290018975734711, -0.010626213625073433, -0.06764340400695801, -0.0696873888373375, -0.008683658204972744, 0.07817597687244415, 0.03716309741139412, 0.06124502420425415, 0.010337124578654766, 0.022214768454432487, -0.04456325247883797, -0.02701539732515812, -0.039413608610630035, -0.02590397372841835, 0.006453887093812227, -0.01889743097126484, -0.023422133177518845, -0.04852605611085892, -0.0022389714140444994, 0.04453626647591591, -0.0011937553063035011, 0.04351191222667694, -0.03879848122596741, 0.04938812181353569, -0.0010593291372060776, -0.01889394223690033, 0.07523266226053238, -0.029783252626657486, 0.024987906217575073, 0.017915131524205208, -0.019460732117295265, 0.021962715312838554, 0.043420515954494476, -0.038004837930202484, -0.044709961861371994, 0.036406587809324265, 0.005636313930153847, -0.0024002098944038153, 0.023665109649300575, 0.029923908412456512, -0.01794232428073883, 0.004699702374637127, 0.05141327157616615, 0.016761505976319313, -0.05268441140651703, -0.032794829457998276, -0.028135880827903748, 0.012205309234559536, 0.02476624771952629, 0.04579135775566101, 0.04045887663960457, 0.008454798720777035, -0.03671731799840927, -0.045250099152326584, 0.04639536887407303, 0.026040883734822273, 0.0415956936776638, 0.012167887762188911, -0.13293424248695374, 0.011857587844133377, -0.024400316178798676, 0.0415986068546772, -0.004513743333518505, 0.07191604375839233, 0.04219212755560875, -0.0291519146412611, -0.025921327993273735, -0.03329024836421013, -0.07330165803432465, -0.0534769631922245, -0.006395102944225073, 0.021019818261265755, 0.06316930800676346, -0.02290830947458744, 0.08209390938282013, 0.006899495609104633, -0.01403531339019537, -0.021140705794095993, 0.02046387456357479, -0.003474234836176038, -0.04346105083823204, -0.019538357853889465, 0.032928548753261566, -0.05258066579699516, -0.01814473792910576, -0.02698727510869503, 0.008838688023388386, -0.010970989242196083, -0.00011864802945638075, -0.07346923649311066, 0.020033854991197586, 0.058513641357421875, 0.045899130403995514, -0.007667353376746178, -0.025208735838532448, 0.007814849726855755, -0.01901721954345703, -0.0010905488161370158, 0.09448883682489395, 0.008648483082652092, -0.021320268511772156, -0.027120206505060196, -0.009900195524096489, 0.027077168226242065, -0.003132290905341506, 0.03692483901977539, -0.004297118633985519, 0.008539539761841297, -0.02650577761232853, -0.052252836525440216, 0.039065949618816376, -0.0032206811010837555, 0.014941684901714325, -0.0028043214697390795, -0.06792750209569931, 0.013942142948508263, 0.04729263857007027, 0.013014745898544788, -0.013283460400998592, -0.004374674055725336, 0.010614454746246338, -0.004635747987776995, 0.01982930488884449, 0.05841445177793503, -0.019420061260461807, 0.03008059784770012, 0.034151703119277954, -0.04041166976094246, 0.030868517234921455, 0.04580865800380707, -0.016449349001049995, 0.01816779002547264, 0.03066956251859665, 0.04384352266788483, 0.07689498364925385, -0.016802780330181122, 0.039650168269872665, 0.033107370138168335, 0.01550197135657072, -0.007473481819033623, -0.01940121315419674, 0.00820827390998602, -0.014698447659611702, -0.013610763475298882, -0.058922093361616135, 0.002162235090509057, -0.049487777054309845, 0.0637817457318306, 0.006909359712153673, 0.004442397505044937, -0.031127804890275, -0.030473727732896805, -0.010636975057423115, -0.014708660542964935, 0.01803022064268589, -0.027081748470664024, -0.02649015188217163, -0.016852760687470436, -0.019493339583277702, 0.06228725612163544, 0.03898758813738823, -0.011853286996483803, -0.007482085842639208, -0.032734498381614685, -0.030357999727129936, -0.0005601077573373914, -0.010001891292631626, 0.016765011474490166, -0.020211489871144295, -0.039097994565963745, 0.0025412370450794697, -0.013121100142598152, 0.006379975005984306, -0.028898006305098534, 0.02663208171725273, -0.1054568812251091, -0.05486592650413513, -0.046786416321992874, -0.015604691579937935, -0.012767893262207508, 0.009528941474854946, -0.029883813112974167, -0.015648139640688896, 0.000667303625959903, 0.06705594062805176, -0.023898283019661903, -0.01742640510201454, 0.0047578345984220505, 0.014653799124062061, 0.003540654433891177, -0.025716351345181465, -0.03249230608344078, -0.023593610152602196, 0.015424111858010292, 0.06768614053726196, -0.029339656233787537, 0.04632755368947983, -0.07283350080251694, -0.03030705265700817, 0.036928851157426834, 0.0051122927106916904, 0.008752884343266487, 0.008833848871290684, 0.0027474206872284412, 0.026599934324622154, -0.00601376174017787, -0.0008345382520928979, 0.038793548941612244, 0.0068031963892281055, -0.020642908290028572, -0.03401704877614975, -0.02780577912926674, -0.033111728727817535, -0.06560654938220978, -0.04051690921187401, 0.003345633391290903, 0.01555447094142437, -0.04887859523296356, 0.023782435804605484, -0.018813356757164, -0.034043218940496445, 0.021414315328001976, -0.07552036643028259, 0.013682917691767216, -0.010058135725557804, -0.06555552780628204, -0.020354194566607475, -0.01740025356411934, -0.006750290747731924, 0.0182927455753088, -0.026413442566990852, 0.06510979682207108, 0.024994712322950363, -0.009838017635047436, -0.028306027874350548, -0.023595597594976425, -0.05342406779527664, 0.0895911380648613, 0.014315132983028889, 0.06147168204188347, -0.0034119614865630865, -0.010825134813785553, 0.015089107677340508, -0.0042251399718225, -0.009584224782884121, 0.0694044828414917, -0.027067499235272408, 0.011028419248759747, -0.012997694313526154, 0.03243473917245865, -0.018239270895719528, 0.006948093418031931, 0.024126913398504257, -0.018305081874132156, 0.004939885810017586, 0.01976102590560913, 0.04348676651716232, -0.0020682853646576405, 0.04608219489455223, 0.022841578349471092, -0.01651158556342125, -0.004034564830362797, 0.016230447217822075, -0.0835757851600647, -0.016198355704545975, -0.0801885649561882, 0.029994027689099312, -0.06986168771982193, -0.011113209649920464, -0.059777721762657166, 0.04878007620573044, 0.005856686737388372, 0.028233986347913742, -0.0008463574340566993, -0.013035583309829235, -0.01210975181311369, -0.0003582724020816386, 0.018515577539801598, 0.03895699232816696, -0.0032754072453826666, -0.040368422865867615, 0.01721140369772911, 0.0366072915494442, 0.021486617624759674, 0.06140909716486931, 0.004348676651716232, -0.0016725929453969002, 0.0004116578493267298, 0.0017827573465183377, -0.08934171497821808, -0.0024293914902955294, -0.006012728903442621, -0.013594591058790684, 0.038083214312791824, -0.007378970738500357, 0.026621345430612564, 0.08444725722074509, -0.04656949266791344, 0.03540865331888199, 0.0867224633693695, 0.06461074948310852, -0.015279368497431278, -0.0005386692937463522, -0.008370733819901943, 0.01948496140539646, 0.023807533085346222, 0.0741950199007988, -0.014386150054633617, -0.020357882604002953, 0.029105715453624725, 0.036912404000759125, -0.03098815493285656, 0.0721171423792839, -0.00980406440794468, 0.07463260740041733, 0.030156545341014862, 0.06656911969184875, -0.022683342918753624, 0.024839239194989204, -0.02889450639486313, 0.003165649250149727, 0.06383989751338959, 0.028908807784318924, 0.021003229543566704, -0.05313291400671005, -0.0239846371114254, -0.05734334886074066, -0.03822346031665802, 0.004459372255951166, 0.07652466744184494, 0.05054405704140663, -0.03815723583102226, -0.053651172667741776, -0.016279997304081917, 0.055968742817640305, 0.009633666835725307, -0.0016101812943816185, -0.05721213296055794, -0.025791600346565247, -0.029939819127321243, -0.0343434140086174, -0.05460014194250107, -0.012233146466314793, 0.01803237572312355, -0.04046245291829109, 0.050750020891427994, -0.01915324293076992, 0.016955392435193062, -0.0012932625832036138, 0.03381403908133507, 0.033402733504772186, 0.013720419257879257, 0.07689645141363144, 0.020693892613053322, -0.04572424292564392, -0.07702179253101349, 0.0066586933098733425, 0.04876627400517464, 0.07244577258825302, -0.02770885080099106, 0.0008856937056407332, -0.01557027269154787, 0.01887264847755432, -0.0011791902361437678, 0.031976260244846344, -0.027189206331968307, 0.0239361934363842, 0.01067325659096241, 0.009025192819535732, -0.0563996322453022, -0.008713562041521072, -0.0065494137816131115, -0.011980120092630386, 0.022486161440610886, -0.0018630379345268011, 0.03046334534883499, -0.019305095076560974, -0.02523169293999672, -0.024811768904328346, -0.044617243111133575, 0.01866924576461315, 0.002394935116171837, -0.07646933943033218, -0.03308343514800072, 0.004414919763803482, -0.01302943006157875, -0.004555382300168276, -0.05957851558923721, 0.01693144626915455, -0.028887083753943443, -0.0014965749578550458, 0.0206490196287632, -0.07753501832485199, -7.828048546798527e-05, -0.03079269453883171, 0.008870735764503479, 0.013531045988202095, -0.03236708790063858, -0.005817416589707136, 0.043533749878406525, -0.02424997091293335, -0.0729944184422493, 0.04191165789961815, 0.03819851577281952, 0.009843629784882069, 0.08713921159505844, -0.029566651210188866, -0.051047246903181076, -0.004132807720452547, -0.0030156895518302917, 0.012731553055346012, 0.007066664751619101, 0.016511712223291397, -0.05687687546014786, 0.028567254543304443, 0.014587095938622952, 0.032058652490377426, 0.01658901758491993, -0.06757113337516785, -0.06668572127819061, -0.005598377902060747, -0.020811064168810844, -0.05958691984415054, -0.006553086917847395, -0.014003871940076351, 0.01194342877715826, 0.005411163438111544, -0.02587960660457611, 0.0015455138636752963, -0.0034636103082448244, 0.001115709077566862, -0.01110813207924366, -0.06785349547863007, -0.034303054213523865, 0.0071892207488417625, 0.030553467571735382, 0.01007520966231823, 0.031429585069417953, 0.006651347037404776, -0.002914972370490432, 0.04753271862864494, 0.06840448081493378, -0.0015945060877129436, -6.254565933751412e-33, -0.0006246420089155436, -0.020096002146601677, 0.015900393947958946, -0.007639789022505283, -0.0259917750954628, -0.0003774885553866625, -0.0029882320668548346, -0.03756379336118698, -0.030619973316788673, -0.06828311830759048, 0.02039060927927494, 0.018218988552689552, 0.03938869759440422, -0.016286181285977364, -0.022010570392012596, 0.02279679663479328, 0.012940219603478909, -0.014300542883574963, -0.0146610913798213, -0.001184725435450673, -0.006686393171548843, 0.014178719371557236, -0.03853801637887955, -0.0038494230248034, -0.03638596460223198, -0.021645354107022285, -0.003938038367778063, 0.03388235345482826, 0.027532966807484627, -0.03759517893195152, -0.02012408711016178, -0.019673924893140793, -0.02502092346549034, -0.030037706717848778, 0.006329417694360018, 0.12953875958919525, -0.02825167402625084, -0.014793658629059792, -0.04124706983566284, -0.012210533022880554, 0.03619613125920296, 0.04080546647310257, -0.047820139676332474, -0.005043945740908384, 0.012763791717588902, 0.031920209527015686, -0.012593129649758339, 0.046013038605451584, -0.047326672822237015, 0.10967160016298294, -0.04593151435256004, 0.0015907296910881996, -0.022818513214588165, 0.04846901446580887, -0.004500666633248329, -0.033313680440187454, 0.018592119216918945, -0.09730927646160126, -0.07067377865314484, 0.01612076908349991, 0.002294741803780198, -0.02375412918627262, 0.01654214970767498, -0.014206087216734886, 0.01571863330900669, 0.019324282184243202, -0.0044722529128193855, 0.05441826954483986, -0.0031772200018167496, 0.0028256215155124664, -0.055871691554784775, 0.009696174412965775, 0.007606872823089361, -0.07597140967845917, -0.031415168195962906, 0.021171625703573227, 0.002517365850508213, -0.00909804180264473, 0.05281765013933182, 0.042286377400159836, 0.024865377694368362, 0.00017662341997493058, 0.011128555983304977, 0.022573713213205338, 0.05812903493642807, 0.019717466086149216, -0.01766021177172661, -0.05262179300189018, 0.013670999556779861, 0.04523274675011635, -0.007681993767619133, 0.020701231434941292, 0.011894889175891876, 0.03850672394037247, 0.03688109666109085, 0.00243927538394928, 0.06152590364217758, -0.02332458458840847, -0.02391795814037323, 0.007120054680854082, -0.0051410081796348095, -0.02745722606778145, -0.011621255427598953, 0.05537298321723938, 0.006118506658822298, -0.022256337106227875, -0.017450431361794472, 0.017606167122721672, -0.00081624835729599, 0.02593836933374405, -0.00760557409375906, 0.02747790701687336, 0.018688099458813667, -0.047524694353342056, 0.010351710952818394, -0.015453076921403408, 0.003782188519835472, 0.040812790393829346, -0.013275851495563984, -0.00895210262387991, 0.007850926369428635, 0.00586567260324955, -0.02388530597090721, -0.021307462826371193, -0.06754434108734131, 0.008671171963214874, -0.03396125137805939, -0.005372576881200075, 0.13428901135921478, 0.03851022198796272, 0.023662781342864037, -0.10108817368745804, 2.996168291247159e-07, -0.01512119546532631, 0.024883558973670006, -0.01567397080361843, -0.008213330060243607, -5.9114518080605194e-05, -0.05683518201112747, 0.05332916975021362, 0.02280210703611374, 0.01639074832201004, 0.020607177168130875, 0.0014531504129990935, 0.005615450441837311, 0.040796659886837006, 0.045925430953502655, -0.012119968421757221, -0.08358713984489441, -0.057691194117069244, -0.005577190779149532, -0.01249668002128601, 0.06173919513821602, 0.02726505696773529, 0.010726630687713623, 0.05077042430639267, 0.010062742978334427, -0.0007697638939134777, -0.05050921440124512, -0.0055656335316598415, -0.06097302958369255, -0.004115588031709194, 0.02597660943865776, -0.004362381994724274, 0.00498870387673378, -0.013521314598619938, -0.0060376995243132114, -0.03750014677643776, -0.014258363284170628, -0.04048764705657959, 0.015223592519760132, -0.0273650661110878, -0.00367310200817883, 0.02576201781630516, -0.04102807492017746, -0.036971017718315125, 0.05588369444012642, 0.01187259703874588, -0.06764599680900574, -0.0005075784283690155, 0.07386051118373871, -0.005080649629235268, -0.05693047493696213, -0.009147970005869865, 0.03989024832844734, 0.025665340945124626, 0.03079330362379551, -0.023599795997142792, 0.010165548883378506, -0.016838904470205307, -0.018127677962183952, 0.07270900905132294, -0.05012952536344528, -0.04040399566292763, -0.03953659534454346, -0.012389187701046467, -0.0799071192741394, -0.0051516019739210606, 0.042169515043497086, -0.01922275871038437, 3.032451245820064e-34, 0.02430257573723793, -0.0014823881210759282, -0.015271175652742386, 0.04701143130660057, 0.016628332436084747, 0.0019115961622446775, 0.11292848736047745, 0.03251856192946434, 0.051244840025901794, -0.06547463685274124, -0.03052598237991333], "94bd70b1-fb83-4c4e-ab35-b1a16a0234b7": [-0.0016892871353775263, -0.07698842138051987, -0.015293540433049202, -0.016188224777579308, -0.022002043202519417, 0.013331803493201733, 0.010335881263017654, 0.016350889578461647, 0.011120941489934921, 0.021004827693104744, -0.03245633468031883, -0.035082243382930756, 0.05440335348248482, 0.0456603467464447, 0.039119333028793335, -0.07238858193159103, 0.019276421517133713, -0.01344018429517746, -0.0012370991753414273, 0.04609573632478714, 0.04013463109731674, -0.00993050541728735, -0.024427494034171104, 0.005030348431318998, -0.03538310155272484, -0.00915527157485485, 0.011418940499424934, -0.003114148275926709, 0.0334802120923996, 0.08707921206951141, 0.01718846522271633, -0.0023877026978880167, 0.017373235896229744, 0.011571736074984074, 2.0786537788808346e-06, 0.02552059106528759, 0.01725311018526554, 0.00846155360341072, -0.02173704095184803, -0.07796704024076462, 0.026678888127207756, -0.018768534064292908, -0.028046686202287674, 0.03178969398140907, 0.0015246159164234996, 0.020800448954105377, 0.03771587833762169, -0.03127672150731087, -0.017392994835972786, 0.03296257182955742, -0.020869530737400055, 0.060209594666957855, -0.03020501136779785, -0.01870833709836006, -0.01482311449944973, -0.04709959030151367, 0.0066120498813688755, 0.07335320115089417, 0.029571887105703354, -0.0004954137839376926, 0.06857042759656906, -0.0331917479634285, 0.007034953683614731, -0.011056923307478428, -0.03673309460282326, -0.006040844600647688, -0.04712553694844246, -0.0694403201341629, 0.0034037239383906126, 0.024546006694436073, 0.03591989353299141, 0.0064284238032996655, -0.026577508077025414, 0.02501843497157097, 0.04941018670797348, 0.024439292028546333, -0.010830102488398552, -0.012614225968718529, 0.013683602213859558, 0.007854005321860313, -0.040120113641023636, 0.007731042802333832, -0.03695657476782799, -0.0004112830210942775, 0.06911706179380417, -0.07584668695926666, 0.016214435920119286, -0.028058750554919243, -0.01632460206747055, 0.034465253353118896, -0.0037069914396852255, 0.03661537915468216, 0.04933769628405571, 0.0015239358181133866, 0.03219829127192497, -0.009154730476439, 0.009071183390915394, -0.008624241687357426, -0.016131745651364326, 0.042791660875082016, 0.002278422238305211, -0.015331447124481201, -0.00580156734213233, -0.0032634474337100983, 0.05971882492303848, -0.045371975749731064, 0.034796979278326035, -0.02049386128783226, 0.015812566503882408, -0.0017236995045095682, -0.005315366666764021, 0.013297710567712784, -0.06322101503610611, 0.008149012923240662, -0.05713818222284317, -0.04554380103945732, -0.009151703678071499, 0.03560414910316467, 0.012156440876424313, 0.03332941606640816, 0.031483978033065796, -0.004140729084610939, -0.021816618740558624, -0.04243173077702522, 0.006514988839626312, -0.008540946990251541, 0.02278709039092064, 0.01715094782412052, -0.03483784198760986, -0.10938353836536407, 0.010959255509078503, 0.008448743261396885, -0.0219053253531456, 0.016017314046621323, -0.0404183603823185, 0.037038978189229965, -0.014401338994503021, -0.029252320528030396, 0.05018370598554611, -0.010213839821517467, 0.021533144637942314, 0.0018598341848701239, -0.028454363346099854, 0.0305333249270916, 0.029147222638130188, -0.06406416743993759, -0.06533109396696091, 0.04645202308893204, 0.033452749252319336, -0.009574441239237785, 0.024783136323094368, 0.005200165789574385, -0.058591701090335846, 0.021553950384259224, 0.08337743580341339, 0.047912873327732086, -0.045265693217515945, -0.0015830302145332098, -0.005528549663722515, -0.0003568960237316787, 0.028085857629776, 0.04017569497227669, 0.0025170205626636744, 0.021469242870807648, -0.015902552753686905, -0.007921798154711723, 0.041013073176145554, -0.011795063503086567, 0.029313720762729645, -0.012500953860580921, -0.10118085145950317, 0.014246067963540554, -0.04559105634689331, 0.05353176221251488, 0.021207725629210472, -0.021798748522996902, 0.06689845025539398, 0.014765235595405102, -0.03452061489224434, 0.019507594406604767, -0.05672096461057663, -0.06624510884284973, 0.03501974791288376, 0.03170284256339073, 0.029448628425598145, 0.028889190405607224, 0.06270324438810349, 0.01779833994805813, -0.029700541868805885, -0.014993851073086262, 0.005023317411541939, -0.0036749723367393017, -0.05984640121459961, -0.010263673961162567, 0.016941962763667107, -0.03326087072491646, 0.028786983340978622, 0.013999931514263153, -0.004351939540356398, 0.003355426015332341, 0.011495647951960564, 0.003204991342499852, 0.036121878772974014, 0.055986277759075165, 0.02330377697944641, 0.021694203838706017, -0.07497639209032059, -0.006011849269270897, -0.022559624165296555, -0.002414027927443385, -0.0052420590072870255, 0.01020444743335247, -0.009837739169597626, -0.006616109050810337, 0.026270834729075432, 0.06622321903705597, -0.03357471153140068, -0.0030797719955444336, 0.016514139249920845, 0.02292031981050968, -0.036745764315128326, -0.0412052646279335, 0.03272606059908867, -0.00811747182160616, 0.049839600920677185, -0.000579478801228106, -0.030360471457242966, -0.0008469218737445772, 0.020234381780028343, 0.06608007103204727, 0.009303342550992966, 0.011292530223727226, -0.04902796447277069, -0.040240250527858734, 0.006074742879718542, 0.060814838856458664, -0.015164846554398537, 0.011292479932308197, 0.004628998227417469, -0.01972365193068981, 0.021409058943390846, 0.028513271361589432, -0.0008369801798835397, 0.020801426842808723, 0.005326832644641399, 0.02313285320997238, 0.02811136469244957, -0.017239227890968323, 0.03536465764045715, 0.025293687358498573, 0.022015828639268875, 0.05690125748515129, -0.04033786430954933, 0.0024076567497104406, -0.01508726179599762, -0.022596532478928566, -0.016707416623830795, -0.0025090009439736605, -0.07817292213439941, 0.081804059445858, 0.05874653160572052, -0.00194160349201411, -0.0473814532160759, -0.078608438372612, 0.05664023756980896, -0.01877831295132637, -0.005402897950261831, -0.05977505445480347, -0.005531206727027893, -0.012350576929748058, -0.014105699956417084, 0.04784249886870384, 0.022794000804424286, -0.01243620552122593, -0.06269966810941696, -0.024541087448596954, -0.030459770932793617, 0.029887307435274124, 0.013359149917960167, 0.01792233996093273, 0.006352591793984175, -0.005174655932933092, -0.015531823970377445, -0.032170772552490234, 0.016336768865585327, 0.01501471921801567, -0.020052988082170486, -0.10365582257509232, -0.08205657452344894, -0.03127659484744072, -0.02779076248407364, -0.01185429748147726, 0.003860512748360634, -0.018245046958327293, 0.024320412427186966, 0.009897558949887753, 0.06952977925539017, -0.09127414971590042, 0.008230949752032757, -0.025222137570381165, 0.004553081933408976, -0.008107601664960384, 0.03642025962471962, -0.045770350843667984, 0.019382543861865997, 0.01864835061132908, 0.014109689742326736, -0.058106232434511185, 0.00536031648516655, -0.026203539222478867, -0.025697167962789536, 0.028455127030611038, 0.013383283279836178, 0.05118208006024361, -0.024893727153539658, 0.02767029218375683, 0.0005687434459105134, -0.015142660588026047, 0.013263159431517124, -0.041069336235523224, -0.011601192876696587, -0.00897454284131527, -0.0441952645778656, 0.0010286737233400345, -0.010859445668756962, -0.08958703279495239, -0.07328490167856216, -0.007943051867187023, 0.035772114992141724, -0.06810640543699265, -0.030742328613996506, -0.01818043179810047, -0.039919059723615646, 0.03396676108241081, -0.07926797866821289, 0.0023042955435812473, 0.003152998862788081, -0.0641501247882843, -0.08118167519569397, -0.024784736335277557, -0.018166113644838333, 0.019532212987542152, -0.0064214859157800674, 0.035013120621442795, -0.05483818054199219, 0.05234389752149582, 0.030572444200515747, 0.00875757820904255, 0.022093819454312325, 0.06291131675243378, 0.05389699712395668, -0.0008404931868426502, 0.029951445758342743, 0.01843966916203499, 0.04847366362810135, 0.019762765616178513, 0.01890723593533039, 0.029840881004929543, -0.042792581021785736, 0.04422527179121971, 0.04716985300183296, -0.018195347860455513, 0.030917322263121605, 0.016381094232201576, 0.003835184033960104, -0.07862655073404312, 0.009945567697286606, 0.02135552279651165, 0.001863017212599516, 0.007112674415111542, 0.05464787781238556, 0.039169419556856155, 0.008179919794201851, 0.0011042716214433312, -0.008722761645913124, -0.046710480004549026, -0.03769676759839058, -0.11610132455825806, -0.0061650690622627735, -0.058472633361816406, 0.01113020908087492, -0.03542416915297508, 0.02488362416625023, -0.0007801284082233906, -0.05506323650479317, 0.022082852199673653, -0.009894498623907566, 0.003434126265347004, 0.002006546827033162, -0.009776243939995766, 0.03009297512471676, 0.007164881564676762, -0.030514245852828026, 0.027616221457719803, 0.004991927184164524, 0.021922927349805832, 0.06772377341985703, -0.053444549441337585, 0.027463538572192192, -0.018029524013400078, 0.033142104744911194, -0.10486464947462082, 0.01769208163022995, 0.013407557271420956, -0.029646342620253563, -0.017607759684324265, 0.034842319786548615, 0.0939968004822731, 0.0809461697936058, -0.02427365630865097, -0.02199047990143299, 0.03698909282684326, 0.07395544648170471, -0.03778274357318878, -0.002598209073767066, 0.015939224511384964, 0.03177603706717491, 0.01632024720311165, 0.052356064319610596, -0.004762022756040096, 0.006957483943551779, -0.007255427539348602, 0.021406548097729683, -0.02340524084866047, 0.02076583541929722, 0.028184067457914352, 0.08248040825128555, 0.05388756841421127, -0.005712554790079594, -0.022863293066620827, 0.0013221598928794265, -0.02674754709005356, 0.044769566506147385, 0.05753505229949951, -0.004366203211247921, 0.023116998374462128, -0.01711156778037548, -0.005809755530208349, -0.02932317741215229, -0.013461851514875889, -0.009177853353321552, 0.11242120712995529, -0.025429414585232735, -0.020235219970345497, -0.01753160171210766, -0.01094348356127739, 0.02857336960732937, 0.023866970092058182, -0.03337996080517769, -0.007818526588380337, 0.009078812785446644, 0.014260628260672092, -0.03685351088643074, -0.03361550718545914, -0.06458202749490738, 0.04028806835412979, -0.034800972789525986, -0.00015922539751045406, 0.015922904014587402, -0.0612793043255806, -0.0013039495097473264, -0.0009275854099541903, 0.02307654730975628, 0.0016785458428785205, 0.022409649565815926, 0.015471025370061398, -0.031162919476628304, -0.05567915365099907, 0.0057311938144266605, 0.007515450939536095, 0.08739054948091507, -0.009761498309671879, 0.01456780731678009, -0.02005678415298462, -0.01589587703347206, 0.01684661954641342, 0.042466092854738235, -0.044935088604688644, -0.032031141221523285, 0.0009792307391762733, -0.006237779278308153, -0.0016738433623686433, -0.0066403285600245, -0.016493184491991997, -0.0036347524728626013, 0.03865944221615791, 0.029673773795366287, 0.025717604905366898, -0.03561045974493027, -0.0011292819399386644, -0.01965106651186943, -0.01726309396326542, 0.0374293178319931, 0.03839583322405815, -0.07268137484788895, 0.0026365125086158514, 0.03872685134410858, 0.01459672674536705, -0.007811734452843666, -0.024518493562936783, -0.01746988482773304, 0.0295064989477396, -0.033242203295230865, -0.0008885740535333753, -0.033543121069669724, -0.02178076095879078, -0.01592261716723442, 0.0633624792098999, -0.02480381354689598, -0.03726152330636978, 0.03538653999567032, 0.057173456996679306, 0.034931033849716187, -0.03789372742176056, 0.008172078058123589, -0.013215663842856884, 0.006400273181498051, 0.03259420767426491, -0.01969718746840954, -0.0288385096937418, 0.006547939497977495, -0.010463263839483261, 0.033174701035022736, -0.06548888236284256, 0.013091741129755974, -0.014545323327183723, 0.0030172360129654408, -0.03427256643772125, 0.03582145273685455, -0.019658682867884636, -0.04020600765943527, -0.07643995434045792, 0.04077838361263275, -0.03175808861851692, -0.02754152938723564, 0.013979949057102203, 0.004393738228827715, 0.00478410767391324, 0.004470773972570896, -0.03927532583475113, 0.011414963752031326, -0.017518090084195137, 0.047029584646224976, -0.008732722140848637, -0.055117055773735046, -0.04510505497455597, -0.00130783102940768, 0.016851359978318214, -0.0010688924230635166, 0.03782205283641815, -0.04922068491578102, 0.023447833955287933, 0.02970270812511444, 0.06203720346093178, -0.021414313465356827, -5.2112658409126756e-33, -0.007837164215743542, -0.04054199531674385, 0.06976184993982315, -0.02208668552339077, -0.020128827542066574, -0.008105193264782429, 0.03570809215307236, 0.014426970854401588, -0.014242368750274181, -0.0434703603386879, 0.03138396516442299, 0.05930595099925995, 0.0014429795555770397, -0.022088563069701195, -0.04133576899766922, 0.009937205351889133, 0.05545768141746521, -0.0163592416793108, 0.05772736668586731, -0.0003567970416042954, -0.03293706476688385, 0.053928475826978683, 0.018416013568639755, -0.04753895103931427, -0.011387079954147339, 0.036370422691106796, -0.004683901555836201, 0.007137218024581671, 0.05648551508784294, 0.0003122229245491326, -0.00439327722415328, -0.04078683629631996, -0.0019064800580963492, 0.01887979544699192, -0.016863545402884483, 0.12730248272418976, -0.039360612630844116, -0.011774355545639992, -0.057204850018024445, -6.561144255101681e-05, -0.023607537150382996, 0.00885845348238945, -0.05148041993379593, 0.0012850414495915174, 0.02513721026480198, 0.025178296491503716, -0.024058742448687553, 0.009042387828230858, -0.07822148501873016, 0.09692388772964478, 0.0048835380002856255, -0.008656388148665428, -0.011819059029221535, -0.021863475441932678, -0.01729881949722767, -0.003480995539575815, -5.441458415589295e-05, -0.09708122164011002, -0.035168491303920746, 0.05671463534235954, -0.052454568445682526, -0.01477019302546978, -0.002073657000437379, -0.05556884780526161, 0.0387386716902256, 0.01062370091676712, 0.0017420005751773715, 0.034341130405664444, -0.06328294426202774, -0.03619527816772461, -0.01562097854912281, 0.021526698023080826, 0.029494479298591614, -0.06050367280840874, -0.08171771466732025, 0.04157157614827156, 0.0021430852357298136, -0.043942611664533615, -0.006537510082125664, -0.02687191031873226, -0.006582530215382576, 0.05794240161776543, -0.004064131062477827, 0.034994617104530334, 0.022189287468791008, 0.009828806854784489, -0.005373087711632252, -0.055020540952682495, -0.0013443331699818373, 0.033026620745658875, -0.035441748797893524, 0.008977827616035938, 0.013203255832195282, 0.030418111011385918, 0.10229063034057617, -0.015774501487612724, 0.0503934770822525, -0.025754708796739578, -0.02465847320854664, -0.03166541829705238, -0.01745363138616085, -0.008333757519721985, 0.012559781782329082, 0.04740989953279495, -0.014710726216435432, -0.009996865876019001, 0.001231787959113717, -0.016813909634947777, 0.010657761245965958, -0.007746941410005093, 0.0066870274022221565, 0.0615062341094017, -0.0064055826514959335, -0.022834571078419685, -0.006075311917811632, -0.02489699237048626, -0.046431541442871094, 0.056270625442266464, -0.013371232897043228, -0.03115343675017357, -0.00542056281119585, -0.0261846911162138, -0.022518957033753395, -0.03710727393627167, -0.03890840336680412, 0.013766303658485413, -0.04173032194375992, 0.002329387702047825, 0.09152908623218536, 0.07029520720243454, 0.017437556758522987, -0.05892762169241905, 2.791886402064847e-07, -0.02485719881951809, 0.032377731055021286, 0.004950052127242088, 0.05894950032234192, 0.02854965627193451, -0.03601929172873497, 0.06935114413499832, -0.015284708701074123, 0.006383363623172045, 0.017391828820109367, 0.035875413566827774, 0.017212040722370148, 0.05977967381477356, 0.04482273384928703, 0.005062878597527742, -0.07707765698432922, -0.0744047462940216, -0.0500936359167099, 0.034140683710575104, 0.006038024090230465, 0.003460884327068925, 0.01528923586010933, 0.014640307985246181, 0.0001341796014457941, -0.04370460286736488, -0.00947578251361847, 0.0035889127757400274, -0.03407863527536392, -0.04123116657137871, 0.015201392583549023, -0.003772103227674961, -0.07316095381975174, -0.016753792762756348, 0.008331218734383583, -0.053334854543209076, -0.059649478644132614, 0.02085500955581665, 0.01284837443381548, -0.046456024050712585, 0.0022052202839404345, 0.008662109263241291, -0.02021368034183979, -0.046447426080703735, 0.10161303728818893, -0.03221024572849274, -0.061168719083070755, -0.0068792239762842655, 0.05922653526067734, 0.02391994372010231, -0.04198625683784485, 0.01411234587430954, 0.01219913735985756, 0.024697832763195038, 0.017941784113645554, -0.02404068037867546, 0.02362452633678913, -0.0116629209369421, 0.03345629200339317, 0.054093342274427414, 0.008174164220690727, -0.019622227177023888, -0.052236203104257584, -0.012282995507121086, -0.05959700793027878, -0.043164368718862534, 0.04979867488145828, -0.019357234239578247, 1.485482313038702e-34, -0.02222316898405552, 0.02569291926920414, -0.06512081623077393, 0.056436289101839066, 0.015978118404746056, 0.009957147762179375, 0.04344172775745392, 0.0446869432926178, 0.041861891746520996, -0.013085907325148582, -0.028123455122113228], "b86b8e65-d3fc-4e3b-afe2-48afa23b7a68": [-0.011250901035964489, -0.0032218664418905973, -0.032630763947963715, -0.01902134157717228, -0.007998161017894745, -0.003063795156776905, -0.007759277243167162, 0.07187721878290176, 0.027438096702098846, 0.02247713692486286, 0.01092404592782259, 0.027333226054906845, 0.004938407801091671, 0.02346760407090187, 0.03550983592867851, -0.08201327919960022, 0.016308162361383438, 0.010701037012040615, -0.04404916241765022, 0.013014465570449829, -0.020286865532398224, -0.010553981177508831, -0.01459148433059454, 0.02302270568907261, -0.012190786190330982, 0.01086185872554779, 0.07030144333839417, 0.051785994321107864, 0.09503085166215897, 0.07815944403409958, 0.0379706546664238, -0.04294999688863754, -0.018026284873485565, -0.010383929125964642, 2.314029870831291e-06, 0.013502215035259724, 0.011364261619746685, 0.024486782029271126, 0.02239258773624897, -0.08010558038949966, 0.07512113451957703, -0.08953366428613663, -0.009741745889186859, 0.05867939814925194, 0.025530744343996048, -0.0011077842209488153, 0.007397013250738382, -0.006833598483353853, 0.019522329792380333, 0.01893422193825245, -0.04154152423143387, 0.057186778634786606, -0.06665816158056259, -0.005706092342734337, -0.027122221887111664, -0.011735305190086365, 0.017581598833203316, 0.02538950741291046, 0.03770797699689865, -0.044194407761096954, 0.013671398162841797, -0.0429568886756897, -0.024025768041610718, 0.013818733394145966, 0.008767691440880299, -0.0013879415346309543, -0.014825820922851562, -0.052228689193725586, 0.009328787215054035, 0.024339918047189713, -0.01932128518819809, 0.028745999559760094, 0.03561093658208847, 0.001252134912647307, 0.04593012481927872, -0.0020494055934250355, 0.030329259112477303, 0.019733957946300507, -0.01882028952240944, -0.014950352720916271, 0.022641288116574287, 0.07224805653095245, -0.017378101125359535, 0.007348888088017702, 0.07339809089899063, -0.015588488429784775, -7.677024768781848e-06, -0.05695750564336777, 0.027439165860414505, 0.02392045222222805, -0.0009367518941871822, 0.02751845493912697, 0.013624372892081738, 0.012532372027635574, 0.010635732673108578, -0.0017280708998441696, 0.005996366962790489, 0.011543363332748413, 0.00251921359449625, 0.042123377323150635, -0.03337918967008591, 0.02433725632727146, -0.024413753300905228, 0.0023485184647142887, 0.04709089547395706, -0.05221046879887581, -0.02639652043581009, -0.05820002779364586, -0.022203924134373665, 0.019569439813494682, -0.020235450938344002, 0.027112619951367378, -0.04306855797767639, -0.028163129463791847, -0.02354050800204277, -0.020460210740566254, -0.00786456186324358, 0.036865971982479095, -0.013872075825929642, -0.0118885962292552, 0.06575766205787659, -0.019110817462205887, -0.021643104031682014, -0.0076752882450819016, 0.05759577080607414, -0.017044369131326675, -0.02648886851966381, -0.00317229051142931, -0.03678885102272034, -0.06761713325977325, 0.02328159660100937, 0.033819034695625305, -0.01144107524305582, -0.029250312596559525, 0.0014594134408980608, -0.02901122346520424, 0.056575093418359756, -0.000828258809633553, -0.016857285052537918, -0.018790235742926598, -0.02663758210837841, -0.013857385143637657, 0.04319518804550171, 0.02523135021328926, -0.026022154837846756, -0.0882868692278862, -0.0503254272043705, 0.011722859926521778, -0.027439607307314873, -0.01715049147605896, 0.034903112798929214, -0.02577299438416958, -0.08032537996768951, -0.024855153635144234, 0.006108153145760298, 0.056763336062431335, 0.00013387347280513495, -0.029448825865983963, -0.01922403834760189, 0.028368689119815826, 0.022214194759726524, 0.02077367901802063, 0.016333438456058502, 0.01824774034321308, -0.0068910373374819756, -0.024376044049859047, 0.020462432876229286, 0.011193645186722279, 0.023119525983929634, 0.0002625002816785127, -0.017309686169028282, 0.013957811519503593, -0.0286102257668972, 0.1087825819849968, 0.026004238054156303, -0.06546252220869064, 0.019603973254561424, 0.04958580434322357, -0.04356694966554642, 0.039252158254384995, -0.04657278582453728, -0.0394541434943676, 0.0021294893231242895, 0.0016254531219601631, 0.045840781182050705, 0.022643277421593666, -0.004333497025072575, 0.04652705788612366, -0.03251834586262703, -0.0435379333794117, -0.019270632416009903, -0.01572117768228054, -0.0037254535127431154, 0.019283553585410118, 0.01884751208126545, -0.09555938839912415, 0.0253362525254488, -0.06291276961565018, -0.021033721044659615, -0.02233567088842392, 0.006874635349959135, -0.03722890838980675, 0.013780220411717892, 0.04073536768555641, 0.0015099280280992389, -0.01189077366143465, -0.06377032399177551, -0.014201706275343895, 0.07047724723815918, 0.03588387742638588, -0.01902824081480503, 0.033580292016267776, -0.004275052342563868, -0.0072111026383936405, 0.02117476612329483, 0.04631853103637695, -0.022341802716255188, -0.0014131894567981362, 0.000868902774527669, 0.026884036138653755, -0.03333383798599243, 0.028024883940815926, 0.01371954195201397, -0.026942657306790352, 0.026055948808789253, -0.03712502866983414, -0.002430069027468562, 0.04712868109345436, 0.018926993012428284, 0.030540229752659798, -0.0171080082654953, 0.03432653471827507, -0.01424875296652317, -0.04155566915869713, 0.010096865706145763, 0.10486693680286407, 0.033368319272994995, 0.051229383796453476, -0.002112103858962655, 0.019949650391936302, 0.009381395764648914, 0.06012682616710663, -0.0319376178085804, 0.050289325416088104, -0.012696188874542713, 0.039398159831762314, 0.013345003128051758, 0.011036515235900879, -0.03295357897877693, -0.001012732507660985, 0.030945155769586563, 0.0018596273148432374, -0.024250321090221405, -0.0017352643189951777, -0.013914874754846096, -0.03688034415245056, -0.06306611001491547, 0.015265803784132004, -0.06600123643875122, 0.04480166360735893, 0.027039729058742523, -0.055887844413518906, -0.024063032120466232, -0.026253674179315567, 0.07772822678089142, -0.048121944069862366, 0.009836746379733086, 0.013641352765262127, -0.05758172273635864, -0.004465464502573013, 0.010854749009013176, -0.012529856525361538, -0.020358866080641747, -0.030678916722536087, -0.055061858147382736, -0.02158891223371029, 0.007880928926169872, 0.03530586138367653, 0.03617853671312332, 0.018735257908701897, -0.009651988744735718, 0.018004532903432846, 0.008419574238359928, -0.037235237658023834, -0.010293453931808472, -0.05310369282960892, -0.019831374287605286, -0.03956043720245361, -0.06422615051269531, -0.021105995401740074, 0.011904050596058369, -0.013425151817500591, 0.014535329304635525, -0.01732109673321247, -0.05281445011496544, 0.02608446590602398, 0.058410100638866425, 0.03335493430495262, -0.021973663941025734, -0.0949687734246254, 0.015698296949267387, 0.009243721142411232, 0.013005771674215794, 0.01169520802795887, 0.023708205670118332, 0.03747599571943283, 0.009313279762864113, -0.01561256218701601, -0.03874202072620392, -0.01646132580935955, -0.006102129351347685, 0.024682575836777687, -0.012271128594875336, 0.06904640793800354, -0.04472722113132477, -0.004524631425738335, -0.05542198196053505, -0.012772589921951294, 0.00761051382869482, -0.05733649805188179, 0.0152047798037529, 0.02650308795273304, -0.05842003971338272, 0.03070596046745777, 0.03954518958926201, -0.08412925153970718, -0.026310594752430916, 0.0043858871795237064, 0.026040947064757347, -0.06943213194608688, -0.021044287830591202, 0.04646078869700432, -0.035731229931116104, -0.00854391697794199, -0.08207926899194717, 0.014396082609891891, 0.010712712071835995, -0.0671461746096611, -0.011747389100492, -0.029684752225875854, -0.056549523025751114, -0.04161721467971802, -0.0027631078846752644, 0.0011016055941581726, -0.03665011003613472, -0.0020155732054263353, 0.024579964578151703, 0.0211713258177042, -0.006196530535817146, -0.020457031205296516, 0.059976812452077866, -0.012932779267430305, 0.04200434684753418, 0.0024654753506183624, 0.04666915163397789, -0.01515361201018095, 0.06419333815574646, 0.023459963500499725, -0.028320247307419777, 0.04114976152777672, 0.0055172257125377655, 0.010066539980471134, -0.03859817981719971, -0.017691126093268394, 0.03493110090494156, -0.05479639023542404, 0.0013082753866910934, -0.005430617835372686, -0.015532094985246658, 0.024286093190312386, 0.036178357899188995, 0.06691865622997284, -0.01921693980693817, 0.019276129081845284, -0.04716755449771881, 0.017131660133600235, -0.0002726523671299219, -0.12908968329429626, -0.030037296935915947, 0.0024406109005212784, 0.035482510924339294, 0.04805585741996765, 0.04239532724022865, 0.01883765496313572, -0.006133086048066616, -0.00684041902422905, -0.030160069465637207, 0.06800316274166107, 0.04268789291381836, 0.025163691490888596, 0.017378801479935646, 0.027510393410921097, -0.01259144302457571, 0.05203685536980629, -0.0045574381947517395, -0.03888436779379845, 0.0429484061896801, -0.03687123581767082, 0.011046490631997585, -0.004875979386270046, 0.07871957123279572, -0.05706239491701126, -0.014078957028687, 0.0002741115167737007, -0.002764105796813965, -0.03031730465590954, 0.03030036762356758, 0.04917197301983833, 0.0545555017888546, -0.0534309558570385, 0.018611686304211617, 0.03845958411693573, 0.04558849334716797, -0.013054202310740948, 0.037066079676151276, -0.02015892043709755, -0.0006563924835063517, 0.023029232397675514, -0.0007237321697175503, -0.0449334941804409, 0.013353120535612106, 0.003273023059591651, -0.001268601045012474, 0.04595642164349556, -0.03635029122233391, -0.00854935310781002, 0.05957596004009247, 0.07154387980699539, 0.021121175959706306, -0.016194328665733337, 0.004722633399069309, 0.011240440420806408, 0.07587245106697083, 0.02528693899512291, -0.027151556685566902, 0.03184966742992401, -0.02803986333310604, -0.04562102630734444, 0.017112918198108673, -0.014458994381129742, -0.04422038048505783, 0.04359974339604378, 0.026249101385474205, -0.03636167570948601, -0.03286346048116684, -0.002915112068876624, 0.06045137345790863, -0.008173350244760513, -0.04228706657886505, -0.049949899315834045, 0.04840483143925667, 0.06687523424625397, -0.0023265343625098467, -0.010964075103402138, -0.013086083345115185, 0.026883695274591446, -0.06151695176959038, -0.016431119292974472, 0.06946180760860443, 0.01208291295915842, 0.015798762440681458, 0.0071705300360918045, 0.00041678777779452503, 0.01055410411208868, 0.03704226389527321, -0.009117301553487778, 0.031754400581121445, -0.05588328838348389, 0.00028751057107001543, 0.06184947490692139, 0.06120495870709419, -0.03317197784781456, 0.004212868865579367, -0.012133914977312088, -0.0016169914742931724, 0.04076721891760826, 0.07791832834482193, 0.01827935501933098, -0.0297741387039423, -0.03181483969092369, 0.015585493296384811, -0.072290800511837, -0.04155506566166878, -0.030945027247071266, 0.0011032219044864178, 0.0008837982313707471, 0.028812266886234283, -0.0014379823114722967, -0.013038944453001022, 0.000970924855209887, -0.00770047539845109, -0.02277235873043537, 0.017538169398903847, 0.0779026672244072, -0.012468067929148674, -0.03705991804599762, -0.060697201639413834, -0.02147025428712368, -0.058337464928627014, 0.050272032618522644, -0.022522345185279846, 0.028125518932938576, -0.03576871380209923, 0.01546510960906744, 0.03503917157649994, -0.011314035393297672, -0.008504592813551426, 0.05949437990784645, -0.02013920620083809, 0.02276010438799858, -0.0623963288962841, 0.06483007222414017, 0.026875998824834824, 0.02726927027106285, -0.03310449793934822, -0.05551520362496376, 0.02929980866611004, 0.04556141793727875, -0.020902598276734352, 0.02452371083199978, -0.03764653205871582, -0.007186021190136671, 0.01828029565513134, -0.05948742479085922, 0.04834144562482834, 0.02377789281308651, -0.044243860989809036, -0.05629851669073105, -0.009127714671194553, 0.009155740030109882, -0.014918968081474304, -0.038433901965618134, 0.11324810236692429, 0.0018667466938495636, -0.0035909921862185, 0.012539079412817955, -0.0011558305704966187, -0.0220224279910326, -0.04334847256541252, -0.011724991723895073, -0.026472609490156174, -0.0535457618534565, 0.06656742095947266, -0.0346856489777565, -0.005751500837504864, 0.015368876047432423, 0.013246247544884682, -0.02178076282143593, 0.05130771920084953, -0.025621915236115456, -0.03556622937321663, 0.03582962974905968, -0.004732869565486908, 0.017428791150450706, 0.02203085646033287, -5.628645681323268e-33, 0.01844109781086445, 0.020021196454763412, 0.04541764408349991, -0.02189558744430542, -0.036440420895814896, 0.018609125167131424, 0.01408772449940443, 0.0006502065807580948, -0.024950159713625908, -0.002855258760973811, 0.011617389507591724, 0.0474199540913105, 0.012111833319067955, -0.031070834025740623, -0.029748855158686638, -0.0764460489153862, 0.004519127309322357, 0.006162312347441912, 0.0182370375841856, -0.015238366089761257, -0.05715450644493103, 0.029979806393384933, 0.017722424119710922, -0.04578818008303642, -0.008014717139303684, 0.07790190726518631, 0.018365830183029175, 0.003693420672789216, 0.05137038230895996, 0.004157042596489191, -0.018090203404426575, 0.02144172415137291, 0.0007513037999160588, 0.0699707493185997, 0.003517317585647106, 0.10099147260189056, -0.06911053508520126, -0.03277711570262909, -0.03791902959346771, -0.033083390444517136, -0.03818294778466225, -0.06207731366157532, -0.011725439690053463, 0.04141916334629059, 0.004163656383752823, -0.011222404427826405, -0.040462370961904526, -0.026980765163898468, -0.08490293473005295, 0.022560985758900642, -0.04612480103969574, -0.01721583865582943, 0.009758170694112778, 0.008147538639605045, -0.05258041247725487, 0.006021101027727127, -0.002723233075812459, -0.016410740092396736, -0.057662706822156906, 0.0034838628489524126, -0.07290613651275635, 0.014566096477210522, 0.031209329143166542, -0.049165092408657074, 0.05149803310632706, -0.030122697353363037, -0.056057557463645935, 0.03878982737660408, -0.07503470033407211, 0.003774417331442237, 0.040520552545785904, 0.004739230964332819, -0.04158579185605049, 0.008705721236765385, -0.02271305024623871, -0.058702465146780014, -0.03830375149846077, -0.021503418684005737, -0.007836665026843548, 0.002050682669505477, 0.0028752360958606005, 0.03723213076591492, 0.03565759211778641, 0.008975598029792309, 0.05483843386173248, 0.03679925203323364, 0.006285255774855614, -0.01216114591807127, -0.017040861770510674, 0.0573350191116333, -0.047293875366449356, -0.010380469262599945, 0.0012021514121443033, -0.024133967235684395, 0.10611889511346817, -0.008124953135848045, 0.028699206188321114, -0.012049916200339794, 0.02567516826093197, -0.01333945244550705, -0.002509195590391755, -0.023953214287757874, -0.04080804064869881, 0.08257919549942017, 0.009763948619365692, -0.0012597012100741267, 0.034958407282829285, 0.006833963096141815, 0.04534406587481499, -0.03839689865708351, 0.0022973557934165, 0.042301155626773834, 0.02805289439857006, 0.019982347264885902, -0.01555028185248375, -0.007630759384483099, 0.024457890540361404, 0.057266753166913986, 0.04602935165166855, -0.027934858575463295, 0.004792904015630484, 0.02165515348315239, 0.06739568710327148, -0.03536686673760414, 0.0032308059744536877, -0.00140697683673352, 0.005136835854500532, 0.03431914001703262, 0.09561029821634293, -0.012345629744231701, 0.0055479020811617374, -0.05718134716153145, 2.906420775161678e-07, -0.04514193534851074, 0.02661374770104885, -0.015869641676545143, 0.017379188910126686, 0.006823252886533737, -0.04268798604607582, 0.007592510897666216, -0.020341230556368828, -0.035048436373472214, 0.023845352232456207, 0.04881075769662857, -0.027013815939426422, 0.04928405582904816, -0.023765772581100464, 0.020258700475096703, -0.07875232398509979, -0.03709697723388672, -0.022324703633785248, 0.03809072822332382, 0.005103801842778921, 0.04549194127321243, 0.01132937055081129, -0.004287712275981903, -0.019652262330055237, -0.0424104668200016, -0.00965255219489336, -0.0037200143560767174, 0.005589683540165424, -0.03388943150639534, -0.019197916612029076, 0.06009400635957718, -0.02487914450466633, -0.03415404632687569, -0.009115103632211685, -0.003909587860107422, -0.08009274303913116, -0.007138369604945183, 0.06813973933458328, -0.018570447340607643, 0.028891976922750473, -0.04410899803042412, 0.012106169015169144, 0.012003973126411438, 0.04288021847605705, -0.01638462208211422, -0.07064788043498993, -0.05170866847038269, 0.048310957849025726, -0.009169964119791985, -0.06193123385310173, -0.009675676934421062, -0.03716592863202095, -0.009715965017676353, -0.012125521898269653, 0.030681898817420006, 0.029012935236096382, -0.012812198139727116, 0.006410328205674887, 0.03304898738861084, -0.00532770249992609, -0.03544693812727928, -0.07313154637813568, 0.010101149789988995, -0.0034766988828778267, -0.015235827304422855, -0.025188693776726723, -0.02039405144751072, 2.503608505588358e-34, -0.016541188582777977, 0.056948449462652206, -0.0823928639292717, 0.02126682922244072, -0.002838981570675969, -0.008706879802048206, -0.04934407025575638, 0.04439619556069374, 0.0031190381851047277, -0.012934539467096329, -0.023415444418787956], "a25ada4b-5845-43aa-9c0c-cfd763e4a100": [0.05804573744535446, 0.06493119150400162, -0.013310577720403671, 0.0015097837895154953, -0.05673317238688469, -0.031937144696712494, -0.002202053787186742, -0.013452413491904736, -0.061298586428165436, -0.037474505603313446, -0.018404413014650345, 0.06476327776908875, 0.005026337690651417, 0.044914618134498596, -0.042196113616228104, -0.05392866209149361, 0.015319347381591797, 0.023352395743131638, 0.013078556396067142, 0.01583634503185749, 0.05162300541996956, 0.0038361516781151295, -0.029177766293287277, 0.004313511773943901, -0.029740093275904655, -0.017892245203256607, -0.05376484617590904, 0.016482697799801826, 0.022873127833008766, -0.08713840693235397, 0.009920982643961906, 0.044724203646183014, -0.017157642170786858, 0.044848136603832245, 2.763347538348171e-06, -0.01002417877316475, -0.025992879644036293, -0.029824458062648773, -0.0727132111787796, 0.06234763562679291, 0.09611005336046219, 0.08372661471366882, -0.01732541061937809, 0.009625783190131187, -0.040964577347040176, -0.02802412584424019, 0.03305157274007797, 0.017468705773353577, 0.013913041912019253, 0.020312724635004997, 0.031705498695373535, -0.02288774959743023, -0.04987332597374916, -0.044941555708646774, 0.07007801532745361, -0.052704889327287674, -0.030263403430581093, 0.02097276784479618, 0.034289177507162094, 0.0195465087890625, 0.006570061668753624, 0.04267023876309395, -0.06774082779884338, -0.06673454493284225, 0.02930516004562378, 0.04277472943067551, -0.02528940699994564, -0.04280789569020271, 0.002719572512432933, 0.003432044992223382, 0.07868395000696182, -0.03740277513861656, 0.006270695943385363, 0.0011317896423861384, -0.04060935601592064, 0.01270989142358303, -0.05271952226758003, -0.018928874284029007, -0.016142018139362335, -0.01261032372713089, 0.007617789786309004, 0.03189384564757347, -0.0017539814580231905, 0.021739551797509193, 0.08824454247951508, 0.0003693492617458105, -0.023359265178442, -0.018994556739926338, -0.017290238291025162, -0.016852516680955887, 0.12396329641342163, -0.017781628295779228, -0.002780677517876029, 0.0447782538831234, -0.03208085149526596, -0.0030257997568696737, 0.06566274166107178, -0.03212285041809082, 0.05855240672826767, 0.02323008142411709, -0.006527360528707504, -0.027109527960419655, 0.012680932879447937, 0.01391292829066515, 0.027938034385442734, -0.03148874640464783, 0.025482874363660812, -0.06824123859405518, -0.042244575917720795, 0.0372508205473423, -0.03356752172112465, -0.0002692940179258585, -0.02896631695330143, -0.03401537984609604, 0.002961930353194475, -0.020060451701283455, -0.012828829698264599, 0.004794268868863583, 0.03934358432888985, 0.05092267692089081, -0.017619971185922623, 0.0440666563808918, -0.06535355746746063, 0.0051145777106285095, -0.00655460124835372, -0.008965151384472847, -0.013188392855226994, -0.022779012098908424, 0.01861247792840004, -0.025684904307127, -0.037058159708976746, 0.005538714583963156, 0.0008083984721451998, 0.006910167634487152, 0.021562820300459862, 0.043695397675037384, 0.006103761028498411, -0.007830167189240456, -0.04849099740386009, -0.02251698262989521, 0.014304779469966888, 0.005102481227368116, -0.02954023703932762, -0.025349732488393784, 0.046198971569538116, -0.03604918718338013, -0.019390800967812538, 0.10225661844015121, 0.02658010460436344, 0.043835900723934174, 0.017298629507422447, 0.04498116672039032, -0.01088003534823656, 0.020482726395130157, 0.04784736409783363, 0.03443712368607521, 0.004079140722751617, 0.0330781489610672, -0.00301337824203074, 0.055746596306562424, 0.0378553606569767, 0.04895484447479248, 0.01802241802215576, 0.008338455110788345, -0.002586732152849436, -0.02798277512192726, 0.10412200540304184, 0.030363425612449646, 0.011123726144433022, 0.0018935551634058356, -0.04093250259757042, 0.03031957522034645, -0.03022458776831627, 0.010171503759920597, 0.004123218357563019, 0.0927332192659378, 0.029711157083511353, 0.05926157161593437, -0.010937254875898361, 0.0012087414506822824, -0.03828514739871025, -0.05761350318789482, -0.021533874794840813, 0.03427867591381073, -0.06079382076859474, -0.02624615468084812, -0.06964077800512314, 0.011614332906901836, -0.032614950090646744, -0.03169377148151398, -0.014334993436932564, 0.0142869483679533, -0.002931889845058322, 0.0039295353926718235, 0.012400051578879356, 0.036585189402103424, -0.055425193160772324, -0.08021802455186844, -0.04400119185447693, -0.04114742577075958, 0.02438204176723957, 0.0420607253909111, 0.06132453680038452, 0.06029101833701134, 0.07417609542608261, -0.022380687296390533, -0.028295274823904037, -0.014500470831990242, 0.009233214892446995, -0.01582990400493145, 0.08542736619710922, -0.008765074424445629, -0.0438595674932003, -0.016145486384630203, -0.030612464994192123, -0.0008426663116551936, 0.009149843826889992, -0.012212706729769707, 0.023289361968636513, 0.0052980054169893265, 0.022502124309539795, 0.03930036723613739, -0.026906287297606468, 0.016219690442085266, 0.0238972008228302, -0.019691981375217438, -0.041785988956689835, -0.03124857135117054, 0.044255249202251434, 0.04168511927127838, -0.005274458322674036, 0.035456057637929916, 0.021548377349972725, 0.005784898065030575, -0.024348990991711617, 0.044713448733091354, 0.06751039624214172, -0.013755842112004757, -0.044366683810949326, -0.12665501236915588, 0.008839369751513004, 0.005498572718352079, -0.0012092088581994176, 0.010307115502655506, 0.018468940630555153, -0.009368945844471455, -0.01066338550299406, 0.004404733888804913, -0.006508508697152138, 0.01615886017680168, -0.030876386910676956, -0.04661651700735092, 0.03086773306131363, 0.06933526694774628, -0.015313837677240372, -0.003287774510681629, -0.10347328335046768, 0.02105131559073925, -0.09449758380651474, 0.04420357942581177, 0.012083811685442924, 0.004428728949278593, -0.026361286640167236, 0.003203104715794325, 0.025530267506837845, -0.07603272050619125, -0.020775791257619858, -0.07877004146575928, -0.011818505823612213, -0.010083101689815521, 0.03858540207147598, -0.014765826053917408, 0.006402553059160709, 0.006237883120775223, 0.01629265397787094, -0.015571583062410355, -0.03126505762338638, 0.026596175506711006, 0.011018840596079826, 0.009161868132650852, 0.036263417452573776, 0.019122710451483727, -0.04822516441345215, -0.002925147768110037, -0.006583272945135832, 0.037367455661296844, 0.09349430352449417, -0.047478027641773224, -0.027579063549637794, -0.007625089958310127, -0.025684135034680367, -0.025698693469166756, 0.009951652958989143, -0.02485826052725315, 0.005666034296154976, 0.0009406721219420433, 0.011392748914659023, 0.0418056957423687, 0.013262607157230377, 0.053645528852939606, -0.010452563874423504, -0.06741401553153992, -0.0035996849182993174, -0.01907891407608986, 0.0049421461299061775, 0.025530893355607986, 0.02266029454767704, -0.027689330279827118, 0.04701526090502739, -0.021786749362945557, -0.019457723945379257, 0.021631667390465736, 0.009130459278821945, -0.0015331539325416088, -0.028207624331116676, 0.008899536915123463, -0.03776409849524498, -0.10027234256267548, 0.00916250515729189, 0.014339141547679901, -0.020140202715992928, 0.0005128918564878404, -0.018330596387386322, -0.008466444909572601, -0.014662844128906727, -0.03941631317138672, 0.019171005114912987, -0.03577049821615219, 0.10184501111507416, -0.045756373554468155, 0.010197200812399387, -0.01703604869544506, -0.004091836512088776, -0.021300416439771652, -0.05558071285486221, 0.04313256964087486, -0.03450167551636696, -0.008996684104204178, -0.025829896330833435, -0.037022609263658524, -0.013031890615820885, 0.054986774921417236, -0.05131366476416588, -0.05359141156077385, -0.016237812116742134, -0.021227817982435226, 0.026620246469974518, 0.05573151260614395, -0.05531179532408714, 0.019667180255055428, 0.02176203392446041, 0.0019398406147956848, 0.03293773531913757, -0.01686690002679825, 0.022147614508867264, -0.00862754788249731, -0.03733622282743454, -0.055493004620075226, 0.013332105241715908, -0.028902549296617508, 0.04613843560218811, 0.06284591555595398, 0.05407823249697685, 0.005731442477554083, 0.009205869399011135, -0.04666782543063164, 0.02668210305273533, -0.030612241476774216, 0.009215643629431725, -0.005163374822586775, -0.048071276396512985, -0.016538696363568306, -0.01560511626303196, 0.031656574457883835, 0.02620776556432247, -0.05554701387882233, 0.02034556306898594, -0.06503895670175552, 0.02654021792113781, -0.011332380585372448, 0.004854938481003046, -0.03355048969388008, 0.06041189283132553, -0.04392825439572334, -0.0035944473929703236, -0.02553752437233925, -0.01964903064072132, -0.010260180570185184, 0.011535688303411007, 0.011249941773712635, 0.03986387327313423, -0.03996431082487106, 0.11001452058553696, 0.012464691884815693, -0.06733833998441696, -0.055408358573913574, -0.04851512610912323, -0.0012034185929223895, 0.012421657331287861, 0.002634379081428051, 0.007988065481185913, -0.02501598373055458, 0.024694116786122322, 0.021079393103718758, 0.005354742519557476, 0.05566975474357605, 0.049590643495321274, 0.06839469075202942, 0.043510109186172485, -0.009230591356754303, 0.03851393237709999, 0.014014185406267643, 0.01935230754315853, -0.02966354228556156, 0.08547982573509216, -0.059579167515039444, 0.01976870186626911, -0.015634436160326004, -0.0016182978870347142, 0.017059659585356712, -0.006563032045960426, 0.05073342099785805, 0.018029216676950455, -0.05222693458199501, 0.029784519225358963, -0.01692957617342472, 0.019382797181606293, 0.0036256546154618263, 0.018868399783968925, 0.017363794147968292, 0.01578015834093094, 0.007194431498646736, 0.009537574835121632, 0.05152509734034538, -0.05607861280441284, -0.04471541941165924, -0.008298651315271854, -0.016623035073280334, 0.008186140097677708, -0.02647215500473976, -0.032073844224214554, 0.034719325602054596, 0.03227758780121803, -0.006106230895966291, 0.026320433244109154, -0.05029142275452614, 0.03465906158089638, -0.03002549149096012, 0.0020925267599523067, -0.03271191567182541, -0.019058631733059883, 0.014429468661546707, -0.05114030838012695, 0.009384592063724995, -0.032949261367321014, 0.025088194757699966, 0.008105428889393806, -0.03812437132000923, -0.0029982796404510736, 0.014121143147349358, 0.018325401470065117, 0.04604689031839371, 0.0011941741686314344, -0.009707760997116566, 0.023072147741913795, 0.01962820068001747, -0.03335405886173248, 0.023067107424139977, -0.028414286673069, -0.0336860753595829, 0.09977014362812042, 0.00577083695679903, -0.03241978958249092, -0.028803236782550812, 0.02848629094660282, -0.05599009245634079, -0.012206356972455978, -0.04322228953242302, -0.04849906265735626, -0.011058669537305832, 0.022271180525422096, 0.033547352999448776, -0.02517990954220295, -0.08457614481449127, 0.031454216688871384, 0.017819689586758614, -0.03880764916539192, -0.029269760474562645, -0.007134176790714264, -0.031122172251343727, 0.017412826418876648, -0.013155648484826088, 0.019640682265162468, 0.008113142102956772, -0.07082472741603851, 0.059243910014629364, -0.039658334106206894, 0.030419379472732544, 0.030290381982922554, -0.008685332722961903, -0.014310531318187714, -0.00765066035091877, -0.03738914802670479, 0.01916489377617836, -0.03696247190237045, -0.0008126930915750563, -0.004423887934535742, 0.03428889438509941, 0.03592590615153313, 0.03694579750299454, -0.018264690414071083, 0.02282549813389778, -0.06789863854646683, -0.04243673384189606, 0.00710226409137249, -0.048391398042440414, -0.0018383873393759131, -0.004907617811113596, 0.04976273328065872, 0.0164813119918108, 0.0137692391872406, 0.03414455056190491, 0.06560325622558594, -0.0068099480122327805, -0.04918452352285385, -0.022315042093396187, 0.035085998475551605, 0.02220171131193638, 0.008268946781754494, 0.018798308447003365, -0.09420771151781082, -0.04249022528529167, 0.05759308487176895, -0.01685718074440956, -0.045288410037755966, -0.03134775906801224, -0.011447702534496784, -0.010258628986775875, 0.030473152175545692, -0.06701280921697617, -0.05793057009577751, 0.026384495198726654, 0.003624085569754243, 0.03381093591451645, 0.0032072020694613457, 0.0004580824461299926, 0.05603504925966263, 0.029302315786480904, -0.0054613626562058926, -0.04443543404340744, 0.020820848643779755, 0.04746226593852043, -0.0017146565951406956, -0.026735929772257805, -0.018717598170042038, -6.993868126446135e-33, -0.018441790714859962, -0.09911498427391052, 0.044845256954431534, 0.050901107490062714, -0.05514027178287506, -0.041976865381002426, -0.007115316577255726, -0.01031015906482935, -0.014456206001341343, -0.035074688494205475, -0.011211753822863102, 0.006914595607668161, 0.009614481590688229, -0.013566719368100166, 0.028905561193823814, 0.016141578555107117, 0.026386983692646027, -0.0032242743764072657, -0.019443249329924583, 0.024397781118750572, -0.031157726421952248, -0.023582713678479195, 0.017761986702680588, 0.0009551417315378785, -0.00544715253636241, -0.026620684191584587, -0.012475925497710705, -0.008631216362118721, -0.0075227804481983185, -0.002848939737305045, -0.00609987135976553, -0.03156011924147606, -0.0011306869564577937, 0.033019982278347015, 0.03447967767715454, 0.02050381898880005, -0.021298833191394806, -0.024955399334430695, -0.02003491297364235, -0.02939733862876892, 0.05367124080657959, -0.024930216372013092, 0.0014271861873567104, -0.012338608503341675, 0.012714856304228306, 0.012272045016288757, 0.04089457914233208, 0.025010256096720695, -0.025607820600271225, 0.022819550707936287, -0.013395792804658413, 0.014769825153052807, -0.03490130230784416, 0.014159141108393669, -0.00218724156729877, 0.07326024025678635, 0.0420684739947319, -0.05404859781265259, -0.03300454467535019, 0.028003808110952377, -0.011830257251858711, 0.026628004387021065, 0.04865127429366112, 0.02411143109202385, -0.021018223837018013, 0.05853690579533577, -0.011019106954336166, 0.08570612967014313, -0.007370342500507832, -0.014591370709240437, -0.014011004008352757, 0.018925722688436508, 0.07252629101276398, -0.018108638003468513, -0.011854236014187336, 0.012395801953971386, -0.011141138151288033, 0.028391800820827484, 0.09485611319541931, 0.05796446651220322, -0.001282741199247539, 0.008677029982209206, -0.015898380428552628, -0.0005349478451535106, -0.024974573403596878, 0.019505420699715614, -0.015156375244259834, -0.02676629275083542, -0.01996193826198578, 0.013573438860476017, -0.02867778018116951, -0.00717553123831749, -0.011087395250797272, 0.018424825742840767, 0.03977646678686142, 0.01913899928331375, 0.061023205518722534, -0.026662232354283333, -0.015763534232974052, -0.07291070371866226, -0.04559922218322754, -0.0003034704423043877, -0.005796555895358324, 0.03849358111619949, 0.03529847785830498, -0.01692034676671028, -0.04440874978899956, 0.006349931005388498, -0.025079093873500824, -0.03201441094279289, 0.005871692206710577, -0.029410557821393013, 0.009621229022741318, -0.09027976542711258, 0.007305835373699665, 0.00039366164128296077, -0.01946072466671467, -0.025312798097729683, 0.022973332554101944, -0.005605288781225681, -0.02504841238260269, -0.045660704374313354, 0.018116924911737442, -0.045503415167331696, 0.013909394852817059, 0.018685726448893547, 0.028632991015911102, -0.020647650584578514, 0.0617973655462265, -0.012346766889095306, -0.01992553286254406, -0.04572222754359245, 3.418790299747343e-07, 0.014608138240873814, 0.06281728297472, 0.005673577543348074, 0.011304053477942944, 0.01688305102288723, -0.023555578663945198, 0.0017674231203272939, 0.026051640510559082, -0.04802864417433739, -0.03414769098162651, 0.04356801509857178, 0.017787957563996315, 0.01831335574388504, 0.07429325580596924, -0.022522620856761932, -0.09779555350542068, -0.034554798156023026, -0.023993127048015594, -0.01633717678487301, -0.017755361273884773, 0.059371452778577805, -0.021165473386645317, 0.057862360030412674, -0.018750149756669998, -0.05651644989848137, 0.006093837786465883, 0.014268312603235245, -0.02931354194879532, -0.0559319444000721, 0.05505842715501785, 0.04562218859791756, -0.0536918118596077, -0.009040629491209984, -0.022527111694216728, 0.03726290911436081, -0.05960595980286598, -0.01563352905213833, -0.017374252900481224, 0.019158339127898216, -0.03438601270318031, -0.012685912661254406, 0.029171466827392578, -0.047959644347429276, 0.004058625549077988, 0.003971024416387081, -0.004576559644192457, 0.0269959457218647, 0.08347223699092865, -0.0065644183196127415, 0.004444214515388012, 0.05441514775156975, 0.033259887248277664, 0.04736541584134102, 0.028269480913877487, 0.0022402084432542324, 0.025047611445188522, -0.024079419672489166, -0.01567499153316021, -0.00862208567559719, -0.022752348333597183, -0.02319592610001564, -0.050226353108882904, 0.004212541971355677, -0.0007683432195335627, -0.07812672853469849, -0.04449647292494774, 0.013382961973547935, 3.3677231272499564e-34, 0.04143015295267105, -0.0371013805270195, -0.023395683616399765, 0.02377014234662056, -0.0009418163099326193, 0.02403777651488781, 0.028803469613194466, -0.01027983520179987, 0.06419797986745834, -0.03675622120499611, -0.03858696296811104], "fef485ab-1d16-4402-9c80-2d89b39599c8": [0.04498333856463432, 0.040518589317798615, -0.009540415368974209, 0.030294863507151604, -0.05418412759900093, -0.044871341437101364, 0.006660257000476122, -0.04086222127079964, -0.05632725730538368, -0.05054594948887825, 0.008344484493136406, 0.055019840598106384, -0.004122885875403881, 0.04566778242588043, -0.030854128301143646, -0.05196662247180939, -0.0005659093731082976, -0.010592963546514511, 0.039767466485500336, 0.021353889256715775, 0.06872422248125076, 0.00735752796754241, -0.03962456062436104, 0.009494495578110218, -0.05364876613020897, -0.02078976482152939, -0.07232247292995453, 0.03982236981391907, 0.030974503606557846, -0.07728228718042374, 0.018190937116742134, 0.0385563038289547, -0.0007679062546230853, 0.05902305245399475, 2.514061634428799e-06, -0.026781398802995682, -0.0417318120598793, -0.006629126612097025, -0.04935484752058983, 0.02900642342865467, 0.055164359509944916, 0.08726668357849121, -0.014183774590492249, 0.020281733945012093, -0.06490862369537354, -0.016056153923273087, 0.06764840334653854, 0.008201390504837036, 0.0325617715716362, 0.04885595664381981, 0.01889144442975521, 0.00928040873259306, -0.042791787534952164, -0.029651613906025887, 0.05279916152358055, -0.06040966138243675, -0.014660551212728024, 0.013229829259216785, 0.05224636197090149, 0.009021184407174587, 0.010054869577288628, 0.00892829429358244, -0.05142201855778694, -0.04523174837231636, 0.014871747232973576, 0.03403519466519356, -0.026221977546811104, -0.008299468085169792, -0.014440222643315792, 0.0020736465230584145, 0.059660568833351135, -0.015304292552173138, -0.0013070114655420184, 0.021060222759842873, -0.007010128349065781, -0.003874408081173897, -0.027157047763466835, -0.010901149362325668, -0.013867117464542389, 0.010397586040198803, -0.014113766141235828, 0.03115428052842617, -0.02851041965186596, 0.025705138221383095, 0.06006838381290436, 0.0036069494672119617, -0.010833857581019402, -0.010149153880774975, -0.03407004475593567, -0.004608788527548313, 0.0970790833234787, -0.013047815300524235, -0.00878581590950489, 0.05100628361105919, -0.059168703854084015, -0.004035307094454765, 0.0482422411441803, -0.05169372260570526, 0.03160938620567322, 0.08643682301044464, -0.011157435365021229, -0.004737029317766428, 0.02281748317182064, 0.03638574481010437, 0.023252656683325768, -0.009804810397326946, 0.0343354232609272, -0.0010351225500926375, -0.03163205087184906, 0.004402060527354479, -0.04054928198456764, -2.656326978467405e-05, -0.05316640064120293, -0.0005728298565372825, 0.015238052234053612, -0.014209353365004063, 0.014685316942632198, -0.0018691711593419313, 0.04248495399951935, 0.057335443794727325, -0.041458163410425186, 0.013610370457172394, -0.04615187272429466, 0.0037049991078674793, -0.01077623013406992, -0.02970311790704727, -0.028051385655999184, -0.026796966791152954, 0.009189574979245663, -0.03768973797559738, -0.03612862527370453, 0.01632528565824032, 0.0011872232425957918, -7.45860961615108e-05, 0.03010965883731842, 0.010975760407745838, 0.019786424934864044, -0.02070772275328636, -0.06731525808572769, -0.016751425340771675, 0.01898946613073349, 0.00034690278698690236, -0.01929621770977974, -0.014898594468832016, 0.013299626298248768, -0.04282458871603012, -0.051493000239133835, 0.028424855321645737, 0.013565905392169952, 0.035007938742637634, 0.052867524325847626, 0.047210924327373505, -0.041779715567827225, 0.006943460553884506, 0.0010216376977041364, 0.0022688177414238453, -0.0137547692283988, 0.04675464704632759, -0.0017656789859756827, 0.040763117372989655, 0.02952602505683899, 0.028835121542215347, 0.02640814706683159, 0.013435251079499722, 0.03141506016254425, -0.031913891434669495, 0.09628681093454361, 0.0367087721824646, 0.051687706261873245, -0.0029563773423433304, 0.0022473123390227556, 0.06225884333252907, -0.009359369054436684, 0.005857930984348059, -0.00547998771071434, 0.10575747489929199, -0.0019097778713330626, 0.03419599309563637, 0.0005062815616838634, 0.0007126612472347915, -0.05278152599930763, -0.04444459080696106, -0.003904112381860614, 0.03314981237053871, -0.03267740458250046, -0.002704374957829714, -0.08416463434696198, 0.04493318125605583, -0.043679509311914444, -0.02603188529610634, -0.024830853566527367, 0.029051614925265312, -0.019446831196546555, 0.031516119837760925, 0.02111368626356125, 0.03532996028661728, -0.04480528086423874, -0.07488975673913956, -0.058662090450525284, -0.02036590874195099, -0.015601776540279388, 0.010503267869353294, 0.0758315771818161, 0.011587699875235558, 0.053636591881513596, -0.04926995187997818, -0.023515915498137474, -0.024586571380496025, -0.02229410782456398, 0.007997771725058556, 0.07244431227445602, -0.008793494664132595, -0.06576173007488251, -0.0336492583155632, -0.009221905842423439, 0.017283141613006592, 0.0028153760358691216, -0.017536163330078125, 0.018924005329608917, -0.007944444194436073, 0.013832123018801212, 0.020508792251348495, 0.0007735997787676752, 0.022255759686231613, 0.02198120765388012, -0.04102360084652901, -0.052041564136743546, -0.017585743218660355, 0.039838001132011414, 0.044865984469652176, 0.0031535043381154537, 0.03919094055891037, 0.035080138593912125, 5.4692693083779886e-05, -0.0037307499442249537, 0.023154646158218384, 0.07711809873580933, 0.0010670782066881657, -0.010656584985554218, -0.09852585941553116, -0.03516099229454994, 0.00982058048248291, -0.00108860875479877, 0.02154861018061638, -0.0004394899879116565, -0.014571432024240494, 0.028798900544643402, 0.00415476318448782, -0.035990048199892044, 0.013022471219301224, -0.01924801804125309, -0.04938284680247307, -0.004217217210680246, 0.10357514768838882, -0.006562320981174707, 0.006957681383937597, -0.11510162800550461, 0.04377337917685509, -0.09876714646816254, 0.02605460211634636, 0.0057103075087070465, -0.015452521853148937, -0.027361441403627396, -0.01868293434381485, 0.016372613608837128, -0.08523218333721161, 0.0014670754317194223, -0.027699841186404228, -0.011548401787877083, -0.005505934823304415, 0.04166562855243683, -0.02398422360420227, 0.0024732169695198536, -0.004400335717946291, -0.004244726616889238, -0.0068738325498998165, -0.09465688467025757, 0.004492129199206829, 0.013529716059565544, 0.020343612879514694, 0.03257245197892189, -0.007927780039608479, -0.01732300966978073, 0.008122345432639122, -0.00658836355432868, 0.03993534669280052, 0.06655792891979218, -0.011901660822331905, -0.025380820035934448, 0.0023537520319223404, -0.0006197216571308672, -0.02682098187506199, 0.029248706996440887, -0.03127199411392212, 0.01488310657441616, -0.02563122659921646, 0.022640807554125786, 0.04983559995889664, -0.011982696130871773, 0.015489568933844566, -0.020174359902739525, -0.04371389001607895, -0.010502703487873077, -0.014471598900854588, 0.03144291788339615, 0.04281220585107803, 0.05610489100217819, -0.0324607715010643, 0.04021257534623146, 0.012001539580523968, -0.04842178896069527, 0.015546802431344986, 0.024402741342782974, 0.02968362532556057, -0.02085629105567932, 0.032335784286260605, -0.04330388456583023, -0.0926549956202507, 0.012449074536561966, 0.0159507617354393, -0.0016573210014030337, 0.003837150987237692, 0.004932092037051916, -0.01814432255923748, -0.03667205199599266, -0.09882454574108124, 0.03617473691701889, -0.015477338805794716, 0.12767699360847473, -0.04867353290319443, 0.0032078330405056477, -0.02297200635075569, 0.014398029074072838, -0.016827145591378212, -0.09845129400491714, 0.048546768724918365, -0.008959169499576092, -0.03704530745744705, -0.01357028167694807, -0.0043362644501030445, -0.04036542400717735, 0.03837680071592331, -0.05923270806670189, -0.030386528000235558, -0.04744537174701691, -0.004753665067255497, 0.03826380893588066, 0.05939028039574623, 0.0011488912859931588, 0.028705762699246407, 0.04249941557645798, -0.005223583430051804, 0.025440959259867668, -0.024639321491122246, 0.020817987620830536, -0.027133913710713387, -0.016807205975055695, -0.05010105296969414, 0.036176640540361404, -0.0067443568259477615, 0.04118536412715912, 0.06576981395483017, 0.05588637292385101, 0.00310747092589736, -0.015569809824228287, -0.0632447749376297, 0.011398698203265667, -0.031810011714696884, 0.01916808821260929, 0.023012695834040642, -0.013248544186353683, -0.0026432618033140898, -0.04167329519987106, 0.01085976604372263, 0.031916774809360504, -0.04820166528224945, 0.032520733773708344, -0.07261747866868973, 0.042365700006484985, -0.020660944283008575, 0.03490106761455536, -0.050861913710832596, 0.04107673466205597, -0.05335352197289467, 5.862439502379857e-05, -0.02803540974855423, -0.01940901018679142, -0.010119167156517506, -0.01615370437502861, 0.013080705888569355, 0.023381073027849197, -0.06346951425075531, 0.035769812762737274, 0.01643049716949463, -0.03476773574948311, -0.05207342281937599, -0.012050364166498184, -0.003277695970609784, 0.021653741598129272, 0.016450749710202217, 0.010830358602106571, -0.05670373514294624, 0.016509167850017548, 6.0248945374041796e-05, -0.003960875328630209, 0.029114073142409325, 0.07339262217283249, 0.03606531396508217, 0.041574399918317795, -0.06485144048929214, 0.03646239638328552, 0.03457442298531532, 0.006411269307136536, -0.04301385208964348, 0.049656957387924194, -0.032165221869945526, 0.002889011288061738, -0.014052271842956543, 0.04628032073378563, -0.05099359527230263, 0.00462816096842289, 0.053773824125528336, 0.04605111479759216, -0.04926828294992447, 0.026133213192224503, -0.008359990082681179, 7.22834884072654e-05, 0.03368128091096878, 0.03887201100587845, 0.028231119737029076, -0.0016166118439286947, 0.0006975154974497855, -0.002852157223969698, 0.053431082516908646, -0.10954634100198746, -0.041005685925483704, -0.01695733331143856, 0.020665738731622696, 0.05887174606323242, -0.019637294113636017, -0.03489683195948601, 0.0897982195019722, 0.029605969786643982, -0.022568214684724808, -0.0048127248883247375, -0.02617013081908226, 0.05291213467717171, -0.012751612812280655, 0.020174186676740646, -0.019967012107372284, 0.0015412954380735755, 0.025361787527799606, -0.07123541086912155, -0.021044034510850906, -0.05341783165931702, 0.0189962200820446, -0.03521295636892319, -0.04018741101026535, 0.013198158703744411, 0.06285621225833893, 0.032954201102256775, 0.03794855251908302, -0.014117095619440079, -0.010472347028553486, 0.04616984352469444, -0.04065869003534317, -0.06668629497289658, 0.0012722535757347941, -0.03500549495220184, -0.029544368386268616, 0.07334808260202408, -0.003990593366324902, -0.03068944253027439, -0.019400544464588165, 0.027053838595747948, -0.02995368093252182, 0.0016688074683770537, -0.031717319041490555, -0.06144483759999275, 0.005191897973418236, 0.05104978010058403, 0.0336374007165432, -0.012916887179017067, -0.0676928237080574, 0.027004018425941467, 0.01326829008758068, 0.004801447968930006, -0.015134935267269611, -0.017750168219208717, -0.0364769846200943, -0.027069684118032455, -0.029120923951268196, 0.01844041608273983, -0.010653680190443993, -0.09572234749794006, 0.018558504059910774, -0.02288500778377056, 0.033030927181243896, 0.03480919077992439, 0.01260426826775074, -0.002451267559081316, -0.01605622097849846, -0.030773503705859184, 0.026804843917489052, -0.03524830937385559, 0.02771904319524765, 0.01161640789359808, 0.04311668127775192, 0.05555260553956032, 0.034495238214731216, -0.007160494104027748, 0.011424141004681587, -0.02241666056215763, -0.04979196935892105, 0.010151888243854046, -0.06657765060663223, 0.009079533629119396, 0.014386871829628944, -0.010225537233054638, 0.004110340960323811, 0.019698869436979294, 0.05471886321902275, 0.0691731721162796, -0.007800564169883728, -0.011176437139511108, 0.00937052071094513, 0.03084539994597435, -0.0006338979001156986, -0.010883200913667679, 0.027083465829491615, -0.09198126941919327, -0.01747151091694832, 0.0587177537381649, 0.0011277860030531883, -0.05583465099334717, -0.013921001926064491, -0.018656987696886063, -4.9080215831054375e-05, 0.026959098875522614, -0.05267183482646942, -0.06757080554962158, -0.01044809352606535, -0.015554732643067837, 0.02123819664120674, -0.042249176651239395, -0.001612010644748807, 0.04407016187906265, 0.01651657000184059, -0.0028209220618009567, -0.011842682026326656, 0.022788099944591522, 0.05091889947652817, -0.010279440321028233, -0.05455181375145912, -0.007711810991168022, -6.475158468942753e-33, -0.0028133452869951725, -0.1253676861524582, 0.0524374358355999, 0.05675387382507324, -0.03399839624762535, -0.020025039091706276, -0.009144252166152, 0.013240499421954155, -0.04329846426844597, -0.007804546970874071, -0.00534464605152607, 0.01142909936606884, 0.006156486924737692, 0.007531259674578905, 0.004117845091968775, -0.013847734779119492, 0.011556381359696388, 0.027151677757501602, -0.008214275352656841, 0.012484309263527393, -0.017734233289957047, -0.012333113700151443, 0.015193660743534565, -0.04822360351681709, 0.00015080648881848902, -0.03207124397158623, -0.012301957234740257, 0.01228342019021511, -0.02501600794494152, -3.5578634651756147e-06, 0.007070003543049097, -0.021351544186472893, -0.00815531238913536, 0.02488088048994541, 0.020764868706464767, 0.031958144158124924, -0.015919657424092293, -0.024012593552470207, -0.025851299986243248, -0.047607626765966415, 0.045740965753793716, -0.02800646610558033, -0.022195326164364815, -0.018066758289933205, 0.043945685029029846, 0.030497586354613304, 0.05031611770391464, 0.047004006803035736, -0.0026637238916009665, 0.04291660711169243, -0.011502538807690144, 0.005141863599419594, -0.04492117464542389, -0.014472044073045254, -0.0006171239074319601, 0.05154303461313248, 0.027404680848121643, -0.046266961842775345, -0.041382912546396255, 0.05460444837808609, -0.03153766319155693, 0.0058600446209311485, 0.03256555274128914, 0.0208269115537405, -0.03193145990371704, 0.015416592359542847, -0.0707191526889801, 0.06312604248523712, 0.013941717334091663, -0.03960947319865227, -0.013269818387925625, 0.021855294704437256, 0.08946037292480469, -0.014680847525596619, 0.0018909983336925507, 0.06732303649187088, -0.008823247626423836, 0.039823371917009354, 0.10559683293104172, 0.023190947249531746, 0.023833565413951874, 0.00313200824894011, -0.018996670842170715, -0.007615028880536556, -0.019252419471740723, 0.037058617919683456, 0.00014263564662542194, -0.01985129527747631, -0.020033948123455048, 0.0040398952551186085, -0.03312033414840698, 0.015084901824593544, 0.0028491918928921223, 0.006187175400555134, 0.05330433323979378, -0.007331827189773321, 0.0453629232943058, -0.04330230504274368, -0.018673909828066826, -0.06079183146357536, -0.04788985848426819, 0.021079260855913162, 0.0014101167907938361, 0.053950559347867966, 0.04251622036099434, 0.0004198704846203327, -0.0317363403737545, -0.002438053023070097, -0.0033348584547638893, -0.033951207995414734, 0.011053554713726044, 0.03356208652257919, -0.02593812346458435, -0.06331561505794525, -0.024382684379816055, 0.01291560847312212, -0.0131959468126297, -0.004950384609401226, 0.007200125139206648, -0.02718580700457096, -0.02844494953751564, 0.019216876477003098, 0.004593649413436651, -0.05560652166604996, -0.003059248672798276, -0.009196019731462002, 0.05259387940168381, -0.0087177325040102, 0.0630793422460556, -0.001167052541859448, -0.011492051184177399, -0.04769498482346535, 3.1078570827958174e-07, 0.03248468413949013, 0.039627134799957275, -0.00013967268751002848, 0.001193883130326867, -0.002011213917285204, -0.005163967609405518, 0.009736028499901295, 0.017950033769011497, -0.03824456036090851, -0.047482382506132126, 0.043983571231365204, 0.03373631462454796, 0.018030084669589996, 0.05445875599980354, -0.03482789173722267, -0.11187956482172012, -0.058203406631946564, 0.02001447230577469, -0.0057845995761454105, 0.02644435688853264, 0.0432305783033371, -0.014337526634335518, 0.035887572914361954, -0.011689147911965847, -0.0276584904640913, 0.013625817373394966, 0.004975312855094671, 0.000474671513075009, -0.006402383092790842, 0.05380555987358093, 0.02544204704463482, -0.0842311903834343, 0.0009312066249549389, 0.015021217986941338, 0.022243190556764603, -0.047114524990320206, -0.024889707565307617, -0.021245352923870087, 0.008846713230013847, -0.05389420688152313, -0.030382296070456505, 0.03734584152698517, -0.020468149334192276, -0.014054455794394016, -0.004421149380505085, -0.012915555387735367, 0.010016907937824726, 0.04805897921323776, 0.017627360299229622, -0.01638335920870304, 0.007577129639685154, 0.02733195386826992, 0.03355610743165016, 0.018091164529323578, 0.008390848524868488, 0.007361137308180332, -0.021013587713241577, 0.002985502127557993, -0.013219427317380905, -0.04593142122030258, -0.021138250827789307, -0.03429552912712097, -0.0018568513914942741, -0.05110282450914383, -0.05744464695453644, -0.035718102008104324, 0.015004820190370083, 2.9805306705347014e-34, 0.022098293527960777, -0.028489485383033752, -0.048272088170051575, 0.052888937294483185, 0.01833593100309372, 0.013064750470221043, 0.043307021260261536, -0.006611363030970097, 0.05312925577163696, -0.03057735040783882, -0.012265060096979141], "25c15c1c-6042-434d-81ab-116505771d66": [0.07320711016654968, 0.005135650280863047, -0.022891759872436523, -0.020298896357417107, 0.02425300143659115, 0.05365381017327309, -0.045268524438142776, 0.018425380811095238, 0.014939581975340843, -0.024991028010845184, 0.03919926658272743, -0.006606194190680981, 0.031845033168792725, 0.03424105420708656, -0.037943556904792786, -0.006631506606936455, 0.0552147701382637, -0.013801454566419125, 0.027419857680797577, 0.00460851239040494, -0.017833102494478226, 0.05230821296572685, -0.013203747570514679, -0.03251678869128227, 0.012941871769726276, 0.010527798905968666, 0.01954280398786068, 0.0229007750749588, 0.006785456091165543, -0.04896145686507225, -0.006505193188786507, -0.02890963666141033, -0.016714774072170258, -0.005935921799391508, 2.3496352241636487e-06, -0.03913898393511772, -0.04067739099264145, 0.024301815778017044, -0.042338065803050995, -0.06030016392469406, 0.006071919109672308, -0.014659027568995953, -0.09184823930263519, 0.006338795647025108, -0.009433841332793236, 0.03501686826348305, 0.03509518504142761, 0.03663966804742813, -0.008987098932266235, 0.10352606326341629, 0.030967194586992264, -0.02430926263332367, 0.016130834817886353, -0.049235403537750244, 0.11961084604263306, -0.019384266808629036, -0.02416410855948925, 0.05061367526650429, 0.025336453691124916, -0.002867271425202489, 0.025444872677326202, 0.008028177544474602, -0.032878581434488297, -0.02204696089029312, 0.06627634167671204, 0.05198236554861069, 0.012840857729315758, -0.07799013704061508, 0.029736535623669624, 0.025856513530015945, 0.1095728948712349, 0.020884240046143532, 0.03775707259774208, 0.0732647180557251, -0.03272588923573494, 0.030191220343112946, -0.011760842986404896, 0.08959949761629105, 0.011131237260997295, 0.004902431275695562, -0.028269601985812187, -0.012747755274176598, -0.007716901134699583, -0.007478206418454647, 0.004173269495368004, 0.03951163962483406, -0.021857738494873047, -0.05061105638742447, 0.02271152287721634, -0.009185321629047394, 0.02757800929248333, -0.03307098522782326, -0.004846567753702402, 0.0013605718268081546, 0.04922013357281685, -0.010473792441189289, -0.041422851383686066, -0.09372913092374802, 0.05697166547179222, 0.018902774900197983, -0.0678471103310585, -0.025277120992541313, -0.011482574045658112, 0.04254649206995964, -0.02804543264210224, 0.01636226661503315, 0.04494015872478485, -0.025181643664836884, -0.02669556252658367, 0.046745799481868744, -0.048340681940317154, -0.0242775771766901, -0.06531541049480438, 0.010223997756838799, -0.014639842323958874, -0.0382322259247303, -0.05004683509469032, 0.04625174030661583, 0.016688235104084015, 0.05328112840652466, 0.05329223349690437, -0.038323648273944855, -0.01870611310005188, 0.026703624054789543, -0.03609941154718399, -0.05190687254071236, 0.04197271913290024, -0.009681877680122852, -0.0023662587627768517, 0.0017301540356129408, 0.012551520951092243, 0.05126095935702324, -0.0015308718429878354, -0.02973855659365654, -0.008084517903625965, 0.06530706584453583, 0.026946930214762688, -0.026053234934806824, 0.05191550403833389, -0.036659568548202515, 0.04684281721711159, -0.017435699701309204, -0.019556637853384018, -0.00727186119183898, 0.031544022262096405, 0.005937010981142521, 0.02545670047402382, -0.040941718965768814, 0.03052455186843872, 0.024038296192884445, -0.05520881339907646, 0.038015950471162796, -0.08277533203363419, -0.02085050381720066, 0.005716207902878523, -0.011438034474849701, -0.01829088293015957, -0.04376765340566635, 0.005739514250308275, 0.0656970739364624, 0.021296260878443718, 0.02539769746363163, 0.01458019483834505, -0.03831935301423073, -0.02380729652941227, -0.016720855608582497, 0.06996268779039383, 0.03616957738995552, 0.05516878515481949, 0.05626710504293442, 0.022836120799183846, 0.03129446879029274, -0.005443934816867113, -0.005105786956846714, 0.01711076684296131, 0.11727943271398544, 0.027000265195965767, -0.011752020567655563, -0.01620757207274437, 0.05183029547333717, -0.032496944069862366, -0.13030016422271729, -0.01982898823916912, -0.01010899804532528, -0.049284759908914566, 0.006543021649122238, -0.0331844724714756, 0.03223617374897003, 0.022431746125221252, 0.005093439947813749, -0.028224099427461624, -0.01810426265001297, -0.0048804208636283875, -0.05449952557682991, 0.005195493809878826, -0.008177822455763817, -0.056875526905059814, -0.0665341466665268, 0.02938196435570717, -0.014896348118782043, 0.018643276765942574, -0.026953959837555885, 0.06699255853891373, 0.0005979613633826375, 0.04830827936530113, -0.030013607814908028, 0.02976619265973568, -0.0378231480717659, 0.03482980653643608, 0.008023294620215893, 0.06467802822589874, 0.010362687520682812, -0.05066090449690819, -0.020360272377729416, -0.03092559613287449, -0.005566028878092766, -0.009733122773468494, 0.012091385200619698, -0.0046467590145766735, -0.012038840912282467, 0.024819528684020042, -0.02792159654200077, -0.057558342814445496, 0.03503934293985367, 0.01320773083716631, -0.046119485050439835, -0.04331624507904053, 0.012999233789741993, 0.02240908518433571, 0.0175176952034235, -0.031722985208034515, 0.030006181448698044, 0.03936911001801491, 0.04845830425620079, -0.02483551576733589, 0.03652703016996384, 0.04199157655239105, -0.0008977427496574819, -0.014100724831223488, -0.1324024200439453, -0.045825421810150146, 0.02775684930384159, 0.028812000527977943, 0.024592293426394463, 0.03764196112751961, -0.04821848124265671, -0.0009715816704556346, 0.02235274575650692, 0.011219131760299206, 0.05320589244365692, 0.029125884175300598, -0.006697964388877153, 0.027947135269641876, 0.06227714195847511, -0.018490277230739594, 0.07625855505466461, -0.1491164267063141, 0.0035380362533032894, -0.03582001477479935, -0.011526926420629025, 0.04983849078416824, -0.009809602983295918, -0.025909869000315666, 0.025189727544784546, 0.005860771052539349, 0.01529720053076744, -0.019654177129268646, 0.012069247663021088, -0.02173398993909359, 0.005655759945511818, 0.011940098367631435, -0.00609271414577961, 0.005710574332624674, -0.019508255645632744, 0.008280639536678791, -0.00843181274831295, -0.038421113044023514, 0.004329932387918234, -0.01191092748194933, 0.013017612509429455, 0.020266680046916008, -0.008022405207157135, -0.04002688080072403, -8.624364795650763e-07, -0.02857269160449505, 0.00521328579634428, 0.06586320698261261, -0.016348792240023613, -0.06270948797464371, -0.04933343827724457, 0.0012138872407376766, 0.004740561358630657, 0.014354169368743896, -0.04492705687880516, -0.012736919336020947, 0.0073716044425964355, -0.0025004663038998842, 0.024457188323140144, 0.009875834919512272, 0.06210358068346977, 0.04722068831324577, 0.051463231444358826, 0.02255633845925331, -0.021348854526877403, 0.011486513540148735, 0.034435804933309555, 0.021571027114987373, -0.055728744715452194, 0.029074646532535553, -0.03538733720779419, 0.041707515716552734, 0.018176648765802383, -0.004640610888600349, -0.00010993980686180294, -0.038132667541503906, -0.003939340822398663, -0.04260411113500595, -0.0821627825498581, 0.007280280813574791, 0.049227938055992126, 0.0176183320581913, -0.008449561893939972, 0.004996428266167641, 0.003940966445952654, -0.012623923830688, -0.08327054232358932, -0.04119492322206497, -0.012559461407363415, 0.021037662401795387, 0.03819562867283821, 0.0305989608168602, 0.008446745574474335, -0.0080702630802989, 0.014343330636620522, 0.0010772495297715068, -0.019110357388854027, 0.0044889431446790695, -0.057073768228292465, 0.01403104793280363, 0.010000279173254967, -0.03881312534213066, 0.043448660522699356, -0.012063805013895035, -0.0014933343045413494, -0.04127922281622887, -0.008268274366855621, -0.025626813992857933, 0.005561121739447117, -0.09599959850311279, 0.004779805429279804, 0.05042111501097679, 0.0023321539629250765, -0.00015216122847050428, -0.03214787319302559, -0.03606170415878296, 0.009213768877089024, 0.013940051198005676, -0.014230005443096161, 0.0470014289021492, -0.05597718060016632, -0.00973825715482235, 0.05169152840971947, -0.01762428879737854, 0.03988129645586014, -0.0010249530896544456, 0.005619937554001808, -0.010612928308546543, -0.021045565605163574, 0.012670009396970272, -0.023189706727862358, -0.03914961591362953, -0.019815953448414803, 0.01672077551484108, 0.058359526097774506, 0.03681415319442749, -0.002757668262347579, 0.0246096421033144, -0.011281222105026245, 0.007445743773132563, -0.012340818531811237, 0.0163413118571043, -0.004735019989311695, 0.0500003807246685, 0.019727414473891258, 0.03036167100071907, 0.0179899949580431, 0.015564626082777977, 0.007824212312698364, 0.04852934926748276, 0.011948691681027412, 0.02500704862177372, -0.008717568591237068, -0.07253631204366684, -0.053980667144060135, -0.0422242097556591, -0.00017536012455821037, -0.03397614136338234, 0.006361657287925482, -0.015345552004873753, 0.0023892035242170095, 0.0029450973961502314, 0.021413668990135193, 0.028520433232188225, 0.023442978039383888, -0.01682230457663536, 0.06735388189554214, 0.11569228768348694, 0.03913044184446335, 0.0051908488385379314, -0.011507250368595123, 0.1066848635673523, 0.028841989114880562, 0.0036897012032568455, 0.04249528422951698, 0.04245513305068016, -0.02254425920546055, 0.004029405768960714, -0.017713669687509537, -0.021940363571047783, -0.0866609737277031, -0.023180201649665833, 0.0012724834959954023, 0.05717833712697029, -0.006104074418544769, 0.029570523649454117, -0.06869598478078842, 0.07917889952659607, -0.05598856881260872, 0.04705397039651871, -0.05843455716967583, 0.022587519139051437, 0.02276337519288063, -0.03226374834775925, 0.03278317674994469, -0.026074370369315147, -0.013342623598873615, 0.013773583807051182, -0.07806306332349777, 0.0017826143885031343, -0.07216905802488327, -0.035661742091178894, 0.03621886670589447, 0.02366592176258564, 0.023128673434257507, -0.025855591520667076, 0.0443415567278862, 0.022630443796515465, 0.010542858392000198, 0.012405788525938988, -0.05152076110243797, 0.008973048999905586, -0.0896080806851387, -0.10022161900997162, -0.01867174170911312, -0.030045926570892334, -0.01145119033753872, -0.059607330709695816, -0.004129856824874878, 0.007174304220825434, -0.0025703320279717445, -0.026923537254333496, 0.0539422333240509, -0.032229818403720856, -0.018857410177588463, 0.00570518895983696, -0.020438337698578835, -0.015989011153578758, -0.07524831593036652, 0.024237684905529022, -0.02650061994791031, -0.003169625997543335, -0.013677012175321579, -0.013717654161155224, -0.0022517004981637, 0.027958162128925323, -0.05564923956990242, -0.07023327797651291, -0.015138675458729267, 0.01010976079851389, 0.0065762633457779884, 0.06298097968101501, -0.031966786831617355, 0.014160320162773132, -0.016679972410202026, -0.02156389132142067, 0.020542625337839127, -0.027632491663098335, 0.032509945333004, -0.005051188170909882, -0.02582760527729988, 0.051781125366687775, -0.008873306214809418, 0.01775059662759304, 0.0020399289205670357, -0.02066374570131302, 0.044401586055755615, -0.0200564656406641, 0.036560896784067154, 0.012576695531606674, 0.01251861173659563, 0.05607141926884651, -0.05029379948973656, 0.015736959874629974, 0.04694174975156784, -0.06411883980035782, 0.008635342121124268, -0.023380223661661148, -0.01743135415017605, 0.007837626151740551, -0.04430645331740379, -0.004722328390926123, -0.013314027339220047, -0.09716494381427765, -0.032085712999105453, 0.03201255947351456, -0.004795036744326353, -0.02699856273829937, -0.037984054535627365, 0.03741935268044472, -0.028719089925289154, 0.022745830938220024, 0.004596835933625698, 0.026901213452219963, -0.012767254374921322, -0.020005963742733, 0.06632089614868164, 0.020886128768324852, 0.008198733441531658, 0.009008931927382946, 0.04123460501432419, -0.025381941348314285, 0.006245375610888004, 0.044126592576503754, -0.0062531218864023685, -0.029611092060804367, 0.019194630905985832, 0.0377974733710289, 0.039870984852313995, -0.040833815932273865, 0.016783637925982475, 0.028682192787528038, -0.016945937648415565, 0.0069477250799536705, 0.040301430970430374, 0.03275132179260254, 0.02318750135600567, 0.017692627385258675, 0.03316362947225571, -0.020479310303926468, -0.05324990302324295, 0.0027221671771258116, -0.02148984558880329, -0.03742601349949837, 0.01728122867643833, 0.05943183973431587, -6.206426501349362e-33, -0.01848837547004223, -0.017266007140278816, -0.016540274024009705, 0.043139152228832245, -0.05896444991230965, -0.002013570861890912, -0.024614281952381134, -0.002090525347739458, -0.018309202045202255, -0.009633398614823818, -0.015199296176433563, -0.021493276581168175, 0.015465622767806053, -0.0018496044212952256, 0.007488439325243235, 0.008737683296203613, 0.005606760270893574, 0.007864905521273613, 0.007312622852623463, -0.03363778814673424, -0.05599895492196083, -0.038493748754262924, 0.010907675139605999, -0.013993857428431511, 0.015425082296133041, -0.008652965538203716, -0.044160179793834686, -0.002838906366378069, 0.06207731366157532, 0.020815303549170494, -0.008752050809562206, -0.039868082851171494, -0.022316809743642807, 0.018533332273364067, -0.011624747887253761, 0.04905179515480995, -0.04016047716140747, -0.005187017843127251, -0.0023318976163864136, 0.021190140396356583, 0.02262151800096035, -0.021858399733901024, -0.016811972483992577, -0.042177144438028336, 0.04159189760684967, 0.025441884994506836, 0.05781783536076546, -0.012185863219201565, -0.0001094752224162221, 0.00019931604037992656, -0.057418063282966614, 0.015598246827721596, -0.03696085140109062, 0.05070258304476738, -0.00104255520273, 0.0064530204981565475, 0.022669922560453415, -0.000749787432141602, -0.04378079995512962, -0.0052959430031478405, -0.009977307170629501, 0.040827199816703796, 0.017653046175837517, -0.06094910576939583, -0.03613607957959175, -0.0029080018866807222, -0.001974470214918256, 0.06857532262802124, 0.02885168418288231, 0.06866767257452011, -0.0209332425147295, -0.010430504567921162, -0.024187946692109108, -0.037863217294216156, -0.016728486865758896, -0.000440902600530535, -0.053479548543691635, 0.05284516513347626, 0.08954935520887375, 0.041362036019563675, 0.02989065647125244, 0.015546784736216068, -0.021800756454467773, 0.0323234386742115, -0.004041920881718397, 0.022439250722527504, -0.014853420667350292, -0.033905092626810074, -0.013138800859451294, 0.01332878228276968, -0.006277500651776791, -0.01652066595852375, -0.05339636281132698, 0.014380243606865406, 0.03467828035354614, 0.007662931457161903, -0.01610216498374939, -0.020544923841953278, -0.06336098909378052, -0.04348449781537056, -0.038993291556835175, -0.00450180796906352, 0.03594004362821579, -0.026144232600927353, 0.03833014890551567, 0.029599910601973534, 0.026461681351065636, -0.021449042484164238, -0.08683556318283081, 0.004642551764845848, 0.000493852945510298, 0.005917556118220091, 0.02554291859269142, 0.010151037946343422, 0.007326136808842421, -0.008545315824449062, 0.0047999960370361805, -0.021747374907135963, -0.03460037335753441, -0.0354379378259182, -0.0004734954272862524, 0.04056774079799652, -0.01760631985962391, 0.0004618016246240586, -0.06076226755976677, -0.007934404537081718, -0.02922634780406952, 0.03878393769264221, 0.07469400018453598, -0.03867513686418533, 0.0016457836609333754, -0.003249294823035598, 3.1124235988500004e-07, 0.012156062759459019, 0.045256152749061584, 0.007836452685296535, -0.005483720451593399, -0.03004717454314232, -0.028358936309814453, -0.03953483700752258, 0.02052260749042034, -0.033037956804037094, 0.019439339637756348, 0.04148691147565842, -0.001073723193258047, -0.002187119796872139, -0.01922997087240219, -0.03684350475668907, -0.048787131905555725, -0.045094653964042664, -0.04832678660750389, -0.017654934898018837, -0.01570136472582817, 0.0571255087852478, 0.04250112920999527, 0.06478572636842728, 0.006619048770517111, -0.01835411787033081, 0.015674905851483345, -0.05438532680273056, -0.044570185244083405, 0.02002657763659954, 0.00824801716953516, 0.0365806519985199, -0.030034931376576424, -0.06301427632570267, -0.024531468749046326, -0.008198179304599762, -0.02669055201113224, -0.00023915123892948031, 0.024492960423231125, 0.007870598696172237, 0.0918220803141594, 0.0009946026839315891, -0.0005813243915326893, 0.02656678482890129, 0.008907079696655273, 0.01981431059539318, 0.04886293038725853, -0.012905922718346119, -0.04031544178724289, -0.09349405020475388, -0.023083576932549477, -0.0012553678825497627, 0.04312480241060257, -0.0004203646967653185, 0.002987890038639307, 0.0052695367485284805, -0.030126472935080528, 0.0070667387917637825, -0.04190510883927345, 0.029444202780723572, -0.0090809790417552, -0.043136924505233765, 0.0036823027767241, 0.017745353281497955, 0.06615746766328812, 0.08379276841878891, -0.01034452859312296, -0.022956717759370804, 3.077704793673097e-34, 0.03856145590543747, -0.032706502825021744, -0.021022846922278404, -0.011278524994850159, 0.039540041238069534, -0.034043796360492706, 0.018357010558247566, -0.013028264045715332, -0.044092241674661636, -0.054279875010252, -0.02022797241806984], "0009b835-6867-4034-a974-e0495b55ed3e": [0.03690196946263313, -0.0602155402302742, -0.033000096678733826, -0.014882639981806278, 0.01063205860555172, 0.031017214059829712, -0.012843283824622631, 0.06160677596926689, 0.028142767027020454, -0.013030000030994415, 0.006444816943258047, -0.0586019828915596, 0.025764629244804382, 0.015591971576213837, -0.014461561106145382, 0.0631226971745491, 0.014638153836131096, -0.011168275028467178, -0.053382713347673416, -0.0016766617773100734, -0.03378625214099884, 0.051818929612636566, -0.038741327822208405, -0.012310202233493328, 0.049437712877988815, 0.021911010146141052, 0.013008526526391506, 0.021716706454753876, 0.05301518738269806, 0.036010146141052246, 0.03014262765645981, 0.00840066373348236, -0.018754897639155388, -0.062377072870731354, 2.323189619346522e-06, 0.00778444716706872, -0.003078145207837224, 0.0015845352318137884, -0.05271012336015701, -0.028762776404619217, 0.011099491268396378, 0.00827005598694086, -0.03021419793367386, 0.04161718487739563, -0.035623665899038315, 0.029638973996043205, 0.008584043942391872, -0.03797503933310509, -0.010264956392347813, 0.05885504558682442, 0.020618198439478874, -0.03188811615109444, -0.006529324222356081, -0.024962035939097404, 0.04526100680232048, -0.03853048384189606, -0.014712010510265827, -0.007847588509321213, 0.009798331186175346, 0.026876086369156837, 0.015577917918562889, -0.009669410064816475, -0.04314412549138069, -0.012863141484558582, 0.026254506781697273, 0.05608084797859192, 0.0034187715500593185, -0.12346094846725464, 0.031880445778369904, 0.0009684953256510198, 0.0912385806441307, 0.014984872192144394, 0.0043815928511321545, 0.05042337253689766, -0.0043782745487987995, 0.08583366870880127, 0.017839470878243446, 0.06516371667385101, -0.03497947007417679, -0.01832267828285694, -0.019921353086829185, -0.038999058306217194, -0.028483638539910316, -0.023307261988520622, 0.010676092468202114, 0.03867283836007118, -0.017394892871379852, -0.015300935134291649, 0.03802740201354027, -0.032718025147914886, 0.07749999314546585, 0.051135219633579254, 0.024963760748505592, 0.009661379270255566, 0.01839517243206501, -0.05014454573392868, 0.01539628766477108, -0.018616093322634697, 0.06848765164613724, -0.03284065052866936, -0.03070119023323059, -0.014502513222396374, -0.04346436262130737, 0.024760935455560684, 0.03352831304073334, 0.011689277365803719, 0.012264055199921131, -0.03908923640847206, -0.04914172366261482, 0.020424697548151016, -0.054803766310214996, 0.01193950604647398, -0.021988116204738617, -0.03204970806837082, -0.010635980404913425, -0.002885806607082486, -0.03838344290852547, 0.005249837879091501, 0.04279029741883278, 0.06912000477313995, 0.06061394885182381, -0.02038215473294258, -0.048436488956213, 0.026131147518754005, -0.0467301607131958, -0.04227682948112488, 0.05867389217019081, -0.03058231808245182, -0.05435594171285629, -0.06002790480852127, 0.01591521129012108, -0.0019207980949431658, 0.0005916996742598712, 0.0026502907276153564, -0.004653549753129482, 0.041450466960668564, 0.04429192468523979, 0.010921071283519268, 0.04995088279247284, 0.0015710826264694333, 0.04607464000582695, -0.004822652321308851, 0.012167412787675858, 0.027229588478803635, 0.01899183914065361, -0.03614121302962303, 0.015684371814131737, 0.018855785951018333, 0.05515023320913315, 0.0585930272936821, 0.018105391412973404, 0.041752755641937256, -0.019970912486314774, -0.013097802177071571, 0.004451496060937643, 0.000624269072432071, -0.0014145084423944354, -0.0024809464812278748, -0.008858928456902504, 0.05610724166035652, 0.0003833497758023441, 0.013889210298657417, 0.04782097786664963, -0.007269607856869698, -0.03773291036486626, 0.005838003475219011, 0.08442356437444687, 0.0366227850317955, 0.013738875277340412, -0.012464448809623718, 0.0005153711535967886, -0.0005765499081462622, -0.02024207077920437, 0.010345972143113613, -0.04660927504301071, 0.011767673306167126, 0.012394026853144169, -0.021759727969765663, 0.041345492005348206, 0.05458817258477211, -0.03213723003864288, -0.06773049384355545, -0.030837412923574448, 0.018654650077223778, -0.06638115644454956, 0.015018903650343418, -0.0381784625351429, 0.07299615442752838, -0.021205531433224678, 0.023658905178308487, -0.009697211906313896, 0.0071717300452291965, -0.00925972405821085, -0.0019091925350949168, 0.015115557238459587, 0.0020892927423119545, -0.032676614820957184, -0.05654757469892502, -0.004224133677780628, -0.021241318434476852, -0.010487538762390614, -0.03340734541416168, -0.020564401522278786, 0.021298179402947426, 0.04941745474934578, 0.002379676327109337, -0.03324023261666298, -0.053786247968673706, -0.013279356062412262, 0.05452561378479004, 0.10788652300834656, 0.005464686546474695, -0.011231563054025173, -0.0046180132776498795, -0.052974455058574677, 0.013024345971643925, -0.0394921749830246, -0.019976885989308357, 0.031991105526685715, -0.010957878082990646, 0.04557636380195618, -0.06003377214074135, -0.05814911797642708, 0.006745565682649612, 0.02473250962793827, -0.044670283794403076, 0.007414848078042269, 0.03314581885933876, 0.02841639332473278, 0.04213684797286987, -0.01688438281416893, -0.0003610833955463022, 0.008515886031091213, -0.010326855815947056, 0.05711504817008972, -0.013472109101712704, 0.033980611711740494, -0.02653491497039795, -0.02007931098341942, -0.06268264353275299, -0.04312191158533096, 0.037157196551561356, -0.032153092324733734, 0.04953370615839958, -0.0288782250136137, 0.01243517640978098, -0.004025052767246962, -0.009631210006773472, 0.006967215798795223, 0.06360217183828354, 0.03629900515079498, 0.02207297831773758, 0.04009665548801422, 0.02615337446331978, -0.03557751700282097, 0.05531945824623108, -0.12871302664279938, -0.013732553459703922, -0.11257153749465942, 0.06510092318058014, -0.01995563693344593, -0.0037271210458129644, -0.013781696557998657, 0.005813371855765581, 0.039080120623111725, -0.005407578777521849, 0.03019018843770027, -0.0452614389359951, 0.019316045567393303, 0.02591981366276741, 0.021321037784218788, 0.015230512246489525, 0.005929946433752775, -0.018895484507083893, 0.04039525240659714, -0.06775673478841782, -0.035022810101509094, 0.022736404091119766, -0.009713207371532917, 0.009429714642465115, -0.008612621575593948, -0.015105580911040306, -0.02148815430700779, -0.010652018710970879, 0.018491823226213455, -0.039595216512680054, 0.028444375842809677, -0.03614090755581856, -0.03272320702672005, 0.01418145652860403, 0.001104186405427754, 0.005621153395622969, 0.016821857541799545, -0.05996020883321762, -0.0619058683514595, 0.011431831866502762, -0.03152438998222351, 0.026188073679804802, -0.003735105972737074, 0.006541899871081114, 0.03528490290045738, 0.04485480859875679, 0.03221357613801956, 0.003866370301693678, 0.020991861820220947, 0.035938188433647156, 0.01246467512100935, -0.059091582894325256, -0.0302918441593647, -0.1291850507259369, 0.003235629526898265, 0.022575173527002335, 0.006679508835077286, 0.05098817124962807, -0.013402562588453293, -0.011362976394593716, -0.09119601547718048, -0.0004818023007828742, 0.00023745227372273803, 0.07727719843387604, 0.00153583032079041, -0.03657122328877449, -0.04199210926890373, -0.019346294924616814, 0.004113711416721344, -0.09526742994785309, -0.04868001863360405, -0.005328993313014507, 0.03845831751823425, -0.001882941578514874, 0.057886648923158646, 0.009267321787774563, -0.005003112368285656, -0.012734517455101013, -0.026568613946437836, -0.02796824835240841, -0.04262671247124672, -0.06258557736873627, 0.027945971116423607, -0.010262135416269302, -0.037718966603279114, 0.0380718857049942, -0.04521113634109497, 0.010624140501022339, 0.017938457429409027, -0.014341091737151146, -0.07238921523094177, 0.010008391924202442, -0.06976240873336792, 0.029678313061594963, 0.06398382782936096, 0.04075508937239647, 0.006825719028711319, -0.026862474158406258, -0.003571645589545369, 0.004597203340381384, 0.005948339123278856, 0.009558446705341339, 0.010650521144270897, -0.05941995605826378, -0.011881629005074501, -0.00488618016242981, -0.039272140711545944, 0.015967629849910736, 0.06426871567964554, -0.0036843670532107353, -0.022693375125527382, -0.012747006490826607, 0.008704080246388912, 0.001869918662123382, -0.04543127864599228, -0.03433598205447197, -0.02199441008269787, 0.014454187825322151, 0.01751447655260563, -0.023240696638822556, -0.008122502826154232, 0.005446130875498056, -0.016602523624897003, -0.011458374559879303, 0.031809862703084946, -0.0027885923627763987, 0.08129581809043884, 0.01356519479304552, 0.04833980277180672, 0.0022765761241316795, 0.06502499431371689, -0.011809422634541988, 0.03553546220064163, 0.05890452489256859, 0.019803104922175407, -0.023378543555736542, -0.07882687449455261, 0.01630532555282116, -0.016338855028152466, 0.004630908370018005, -0.015211952850222588, -0.010419974103569984, -0.014639732427895069, 0.011529662646353245, -0.032362136989831924, 0.001207978231832385, -0.02535533718764782, 0.04167653247714043, -0.014207147061824799, 0.005575772374868393, 0.06288119405508041, 0.049277808517217636, 0.040079791098833084, -0.0307120643556118, 0.0719001516699791, -0.007441441994160414, 0.0032841386273503304, 0.01385016180574894, 0.027063244953751564, -0.024709854274988174, 0.007386446464806795, 0.003189879236742854, -0.007177578750997782, -0.07617051899433136, 0.025808803737163544, 0.039969202131032944, 0.04055914282798767, -0.026330245658755302, 0.025345932692289352, -0.02407251112163067, 0.07203882187604904, -0.020322130993008614, 0.052309807389974594, -0.06555408239364624, -0.03478619456291199, 0.03557944297790527, -0.00036100426223129034, 0.07330119609832764, -0.005699495784938335, -0.060453955084085464, 0.04381389915943146, -0.03102613054215908, 0.023129740729928017, -0.008688025176525116, -0.031198102980852127, 0.04055061191320419, 0.02992754988372326, 0.04882758483290672, -0.0167708620429039, 0.01042997743934393, 0.049882370978593826, 0.054986827075481415, -0.006718526128679514, -0.05952459201216698, 0.04023892432451248, -0.028758930042386055, -0.06723573058843613, -0.018351353704929352, -0.03537494316697121, -0.01357627846300602, -0.08496847748756409, 0.05936569347977638, 0.04662713780999184, -0.013814346864819527, -0.015062583610415459, 0.04318375885486603, -0.003592971945181489, 0.014518789015710354, 0.040534812957048416, 0.026559604331851006, 0.0006327792070806026, -0.07791802287101746, 0.0324968583881855, -0.01349429227411747, 0.05383395403623581, -0.009463982656598091, -0.016469137743115425, -0.02956734597682953, 0.030086597427725792, -0.06790608912706375, -0.036141738295555115, 0.042998794466257095, -0.07031921297311783, 0.02063790149986744, 0.017826465889811516, -0.0304077360779047, 0.039056841284036636, -0.008027625270187855, -0.01536739431321621, 0.047766346484422684, 0.016344120725989342, 0.02058248221874237, -0.004713804926723242, -0.017944784834980965, 0.06038824841380119, -0.038063447922468185, 0.02833707258105278, -0.05556216090917587, -0.03940023481845856, 0.04007047414779663, 0.0518399253487587, 0.05287616699934006, 0.018113279715180397, 0.04610716924071312, -0.002118443138897419, -0.04364103451371193, -0.007870521396398544, 0.07583962380886078, -0.04997244477272034, -0.01136388722807169, 7.943059608805925e-05, 0.013775168918073177, -0.04014149308204651, -0.005306384060531855, -0.049615129828453064, -0.004134011920541525, -0.05634617432951927, -0.09094545245170593, 0.0531548336148262, -0.03350438177585602, -0.045842494815588, -0.01867952011525631, 0.0073069618083536625, -0.010910469107329845, 0.022129569202661514, -0.0018205239903181791, -0.01046555582433939, -0.00463201804086566, 0.007221808657050133, 0.049824800342321396, 0.018430659547448158, 0.01596161164343357, 0.0005183486500754952, 0.028930360451340675, -0.010244674980640411, -0.040932632982730865, 0.023187465965747833, -0.004495018627494574, -0.045194949954748154, -0.019512057304382324, -0.001767162699252367, 0.008198745548725128, 0.013659682124853134, 0.05368037149310112, -0.02002936229109764, -0.050941482186317444, 0.0006890522199682891, 0.029349369928240776, 0.012919087894260883, -0.020906392484903336, 0.03558406978845596, 0.03763309493660927, -0.016100062057375908, -0.08915495872497559, -0.0268652755767107, -0.00725103123113513, -0.0431777760386467, 0.06395258754491806, 0.015081405639648438, -6.228452326747895e-33, -0.04811856523156166, 0.001480606384575367, 0.002310729818418622, 0.01551351323723793, -0.006150188390165567, -0.023429539054632187, 0.0023623008746653795, -0.0516769178211689, -0.055132437497377396, -0.04754028841853142, -0.024966271594166756, 0.030679257586598396, 0.014670982956886292, 0.00683435145765543, -0.05012955889105797, 0.007892008870840073, 0.030941663309931755, 0.0010201114928349853, 0.009873909875750542, 0.016794387251138687, -0.06745690107345581, -0.02448968216776848, -0.03268592432141304, 0.03608207032084465, -0.026275599375367165, -0.06950126588344574, -0.024724356830120087, 0.05339796468615532, 0.03596559166908264, 0.03307200223207474, -0.027482999488711357, -0.049511056393384933, -0.004303997382521629, 0.011242661625146866, 0.022696932777762413, 0.059158019721508026, -0.04017271846532822, 0.02387126535177231, -0.010754728689789772, 0.0026401567738503218, 0.02845412865281105, -0.040002066642045975, -0.028085695579648018, -0.03228781744837761, 0.0195155031979084, -0.0009907780913636088, 0.040589671581983566, -0.005099731497466564, 0.020517617464065552, 0.018879489973187447, -0.04616867005825043, -0.003739951178431511, -0.04376128688454628, 0.09451283514499664, -0.016828004270792007, 0.07261088490486145, 0.015698237344622612, -0.06316742300987244, -0.11036750674247742, -0.018653778359293938, -0.0072637260891497135, 0.048100538551807404, 0.027793005108833313, -0.009148666635155678, -0.010528254322707653, -0.023061653599143028, -0.008314897306263447, 0.07127135992050171, 0.006324998568743467, -0.006939380895346403, -0.05313955247402191, -0.023761767894029617, -0.03709984943270683, -0.02434438280761242, -0.011325325816869736, -0.009312409907579422, -0.060230452567338943, 0.019824093207716942, 0.04643898084759712, 0.07911366969347, -0.008718159981071949, -0.012735295109450817, 0.0060379947535693645, 0.013773778453469276, -0.008913268335163593, 0.02430880442261696, -0.021362390369176865, -0.049549538642168045, 0.05542675778269768, 0.012594851665198803, -0.00930686853826046, -0.077865831553936, -0.07482492178678513, 0.02529846876859665, 0.07207523286342621, 0.03283850848674774, 0.034472111612558365, -0.05071558803319931, -0.031152328476309776, -0.022913439199328423, -0.05528005212545395, -0.000636447686702013, -0.007042027544230223, 0.006850184872746468, -0.004384211264550686, 0.04940587654709816, -0.04573279619216919, 0.0027242377400398254, -0.0712554007768631, 0.013592120260000229, 0.002540846820920706, 0.002570981392636895, -0.0002101496938848868, 0.005298352800309658, 0.01240568421781063, -0.011804594658315182, 0.01305466890335083, 0.008020039647817612, 0.005854153539985418, -0.004192120395600796, -0.00696653313934803, -0.034963443875312805, 0.03160660341382027, 0.012197060510516167, -0.03784479945898056, 0.02189655415713787, -0.02585337869822979, 0.07424671202898026, 0.0501999668776989, -0.04664342850446701, 0.00493648461997509, -0.014813737012445927, 3.148102791783458e-07, 0.017199769616127014, -0.019431395456194878, -0.043716348707675934, 0.03351520374417305, -0.042771514505147934, -0.05436835065484047, 0.005051429383456707, -0.0146021768450737, 0.04230402410030365, 0.012967541813850403, 0.046595100313425064, 0.005546241067349911, -0.013616840355098248, 0.009554008021950722, -0.029674125835299492, -0.04896988347172737, -0.0023385300301015377, -0.012242507189512253, -0.03174502030014992, 0.0025837928988039494, 0.05744114890694618, 0.06031733378767967, 0.06465135514736176, -0.01449186448007822, -0.027223195880651474, 0.019216252490878105, -0.04134615883231163, -0.030087511986494064, -0.014901770278811455, 0.022759025916457176, 0.0493665412068367, -0.020415473729372025, -0.013195290230214596, -0.0035359966568648815, -0.0021439166739583015, -0.002753708977252245, 0.009033857844769955, 0.014857158996164799, 0.016396556049585342, 0.0506095215678215, 0.01686052978038788, -0.019859235733747482, 0.01695862226188183, -0.025865834206342697, 0.0456598661839962, 0.00028622106765396893, 0.004591356497257948, 0.025213081389665604, -0.02946172095835209, -0.0029052086174488068, 0.019360514357686043, 0.060327451676130295, -0.011210225522518158, -0.01978471875190735, 0.028289854526519775, -0.035013072192668915, -0.027868760749697685, 0.015282861888408661, 0.03864608332514763, 0.0026576328091323376, -0.007065402809530497, -0.061170730739831924, 0.033576082438230515, 0.03884294256567955, 0.009368406608700752, 0.042736880481243134, -0.04832836240530014, 3.5784933969497197e-34, 0.03814387694001198, -0.010046656243503094, -0.012217671610414982, 0.023906530812382698, 0.013531518168747425, -0.04745781049132347, 0.04140140488743782, 0.0013586459681391716, 0.004815585911273956, -0.049147482961416245, -0.017897164449095726], "b2588806-3af9-4149-a5a3-95083eb352c0": [0.02678937092423439, -0.07243907451629639, -0.014290882274508476, -0.055425189435482025, -0.010285895317792892, 0.00993230752646923, -0.0022014740388840437, 0.027831802144646645, 0.004674169234931469, -0.039185501635074615, 0.03873605281114578, -0.07775379717350006, 0.018082592636346817, 0.02930470183491707, -0.04431098699569702, 0.045445676892995834, 0.005355363711714745, 0.005223793908953667, -0.053311023861169815, -0.016693513840436935, -0.00720964977517724, 0.021318748593330383, -0.09680180251598358, -0.021149443462491035, -0.0037662165705114603, -0.006402998697012663, 0.017206916585564613, 0.02637706883251667, 0.026930177584290504, 0.02545863948762417, 0.03605778142809868, -0.03203180432319641, -0.010464584454894066, -0.07191567867994308, 2.428482048344449e-06, -0.0024614655412733555, -0.004841851536184549, 0.005291803739964962, -0.02679208666086197, -0.0149180106818676, 0.02097085677087307, -0.014213950373232365, 0.009691420011222363, 0.041560519486665726, -0.04102957993745804, 0.017937591299414635, 0.02175423875451088, -0.0568869411945343, 0.023718973621726036, 0.05361078679561615, -0.002382933162152767, -0.0007750379154458642, -0.014362799935042858, -0.02509596012532711, 0.026269830763339996, -0.047793250530958176, -0.0029632693622261286, -0.0206028800457716, 0.046994373202323914, -0.013293290510773659, 0.018630921840667725, -0.05334584787487984, -0.03428470715880394, -0.008097370155155659, 0.01627255789935589, 0.0477980300784111, -0.020829930901527405, -0.081683449447155, 0.009342346340417862, -0.043113771826028824, 0.12425682693719864, 0.026613255962729454, -0.013360925018787384, 0.04464736208319664, 0.010031643323600292, 0.05944738909602165, 0.017034759745001793, 0.03803279623389244, -0.028262006118893623, -0.02429703250527382, -0.038616765290498734, 0.019130172207951546, -0.05958861485123634, -0.045450855046510696, -0.0020459345541894436, 0.07075764238834381, 0.00013203264097683132, -0.009059675969183445, -0.007934371940791607, -0.016073545441031456, 0.05443520098924637, 0.051999904215335846, 0.02223876118659973, 0.0071769338101148605, 0.0034211529418826103, -0.046698786318302155, -0.01237367931753397, -0.0230698361992836, 0.06062081456184387, -0.032726384699344635, -0.007357883267104626, -0.02729872614145279, -0.012224510312080383, 0.027082467451691628, 0.061439383774995804, 0.02893979474902153, 0.019191671162843704, -0.04407668486237526, -0.04296392574906349, 0.0016022392082959414, -0.053384456783533096, -0.01038309559226036, -0.0613381527364254, 0.017742842435836792, -3.371182901901193e-05, -0.015161080285906792, -0.030659958720207214, 0.04803784191608429, 0.06948907673358917, 0.04313395917415619, 0.09534218907356262, -0.036879103630781174, -0.04292694106698036, 0.010870502330362797, -0.05260968953371048, -0.06738974153995514, 0.02289954200387001, -0.0005580502329394221, -0.05756618455052376, -0.09989195317029953, 0.01099685113877058, 0.0004032558936160058, -0.027718160301446915, -0.03209010511636734, -0.014486604370176792, 0.02844543196260929, 0.04148402437567711, 0.02957775816321373, 0.03590542450547218, 0.03099711611866951, 0.01810433156788349, -0.002013246528804302, -0.00346155883744359, 0.04648569971323013, -0.02734139934182167, -0.031143873929977417, 0.02406594157218933, 0.005114011000841856, 0.03373423591256142, 0.04340418055653572, 0.02924017421901226, 0.0007445650990121067, -0.07432612776756287, -0.0029416955076158047, -0.028042269870638847, -0.0016191840404644608, -0.020511778071522713, 0.014038977213203907, -0.016114505007863045, 0.08183260262012482, -0.009621798060834408, -0.007680559530854225, 0.022844700142741203, -0.0033198771998286247, -0.040057092905044556, 0.01402057521045208, 0.05338864028453827, 0.06898169964551926, -0.009896090254187584, 0.00035509656299836934, -0.016400080174207687, 0.0020936704240739346, -0.03212437778711319, 0.024714959785342216, -0.02017880603671074, 0.011296218261122704, 0.02179037593305111, -0.0541955791413784, 0.036546867340803146, 0.06722568720579147, -0.03862806409597397, -0.12971825897693634, -0.03946375101804733, -0.009853633120656013, -0.027889665216207504, 0.04839962348341942, -0.011614788323640823, 0.07293348014354706, -0.029502570629119873, 0.04319550096988678, 0.0032538138329982758, 0.00853746011853218, -0.02990523912012577, 0.005356642417609692, 0.012324326671659946, 0.006437917239964008, -0.028665609657764435, -0.000725461111869663, -0.0023514931090176105, 0.012306274846196175, -0.04122167080640793, -0.041142258793115616, -0.0020088960882276297, -0.006419837940484285, 0.06773661822080612, 0.0004472143482416868, -0.027260249480605125, -0.020595679059624672, -0.0088717732578516, 0.054325759410858154, 0.11814992129802704, 0.013194432482123375, 0.016416136175394058, -0.008127937093377113, -0.028920069336891174, 0.019454123452305794, -0.023836808279156685, -0.004640109837055206, 0.015051882714033127, -0.012176175601780415, 0.02006750926375389, -0.03705186769366264, -0.049030106514692307, 0.008503924123942852, 0.027041755616664886, -0.03672599792480469, 0.01583695225417614, 0.00013273920922074467, 0.02935544215142727, 0.03554607927799225, -0.031135309487581253, 0.0022028766106814146, 0.010172142647206783, -0.01024614181369543, 0.08222747594118118, 0.0106145478785038, 0.038273364305496216, -0.0344449020922184, 0.010700853541493416, -0.016465021297335625, -0.028675289824604988, 0.020720597356557846, -0.004377084318548441, 0.03322658687829971, 0.008476251736283302, -0.004741441458463669, 0.006172409746795893, -0.015537790022790432, -0.013706541620194912, 0.018821198493242264, 0.022657794877886772, 0.038102105259895325, 0.009044070728123188, 0.038245316594839096, -0.03825802728533745, 0.03692248836159706, -0.1504582017660141, 0.004585749935358763, -0.09867758303880692, 0.04997619241476059, -0.041277121752500534, -0.005069444887340069, -0.03898303583264351, -0.007743237540125847, 0.04147139936685562, -0.030330447480082512, 0.01701945811510086, -0.028234727680683136, 0.030361702665686607, 0.018340351060032845, 0.041051000356674194, 0.0007996031199581921, -0.004316167440265417, -0.016776397824287415, -0.006652460433542728, -0.053132563829422, -0.032001081854104996, 0.022456292062997818, 0.005978833418339491, 0.027885906398296356, 0.008969403803348541, -0.04575642943382263, 0.028029905632138252, -0.01422483753412962, 0.03155297413468361, -0.026867983862757683, 0.03501874580979347, -0.02817397005856037, -0.03791233152151108, 0.011951087974011898, 0.007852488197386265, -0.027443349361419678, 0.01516615692526102, -0.05021556839346886, -0.050976041704416275, 0.002298261970281601, -0.02033536694943905, 0.004762782249599695, 0.012074866332113743, 0.02660355344414711, 0.018044164404273033, 0.06272532790899277, 0.037407174706459045, -0.02345854975283146, 0.03182884678244591, 0.07053972035646439, 0.014888222329318523, -0.0450785793364048, -0.028229380026459694, -0.06747491657733917, -0.03013104386627674, 0.01862172596156597, 0.009245236404240131, 0.07161131501197815, -0.006194116547703743, 0.0013843998312950134, -0.07939735054969788, -0.002973700175061822, -0.01587490737438202, 0.047407735139131546, -0.016876626759767532, -0.0651656985282898, -0.031033990904688835, -0.02889239974319935, -0.03849060460925102, -0.10072053223848343, -0.05760151147842407, 0.008182616904377937, 0.0284702368080616, 0.007732096128165722, 0.02886049821972847, 0.010205723345279694, -0.01775413751602173, 0.015097343362867832, -0.047739140689373016, -0.033025696873664856, -0.022428572177886963, -0.07701662182807922, 0.006960134021937847, 0.010966491885483265, -0.05439038947224617, 0.02342919446527958, -0.04462891072034836, 0.00321391224861145, 0.00337191647849977, -0.006087403278797865, -0.06685702502727509, 0.013439074158668518, -0.06320986896753311, 0.034161850810050964, 0.038548875600099564, 0.04998837411403656, -0.02623607963323593, -0.027104387059807777, 0.0015838505933061242, -0.025706684216856956, 0.005415813066065311, 0.017190871760249138, 0.013432048261165619, -0.030425185337662697, -0.042267803102731705, -0.024587038904428482, -0.01456956472247839, 0.01965552382171154, 0.016922473907470703, -0.011003060266375542, -0.0065627675503492355, -0.03184717148542404, 0.022627290338277817, 0.029403721913695335, -0.002193618332967162, -0.0036028027534484863, -0.043352510780096054, -0.015764864161610603, 0.005810938775539398, -0.0212196446955204, 0.0010114733595401049, 0.029769353568553925, 0.00285242754034698, 0.0006430650246329606, 0.021093830466270447, -0.014018823392689228, 0.06090740114450455, 0.0008858024375513196, 0.06932128220796585, 0.002392149530351162, 0.0373932346701622, -0.021003441885113716, 0.0127106923609972, 0.052796609699726105, 0.03152324631810188, -0.038490161299705505, -0.07818794250488281, 0.014481590129435062, 0.0003253036120440811, -0.0004993963520973921, 0.007502111606299877, 0.015550929121673107, -0.013361228629946709, 0.027952542528510094, -0.006325601600110531, -0.016653237864375114, -0.051707521080970764, 0.04448404163122177, -0.005539747886359692, 0.04889816790819168, 0.04400523379445076, 0.0003106877557002008, 0.03408428281545639, -0.04632779583334923, 0.05197971686720848, 0.01493863109499216, 0.011820444837212563, 0.03139442950487137, 0.005306632723659277, 0.006872601807117462, 0.0015211203135550022, 0.021919576451182365, 0.0006000477005727589, -0.09865407645702362, 0.03136230260133743, 0.03525049239397049, 0.03670310974121094, -0.045191604644060135, 0.0323801226913929, -0.016810158267617226, 0.06419243663549423, 0.013799306005239487, 0.04533632472157478, -0.04898444935679436, -0.05825979635119438, 0.029099810868501663, 0.029440684244036674, 0.06949858367443085, -0.06422001868486404, -0.04296678304672241, 0.026460779830813408, -0.0030078087002038956, 0.08034947514533997, 0.007551686372607946, -0.023423166945576668, 0.03713446483016014, 0.056266751140356064, 0.0419984869658947, -0.015925833955407143, -0.07317002862691879, 0.05468626692891121, 0.06124035269021988, 0.02479109726846218, -0.004369277041405439, 0.04031134769320488, -0.032741446048021317, -0.04856036603450775, -0.022773155942559242, -0.045573607087135315, -0.03553617373108864, -0.11983879655599594, 0.027005178853869438, 0.05821237713098526, 0.03469293937087059, 0.012040705420076847, 0.033554334193468094, -0.007871107198297977, 0.01884549856185913, 0.04259595647454262, 0.02499343268573284, -0.0357692688703537, -0.037877198308706284, 0.020001843571662903, -0.009182481095194817, 0.061283718794584274, -0.003541279351338744, -0.015253844670951366, -0.018369533121585846, 0.04731347784399986, -0.046082548797130585, -0.03629923611879349, 0.0387989804148674, -0.036936189979314804, 0.036486051976680756, 0.04204612597823143, -0.011426853016018867, 0.045233312994241714, -0.005372580606490374, -0.013175380416214466, 0.038386303931474686, 0.01364483404904604, 0.025554565712809563, -0.020979972556233406, -0.03364185988903046, 0.03856421634554863, -0.054829467087984085, 0.011129890568554401, -0.05446339026093483, -0.05569891631603241, 0.07203543186187744, 0.08456869423389435, 0.0767417922616005, 0.05682050809264183, 0.047056522220373154, -0.011228923685848713, -0.007906260900199413, 0.006420388352125883, 0.05976609140634537, -0.0737312063574791, -0.00750186201184988, -0.019411642104387283, 0.01982552744448185, -0.03155697137117386, 0.0066098906099796295, -0.05384189635515213, -0.011527346447110176, -0.0017081971745938063, -0.054274823516607285, 0.061924051493406296, -0.02246309071779251, -0.08862435072660446, 0.016030265018343925, 0.01969929412007332, -0.03102126531302929, 0.030071869492530823, -0.02793276496231556, -0.0006476893904618919, 0.015726478770375252, 0.01867687702178955, 0.046776872128248215, 0.010095383040606976, -0.002100493060424924, -0.002139696851372719, 0.03623703867197037, -0.0032228247728198767, -0.03235681727528572, 0.026540903374552727, 0.02729042060673237, -0.041339531540870667, -0.0013301519211381674, 0.0023060603998601437, 0.01063543651252985, -0.010373098775744438, 0.04213783144950867, -0.03307599946856499, -0.0019293505465611815, 0.03318290039896965, -0.0025532101280987263, 0.01564565673470497, -0.006351058837026358, 0.019628142938017845, 0.024080459028482437, -0.0005845979321748018, -0.05691298842430115, -0.03846198320388794, 0.023154236376285553, -0.007521030958741903, 0.06525693833827972, 0.01115939486771822, -6.094047404700828e-33, -0.02163616754114628, 0.013603448867797852, 0.016023725271224976, -0.012074185535311699, -0.015401292592287064, -0.011819287203252316, 0.010744734667241573, -0.03177236393094063, -0.023655425757169724, -0.023616114631295204, -0.0006399396224878728, 0.038499101996421814, 0.0077449907548725605, 0.024014674127101898, -0.043965861201286316, 0.04293694719672203, 0.0002562257868703455, -0.005224020220339298, 0.02041921205818653, -0.020720113068819046, -0.06176389008760452, 0.015290262177586555, -0.017836308106780052, 0.027133947238326073, -0.002406182698905468, -0.02084040641784668, -0.030735552310943604, 0.032721683382987976, 0.037505414336919785, 0.012509392574429512, 0.024231545627117157, -0.06299698352813721, 0.009300913661718369, -0.004171175882220268, 0.019844528287649155, 0.04124435782432556, -0.029042622074484825, 0.02087128534913063, -0.004748991224914789, -0.001490884111262858, -0.002340917941182852, -0.02223167195916176, -0.04496825858950615, -0.05310230702161789, 0.010666954331099987, -0.013837830163538456, 0.005538200959563255, -0.03053559735417366, -0.015117126516997814, -0.005661454517394304, -0.02429618500173092, 0.0021923156455159187, -0.04870012402534485, 0.06956186890602112, -0.005832861643284559, 0.029181646183133125, -0.006990432273596525, -0.03196742385625839, -0.07617522031068802, 0.012613601982593536, -0.042097076773643494, 0.012961839325726032, -0.019727101549506187, -0.03629106655716896, 0.019118230789899826, -0.03216886892914772, -0.016897544264793396, 0.04245039075613022, 0.020429832860827446, -0.017787639051675797, -0.04679024592041969, -0.031317874789237976, -0.05334581062197685, 0.005272374954074621, 0.030321599915623665, 0.008757077157497406, -0.03341641649603844, 0.005659259390085936, 0.09215835481882095, 0.029063820838928223, 0.01978335902094841, 0.006145401392132044, 0.0028067955281585455, 0.024936344474554062, 0.0009788398165255785, 0.022819170728325844, -0.011843723244965076, -0.06076623126864433, 0.045402660965919495, 0.012161001563072205, -0.03049979731440544, -0.01675780862569809, -0.07178139686584473, 0.0209030881524086, 0.09299919754266739, 0.00631856732070446, 0.04717227444052696, -0.06069240719079971, -0.03749809041619301, -0.004299989435821772, -0.051836248487234116, 0.01008713711053133, 0.007204778026789427, 0.04518343135714531, 0.020179029554128647, 0.03912706673145294, -0.02224382571876049, 0.02231694757938385, -0.048451054841279984, 0.019276468083262444, 0.04807038977742195, 0.018648570403456688, 0.015045860782265663, -0.0025390111841261387, 0.022167418152093887, -0.03867708146572113, 0.025002634152770042, 0.010488227009773254, 0.014865361154079437, -0.0414111353456974, 0.005099086090922356, -0.03309058025479317, 0.011612080968916416, 0.004886183887720108, -0.03234322741627693, 0.019233359023928642, -0.035288821905851364, 0.05203166604042053, 0.046935006976127625, -0.013468785211443901, 0.01787790097296238, -0.04461529850959778, 3.17001990879362e-07, 0.007224441505968571, -0.001440406427718699, -0.04163874313235283, 0.053727567195892334, -0.0182819701731205, -0.06886344403028488, -0.003322688629850745, -0.003912756219506264, 0.03962767869234085, 0.025505483150482178, 0.05448206141591072, -0.017906541004776955, -0.022646518424153328, -0.019033240154385567, -0.013205377385020256, -0.050621796399354935, -0.035554319620132446, 0.0074013881385326385, -0.020397700369358063, 0.0329495333135128, 0.031574372202157974, 0.07349810749292374, 0.0542416125535965, 0.0005244784406386316, -0.003131917444989085, -0.01637914590537548, -0.034225013107061386, -0.034465376287698746, -0.0158530380576849, 0.04016946256160736, 0.044216204434633255, -0.06823648512363434, -0.0004312015662435442, 0.0031548496335744858, -0.013655239716172218, -0.0010281756985932589, 0.01157084759324789, 0.018252182751893997, -0.011697482317686081, 0.04237392172217369, 0.016677197068929672, -0.03183267265558243, 0.023268988355994225, 0.0256235059350729, 0.06011064350605011, -0.022550733759999275, -0.017353227362036705, -0.001229970483109355, -0.04710198566317558, -0.005452473182231188, 0.01674395427107811, 0.05495632067322731, -0.00180066900793463, -0.019211111590266228, 0.05252613499760628, -0.023978162556886673, -0.03302554413676262, 0.020458843559026718, 0.054004620760679245, 0.010293780826032162, -0.01682909019291401, -0.07403204590082169, 0.029986130073666573, 0.017289649695158005, 0.028849072754383087, -0.007012211252003908, -0.03604189679026604, 3.1822523887980177e-34, 0.051663726568222046, -0.022897882387042046, -0.027130817994475365, 0.06594466418027878, -0.00671615032479167, -0.08655683696269989, 0.06454940885305405, -0.026315629482269287, 0.02478809282183647, -0.049027442932128906, -0.010503136552870274], "16330a08-ad08-496f-a14e-a56c8d8495eb": [-0.0038745689671486616, -0.043250732123851776, -0.003379312576726079, -0.043235525488853455, 0.034497521817684174, -0.006141954101622105, -0.06161856651306152, 0.03541247174143791, 0.03912799805402756, -0.00585730466991663, 0.03602321445941925, -0.029244747012853622, -0.00020310650870669633, 0.021558618173003197, -0.004661998711526394, 0.05238618329167366, -0.009329329244792461, 0.023325171321630478, -0.05652598664164543, -0.022268936038017273, 0.009773642756044865, 0.0011563461739569902, -0.08647309243679047, -0.0022548045963048935, 0.007298539392650127, -0.0009229237330146134, -0.0006578248576261103, -0.02073122002184391, 0.09067197889089584, 0.023832855746150017, -0.0221509151160717, -0.041609518229961395, -0.021728545427322388, -0.015551712363958359, 2.1472524167620577e-06, 0.020941102877259254, 0.024284575134515762, -0.011033939197659492, -0.0048598069697618484, -0.058770958334207535, 0.021679233759641647, 0.014455300755798817, -0.01684349775314331, 0.05317003279924393, -0.047127615660429, 0.03763804957270622, 0.10508691519498825, -0.10642638802528381, 0.04023158177733421, 0.04646091163158417, 0.002029943512752652, -0.007034759968519211, 0.04261281341314316, -0.009053456597030163, 0.0423799604177475, -0.0711367279291153, -0.0005856918869540095, -0.047715023159980774, 0.023463627323508263, 0.02039220556616783, 0.022432295605540276, 0.00412529893219471, -0.03882180526852608, -0.026102814823389053, 0.014463303610682487, 0.021598173305392265, -0.001186538953334093, -0.03765501081943512, -0.0276896134018898, -0.02357507310807705, 0.09763437509536743, 0.04588667303323746, -0.03561784699559212, 0.0567532442510128, 0.02073526754975319, 0.015309932641685009, 0.03234431892633438, 0.01703101210296154, -0.0073338099755346775, -0.014355842024087906, -0.00601312005892396, -0.023442676290869713, -0.03719591349363327, -0.0316450297832489, -0.04267607256770134, 0.055043887346982956, -0.010142609477043152, 0.028406459838151932, 0.038088809698820114, -0.01802520453929901, 0.09222839027643204, 0.06789179146289825, 0.009191135875880718, -0.005650675389915705, -0.036154936999082565, -0.010769612155854702, 0.02285095490515232, 0.004943173844367266, -0.007991797290742397, -0.05528087168931961, 0.020355982705950737, -0.008723976090550423, -0.023796474561095238, 0.023363083600997925, 0.02797536551952362, 0.05217438191175461, -0.014833604916930199, -0.03294535353779793, -0.044781945645809174, -0.029730552807450294, -0.03486661612987518, -0.027328845113515854, -0.01657501608133316, 0.01454255636781454, 0.060614537447690964, 0.03616704046726227, -0.030911879613995552, 0.023406831547617912, 0.005042442586272955, 0.04529640078544617, 0.02059294283390045, -0.031070491299033165, -0.0655488595366478, 0.0018635413143783808, -0.05072823166847229, -0.023136064410209656, 0.040957335382699966, -0.006608025170862675, -0.020526988431811333, -0.0802314355969429, -0.01698916032910347, -0.007673748303204775, -0.011654830537736416, -0.02909466065466404, 0.0030505419708788395, 0.01227105874568224, 0.04172232747077942, 0.05703533813357353, 0.039852581918239594, 0.06033770740032196, 0.023816315457224846, 0.002000160049647093, 0.03422347083687782, 0.07262222468852997, -0.008643423207104206, -0.0026982242707163095, 0.02289898507297039, -0.012556122615933418, 0.043496355414390564, 0.03296010196208954, 0.02128119394183159, 0.04486209526658058, 0.005120520945638418, -0.03415781259536743, -0.06673447042703629, -0.010713913477957249, 0.010598751716315746, -0.00404213136062026, -0.02601706236600876, 0.06848070025444031, -0.03155976161360741, -0.02673422358930111, 0.04411153867840767, -0.005323055665940046, -0.038303833454847336, -0.002281755907461047, 0.04864982143044472, 0.057692114263772964, -0.006300778593868017, 0.02144094742834568, 0.02008819952607155, -0.02060135081410408, -0.014555375091731548, -0.0028699736576527357, -0.04584070295095444, -0.009706932120025158, 0.05903859809041023, -0.03972480818629265, 0.056516606360673904, 0.022557154297828674, -0.023448621854186058, -0.06442990899085999, -0.032523270696401596, 0.02403900772333145, -0.04759783670306206, 0.009270628914237022, -0.0012578967725858092, 0.02039542980492115, -0.049906328320503235, 0.010896150022745132, 0.018329739570617676, 0.007043701596558094, 0.0044631329365074635, -0.047375597059726715, 0.03165847435593605, 0.019029274582862854, -0.01743289828300476, -0.032272156327962875, -0.031101416796445847, -0.015796678140759468, -0.03229375183582306, -0.06903860718011856, -0.05419262871146202, 0.04214387387037277, 0.05263455584645271, -0.021470731124281883, -0.023218007758259773, -0.01900910772383213, -0.03003654256463051, 0.04798552021384239, 0.09012151509523392, -0.004532940685749054, 0.0033774340990930796, -0.005396703258156776, -0.03567586839199066, -0.0024906103499233723, -0.06402169167995453, -0.007525947876274586, 0.017205016687512398, -0.011070400476455688, 0.013473724946379662, -0.0357506088912487, -0.003534778719767928, 0.021362069994211197, 0.02684633433818817, 0.017976103350520134, 0.00529017997905612, 0.003398303873836994, 0.04307994246482849, 0.02073126658797264, -0.04123154282569885, 0.003177813719958067, -0.008183402940630913, 0.007500271312892437, 0.06449716538190842, 2.0843654056079686e-05, -0.026073770597577095, -0.028030598536133766, 0.0412135124206543, -0.04672303423285484, 0.029731690883636475, 0.029573319479823112, -0.0008257736335508525, 0.03493937849998474, 0.03110901638865471, -0.020174194127321243, -0.005114544648677111, 0.010985471308231354, 0.01043589599430561, -0.001539418357424438, 0.05000997707247734, 0.02538471668958664, 0.010863462463021278, 0.036264993250370026, -0.01729680225253105, 0.042975399643182755, -0.13299395143985748, -0.012266642414033413, -0.08308691531419754, 0.03840559720993042, -0.02057770825922489, 0.00848378986120224, 0.030878130346536636, 0.012475724332034588, 0.01398999523371458, 0.014358390122652054, 0.01994265429675579, -0.0178932286798954, 0.001971326768398285, 0.02137569710612297, 0.03220393881201744, -0.004588056821376085, -0.01969466358423233, -0.007093408610671759, 0.028101149946451187, -0.05764668434858322, 0.030908312648534775, 0.009921816177666187, -0.004197949543595314, 0.01604439690709114, -0.04033685103058815, -0.018131637945771217, 0.024465059861540794, 0.012756655924022198, 0.016039974987506866, -0.025128740817308426, -0.02530694007873535, -0.053097061812877655, -0.026596833020448685, 0.032331980764865875, 0.030744116753339767, -0.01038951613008976, -0.014682752080261707, -0.022915786132216454, -0.022851934656500816, 0.006697917357087135, 0.02563454583287239, 0.04411371052265167, -0.011445499025285244, 0.05381975695490837, 0.00020539159595500678, 0.04836752638220787, -0.012789249420166016, -0.006842233706265688, 0.02069847472012043, 0.03571607172489166, -0.011100003495812416, -0.018568357452750206, -0.021986408159136772, -0.08451943844556808, -0.0765150785446167, 0.02175813727080822, -0.01607459969818592, 0.0400400273501873, 0.03891262039542198, -0.01588849350810051, -0.06910966336727142, 0.02068198472261429, 0.006391013972461224, 0.052982229739427567, -0.03927339240908623, -0.0701339915394783, -0.03476705774664879, -0.02805762179195881, 0.0033339750953018665, -0.06375613063573837, -0.03426829352974892, -0.0029381497297436, 0.09243156760931015, 0.02206132747232914, 0.058615654706954956, -0.01862640678882599, -0.00018637081666383892, -0.010224426165223122, -0.04652015119791031, -0.03304526209831238, -0.013533735647797585, -0.12323600798845291, 0.007984116673469543, -0.011411864310503006, -0.03315930441021919, 0.03085251711308956, -0.023119760677218437, 0.046508386731147766, 0.058836475014686584, -0.024797828868031502, -0.07002300769090652, 0.0015249053249135613, -0.06884943693876266, 0.01282292790710926, 0.07828038930892944, 0.058438073843717575, 0.017287196591496468, -0.027202153578400612, 0.01293832715600729, -0.041447971016168594, -0.007446545176208019, 0.054749224334955215, -0.001639753463678062, -0.0022820027079433203, 0.004764197394251823, -0.028236571699380875, -0.07940755784511566, -0.007124034687876701, -0.017710179090499878, -0.01483958400785923, 0.016860036179423332, -0.042236436158418655, 0.029248496517539024, 0.04782614856958389, 0.012579088099300861, 0.005133470520377159, -0.07131706178188324, -0.03980106860399246, -0.017791206017136574, 0.011736251413822174, -0.04566230997443199, 0.009664240293204784, 0.006322185043245554, 0.02292671613395214, 0.00114442128688097, -0.005923325661569834, 0.07974910736083984, 0.02359718270599842, 0.01423506997525692, 0.0034831534139811993, 0.03845015913248062, 0.0039012336637824774, -0.017384210601449013, 0.07056577503681183, 0.018760578706860542, -0.041399627923965454, -0.07893317937850952, 0.0120170833542943, 0.009483296424150467, 0.02993331104516983, 0.026864124462008476, 0.0136145930737257, 0.0214903112500906, 0.007818419486284256, -0.0013245472218841314, -0.03738861903548241, -0.023889508098363876, -0.014093841426074505, -0.01784234121441841, 0.06507822871208191, 0.056836195290088654, 0.011540091596543789, -0.017803750932216644, -0.03519290313124657, 0.035040564835071564, 0.025866270065307617, -0.01718706265091896, 0.04802903160452843, 0.0034976559691131115, 0.0485430546104908, -0.03629307448863983, 0.018992604687809944, -0.002508311765268445, -0.06750688701868057, 0.03435469791293144, 0.024218369275331497, 0.04465198889374733, -0.04628515988588333, 0.0149385379627347, -0.02147446759045124, 0.046705007553100586, -0.015712659806013107, 0.05484101548790932, -0.06059061735868454, -0.057435743510723114, 0.019739598035812378, 0.03244932368397713, 0.047093428671360016, -0.0696554183959961, -0.08344273269176483, 0.0338607057929039, -0.013421931304037571, 0.05079815164208412, 0.0027791422326117754, -0.02013469859957695, 0.020852239802479744, 0.048246078193187714, 0.05307659134268761, 0.0024907425977289677, -0.016895201057195663, -0.007303500082343817, -0.006952234543859959, 0.01450761966407299, -0.03963024541735649, 0.07112505286931992, -0.004558083601295948, -0.025437351316213608, -0.01781352236866951, -0.041805561631917953, -0.04146028682589531, -0.0880962461233139, 0.07372625917196274, 0.024274028837680817, 0.03738878294825554, 0.03183520585298538, 0.03147921338677406, 0.0037407223135232925, -0.003985381685197353, 0.019435305148363113, 0.0337553508579731, -0.015139780007302761, 0.0014837186317890882, 0.01582367904484272, 0.017830433323979378, 0.056753020733594894, -0.016615519300103188, -0.010047880001366138, 0.021904096007347107, -0.017673827707767487, -0.04888412728905678, 0.014728104695677757, 0.10461367666721344, -0.04977865144610405, 0.038391370326280594, 0.014517729170620441, -0.00870960857719183, 0.03882446512579918, 0.022149724885821342, -0.016324825584888458, -0.020396478474140167, 0.03215915709733963, 0.05269324406981468, -0.01926495134830475, -0.03538190573453903, 0.07446105778217316, -0.02321164309978485, 0.007215572986751795, -0.11922166496515274, -0.040973763912916183, -0.02993684448301792, 0.05663216859102249, 0.08798429369926453, -0.023828262463212013, 0.12611469626426697, -0.003939630463719368, -0.02547381818294525, 0.037581853568553925, 0.04402749612927437, -0.02024484984576702, -0.0032405899837613106, -0.015461627393960953, 0.0018169531831517816, -0.01725727692246437, 0.0013639336684718728, -0.001531654386781156, 0.014696336351335049, -0.004811865743249655, -0.05396328866481781, 0.033797670155763626, -0.017291005700826645, -0.024272922426462173, 0.06296885013580322, 0.00827205739915371, 0.005119921639561653, 0.0121921943500638, -0.018276222050189972, -0.029105614870786667, 0.05873548984527588, 0.026131119579076767, 0.022942407056689262, -0.02901720255613327, 0.022651879116892815, 0.000722376280464232, 0.0147826774045825, -0.032109733670949936, -0.01186792179942131, -0.00040146318497136235, -0.00875767134130001, -0.0013067839900031686, -0.07482492923736572, -0.07591809332370758, -0.013982553966343403, 0.02992492914199829, 0.028031975030899048, 0.034670453518629074, -0.053699735552072525, 0.017431631684303284, 0.004872483666986227, -0.013624049723148346, -0.015335816890001297, -0.003667983924970031, 0.05513545498251915, 0.002077503362670541, -0.010214770212769508, -0.03742293640971184, -0.014567894861102104, 0.02223799377679825, 0.05316220968961716, -0.005754692479968071, -5.768606650887893e-33, -0.013624864630401134, 0.04870600998401642, 0.012178107164800167, -0.01026341412216425, -0.04670599102973938, -0.025475138798356056, -0.004700612276792526, -0.00930700358003378, -0.03980784863233566, -0.03612567484378815, 0.003971453290432692, 0.017719943076372147, 0.01348800491541624, 0.01686074025928974, -0.04284903034567833, 0.05080385506153107, 0.00019436792354099452, 0.03995034471154213, 0.02259325236082077, -0.029342040419578552, -0.05900874733924866, -0.04313284903764725, 0.023069441318511963, 0.012601597234606743, 0.020101841539144516, 0.008838514797389507, -0.011068206280469894, 0.02417885512113571, 0.012735072523355484, 0.01730266399681568, 0.019997915253043175, -0.016557974740862846, -0.01104638073593378, -0.03492443263530731, 0.013731193728744984, 0.020772341638803482, -0.05545707419514656, 0.02096429653465748, 0.0065832179971039295, -0.004771864507347345, 0.01892174407839775, -0.05448639392852783, -0.009409211575984955, -0.037262286990880966, -0.04992378503084183, 0.018340731039643288, 0.012458018958568573, -0.019894229248166084, 0.04429568350315094, -0.02191728726029396, -0.023630933836102486, 0.00461570406332612, -0.07159996777772903, 0.04777507483959198, -0.06091393902897835, -0.0052726538851857185, 0.008143055252730846, -0.030303001403808594, -0.1163131594657898, 0.0037078585010021925, -0.06463497877120972, 0.041087228804826736, 0.009940368123352528, -0.010748689994215965, 0.009809639304876328, -0.029859907925128937, 0.030748002231121063, 0.015831943601369858, 0.03368609398603439, -0.023790784180164337, -0.059795644134283066, -0.03392012044787407, -0.0072911879979074, -0.042242322117090225, -0.014172597788274288, -0.042975932359695435, -0.06685664504766464, 0.035559944808483124, 0.0674511045217514, 0.05737244337797165, -0.009724108502268791, 0.0365847684442997, -0.008608145639300346, 0.020298991352319717, -0.04697209596633911, 0.005138244945555925, -0.020748671144247055, -0.04368343576788902, 0.0408763512969017, -0.020345058292150497, -0.0015727586578577757, -0.022050369530916214, -0.028675511479377747, 0.0002119943092111498, 0.07516249269247055, -0.059082239866256714, -0.011282417923212051, -0.016453668475151062, 0.007178043015301228, 0.04507763311266899, -0.004034585785120726, -0.04044106975197792, 0.022555172443389893, 0.06118394434452057, 0.017451636493206024, 0.03260432556271553, -0.022779032588005066, 0.042859792709350586, -0.06297823041677475, 0.027737893164157867, -0.013816384598612785, 0.016625933349132538, -0.04366613179445267, 0.012205984443426132, 0.02056090347468853, -0.02079879306256771, 0.012967717833817005, -0.04893223196268082, 0.04041433706879616, -0.0030360163655132055, -0.013112821616232395, -0.013072189874947071, 0.02819928340613842, -0.01780945621430874, -0.014239752665162086, 0.023147201165556908, -0.04587216675281525, 0.06772609800100327, 0.015870772302150726, -0.02968767285346985, 0.007575340569019318, -0.023596392944455147, 2.83460792616097e-07, 0.004175624810159206, -0.014477728866040707, -0.035052523016929626, 0.005561575293540955, -0.04593585059046745, -0.08453729003667831, -0.022409748286008835, -0.02178162895143032, 0.012969573959708214, 0.051080476492643356, 0.0183400958776474, 0.00778905488550663, -0.023626184090971947, -0.049162618815898895, -0.008293859660625458, -0.06661542505025864, -0.05989961698651314, 0.014840113930404186, -0.02352217212319374, 0.05460125952959061, 0.02217359095811844, 0.05730398744344711, 0.03305603191256523, 0.005924066063016653, -0.0026566560845822096, -0.007359902840107679, -0.03644554689526558, -0.053284622728824615, -0.006555860862135887, 0.03534527122974396, 0.029321810230612755, 0.043845511972904205, 0.017362909391522408, -0.061891939491033554, 0.011435830034315586, 0.014778373762965202, 0.020763767883181572, -0.02288605272769928, 0.005851398222148418, 0.02597719058394432, 0.018686234951019287, -0.011029590852558613, 0.04562763869762421, 0.029198769479990005, 0.052685920149087906, 0.00951160304248333, -0.025047188624739647, -0.030069155618548393, -0.025598056614398956, 0.023324349895119667, 0.01768340729176998, 0.05313894525170326, -0.0008343331865034997, -0.042526617646217346, 0.034973397850990295, -0.008614865131676197, -0.06307210773229599, -0.0032744398340582848, 0.049704600125551224, -0.0031872789841145277, 0.027503594756126404, -0.055945251137018204, 0.005279389210045338, -0.003527922322973609, 0.011410576291382313, -0.031713373959064484, 0.019354773685336113, 2.8561826536718965e-34, 0.058280035853385925, -0.042801957577466965, -0.017079157754778862, -0.0008660490857437253, 0.021211249753832817, -0.04294357821345329, 0.016865141689777374, 0.0017507175216451287, 0.006675865966826677, -0.014303348958492279, 0.01903863437473774], "d2150194-dd47-4b24-90d6-24a9ec1930e2": [0.03151730075478554, 0.0005715698353014886, -0.04812977835536003, 0.003104997565969825, -0.008177247829735279, 0.0016071813879534602, -0.033131860196590424, -0.003912662155926228, -0.014919139444828033, -0.029003048315644264, 0.03586225584149361, -0.030746880918741226, 0.02128431387245655, 0.07259640842676163, 0.0005241484614089131, -0.010036134161055088, 0.019680624827742577, -0.03149712085723877, -0.026275547221302986, -0.015421459451317787, -0.005145946983247995, 0.02640419453382492, -0.04659213125705719, 0.013078533113002777, -0.0040054419077932835, -0.02752690576016903, 0.01710226945579052, 0.017345113679766655, 0.0668836385011673, 0.04166533797979355, 0.02138097584247589, -0.023312829434871674, -0.013258232735097408, -0.013107435777783394, 2.6118136702280026e-06, 0.005557816941291094, -0.0075407070107758045, 0.03595399856567383, 0.003128582611680031, -0.005331108346581459, 0.020451564341783524, 0.05511140823364258, -0.03721591830253601, 0.059295766055583954, -0.025756392627954483, 0.025018492713570595, 0.09595808386802673, -0.07931877672672272, -0.0012350395554676652, 0.03146957606077194, 0.010029958561062813, 0.021763429045677185, -0.00033659377368167043, -0.005243271589279175, 0.0792437270283699, -0.04086330533027649, -0.010965287685394287, -0.008673073723912239, 0.062498267740011215, 0.015195144340395927, -0.007511500269174576, -0.014033432118594646, -0.03770057111978531, -0.021887270733714104, 0.0432923398911953, 0.06431284546852112, 0.005826329346746206, -0.03228573128581047, -0.016897359862923622, 0.00585959991440177, 0.08844481408596039, 0.005154045764356852, 0.0184458140283823, 0.07253624498844147, -0.04072843864560127, 0.03266645222902298, 0.024205785244703293, 0.044111475348472595, -0.055363502353429794, 0.0011158566921949387, -0.053770288825035095, 0.0024467813782393932, -0.02227240987122059, -0.017905833199620247, -0.019175447523593903, 0.04465296119451523, 0.018976565450429916, 0.0005584670579992235, 0.03343751281499863, -0.004517118446528912, 0.05372054874897003, 0.04453415796160698, -0.01882057636976242, -0.015039530582726002, -0.06362538784742355, -0.02477225847542286, 0.02334252931177616, -0.028688810765743256, 0.038285646587610245, 0.028988629579544067, 0.009170548990368843, 0.020466843619942665, -0.0005535894306376576, 0.025708943605422974, -0.004336557816714048, 0.05650448054075241, -0.025235507637262344, -0.04237170144915581, -0.018050096929073334, -0.030199693515896797, -0.05942868813872337, -0.02083793468773365, -0.02149634249508381, 0.010295732878148556, 0.013416892848908901, 0.016532115638256073, -0.08896119147539139, 0.05617499724030495, -0.020989863201975822, 0.02294175885617733, 0.03876994177699089, -0.0044191149063408375, -0.05577530339360237, 0.04971630126237869, -0.0798015221953392, -0.07937325537204742, 0.0044012246653437614, -0.02176743373274803, -0.028929192572832108, -0.086916983127594, -0.006165912840515375, -0.005504481960088015, -0.021145081147551537, -0.04605032503604889, 0.015776371583342552, 0.011980225332081318, 0.023661980405449867, 0.04050130397081375, 0.036226555705070496, 0.0166145171970129, 0.009038306772708893, -0.03329841420054436, 0.008063665591180325, -0.0006334945210255682, -0.011918529868125916, -0.028652096167206764, 0.030767032876610756, -0.010124185122549534, 0.003917742520570755, 0.03336569666862488, 0.02833476848900318, 0.05632190406322479, -0.03521617129445076, -0.002362982602789998, -0.022204279899597168, 0.00043794119847007096, -0.03219890967011452, 0.016573332250118256, -0.012215924449265003, 0.036325011402368546, -0.009157529100775719, -0.009758956730365753, 0.048822738230228424, -0.017166798934340477, -0.04400991275906563, -0.03360268473625183, 0.029754633083939552, 0.05801156535744667, 0.028051551431417465, 0.021803971379995346, 0.031483590602874756, 0.044760964810848236, -0.0021620311308652163, 0.008427906781435013, 0.0009146861266344786, 0.0071000754833221436, 0.03568460792303085, 0.04573936387896538, 0.025576580315828323, 0.045330554246902466, -0.014373570680618286, -0.11192721128463745, 0.002337037120014429, 0.05461530387401581, 0.009308121167123318, 0.007712749298661947, -0.03504978120326996, 0.06894857436418533, -0.02832215279340744, 0.016826221719384193, 0.02173733338713646, -0.0033801207318902016, -0.03009985387325287, -0.005688751116394997, 0.05261797085404396, 0.00419157138094306, -0.04949520528316498, -0.08489847183227539, -0.0034013278782367706, -0.037177737802267075, -0.030733568593859673, -0.09926111251115799, -0.03145424649119377, 0.034919820725917816, 0.05413752794265747, -0.09240782260894775, -0.0133295813575387, -0.0373014360666275, -0.020086467266082764, 0.045264143496751785, 0.11283756792545319, -0.0019710075575858355, -0.019869472831487656, -0.006129944231361151, -0.03823969140648842, 0.014032446779310703, -0.03502417355775833, -0.009823190979659557, 0.02706132084131241, 0.025555072352290154, -0.02060389518737793, -0.047306738793849945, -0.037398360669612885, 0.00703434320166707, 0.020952343940734863, 0.014187384396791458, 0.04421745240688324, 0.0013863638741895556, 0.021248525008559227, 0.046278249472379684, -0.03366978466510773, 0.017786845564842224, 0.02233477681875229, 0.00010560896043898538, 0.02091229148209095, -0.037460844963788986, 0.02599691040813923, 0.03907487913966179, 0.01030174270272255, -0.09939581900835037, -0.036318033933639526, 0.07756219059228897, -0.01201279740780592, 0.03135524317622185, 0.009165029041469097, -0.01880061626434326, 0.04211407154798508, 0.014467756263911724, -0.008743050508201122, 0.002019736682996154, 0.031703922897577286, 0.007295503281056881, 0.04084423929452896, 0.08911348879337311, 0.00929455179721117, 0.043700844049453735, -0.1537661999464035, -0.0165839996188879, -0.0687851533293724, 0.0014904211275279522, -0.038372546434402466, -0.020415933802723885, 0.006756090093404055, 0.016892507672309875, -0.023671764880418777, -0.0026122855488210917, 0.011460745707154274, -0.01841305010020733, 0.011537906713783741, 0.03400295227766037, 0.024381421506404877, -0.004311483819037676, 0.01156280841678381, 0.006950029172003269, -0.020014692097902298, 0.0057715787552297115, -0.028999971225857735, -0.012819045223295689, -0.0418306402862072, 0.024288246408104897, 0.006698640063405037, -0.04470106586813927, 0.0023292500991374254, 0.009601720608770847, -0.0015159782487899065, 0.0020353770814836025, 0.051496829837560654, -0.015843596309423447, -0.02929968573153019, 0.020172687247395515, 0.011006283573806286, -0.012992097064852715, 0.005665524397045374, -0.04652675241231918, -0.03513330966234207, 0.02216256409883499, 0.04413532838225365, 0.014039192348718643, -0.025963664054870605, 0.04777001217007637, 0.008585171774029732, 0.04302813857793808, 0.0024236722383648157, 0.01757988892495632, 0.0036443257704377174, 0.004956310149282217, 0.02650386095046997, -0.007861184887588024, -0.007073706015944481, -0.0744241327047348, -0.021199505776166916, -0.0007116812048479915, 0.00432319100946188, 0.03388574346899986, 0.03219207376241684, -0.0031188831198960543, -0.08772502839565277, -0.006931977346539497, 0.0010256743989884853, 0.050499893724918365, -0.03532443568110466, -0.03936963155865669, 0.010561982169747353, -0.009741083718836308, -0.009811872616410255, -0.089323990046978, -0.04989943653345108, -0.010826380923390388, 0.05134930461645126, -0.021852975711226463, 0.04203690588474274, -0.038520507514476776, 0.011923680081963539, 0.016254831105470657, -0.03300470486283302, -0.01910407654941082, -0.028931908309459686, -0.04349284991621971, 0.01193203218281269, 0.00022419144806917757, -0.03983263298869133, -0.001575453788973391, -0.07140045613050461, 0.008211263455450535, 0.026272796094417572, -0.025376372039318085, -0.016516322270035744, -0.02349066734313965, -0.057197026908397675, 0.029349952936172485, 0.058305252343416214, 0.05722986161708832, 0.004080141894519329, -0.045825839042663574, 0.0034869948867708445, -0.04446202144026756, 0.007110640872269869, 0.006985659711062908, 0.008988840505480766, 0.0070543126203119755, 0.009924628771841526, 0.02041690982878208, -0.03068447858095169, 0.009006956592202187, -0.05108082294464111, -0.02038675919175148, 0.027039842680096626, -0.07002777606248856, 0.01659543067216873, 0.05078933387994766, -0.025687415152788162, -0.00535822007805109, -0.041360605508089066, -0.00027520200819708407, 0.009515989571809769, -0.05145847797393799, -0.004063847474753857, 0.029356110841035843, 0.0638309121131897, 0.028784213587641716, 0.04813014343380928, -0.05787430331110954, 0.07159388810396194, -0.006487727630883455, 0.03440267965197563, -0.05010785162448883, -0.0019137319177389145, -0.006883712951093912, -0.013460928574204445, 0.059591080993413925, -0.008440768346190453, -0.07463153451681137, -0.07673247903585434, -0.030607156455516815, 0.015534287318587303, 0.022212661802768707, -0.008497310802340508, 0.01371996570378542, -0.013207298703491688, 0.021571189165115356, -0.003205382963642478, -0.053648483008146286, -0.02015780285000801, 0.011979987844824791, -0.024156056344509125, 0.04565618932247162, 0.05780530720949173, 0.04723307862877846, -0.03255688026547432, -0.032262422144412994, 0.04440578818321228, 0.03137289360165596, 0.0165236983448267, 0.0003670849837362766, 0.043176885694265366, 0.0017280539032071829, -0.0477774515748024, -0.040461696684360504, 0.012469061650335789, -0.09235560894012451, 0.03736106678843498, 0.04360915720462799, 0.10500338673591614, -0.031270842999219894, 0.030136413872241974, -0.06413673609495163, 0.016587302088737488, 0.03328647464513779, 0.06205408647656441, -0.04651086404919624, -0.03426480293273926, -0.0025608183350414038, -0.00849353801459074, 0.06788060069084167, -0.05186403542757034, -0.05597534403204918, -0.013640747405588627, 0.017179014161229134, 0.009446660056710243, 0.003484870307147503, 0.027338381856679916, 0.021131232380867004, 0.019684668630361557, 0.018291108310222626, -0.018923291936516762, 0.01800636574625969, 0.028655018657445908, -0.03594987466931343, -0.004067577887326479, -0.04972851276397705, 0.05721236392855644, -0.03962135687470436, -0.0432591587305069, -0.001168909016996622, -0.05781983584165573, -0.04905564337968826, -0.11666863411664963, 0.03939351812005043, 0.017537923529744148, 0.0364825539290905, 0.06557144224643707, 0.03730856999754906, -0.02421754226088524, -0.011310592293739319, -0.005177810788154602, 0.0031795285176485777, -0.035100165754556656, -0.04183356836438179, 0.011334279552102089, -0.03904637321829796, -0.02118261344730854, -0.04388520121574402, -0.047815531492233276, -0.011305205523967743, 0.029470019042491913, -0.01921471394598484, -0.03252397105097771, 0.06883253157138824, -0.026893697679042816, 0.011816196143627167, 0.01249194797128439, 0.008617172949016094, 0.022670410573482513, 0.011567986570298672, 0.005614494439214468, 0.03528961166739464, 0.0378742441534996, 0.04594583436846733, -0.009568621404469013, -0.03244830667972565, 0.05266789346933365, -0.038682855665683746, -0.0011539739789441228, -0.03959827125072479, -0.0046265143901109695, 0.01346437819302082, 0.005519767291843891, 0.06882605701684952, 0.016541006043553352, 0.07946525514125824, 0.027130505070090294, -0.02298746444284916, 0.015029682777822018, 0.04316317290067673, -0.02755756676197052, 0.021795261651277542, -0.026587070897221565, -0.004142173565924168, -0.019136250019073486, -0.01340099610388279, 0.02485276572406292, -0.003669207217171788, -0.055310312658548355, -0.07145947962999344, 0.05995951592922211, -0.01844681240618229, -0.00658728601410985, 0.08748147636651993, -0.02759396657347679, -0.04744262620806694, 0.0335950069129467, -0.010205809026956558, 0.018895471468567848, 0.01496938243508339, 0.04355376586318016, 0.020303333178162575, 0.008442355319857597, 0.005750726442784071, 0.011932602152228355, 0.046462420374155045, -0.010306120850145817, -0.01924198307096958, 0.0019237739033997059, -0.03489263728260994, -0.027483634650707245, -0.03942517936229706, -0.020117096602916718, 0.019785793498158455, 0.02828986756503582, 0.008297634311020374, -0.00346995797008276, -0.02947237901389599, 0.043165456503629684, 0.008290331810712814, -0.0117179611697793, -0.057728901505470276, 0.03328043594956398, 0.007412899751216173, 0.009552910923957825, -0.025160029530525208, -0.003619156312197447, -0.032410960644483566, -0.013219830580055714, 0.040023352950811386, 0.02559150569140911, -6.616915740812228e-33, -0.0020258345175534487, -0.010912139900028706, -0.0062876418232917786, 0.021973680704832077, -0.047674037516117096, 0.0026516434736549854, 0.0301164910197258, -0.03559369966387749, -0.033003415912389755, -0.014385652728378773, -0.015010780654847622, 0.034954335540533066, 0.023449108004570007, 0.007576375734061003, -0.025370702147483826, 0.019763370975852013, 0.04752683266997337, 0.0238103736191988, 0.02490590512752533, 0.030885618180036545, -0.0645856037735939, -0.023406531661748886, -0.02882322296500206, 0.001141857705079019, -0.014535509981215, -0.02754792384803295, -0.03113485500216484, 0.04773348942399025, 0.0009725458803586662, 0.03699379041790962, 0.009174520149827003, 0.026129886507987976, -0.02096005529165268, -0.03188896179199219, 0.010922289453446865, 0.08232241123914719, -0.10145486891269684, 0.0019376790151000023, -0.002264150884002447, -0.00801288802176714, 0.035062797367572784, -0.048939719796180725, -0.0007791391690261662, 0.012955463491380215, -0.03154323995113373, 0.010246324352920055, 0.05414048582315445, -0.0027589714154601097, 0.029004374518990517, -0.0372411347925663, -0.04152052477002144, 0.005961347837001085, -0.0638095960021019, 0.08894572407007217, 0.001489313319325447, 0.005798632744699717, -0.0009973091073334217, -0.0415482260286808, -0.09395836293697357, 0.012973059900105, -0.04608156159520149, 0.02738470956683159, 0.026092063635587692, 0.016100218519568443, -0.020724471658468246, -0.004975544288754463, -0.013751387596130371, 0.06995195150375366, 0.032255757600069046, -0.0009837914258241653, -0.04011775553226471, 0.045903727412223816, -0.040990691632032394, -0.03020390495657921, 0.012103578075766563, -0.03367466852068901, -0.060552939772605896, 0.043540455400943756, 0.09388556331396103, 0.029443280771374702, 0.03616044297814369, -0.03592720627784729, -0.03164371848106384, 0.0013875126605853438, -0.007483161054551601, 0.05231951177120209, -0.043383099138736725, -0.007903045043349266, 0.018465902656316757, -0.021265573799610138, -0.021418781951069832, 0.01682482846081257, -0.046600092202425, -0.004535926040261984, 0.07455508410930634, -0.02246343344449997, 0.023562002927064896, -0.012436232529580593, -0.009290092624723911, -0.018920693546533585, -0.0017455262131989002, -0.014984210953116417, -0.00132638996001333, 0.05846990644931793, 0.044486142694950104, 0.021068327128887177, -0.01788298226892948, 0.0135221341624856, -0.09619956463575363, 0.03383686766028404, -0.008759938180446625, 0.04314643517136574, -0.008638422004878521, 0.031104350462555885, 0.007165050599724054, 0.0021538566797971725, 0.023747920989990234, -0.024753373116254807, -0.03199227526783943, -0.022347290068864822, 0.008454692550003529, 0.030819596722722054, -0.00919040385633707, -0.0007035286980681121, -0.0303057711571455, -0.019527383148670197, -0.005399155430495739, 0.038837410509586334, 0.052000872790813446, -0.05242418497800827, -0.018807994201779366, -0.018155591562390327, 3.21863552699142e-07, 0.0031629910226911306, 0.019651468843221664, -0.01299565751105547, 0.02428342029452324, -0.014294448308646679, -0.06064070016145706, 0.012302594259381294, 0.009125269949436188, 0.00993394199758768, 0.013240978121757507, 0.013555791229009628, 0.029363447800278664, -0.007771322503685951, -0.04340273141860962, -0.02181186154484749, -0.12380017340183258, -0.05553629249334335, 0.01731240190565586, -0.04700755700469017, 0.06251761317253113, 0.05384737625718117, 0.0432245209813118, 0.05768631398677826, -0.022569436579942703, -0.013226253911852837, -0.004689421970397234, -0.015744086354970932, -0.044525206089019775, 0.04229462891817093, 0.06861983984708786, 0.02240307815372944, 0.0003232214949093759, -0.003959003370255232, 0.0266537144780159, 0.039402179419994354, -0.012836907058954239, -0.0158291757106781, 0.0408913753926754, 0.013856101781129837, 0.058475807309150696, 0.02280094288289547, 0.007774257101118565, 0.007541264872997999, 0.03695480898022652, 0.0511128194630146, 0.018563413992524147, -0.006456630304455757, -0.01628752425312996, -0.03449908643960953, -0.0433594286441803, -0.010122913867235184, 0.0037369895726442337, 0.03220710530877113, -0.03266223147511482, 0.0280615221709013, -0.04690662398934364, -0.06658754497766495, -0.01726316288113594, 0.0341600626707077, -0.017555132508277893, -0.04482109472155571, -0.07338930666446686, 0.008860430680215359, 0.013999367132782936, 0.04819211736321449, -0.027770791202783585, 0.0010986161651089787, 3.623428734808565e-34, 0.045657239854335785, -0.0055693876929581165, -0.017841383814811707, 0.014804989099502563, 0.023102939128875732, -0.03942539542913437, 0.018457986414432526, -0.036162830889225006, -0.010391122661530972, -0.022369222715497017, -0.026225252076983452], "2e92bb78-357e-455b-ab5c-e1e12e4b2da4": [0.02737261913716793, 0.012400437146425247, -0.046275876462459564, 0.0076693384908139706, -0.01643715240061283, -0.00661237770691514, -0.02856764942407608, 0.0009148280369117856, -0.021116090938448906, -0.014203343540430069, 0.035572875291109085, -0.0245121531188488, 0.010266188532114029, 0.06903038173913956, 0.0015713765751570463, -0.006191921420395374, 0.026920782402157784, -0.03334854543209076, -0.016847549006342888, -0.03225203976035118, -0.002838485175743699, 0.012861615046858788, -0.055788543075323105, 0.009437916800379753, 0.0045077865943312645, -0.024266112595796585, 0.002040553605183959, 0.02127688005566597, 0.07172396034002304, 0.04028686136007309, -0.006955156568437815, -0.017696097493171692, -0.02332545444369316, 0.019950751215219498, 2.662962060639984e-06, 0.009927249513566494, -0.011364368721842766, 0.021621786057949066, -0.012530666776001453, 0.004898174665868282, 0.024556778371334076, 0.06625775992870331, -0.05167238414287567, 0.04512239992618561, -0.033655911684036255, 0.03825538605451584, 0.10676401108503342, -0.08921008557081223, 0.021277178078889847, 0.03909529373049736, 0.005301451310515404, 0.03775043040513992, 0.017808709293603897, 0.007117982022464275, 0.07331005483865738, -0.04534048214554787, -0.01240193285048008, -0.017487406730651855, 0.06033659726381302, 0.017379388213157654, -0.006038408260792494, 0.007291847374290228, -0.015307406894862652, -0.04096744954586029, 0.048120494931936264, 0.06588263809680939, -0.011276534758508205, -0.04731503874063492, -0.03361797705292702, 0.008716931566596031, 0.0892973244190216, 0.011162979528307915, 0.016676804050803185, 0.08341680467128754, -0.04241061583161354, 0.017299050465226173, 0.022238070145249367, 0.02796422876417637, -0.06441746652126312, -0.004028084222227335, -0.04575125128030777, -0.0070315999910235405, -0.03089006617665291, -0.01214403286576271, -0.018776776269078255, 0.052411649376153946, 0.0166642963886261, -0.004244240000844002, 0.030544942244887352, -0.0014946355950087309, 0.07184279710054398, 0.014102165587246418, -0.0027130881790071726, 0.0026517552323639393, -0.05018243193626404, -0.030248994007706642, 0.022877797484397888, -0.012144273146986961, 0.01417677290737629, 0.010450447909533978, 0.034155216068029404, 0.02691209502518177, 0.004979650489985943, 0.029114054515957832, 0.012448392808437347, 0.06698039174079895, -0.033349569886922836, -0.05767839401960373, -0.0307881198823452, -0.01772923953831196, -0.057648997753858566, -0.019851041957736015, -0.023316536098718643, 0.03444131836295128, 0.00919132586568594, -0.0018496101256459951, -0.0888003408908844, 0.04949367046356201, -0.03152482211589813, 0.021734656766057014, 0.020019089803099632, 0.000809387827757746, -0.04486861824989319, 0.04032887518405914, -0.07091870158910751, -0.08052358776330948, -0.004904632922261953, -0.01389031670987606, -0.01903276890516281, -0.09183469414710999, -0.0009756510844454169, 0.0023367677349597216, -0.0163407064974308, -0.03135301172733307, 0.014463077299296856, 0.025134865194559097, 0.021238159388303757, 0.02901802957057953, 0.044662635773420334, 0.01710515096783638, 0.009424745105206966, -0.039406102150678635, 0.0193027313798666, -0.008745933882892132, -0.007449913304299116, -0.033411361277103424, 0.018769636750221252, -0.003791969269514084, 0.0021990733221173286, 0.021110370755195618, 0.025332173332571983, 0.06403195858001709, -0.04926807060837746, 0.003813975490629673, -0.018726671114563942, 0.00458388589322567, -0.026363499462604523, 0.021638179197907448, -0.002743850229308009, 0.033212240785360336, -0.0017767857061699033, -0.006832893006503582, 0.06425825506448746, -0.00417196424677968, -0.038587141782045364, -0.0332152284681797, 0.01820996217429638, 0.04718729481101036, 0.004221316426992416, 0.031608741730451584, 0.03143421187996864, 0.06102404370903969, -0.006564038805663586, 0.02082090638577938, 0.016517940908670425, 0.013049553148448467, 0.035549916326999664, 0.04583952948451042, 0.03225485607981682, 0.038972407579422, -0.0009557020384818316, -0.0944891944527626, -0.0063149528577923775, 0.06168878450989723, 0.0031089193653315306, 0.002118605189025402, -0.015615737996995449, 0.061609625816345215, -0.02411052957177162, -0.0029979380778968334, 0.014480853453278542, 0.002831067191436887, -0.029212711378932, -0.0029278299771249294, 0.03773568198084831, -0.01226555835455656, -0.04434138163924217, -0.09553308039903641, -0.006063341163098812, -0.024148255586624146, -0.031515736132860184, -0.10493241250514984, -0.024427376687526703, 0.03954554721713066, 0.03832798823714256, -0.07699346542358398, 0.00686260499060154, -0.03459002077579498, -0.017562558874487877, 0.045643068850040436, 0.1144789457321167, -0.0032303156331181526, -0.016122376546263695, -0.009011857211589813, -0.02770712971687317, 0.012143929488956928, -0.03141523525118828, -0.004101429600268602, 0.017241129651665688, 0.0413377545773983, -0.021958844736218452, -0.03588224574923515, -0.02169658988714218, 0.0019048728281632066, 0.025071343407034874, 0.003861200762912631, 0.03406890481710434, -0.0036600888706743717, 0.02430046908557415, 0.049736641347408295, -0.05263453349471092, 0.016540776938199997, 0.02498602122068405, 0.004402875900268555, 0.012855207547545433, -0.02700175531208515, 0.016279272735118866, 0.036670245230197906, 0.01788068749010563, -0.10857386142015457, -0.03130820766091347, 0.08301669359207153, -0.0028864280320703983, 0.022448793053627014, 0.002229525940492749, -0.02139257825911045, 0.053415603935718536, 0.008915896527469158, -0.006339292507618666, 0.006411001086235046, 0.023440932855010033, 0.009985534474253654, 0.04287807643413544, 0.07548467069864273, 0.006929094437509775, 0.03680039197206497, -0.1498958170413971, -0.01725853607058525, -0.07600688934326172, 0.010720303282141685, -0.020225152373313904, -0.008364741690456867, 0.005172564648091793, 0.01454499363899231, -0.018476005643606186, -0.01339486613869667, 0.012497760355472565, -0.04719924181699753, 0.006664549000561237, 0.02365032210946083, 0.014463949017226696, -0.024726271629333496, 0.002054377691820264, 0.0040355646051466465, -0.010139879770576954, 0.008896797895431519, -0.016358597204089165, -0.010152085684239864, -0.038757286965847015, 0.01582133211195469, 0.002438194351270795, -0.06725338101387024, -0.007720297668129206, -0.0007929258863441646, -0.009431978687644005, -0.009557523764669895, 0.07148686796426773, -0.026137517765164375, -0.043482787907123566, 0.012695503421127796, 0.0029882872477173805, -0.013146276585757732, -0.0008230346720665693, -0.041243936866521835, -0.019480956718325615, 0.0055004204623401165, 0.03859701380133629, 0.03143996000289917, -0.014534618705511093, 0.05026126280426979, 0.004202793352305889, 0.040130894631147385, 0.0021675564348697662, 0.021226167678833008, -0.0001370534155284986, 0.007923540659248829, 0.01828482188284397, -0.004549299832433462, -0.008730381727218628, -0.05356977507472038, -0.027434933930635452, 0.0003217180783394724, 0.0007922464865259826, 0.05415450036525726, 0.026233486831188202, -0.01694965362548828, -0.08630993962287903, -0.023139633238315582, -0.0077761439606547356, 0.06531909853219986, -0.02568088285624981, -0.057030655443668365, 0.02680238150060177, -0.013154404237866402, -0.009914771653711796, -0.0786593034863472, -0.054501377046108246, 0.007783440873026848, 0.05478685721755028, -0.019662076607346535, 0.04524728283286095, -0.029340676963329315, 0.01313762180507183, 0.024161484092473984, -0.030987119302153587, -0.02654634788632393, -0.024634823203086853, -0.05796211585402489, -0.007033323869109154, 0.008757046423852444, -0.03763705864548683, -0.014317350462079048, -0.06051640212535858, 0.016380324959754944, 0.008250595070421696, -0.0263206884264946, -0.022350575774908066, -0.03283983841538429, -0.06520549952983856, 0.018116025254130363, 0.06173750013113022, 0.06053348258137703, -0.010288783349096775, -0.0469653382897377, 0.004765533842146397, -0.03383496031165123, 0.008000891655683517, 0.016629429534077644, 0.019663847982883453, 0.006983411032706499, 0.009729433804750443, 0.019286062568426132, 0.002493756590411067, 0.017812302336096764, -0.041132401674985886, -0.02574874646961689, 0.04047807306051254, -0.056345704942941666, 0.010951926000416279, 0.05227036029100418, -0.0004688169283326715, 0.0008357100305147469, -0.04447796940803528, 0.01075625978410244, 0.0042498488910496235, -0.05803585797548294, 0.001951878541149199, 0.01811494119465351, 0.052534155547618866, 0.023841142654418945, 0.04616071283817291, -0.06858858466148376, 0.07006427645683289, -0.003823491744697094, 0.030413296073675156, -0.049873512238264084, -0.013967628590762615, -0.006113759707659483, -0.016850292682647705, 0.060685206204652786, -0.010229173116385937, -0.06309942156076431, -0.07787655293941498, -0.03815609961748123, -0.004317003767937422, 0.017885755747556686, -0.009979150258004665, 0.009364906698465347, -0.006678268779069185, 0.021264811977744102, -0.004760118667036295, -0.047961436212062836, 0.0002564776805229485, 0.010308727622032166, -0.030314473435282707, 0.06709263473749161, 0.06439752876758575, 0.04828527942299843, -0.049467284232378006, -0.05271987244486809, 0.04138391837477684, 0.02526502124965191, 0.020946549251675606, 0.005578570067882538, 0.030047543346881866, -0.005945446901023388, -0.04186220094561577, -0.036205876618623734, 0.03035880997776985, -0.07518935948610306, 0.03771201893687248, 0.05004005506634712, 0.0896691232919693, -0.038996778428554535, 0.024296296760439873, -0.06140235438942909, 0.020490922033786774, 0.03316827118396759, 0.06846041232347488, -0.043572887778282166, -0.033527832478284836, -0.012377550825476646, -0.019202830269932747, 0.07333997637033463, -0.05158783867955208, -0.0682707354426384, -0.023471415042877197, 0.040871988981962204, 0.009385899640619755, -0.007920380681753159, 0.016909578815102577, 0.012184664607048035, 0.02576521411538124, 0.015014815144240856, -0.02803068794310093, 6.492856300610583e-06, 0.04115799441933632, -0.029207462444901466, -0.0068353950046002865, -0.044795818626880646, 0.04679178074002266, -0.03227313607931137, -0.03015594743192196, 0.004903886467218399, -0.04315183311700821, -0.03995274752378464, -0.10373689234256744, 0.036755118519067764, 0.007126177661120892, 0.06089269369840622, 0.07518070191144943, 0.044787194579839706, -0.014160537160933018, 0.0017741458723321557, 0.009196595288813114, 0.018839139491319656, -0.020654216408729553, -0.04609023407101631, 0.02319541573524475, -0.024951418861746788, -0.01268372219055891, -0.035460323095321655, -0.03764589875936508, -0.017516670748591423, 0.031429681926965714, -0.02202145755290985, -0.01590106636285782, 0.052641041576862335, -0.031192800030112267, 0.01897195726633072, 0.009430564008653164, -0.0033474797382950783, 0.006501652300357819, 0.01714167930185795, 0.004581442102789879, 0.031158164143562317, 0.030936341732740402, 0.04502329230308533, -0.01801323890686035, -0.036425068974494934, 0.04118822142481804, -0.03675653412938118, 0.0073295957408845425, -0.0409269705414772, -0.016631707549095154, 0.00828707218170166, -0.0029761388432234526, 0.07072499394416809, 0.014073728583753109, 0.06713508069515228, 0.023398766294121742, -0.021674545481801033, 0.026349054649472237, 0.058676715940237045, -0.02558469958603382, 0.03263694792985916, -0.018140271306037903, 0.005977914668619633, -0.005748022347688675, -0.009444102644920349, 0.015597571618855, 0.006681521888822317, -0.0732169821858406, -0.08948605507612228, 0.05376309156417847, -0.0022620134986937046, 0.013542532920837402, 0.09273210167884827, -0.029015343636274338, -0.049627337604761124, 0.03370829299092293, -0.0034613520838320255, 0.01154359057545662, 0.01350154634565115, 0.05189153552055359, 0.016556106507778168, 0.01817791536450386, 0.002899042097851634, 0.01663103885948658, 0.046020057052373886, -0.03415098413825035, -0.0032392286229878664, -0.00023779005277901888, -0.010931553319096565, -0.03725329041481018, -0.04112296923995018, -0.042230989784002304, 0.029585646465420723, 0.03752964735031128, 0.0041197678074240685, -0.0015741590177640319, -0.023530084639787674, 0.035124268382787704, 0.008036785759031773, -0.004992250818759203, -0.07747261971235275, 0.05236148089170456, 0.025029730051755905, 0.013732901774346828, -0.030251409858465195, 0.006005499046295881, -0.03250652551651001, -0.031139878556132317, 0.032987311482429504, 0.012485275976359844, -6.910608596261361e-33, -0.006069200113415718, 0.005920393858104944, 0.0003574213187675923, 0.03338561952114105, -0.05706501752138138, 0.0013862624764442444, 0.025087030604481697, -0.03619372099637985, -0.04702489450573921, -0.016775207594037056, -0.021618522703647614, 0.03769596293568611, 0.024571189656853676, -0.0012414396042004228, -0.03146893531084061, 0.015110660344362259, 0.049816787242889404, 0.02583804726600647, 0.008725345134735107, 0.029536793008446693, -0.066211998462677, -0.01840849034488201, -0.031083885580301285, -0.00853173341602087, -0.003309947205707431, -0.014352473430335522, -0.02987568825483322, 0.05622627213597298, -0.0007574432529509068, 0.025659168139100075, 0.004944358021020889, 0.02853979542851448, -0.02984704077243805, -0.039455220103263855, 0.016810143366456032, 0.07683306932449341, -0.07809998095035553, 0.004633271601051092, -0.0018662936054170132, -0.023469172418117523, 0.033090438693761826, -0.06495989859104156, -0.0025992966257035732, 0.011222684755921364, -0.045699167996644974, 0.01281511690467596, 0.055030930787324905, -0.00844229944050312, 0.01259416900575161, -0.05375741049647331, -0.04629790410399437, 0.006661066319793463, -0.0675741657614708, 0.07805845886468887, 0.0033818420488387346, -0.00775100477039814, -0.008679818361997604, -0.037907086312770844, -0.08948135375976562, 0.019390614703297615, -0.03464677184820175, 0.03088686801493168, 0.02300615794956684, -0.00257808156311512, -0.00857650674879551, 0.009848957881331444, 0.02821575477719307, 0.053758930414915085, 0.02201712876558304, -0.01026230864226818, -0.035463571548461914, 0.037834350019693375, -0.02184128388762474, -0.04270306974649429, 0.005202661734074354, -0.022804686799645424, -0.052174828946590424, 0.04897378757596016, 0.0972181037068367, 0.025943150743842125, 0.030502738431096077, -0.03363768011331558, -0.03770044818520546, 0.012391587719321251, -0.005748165771365166, 0.04334753379225731, -0.033578548580408096, -0.011059795506298542, 0.008881788700819016, -0.01493533980101347, -0.010709794238209724, -0.0011483629932627082, -0.03185048699378967, -0.013885914348065853, 0.08247211575508118, -0.032670531421899796, 0.019743716344237328, 0.005378841422498226, -0.005678946152329445, -0.017143283039331436, -0.01719782128930092, -0.013691955246031284, -0.013493284583091736, 0.0735192820429802, 0.04857558384537697, 0.01639064960181713, -0.023060904815793037, 0.02989158034324646, -0.09369149059057236, 0.0314079187810421, -0.009625394828617573, 0.0355139784514904, 0.008193300105631351, 0.0011138556292280555, 0.015952175483107567, -0.0011637047864496708, 0.02285424806177616, -0.02105586603283882, -0.027292827144265175, -0.006761960219591856, 0.007063316181302071, 0.027006926015019417, -0.028560392558574677, 0.006312929559499025, -0.05046049878001213, -0.01871572993695736, -0.022928165271878242, 0.034905288368463516, 0.0478198267519474, -0.05982792004942894, -0.025660570710897446, -0.014464589767158031, 3.2697599294806423e-07, -0.01906566321849823, 0.02764362096786499, 0.007748267613351345, 0.011937354691326618, -0.0173942968249321, -0.0457453615963459, 0.01700715720653534, 0.005498673766851425, 0.012030597776174545, 0.01118423044681549, 0.010702697560191154, 0.03381182998418808, -0.007731026969850063, -0.0406096912920475, -0.032858408987522125, -0.1267361342906952, -0.07201632112264633, 0.011131707578897476, -0.048477403819561005, 0.053193893283605576, 0.04370144009590149, 0.06372054666280746, 0.051039911806583405, -0.01819290965795517, 0.00014775041199754924, -0.010483545251190662, -0.013728851452469826, -0.043752364814281464, 0.04707853123545647, 0.05409778654575348, 0.005502958782017231, -0.0002680454053916037, -0.02175946906208992, 0.008610530756413937, 0.03748301416635513, -0.007159446366131306, -0.02069726027548313, 0.054290641099214554, 0.01729671284556389, 0.04652564600110054, 0.01610417664051056, 0.001116307219490409, 0.0176310483366251, 0.031236844137310982, 0.06539571285247803, 0.018633142113685608, -0.023484809324145317, -0.011622324585914612, -0.03354784846305847, -0.044591132551431656, -0.017179066315293312, 0.010937628336250782, 0.03537438064813614, -0.025296522304415703, 0.012115910649299622, -0.030354253947734833, -0.04662260413169861, -0.024141166359186172, 0.03862956538796425, -0.006556668318808079, -0.04620068147778511, -0.08634740859270096, 0.008088256232440472, 0.012030805461108685, 0.04281998053193092, -0.028436297550797462, -0.008393482305109501, 3.569462523846283e-34, 0.03522142022848129, -0.0002793821331579238, -0.023341525346040726, 0.03831025958061218, 0.018106557428836823, -0.02143799513578415, 0.01819436065852642, -0.03494134917855263, -0.0014063968556001782, -0.028049318119883537, -0.02377273701131344], "bc877115-e3e0-4648-bef9-5e10d81a353d": [0.03549884632229805, -0.04333433881402016, -0.02129044011235237, -0.005067856051027775, -0.01062589418143034, 0.014214475639164448, -0.03450177237391472, -0.0039640795439481735, 0.042931780219078064, -0.021670890972018242, 0.062069617211818695, -0.024328947067260742, 0.029039083048701286, 0.06718243658542633, 0.023766348138451576, 0.000971362111158669, 0.019442949444055557, 0.0114321643486619, 0.0069199660792946815, 0.007188708987087011, -0.019045094028115273, 0.02926459163427353, -0.03312915936112404, 0.007675154600292444, -0.0010796741116791964, -0.036306556314229965, 0.01034028921276331, 0.027034346014261246, 0.06401481479406357, 0.04614447429776192, 0.01618175022304058, -0.027530662715435028, -0.02149871550500393, -0.04016342759132385, 2.496306933608139e-06, 0.012080068700015545, 0.012593179009854794, 0.018070600926876068, -0.008932546712458134, -0.06938474625349045, 0.06161954253911972, 0.003406283212825656, -0.009113902226090431, 0.03530188649892807, -0.0028833365067839622, 0.02411648817360401, 0.08537741005420685, -0.04273165017366409, 0.025456726551055908, 0.03527344390749931, 0.009864087216556072, 0.016135623678565025, 0.0038414907176047564, 0.01503284927457571, 0.08499868959188461, -0.016044732183218002, -0.016953496262431145, -0.00965471938252449, 0.050170235335826874, 0.023798933252692223, 0.018050571903586388, 0.0039118253625929356, -0.02044891007244587, -0.030965739861130714, 0.05490604788064957, 0.05705974996089935, -0.007662342395633459, -0.04176659882068634, -0.014996732585132122, -0.008606459014117718, 0.07964647561311722, 0.006108292378485203, -0.0023232754319906235, 0.06364774703979492, -0.010172874666750431, 0.015676233917474747, 0.04290907829999924, 0.03807536140084267, -0.033246949315071106, -0.040128156542778015, -0.011632386595010757, 0.032452017068862915, -0.019104622304439545, -0.009193340316414833, -0.024924663826823235, 0.053873833268880844, 0.006608669646084309, -0.028001630678772926, 0.042706552892923355, 0.0012632913421839476, 0.13586388528347015, 0.005876133218407631, -0.018605273216962814, 0.001215161057189107, -0.03465845435857773, -0.024874825030565262, 0.01104765385389328, -0.029558483511209488, 0.031598735600709915, -0.014660623855888844, -0.008289049379527569, 0.01963648945093155, 0.012735548429191113, 0.00799818430095911, 0.004260109271854162, 0.041845161467790604, 0.0009739678935147822, -0.009851330891251564, -0.016292568296194077, -0.03501410782337189, -0.011720849201083183, -0.04959478601813316, -0.014016364701092243, 0.0034513629507273436, 0.051252804696559906, 0.010313487611711025, -0.020527025684714317, 0.05233129858970642, -0.003564674174413085, 0.001765836146660149, 0.04350367560982704, -0.024327069520950317, -0.060211602598428726, 0.024778371676802635, -0.04135698452591896, -0.068489208817482, -0.0002680577163118869, 0.005869827698916197, 0.004807588178664446, -0.07589897513389587, -0.021381231024861336, 0.008558698929846287, -0.0047001466155052185, -0.027722807601094246, 0.02460862137377262, 0.02350207418203354, 0.04072212427854538, 0.03552159294486046, 0.074430450797081, 0.026711812242865562, -0.00540224090218544, -0.02512171119451523, 0.009228907525539398, 0.04451344162225723, 0.03380162641406059, -0.009894986636936665, 0.017121631652116776, 0.019464045763015747, 0.006594994571059942, 0.07171699404716492, 0.016209231689572334, 0.02632727287709713, -0.037894949316978455, -0.014852031134068966, -0.01208038255572319, -0.0027956203557550907, -0.014403274282813072, 0.0019438584567978978, -0.006847081705927849, 0.03147995471954346, -0.01664004847407341, -0.012529881671071053, 0.057664260268211365, 0.00425800820812583, -0.04655088484287262, -0.05121871083974838, 0.027502436190843582, 0.06304430961608887, 0.019485309720039368, 0.013860473409295082, 0.048913974314928055, 0.01183356624096632, -0.008642138913273811, 0.013429787941277027, 0.006752477027475834, -0.002161724492907524, 0.05149877816438675, 0.01892012543976307, 0.022916464135050774, 0.0690271258354187, -0.016846999526023865, -0.07673584669828415, -0.03245098888874054, 0.07544392347335815, -0.014558035880327225, 0.020131949335336685, -0.023981820791959763, 0.05246692895889282, -0.040333062410354614, 0.0437096543610096, 0.005074413027614355, -0.0014600377762690187, -0.02878604270517826, 0.0028054167050868273, 0.01898163929581642, 0.02860601432621479, -0.0660894513130188, -0.06427378207445145, -0.022381745278835297, -0.031874481588602066, -0.042274359613657, -0.05004382133483887, -0.02208094298839569, 0.05284861475229263, 0.06052781268954277, -0.015367310494184494, -0.04076182097196579, -0.04671035334467888, -0.04609706252813339, 0.08212877810001373, 0.10026830434799194, -0.032994940876960754, -0.01733481138944626, -0.00509047182276845, -0.057332318276166916, -0.0041456581093370914, -0.03630850091576576, -0.04375186190009117, -0.008106650784611702, -0.014113614335656166, -0.0010635313810780644, -0.06067251041531563, -0.05893406644463539, -0.009380947798490524, 0.04173751547932625, 0.006292858626693487, 0.0024796060752123594, 0.01816067472100258, 0.017584633082151413, 0.03605394437909126, -0.02621651627123356, 0.023260222747921944, -0.01571851596236229, 0.014583969488739967, 0.04601123929023743, -0.009609290398657322, -0.008870462886989117, 0.018193963915109634, -0.004677330609411001, -0.09784910827875137, 0.005993673112243414, 0.06469819694757462, -0.0009730957681313157, 0.019366038963198662, -0.019287247210741043, -0.024938907474279404, -0.008274252526462078, 0.013200600631535053, -0.024425143375992775, -0.005512683652341366, 0.004570917692035437, 0.0174869317561388, 0.013988816179335117, 0.06922026723623276, -0.029770005494356155, -0.007359239738434553, -0.12776809930801392, -0.019195586442947388, -0.08562882244586945, 0.006547173019498587, -0.02739005535840988, 0.0037662866525352, 0.010911188088357449, 0.02446506917476654, 0.011460714973509312, -0.027038950473070145, 0.013475153595209122, -0.06821615993976593, -0.005382761359214783, 0.0242657121270895, 0.015548311173915863, 0.013565209694206715, 0.011244215071201324, -0.010976208373904228, -0.018224336206912994, -0.019738083705306053, -0.03355465084314346, 0.008117417804896832, -0.04409044608473778, 0.04097864404320717, 0.0038812439888715744, -0.043467745184898376, 0.015293698757886887, -0.014471207745373249, -0.005196515005081892, -0.007884840480983257, 0.05378415808081627, -0.03332338482141495, -0.003783100750297308, 0.025441152974963188, -0.0056039318442344666, -0.024472741410136223, -0.00930690485984087, -0.016307402402162552, -0.026642611250281334, 0.002899440936744213, -0.02947293035686016, 0.04207471385598183, 0.0016974103637039661, 0.0030440757982432842, 0.023316845297813416, 0.04859119653701782, 0.016060058027505875, 0.01548467855900526, 0.005501400679349899, 0.02829367108643055, 0.0026276176795363426, -0.023162810131907463, -0.010141344740986824, -0.061575666069984436, -0.05918261781334877, -0.00717996247112751, -0.023832274600863457, 0.03525847569108009, 0.02811499312520027, -0.013088565319776535, -0.09051472693681717, -0.011778694577515125, -0.01799573376774788, 0.04158145561814308, -0.045816678553819656, -0.07350867241621017, -0.006828683894127607, -0.023320823907852173, -0.006474018562585115, -0.09093623608350754, -0.037957072257995605, -0.01902857795357704, 0.03249387815594673, -0.034491002559661865, 0.024799415841698647, -0.04194246232509613, 0.02207851968705654, -0.020774371922016144, -0.01719019003212452, -0.045912399888038635, -0.011390317231416702, -0.10850649327039719, -0.003108150791376829, 0.012110104784369469, -0.03831980749964714, 0.01981336809694767, -0.049995988607406616, 0.037025436758995056, 0.014473097398877144, -0.021376417949795723, -0.05861222371459007, -0.009203601628541946, -0.024043412879109383, 0.016027454286813736, 0.05938339978456497, 0.05510500445961952, 0.006119328550994396, -0.017775647342205048, 0.00843739788979292, -0.10243241488933563, 0.024817343801259995, 0.018779607489705086, 0.005118753761053085, -0.004391525872051716, 0.001469733309932053, -0.038895703852176666, 0.010808064602315426, 0.0030835808720439672, -0.014114411547780037, -0.02296806126832962, 0.01656218245625496, -0.06189269945025444, -0.013895277865231037, 0.03350323066115379, -0.001465608598664403, -0.015678158029913902, -0.058662425726652145, 0.007427487056702375, -0.03491991013288498, -0.056238919496536255, -0.04869910329580307, 0.06281895935535431, -0.008064736612141132, 0.02007623203098774, 0.09690001606941223, -0.045662425458431244, 0.08157429099082947, -0.010811745189130306, 0.04026448726654053, -0.011834122240543365, -0.003909133840352297, -0.03262252360582352, 0.0022974025923758745, 0.06845907121896744, 0.007427062373608351, -0.08047615736722946, -0.07967014610767365, -0.033664271235466, 0.010859506204724312, 0.01922629028558731, -0.002279587322846055, 0.01258572656661272, -0.0010454850271344185, 0.001231177942827344, 0.002089665737003088, -0.010467507876455784, -0.024274447932839394, 0.022154774516820908, -0.018675584346055984, 0.04893958568572998, 0.056761112064123154, 0.016263827681541443, -0.01908993348479271, -0.01255160290747881, 0.03196306154131889, 0.023468663915991783, -0.0040176305919885635, 0.030635885894298553, 0.011791523545980453, -0.025770166888833046, -0.03643868491053581, -0.03299029916524887, -0.009148591198027134, -0.07349546253681183, 0.044281017035245895, 0.03002484329044819, 0.08253951370716095, -0.04845133423805237, -0.007487354800105095, -0.054006922990083694, 0.050784263759851456, 0.049726225435733795, 0.08042102307081223, -0.03775689750909805, -0.04795331880450249, 0.010218620300292969, 0.030736245214939117, 0.06545553356409073, -0.0677509605884552, -0.047613002359867096, 0.01562458649277687, -0.01580095663666725, 0.03624330088496208, 0.010372146032750607, -0.036201056092977524, 0.012962324544787407, 0.04811779409646988, 0.05924053490161896, -0.03965616598725319, -0.023072652518749237, 0.011622985824942589, -0.002866247668862343, 0.0017522863345220685, -0.03264898061752319, 0.057481907308101654, -0.027036558836698532, -0.0407884456217289, -0.006769151426851749, -0.06626012176275253, -0.04741084948182106, -0.10945432633161545, 0.08443959802389145, 0.05683302879333496, 0.08472959697246552, 0.057902004569768906, 0.03522467240691185, 0.007260744459927082, -0.007842730730772018, -0.0396551750600338, 0.03841573745012283, -0.024644484743475914, -0.028035752475261688, 0.007279760669916868, -0.05361130088567734, -0.009946368634700775, -0.04569001495838165, -0.02148563228547573, -0.02659398689866066, 0.029886675998568535, -0.04320721700787544, -0.038621339946985245, 0.08544641733169556, -0.06991677731275558, 0.013585321605205536, -0.0037133118603378534, -0.008293076418340206, 0.019734421744942665, 0.02473262883722782, -0.015835965052247047, 0.008638040162622929, 0.015211679972708225, 0.03881779685616493, -0.009241773746907711, -0.0264466293156147, 0.015306055545806885, -0.006655029021203518, 0.04719775915145874, -0.06662286818027496, -0.05759381875395775, -0.016338087618350983, 0.01789090409874916, 0.06061718985438347, -0.01592145301401615, 0.08321763575077057, -0.005900729913264513, -0.020633434876799583, 0.0034883732441812754, 0.057675402611494064, -0.03555931895971298, 0.005695499945431948, -0.025288142263889313, -0.0018916720291599631, -0.029800402000546455, -0.011488609947264194, -0.004649873357266188, 0.0009550455724820495, -0.04678744450211525, -0.07448799908161163, 0.024166712537407875, -0.013717994093894958, -0.07049942761659622, 0.018201550468802452, -0.024389080703258514, -0.0402095802128315, 0.017193645238876343, -0.025784434750676155, -0.015393665991723537, 0.04037676751613617, 0.010785774327814579, 0.040471237152814865, 0.0053625330328941345, 0.002238414017483592, -0.05091296508908272, -0.013322815299034119, -0.027170300483703613, -0.004107601009309292, -0.026259645819664, -0.010989862494170666, -0.03067888505756855, -0.028607333078980446, -0.03957721218466759, 0.03244928643107414, 0.005840326193720102, -0.004250479396432638, -0.01530575379729271, -0.02480650134384632, 0.06164287030696869, -0.0015995237044990063, -0.004150346852838993, -0.020607173442840576, 0.034267980605363846, 0.033887289464473724, 0.013714531436562538, -0.01487264409661293, 0.014535809867084026, -0.021754002198576927, -0.008866928517818451, 0.04365364462137222, 0.015409165062010288, -6.6157762459759e-33, -0.00044355622958391905, 0.004942207131534815, 0.021069863811135292, -0.0009414562373422086, 0.0006995958974584937, 0.04407390207052231, -0.007085397839546204, -0.028109757229685783, -0.05729641765356064, 0.004469109699130058, -0.0329686664044857, 0.04219136759638786, 0.026956232264637947, 0.023594839498400688, -0.007157681975513697, 0.01778039149940014, 0.043076254427433014, 0.00986336637288332, 0.02679501846432686, 0.020328689366579056, -0.05185459181666374, -0.03097819909453392, 0.0009833023650571704, -0.03401731699705124, 0.04087531939148903, -0.062033236026763916, -0.04006580635905266, 0.037620313465595245, 0.003393901279196143, 0.0027103042230010033, 0.02913842350244522, -0.020043035969138145, -0.001202121376991272, 0.005726727191358805, 0.007512340787798166, 0.07399915903806686, -0.06533758342266083, -0.010241158306598663, 0.010864609852433205, -0.001784794614650309, -0.00012572898413054645, -0.0797358900308609, -0.0031375009566545486, 0.004327921662479639, -0.03924316540360451, -0.022518301382660866, 0.045791175216436386, 0.008099238388240337, 0.03930226340889931, -0.06181860342621803, -0.00145385239738971, 0.012239329516887665, -0.04622432589530945, 0.076262466609478, 0.0025333582889288664, -0.006773221772164106, 0.01381830032914877, -6.134780414868146e-05, -0.09476383775472641, 0.03456396237015724, -0.026188142597675323, -0.02413729950785637, 0.054445505142211914, 0.005547322332859039, -0.013728347606956959, 0.011447357945144176, 0.03417454659938812, 0.06119489297270775, 0.03815961629152298, -0.01001268345862627, -0.027251247316598892, 0.013893968425691128, -0.033932048827409744, -0.026179935783147812, 0.001621612231247127, -0.04636175557971001, -0.0005379631766118109, 0.0378643274307251, 0.0846838727593422, 0.029141059145331383, 0.005626855883747339, -0.034575991332530975, -0.05625518411397934, -0.009525747038424015, 0.02365182526409626, -0.005234641022980213, -0.030543077737092972, -0.0042657372541725636, 0.030069652944803238, 0.0005020428798161447, -0.011397468857467175, 0.016624687239527702, -0.0527002327144146, 0.005298055708408356, 0.11477579176425934, -0.024338429793715477, 0.0012599796755239367, -0.0241401307284832, 0.009374822489917278, -0.012710527516901493, 0.004919514991343021, -0.031324099749326706, 0.014948646537959576, 0.046570539474487305, 0.041098494082689285, 0.04047277197241783, -0.01005004346370697, 0.019643500447273254, -0.0682225301861763, 0.009879961609840393, 0.011376592330634594, 0.022201646119356155, -0.004990954417735338, 0.012576517648994923, 0.0022340610157698393, 0.0032584266737103462, 0.020828360691666603, -0.015546375885605812, -0.012887498363852501, -0.012974640354514122, 0.042420972138643265, 0.031588517129421234, -0.0053548975847661495, -0.008307854644954205, -0.0031798970885574818, 0.01428105216473341, 0.008248522877693176, 0.028582414612174034, 0.03068981133401394, -0.02358710579574108, -0.01587003841996193, -0.009060803800821304, 3.188300183865067e-07, 0.03939595818519592, 0.015384730882942677, -0.013612547889351845, 0.016534438356757164, -0.01333564892411232, -0.04743893817067146, 0.02117839641869068, -0.0036873400676995516, -0.0003853550588246435, 0.031906355172395706, 0.027171555906534195, 0.007926573045551777, -0.03149150311946869, -0.05001311004161835, -0.013265952467918396, -0.07835935056209564, -0.032311487942934036, -0.006740684155374765, -0.03738845884799957, 0.04859425500035286, 0.04365013539791107, 0.031567350029945374, 0.049413736909627914, -0.04029272496700287, -0.016993846744298935, -0.006571906618773937, -0.050792060792446136, -0.03864779323339462, 0.06273509562015533, 0.06208086386322975, 0.035518571734428406, 0.013432652689516544, 0.010190996341407299, 0.059954337775707245, 0.025631044059991837, 0.008418608456850052, 0.027491262182593346, 0.03185779228806496, 0.009389999322593212, 0.08665823936462402, 0.05159051716327667, 0.005117363296449184, 0.0420168973505497, -0.02976289764046669, 0.0553249828517437, 0.03521879017353058, 0.014555733650922775, -0.0690256655216217, -0.04578877612948418, -0.0038714325055480003, 0.0034143857192248106, 0.005674832034856081, 0.017557382583618164, -0.011081961914896965, 0.017811333760619164, -0.05962812528014183, -0.06965690106153488, -0.03727198392152786, 0.04105330631136894, 0.0016897437162697315, -0.003437634790316224, -0.0637926384806633, 0.0034136339090764523, -0.008918343111872673, 0.0930844321846962, -0.03256666287779808, 0.0208897702395916, 3.4809027998362475e-34, 0.02580617181956768, -0.00250069098547101, -0.04213554784655571, 0.006394742056727409, 0.009285240434110165, -0.051878415048122406, 0.07044769823551178, -0.010669604875147343, -0.017991293221712112, -0.0400637686252594, -0.027190931141376495], "939e982a-94d2-49b3-b029-926d0ad796e3": [0.0027281532529741526, -0.0482063852250576, -0.017351064831018448, -0.014681011438369751, 0.04409334063529968, 0.017106084153056145, -0.02510731853544712, 0.011115937493741512, 0.0450252927839756, -0.009300469420850277, 0.044536225497722626, 0.004227197729051113, 0.014849584549665451, 0.077754907310009, 0.03367455303668976, 0.014069446362555027, 0.007103032898157835, 0.0028584611136466265, 0.05975102260708809, 0.006115757394582033, -0.00536153931170702, 0.00169401615858078, -0.04513164982199669, -0.0032105466816574335, 0.00602702796459198, -0.02466406486928463, 0.029871109873056412, 0.024920066818594933, 0.06771481782197952, 0.0060636806301772594, 0.011257858946919441, -0.04212888330221176, 0.0316561721265316, -0.037161219865083694, 2.282868763359147e-06, 0.04045049473643303, 0.019153937697410583, 0.0294797420501709, 0.017472408711910248, -0.11449579149484634, 0.02909434400498867, 0.06382917612791061, -0.012416518293321133, 0.02739706076681614, 0.002218131208792329, 0.011559647507965565, 0.07771481573581696, -0.038211461156606674, 0.02484319359064102, 0.05262278765439987, 0.0015592497074976563, -0.02684636414051056, 0.017633579671382904, 0.013789881952106953, 0.071028932929039, 0.006315864622592926, -0.01914164051413536, 0.04701033979654312, -0.00039178458973765373, 0.009889081120491028, 0.026401175186038017, 0.008160664699971676, -0.023432491347193718, -0.006473067682236433, 0.03778073191642761, 0.049507103860378265, 0.025663679465651512, -0.014512017369270325, -0.006302500609308481, -0.008319133892655373, 0.06344816833734512, -0.015640825033187866, -0.020481647923588753, 0.05080845579504967, 0.02822595089673996, -0.013124415650963783, 0.037529122084379196, 0.02385776862502098, -0.007472074590623379, -0.014474449679255486, -0.02684669941663742, 0.014032299630343914, -0.005391476675868034, -0.0335189588367939, -0.03987641632556915, 0.008070744574069977, 0.008758491836488247, -0.023299697786569595, 0.07097639888525009, -0.03130718693137169, 0.13005122542381287, 0.04630090296268463, -0.026426563039422035, -0.01590970903635025, -0.0022902865894138813, -0.013071120716631413, 0.004515432752668858, -0.015770189464092255, 0.03365803509950638, -0.011920974589884281, -0.01892632059752941, 0.0087305111810565, -0.00860007293522358, -0.015238055028021336, -0.04030171036720276, 0.05238717794418335, 0.024815967306494713, 0.019243763759732246, -0.014570167288184166, -0.04648857191205025, -0.017388220876455307, -0.06370865553617477, -0.04180289804935455, 0.02677551470696926, 0.04450760781764984, 0.02159963734447956, -0.0029238604474812746, 0.02964497171342373, 0.017970019951462746, -0.025295937433838844, 0.016026515513658524, 0.0026237498968839645, -0.042924731969833374, 0.021980972960591316, -0.030344529077410698, -0.07219403237104416, 0.0017576065147295594, 0.017542697489261627, -0.0032466736156493425, -0.08614279329776764, -0.001501406542956829, -0.00883503071963787, -0.028543928638100624, -0.03286553919315338, 0.006552401464432478, 0.0010825081262737513, 0.033260416239500046, 0.03894282877445221, 0.057987701147794724, 0.04330464452505112, -0.01046061236411333, -0.0025184357073158026, 0.044221244752407074, 0.046206034719944, 0.038764066994190216, -0.03988691419363022, 0.04056481644511223, -0.03992646932601929, 0.017872700467705727, 0.059261173009872437, 0.053492773324251175, 0.0176799688488245, -0.013112852349877357, -0.02914881892502308, -0.023172836750745773, -0.007035975810140371, -0.01938779652118683, -0.025272145867347717, 0.025188667699694633, 0.013136707246303558, -0.034377891570329666, -0.001347121549770236, 0.0634012371301651, 0.009707215242087841, -0.029425354674458504, -0.035046208649873734, 0.025760937482118607, 0.05608315020799637, -0.0024985792115330696, 0.005168366711586714, 0.05209851264953613, 0.0065123699605464935, 0.008998677134513855, -0.002457360038533807, -0.01673736423254013, -0.024460798129439354, 0.059948232024908066, 0.02301555499434471, 0.017357632517814636, 0.05165865272283554, 0.00374157284386456, -0.05943753942847252, -0.0346219502389431, 0.04631177335977554, -0.00530575355514884, 0.024496261030435562, -0.04769664630293846, 0.05125518888235092, -0.03623134642839432, 0.07088561356067657, 0.020697686821222305, 0.01609831489622593, -0.025125933811068535, 0.004526046104729176, 0.007982621900737286, 0.04782375320792198, -0.05360538512468338, -0.07637780159711838, -0.030164578929543495, -0.015603478997945786, -0.050451554358005524, -0.05374050885438919, -0.04264894500374794, 0.0015742734540253878, 0.06497618556022644, -0.0251711905002594, -0.03035259246826172, -0.034463103860616684, -0.05248403921723366, 0.075130894780159, 0.06478238105773926, -0.05339157208800316, -0.0002687502419576049, 0.0016155740013346076, -0.05176948383450508, -0.003013437846675515, -0.05092266574501991, -0.039994191378355026, 0.004326517228037119, -0.009175393730401993, 0.014685346744954586, -0.0665387436747551, -0.015314292162656784, 0.017403235659003258, 0.0029564143624156713, 0.030932357534766197, -0.007107209414243698, 0.007960343733429909, 0.02447911538183689, 0.026436157524585724, -0.04190816357731819, 0.024320170283317566, -0.004971198737621307, 0.00398310786113143, 0.04194076731801033, -0.03271683305501938, -0.032645560801029205, -0.002040823921561241, 0.014353113248944283, -0.12226307392120361, 0.008684522472321987, 0.07707444578409195, 0.0065673524513840675, 0.04184017330408096, -0.04465273395180702, -0.011565960943698883, 0.018229274079203606, -0.008326943032443523, -0.03917362913489342, 0.005506318062543869, -0.023203285411000252, 0.017725111916661263, 0.02753870189189911, 0.06623698025941849, -0.04138517379760742, 0.007640775293111801, -0.14442649483680725, -0.007057442329823971, -0.0715622827410698, 0.04081353172659874, -0.04160800576210022, -0.002652732189744711, 0.017111886292696, 0.012558864429593086, -0.014375832863152027, -0.01749596931040287, -1.016026180877816e-05, -0.0205310620367527, -0.00498173339292407, 0.032069556415081024, 0.04700527340173721, 0.005015203729271889, -0.002803059993311763, -0.024405071511864662, -0.008570109494030476, -0.05594391003251076, -0.02582625485956669, 0.0067413304932415485, -0.060715578496456146, 0.03458651155233383, -0.020522307604551315, -0.026432164013385773, 0.0039658392779529095, -0.010695266537368298, -0.0004098692734260112, -0.023924535140395164, 0.011256380006670952, -0.0386432446539402, 0.05340857803821564, -0.012167022563517094, -0.040164098143577576, 0.02838660590350628, -0.025986379012465477, -0.02147807367146015, -0.01350769866257906, 0.012136898003518581, -0.002842192305251956, -0.007591472007334232, -0.0019092406146228313, 0.004425634630024433, 0.018544480204582214, 0.03632223978638649, 0.012052591890096664, 0.014471566304564476, 0.016315583139657974, 0.026758726686239243, -0.01998557150363922, -0.03710433840751648, 4.051191717735492e-05, -0.08090709149837494, -0.028765078634023666, 0.006289390381425619, -0.010405594483017921, 0.026653939858078957, 0.034828148782253265, -0.020217563956975937, -0.09000888466835022, -0.004201487172394991, -0.01520854327827692, 0.011930129490792751, -0.059105005115270615, -0.07556353509426117, -0.00944121927022934, -0.019583750516176224, -0.00740441819652915, -0.07237876951694489, 0.01535299327224493, -0.013910636305809021, 0.04645374417304993, -0.024645762518048286, 0.018496233969926834, -0.033817827701568604, 0.032795269042253494, -0.034576188772916794, -0.025307437404990196, -0.05885932222008705, -0.007764418609440327, -0.07401259243488312, -0.0203825943171978, 0.014643051661550999, -0.035372715443372726, 0.03244894742965698, -0.0688643604516983, -0.00866491999477148, 0.027102772146463394, -0.022724086418747902, -0.07607588171958923, -0.008737580850720406, -0.01074288971722126, 0.022160248830914497, 0.06645923107862473, 0.04213062673807144, 0.03022284060716629, 0.004342951811850071, 0.016510985791683197, -0.06820251792669296, 0.030118800699710846, -0.006444456521421671, 0.013714979402720928, -0.020576823502779007, 0.01830032840371132, -0.0506141372025013, -0.024150485172867775, -0.010326921939849854, -0.02741921879351139, -0.03962612524628639, -0.01985739730298519, -0.03063853457570076, 0.01254739984869957, 0.030955439433455467, -0.04692048951983452, 0.005573168862611055, -0.031409163028001785, -0.002886153059080243, -0.023654067888855934, -0.04871460422873497, -0.04594527930021286, 0.0591544508934021, 0.02115795388817787, 0.014076035469770432, 0.061837825924158096, -0.0263463594019413, 0.07116430252790451, -0.0021260641515254974, 0.026488039642572403, -0.012155918404459953, 0.01628717966377735, -0.054074015468358994, 0.00799830537289381, 0.033086687326431274, 0.011308751069009304, -0.07696972042322159, -0.08510473370552063, 0.025929857045412064, 0.010507696308195591, 0.06929901987314224, -0.018635382875800133, 0.020972786471247673, -0.029247280210256577, 0.014784208498895168, -0.007042597979307175, -0.017379537224769592, -0.013362985104322433, 0.025607366114854813, 0.008586779236793518, 0.07866393029689789, 0.07392581552267075, 0.003100739559158683, -0.01048292126506567, 0.0037779700942337513, 0.05061307176947594, -0.0009495244012214243, 0.009559630416333675, 0.0466511994600296, -0.021017201244831085, -0.022648829966783524, -0.019230138510465622, -0.03129078075289726, -0.008431753143668175, -0.07651069015264511, 0.03675050288438797, 0.04913180321455002, 0.018518172204494476, -0.05249740183353424, -0.029580768197774887, -0.04038163647055626, 0.04089711979031563, 0.00966392271220684, 0.05626978352665901, -0.04484120011329651, 0.003728823736310005, 0.004295076243579388, 0.02209741622209549, 0.06413853168487549, -0.009358678944408894, -0.033592190593481064, 0.025504421442747116, -0.016321569681167603, 0.02669282630085945, 0.014968439005315304, -0.007111538201570511, -0.004736605565994978, 0.01719805598258972, 0.04094180092215538, -0.014857638627290726, -0.05203835666179657, -0.005512659437954426, 0.02721114084124565, 0.024691203609108925, -0.054298724979162216, 0.062168195843696594, -0.04562472924590111, -0.0345693975687027, -0.009919350035488605, -0.09631771594285965, -0.06532049924135208, -0.07799801975488663, 0.08472499996423721, 0.06462893635034561, 0.08060944825410843, 0.041191983968019485, 0.019225232303142548, 0.02718692272901535, -0.02330762706696987, 0.005300549790263176, 0.040324725210666656, -0.0570094995200634, 0.005847390275448561, 0.003058715257793665, -0.0267876535654068, -0.02611367590725422, -0.03524744510650635, -0.009991420432925224, -0.022166546434164047, 0.0062778727151453495, -0.04666517674922943, -0.022689666599035263, 0.09305115044116974, -0.04704613238573074, 0.003569960594177246, -0.015502669848501682, -0.004633724223822355, 0.039144158363342285, 0.02297893725335598, -0.018796194344758987, 0.011089293286204338, 0.009498601779341698, 0.04388470575213432, -0.028100764378905296, -0.019174352288246155, 0.035700999200344086, 0.0060119181871414185, 0.04340851679444313, -0.10413199663162231, -0.07037211209535599, 0.0031232559122145176, 0.04149014502763748, 0.058354299515485764, 0.01451481506228447, 0.09903538972139359, -0.01723940297961235, -0.05028771236538887, -0.02479631081223488, 0.0513150617480278, -0.03437747433781624, -0.013914179988205433, -0.03379006311297417, -0.024636663496494293, -0.009098505601286888, -0.03438354656100273, 0.007871472276747227, -0.012362316250801086, -0.025200381875038147, -0.027998507022857666, 0.029145659878849983, -0.02113228291273117, -0.0597129687666893, 0.05017911270260811, -0.01641188934445381, -0.024680696427822113, 0.018885379657149315, -0.022522350773215294, -0.04401784390211105, 0.054939769208431244, 0.007879586890339851, 0.04591637849807739, -0.0008149431669153273, 0.0022159225773066282, -0.04133983701467514, -0.03432945907115936, 0.0051023815758526325, -0.03818145766854286, -0.0068346126936376095, -0.024760780856013298, -0.021073253825306892, -0.014896765351295471, -0.017936503514647484, 0.026325976476073265, 0.015808729454874992, 0.010769209824502468, -0.011911699548363686, -0.039531808346509933, 0.0040248362347483635, 0.03507043421268463, -0.021942472085356712, -0.012827140279114246, 0.04659871384501457, 0.009847111999988556, 0.006236896384507418, -0.04396510124206543, 0.005441799759864807, -0.03876489773392677, 0.025884566828608513, 0.05476536601781845, -0.014735394157469273, -6.181905689191209e-33, 0.016118887811899185, 0.023931588977575302, -0.004304306581616402, -0.01174695510417223, -0.0178061593323946, 0.005254217889159918, -0.003317123744636774, -0.026923352852463722, -0.060363832861185074, 0.005778474733233452, -0.03652143478393555, 0.05243289843201637, 0.02036879025399685, 0.0030608363449573517, -0.05175052583217621, 0.008119550533592701, 0.05819401517510414, 0.009571191854774952, 0.030266590416431427, 0.021063612774014473, -0.06354397535324097, -0.048467352986335754, -0.02706131897866726, -0.006832489278167486, 0.05061126872897148, -0.06858418881893158, -0.03815243020653725, 0.03559979423880577, 0.001422830973751843, 0.01592494733631611, 0.032011572271585464, -0.02962564304471016, -0.0037148946430534124, 0.02900892309844494, -0.015808431431651115, 0.0669461190700531, -0.07822591066360474, -0.00036305608227849007, 0.013977834954857826, -0.019721219316124916, 0.043551452457904816, -0.027136648073792458, -0.029446575790643692, -0.008423925377428532, -0.01456199400126934, -0.01149155292659998, 0.04838358983397484, 0.016555262729525566, 0.05305943638086319, -0.07510340958833694, -0.009442606940865517, -0.00047588994493708014, -0.04521733149886131, 0.03376074880361557, -0.031152859330177307, -0.021949516609311104, 0.036143708974123, 0.0029147386085242033, -0.048108525574207306, 0.03457453474402428, -0.019920742139220238, -0.026731526479125023, 0.045466795563697815, -0.00257948343642056, 0.0035635351669043303, 0.011118005029857159, 0.03570017218589783, 0.05262141674757004, 0.02865028940141201, -0.016365254297852516, -0.06367454677820206, -0.01095615141093731, -0.05720727518200874, -0.05229836702346802, 0.024383878335356712, -0.025491300970315933, -0.022511890158057213, 0.02215738594532013, 0.04836948215961456, 0.049110542982816696, -0.007905707694590092, -0.03376099094748497, -0.030356688424944878, 0.0301834624260664, -0.003079908201470971, 0.04344158247113228, -0.014217649586498737, -0.006687390152364969, 0.022222144529223442, -0.011483016423881054, 0.011280305683612823, -0.0474126823246479, -0.061461418867111206, 0.020441420376300812, 0.10059097409248352, -0.02376594953238964, -0.005180233158171177, -0.04117967188358307, 0.018552036955952644, 0.001844016369432211, 0.024111084640026093, -0.001264672027900815, 0.008592593483626842, 0.037378642708063126, 0.027307434007525444, 0.03700963407754898, -0.01925651915371418, 0.029186956584453583, -0.058320119976997375, 0.007316510193049908, 0.022511068731546402, 0.011490529403090477, -0.022565964609384537, 0.01605388894677162, -0.005522485356777906, 0.021353166550397873, 0.021102052181959152, -0.005002031102776527, -0.02048295922577381, -0.006836418062448502, 0.05668105557560921, 0.04461248219013214, 0.0017059993697330356, 0.0022305366583168507, 0.0198074858635664, 0.005824372638016939, 0.007236398756504059, 0.022957446053624153, 0.04027533531188965, -0.017194360494613647, -0.010700167156755924, -0.023856069892644882, 3.022135501851153e-07, 0.047137800604104996, 0.0011210887460038066, 0.008594094775617123, 0.035084888339042664, -0.019107671454548836, -0.07241716980934143, 0.008874508552253246, -0.003178642364218831, 0.010626403614878654, 0.05963658168911934, 0.029910998418927193, 0.03268132731318474, -0.060410015285015106, -0.04964381456375122, -0.008943047374486923, -0.04286559671163559, -0.011444801464676857, 0.00559608917683363, -0.025459174066781998, 0.04947321489453316, 0.055695295333862305, 0.0027164386119693518, 0.047434478998184204, -0.032923001796007156, -0.01565626449882984, 0.024316763505339622, -0.05796947330236435, -0.00313779735006392, 0.06083470582962036, 0.022023985162377357, 0.04683597385883331, 0.004192353691905737, 0.02911253273487091, 0.008490915410220623, 0.05163862183690071, 0.004226570017635822, 0.015546169131994247, 0.016645630821585655, 0.011210083030164242, 0.057466909289360046, 0.05649071931838989, 0.03239777311682701, 0.031769994646310806, -0.008154893293976784, 0.05054602771997452, 0.026316944509744644, 0.059823229908943176, -0.03043978475034237, -0.0830674096941948, 0.02082117460668087, -0.008225152269005775, 0.01659165881574154, -0.017560353502631187, -0.031323596835136414, 0.01871376857161522, -0.04572124779224396, -0.04745364189147949, -0.008460444398224354, 0.032473403960466385, -0.025796905159950256, 0.003033698070794344, -0.046811897307634354, 0.005613884422928095, 0.019666189327836037, 0.0631556585431099, -0.04947609454393387, 0.019473744556307793, 3.182811207792139e-34, 0.029917139559984207, -0.023957034572958946, -0.04210872948169708, -0.029278652742505074, 0.0028141019865870476, -0.05350099131464958, 0.11413715034723282, 0.000462762953247875, -0.0033623534254729748, -0.04346488043665886, -0.015056812204420567], "655b725c-a52f-4e96-93c4-361714c23830": [0.03692666068673134, -0.028645260259509087, -0.017150122672319412, -0.008722147904336452, 0.01465258002281189, 0.021553095430135727, -0.03574700653553009, 0.019385065883398056, 0.027506520971655846, -0.015541953034698963, 0.03296609967947006, -0.033485714346170425, 0.028483595699071884, 0.05324048176407814, -0.0006089317612349987, -0.009465512819588184, 0.008304043672978878, -0.02405202016234398, 0.04021719843149185, -0.03148605674505234, -0.0008352983859367669, -0.001880656578578055, -0.047806043177843094, -0.0020941561087965965, -0.0005616036360152066, -0.012044889852404594, 0.063289575278759, 0.014760329388082027, 0.05887402594089508, 0.03394683822989464, 0.023387445136904716, -0.035329777747392654, 0.04000815376639366, -0.028746947646141052, 2.282525429109228e-06, 0.05689990520477295, 0.03648076951503754, 0.029601994901895523, 0.023015255108475685, -0.10748401284217834, -0.0063199931755661964, 0.05272131785750389, -0.016228824853897095, 0.02784946747124195, -0.02500494010746479, 0.029164958745241165, 0.06978508830070496, -0.06761284172534943, 0.03294086456298828, 0.019907601177692413, 0.010868145152926445, -0.03517283499240875, -0.002662882674485445, 0.012185013853013515, 0.07067781686782837, -0.03835396096110344, -0.019609088078141212, 0.03647158294916153, -0.0003630991850513965, 0.051921259611845016, 0.015961891040205956, -0.014917188324034214, -0.029215002432465553, 0.0013787837233394384, 0.045766979455947876, 0.04979655146598816, 0.05454237014055252, -0.0503331795334816, 0.01106276549398899, -0.039255935698747635, 0.07514987140893936, -0.013015846721827984, -0.02523726597428322, 0.07592251151800156, 0.014770744368433952, -0.004990314599126577, 0.01054101251065731, 0.040043905377388, -0.016110600903630257, -0.0028078353498131037, -0.005528802052140236, -0.00393746979534626, -0.03396094590425491, -0.06162630021572113, -0.02906923182308674, 0.02293841540813446, 0.029997568577528, -0.02926107682287693, 0.029576821252703667, -0.016176737844944, 0.056089937686920166, 0.03894687816500664, -0.025988364592194557, -0.01072591170668602, -0.0359589047729969, -0.013786912895739079, 0.01877819187939167, -0.02161567471921444, 0.020850729197263718, -0.003416042309254408, -0.019248826429247856, 0.0037652666214853525, -0.017030881717801094, -0.0072323912754654884, -0.007874788716435432, 0.05760538578033447, 0.0559365376830101, 0.005712213926017284, -0.03450932726264, -0.039036549627780914, -0.002646310720592737, -0.07194972783327103, -0.00842080544680357, 0.009533329866826534, 0.02422737143933773, 0.018222171813249588, 0.005477990955114365, 0.012035439722239971, 0.011268609203398228, -0.007103185169398785, 0.018716389313340187, 0.006659272592514753, -0.056595578789711, 0.01929706521332264, -0.04465300217270851, -0.04935980215668678, -0.003488223534077406, 0.016651049256324768, -0.012075244449079037, -0.05773932859301567, -0.007295115385204554, -0.009756011888384819, -0.017781203612685204, -0.029558533802628517, -0.008362715132534504, 0.03550349920988083, 0.008439457975327969, 0.07970462739467621, 0.05307672545313835, 0.04375776648521423, -0.030151784420013428, -0.02886267378926277, 0.01963733322918415, 0.03360290452837944, 0.012084942311048508, -0.033940497785806656, 0.03267796337604523, -0.05048752203583717, 0.008266924880445004, 0.05866985023021698, 0.05023347586393356, 0.028895286843180656, 0.009959127753973007, -0.049387071281671524, -0.0021859495900571346, 0.02575533464550972, -0.013498051092028618, 0.013379358686506748, 0.03235175833106041, 0.031223511323332787, -0.02986220270395279, 0.0026325061917304993, 0.03331245481967926, -0.008436720818281174, -0.03254887834191322, -0.03569488227367401, 0.03969057276844978, 0.05529506132006645, 0.018911482766270638, 0.019334526732563972, 0.05050940066576004, 0.008281387388706207, 0.02702266164124012, -0.011816650629043579, -0.01069504301995039, 0.03235628455877304, 0.01585794799029827, -0.02597547136247158, 0.03331990912556648, 0.04846936836838722, 0.006742375902831554, -0.04322770610451698, -0.011065619997680187, 0.028438592329621315, 0.012977426871657372, -0.005922884214669466, -0.07667282968759537, 0.05756925418972969, -0.02534932643175125, 0.037447456270456314, 0.0318852998316288, 0.013975150883197784, -0.023257697001099586, -0.029405636712908745, -0.001961673144251108, 0.03953995928168297, -0.025287719443440437, -0.052387796342372894, -0.02918841689825058, -0.007323515135794878, -0.028992893174290657, -0.05367959290742874, -0.07785351574420929, 0.0027153503615409136, 0.058646053075790405, -0.046358052641153336, -0.0169169120490551, -0.01805955357849598, -0.05847889930009842, 0.11548774689435959, 0.06762668490409851, -0.03989291936159134, -0.021039016544818878, -0.010949427261948586, -0.03811783343553543, 0.008643933571875095, -0.027248408645391464, -0.028323592618107796, -0.0131758451461792, -0.04098302125930786, -0.007891210727393627, -0.060772109776735306, -0.015532078221440315, 0.0033458881080150604, -0.0218597911298275, 0.01475006528198719, 0.008202522993087769, 0.01361903827637434, 0.02514379657804966, 0.02153140679001808, -0.02645326592028141, 0.006325535010546446, -0.007985345087945461, 0.011706922203302383, 0.06546839326620102, -0.032628580927848816, -0.0394318662583828, 0.004289405420422554, 0.018744464963674545, -0.09360560029745102, -0.004929191432893276, 0.07160700112581253, -0.009377678856253624, 0.028264304623007774, 0.011679011397063732, -0.02288360521197319, -0.02858804725110531, 0.025698905810713768, -0.035833876579999924, -0.00022723684378433973, 0.0025478440802544355, 0.010318590328097343, 0.02557452768087387, 0.06014568731188774, -0.05148516222834587, 0.05572612211108208, -0.15831716358661652, 0.0021453900262713432, -0.08502036333084106, 0.052444830536842346, -0.0730014517903328, -0.0016222863923758268, 0.028944600373506546, 0.019351094961166382, -0.008963382802903652, 0.015687862411141396, -0.0058805858716368675, 0.011324765160679817, 0.010226930491626263, 0.03147382289171219, 0.03810398280620575, 0.008710176683962345, -0.0011427628342062235, -0.002215901855379343, -0.016087371855974197, -0.05677059292793274, -0.006236564368009567, -0.0005105856107547879, -0.041577886790037155, 0.027586758136749268, 0.011408823542296886, -0.0019771510269492865, 0.007635288871824741, -0.009267544373869896, 7.01443714206107e-05, -0.034825000911951065, -0.000735025794710964, -0.05227399617433548, 0.07310899347066879, -0.007309345994144678, -0.026759060099720955, 0.026040133088827133, -0.03485007584095001, -0.04470742121338844, -0.021952806040644646, 0.010544059798121452, 0.007265759631991386, -0.005778564140200615, -0.01989462412893772, 0.036142416298389435, -0.016960129141807556, 0.025974581018090248, -0.010325971059501171, 0.02048759162425995, 0.03865978866815567, 0.043732862919569016, -0.011005701497197151, -0.019718263298273087, -0.05022710934281349, -0.04837610945105553, 0.007220401894301176, 0.019545873627066612, -0.0052123055793344975, 0.03176436945796013, 0.004037009552121162, -0.017329296097159386, -0.09656873345375061, 0.0075247022323310375, -0.022887960076332092, 0.02176218293607235, -0.04740210250020027, -0.06953589618206024, -0.005416996777057648, -0.028204957023262978, -0.015511609613895416, -0.10176201909780502, -0.021634548902511597, 0.0002446604485157877, 0.08602024614810944, -0.00785756204277277, 0.030766863375902176, -0.040468666702508926, -0.001391231082379818, -0.05434028059244156, 0.012286900542676449, -0.04792509600520134, -0.027625015005469322, -0.06272410601377487, -0.018531344830989838, 0.005286643747240305, -0.04373559728264809, 0.012924712151288986, -0.05563729256391525, 0.026118606328964233, -0.00203625182621181, -0.00682722358033061, -0.044875774532556534, -0.03785577043890953, -0.02121281623840332, 0.022592786699533463, 0.0565209798514843, 0.04325411841273308, 0.02685805968940258, 0.022220565006136894, 0.0035204023588448763, -0.0640096515417099, 0.020814234390854836, 0.028247997164726257, 0.00902178417891264, 0.004029509611427784, 0.02708587609231472, -0.022947877645492554, -0.04932987317442894, -0.04319195821881294, 0.013581606559455395, -0.03496197611093521, -0.00135245849378407, -0.03167560324072838, -0.005271201487630606, 0.029547302052378654, -0.05822787061333656, -0.010204304940998554, -0.03648936003446579, -0.014352410100400448, -0.007811785209923983, -0.02797253429889679, -0.035771049559116364, 0.04196462407708168, 0.03772125020623207, 0.022645283490419388, 0.04678238928318024, -0.0628938376903534, 0.06617339700460434, 0.007990649901330471, 0.04728396609425545, -0.016613593325018883, 0.027344919741153717, -0.035778824239969254, 0.02138148806989193, 0.04810342565178871, -0.002587591763585806, -0.05324118584394455, -0.04642993211746216, 0.01147888321429491, 0.00419284263625741, 0.07433483004570007, 0.007438318803906441, -0.0013105507241562009, -0.01662256568670273, 0.019468015059828758, 0.000992836314253509, -0.07003869861364365, -0.017483428120613098, 0.034298937767744064, 0.014502840116620064, 0.04889371246099472, 0.03457506373524666, 0.01581556349992752, -0.021166455000638962, 0.020596826449036598, 0.07800378650426865, -0.0028024602215737104, -0.020655173808336258, 0.034523606300354004, -0.031185073778033257, -0.029902543872594833, -0.023935915902256966, -0.04928950220346451, -0.017472166568040848, -0.05780966579914093, 0.028319956734776497, 0.03505632281303406, 0.03573031723499298, -0.04470618814229965, -0.037962958216667175, -0.01970120519399643, 0.062204524874687195, -0.005839626770466566, 0.07067324221134186, -0.056483954191207886, 0.0010381444590166211, 0.011089091189205647, -0.0037860614247620106, 0.05749664083123207, -0.013263448141515255, -0.06912140548229218, 0.019585341215133667, 0.017556212842464447, 0.03198891878128052, 0.016592251136898994, 0.010949257761240005, 0.025434691458940506, 0.012306827120482922, 0.03447933867573738, 0.018152274191379547, -0.0903492122888565, -0.014037088491022587, 0.014977756887674332, 0.009395129047334194, -0.046906791627407074, 0.044256605207920074, -0.032285839319229126, -0.020539531484246254, -0.0043443599715828896, -0.08351848274469376, -0.07997044175863266, -0.14043337106704712, 0.07897233217954636, 0.029801705852150917, 0.06871139258146286, 0.058702025562524796, 0.026611553505063057, 0.021945398300886154, -0.01955816149711609, -0.016226451843976974, 0.01597330905497074, 0.0169373732060194, 0.005482321139425039, -0.001221796264871955, -0.017752960324287415, -0.024360451847314835, -0.04326435178518295, -0.024257812649011612, -0.0336412750184536, 0.009502561762928963, -0.04159145429730415, -0.003911314066499472, 0.08034490048885345, -0.041839033365249634, 0.009134055115282536, -0.003479498904198408, -0.00647952314466238, 0.03221557289361954, 0.023107197135686874, -0.00959345605224371, 0.032713260501623154, 0.00473193172365427, 0.028984693810343742, -0.047095365822315216, -0.04410100355744362, 0.04246080666780472, -0.007583188824355602, 0.044211119413375854, -0.06135917454957962, -0.016314983367919922, 0.00918502639979124, 0.04955029487609863, 0.05325494706630707, 0.03800272196531296, 0.10936832427978516, -0.009832357987761497, -0.039252083748579025, -0.009794848039746284, 0.040148597210645676, -0.020470747724175453, 0.0029577421955764294, -0.027371611446142197, -0.027555182576179504, -0.020459797233343124, -0.05122531205415726, -0.002042786916717887, -0.034099604934453964, -0.024657493457198143, -0.05129087716341019, 0.048000168055295944, 0.0006854775710962713, -0.00560531672090292, 0.04217330366373062, -0.00321822427213192, -0.020847048610448837, 0.026162633672356606, -0.010749652981758118, -0.04835394769906998, 0.0688726156949997, 0.0174684077501297, 0.0375826321542263, -0.020888643339276314, 0.009964731521904469, -0.006170723121613264, 0.010628209449350834, 0.01163188274949789, -0.012076107785105705, -0.0076963831670582294, -0.020022114738821983, 0.002981903264299035, -0.013982720673084259, -0.004711907356977463, 0.03748593106865883, 0.0066947974264621735, 0.031357672065496445, -0.0180266872048378, -0.03515728935599327, -0.025655044242739677, 0.043005529791116714, -0.024977724999189377, -0.03968656063079834, 0.02970709837973118, 0.0052663604728877544, 0.026214266195893288, -0.040192462503910065, 0.0011253292905166745, -0.04254603013396263, 0.03085232712328434, 0.059305232018232346, 0.020743655040860176, -6.298860764942303e-33, 0.005843107122927904, 0.03594342991709709, 0.007785199210047722, 0.02523135207593441, -0.0036076968535780907, 0.008079111576080322, 0.00768761383369565, -0.04955635964870453, -0.04316014423966408, 0.003327195765450597, -0.011061010882258415, 0.04637957364320755, 0.008182566612958908, 0.011727741919457912, -0.03665100038051605, 0.013931897468864918, 0.031164903193712234, 0.015724247321486473, 0.04724074900150299, -0.013712615706026554, -0.061951786279678345, -0.04292668029665947, -0.03014283813536167, 0.009584063664078712, 0.0289712306112051, -0.07739624381065369, -0.0073219542391598225, 0.03693264350295067, 0.0015497365966439247, 0.03212938457727432, 0.02874835766851902, -0.0386340357363224, -0.01144279446452856, 0.01901763305068016, -0.013327821157872677, 0.0889965295791626, -0.08624181151390076, 0.00035229595960117877, 0.018562346696853638, -0.005358309950679541, 0.04279232770204544, -0.04424818605184555, -0.04062637314200401, 0.005366921424865723, -0.004852559883147478, -0.015658680349588394, 0.03445087745785713, 0.022355716675519943, 0.06595209985971451, -0.03963053598999977, -0.03181831166148186, -0.004126007668673992, -0.04231284558773041, 0.04410041123628616, -0.02306058257818222, -0.04295509308576584, 0.0516117587685585, -0.052079420536756516, -0.05068723484873772, 0.013629329390823841, -0.059986412525177, 0.03285568580031395, 0.04833035171031952, -0.0027844468131661415, -0.016316670924425125, 0.015191243030130863, 0.019399510696530342, 0.0734562948346138, 0.040141478180885315, -0.008838032372295856, -0.06924399733543396, 0.0020055603235960007, -0.039662349969148636, -0.07160162925720215, 0.03459957242012024, 0.007859339937567711, -0.06378448754549026, 0.025330999866127968, 0.07043595612049103, 0.07345262169837952, -0.05369960889220238, -0.018772495910525322, -0.001353367231786251, 0.022757088765501976, -0.008744264021515846, 0.03804628178477287, -0.027777675539255142, -0.026049192994832993, 0.003913706634193659, -0.0260541383177042, -0.007103008683770895, -0.06041882932186127, -0.04450897499918938, -0.0037480327300727367, 0.06377413123846054, -0.05633696913719177, 0.01624896563589573, -0.03989193215966225, 0.01846987195312977, 0.022359810769557953, 0.017933469265699387, -0.00804891251027584, 0.03638375550508499, 0.02938208542764187, 0.03573591634631157, 0.066191665828228, -0.03014676459133625, 0.023327572271227837, -0.03229830414056778, 0.004928735550493002, 0.006985926069319248, -0.013776448555290699, -0.02111203782260418, 0.03043746016919613, 0.013227257877588272, -0.005775093100965023, 0.03215787932276726, -0.023032663390040398, 0.0037145623937249184, 0.016444943845272064, 0.03152386099100113, 0.04169179126620293, -0.003989725839346647, -0.010419978760182858, 0.03340233489871025, 0.010396869853138924, -0.011633850634098053, 0.02075628563761711, -0.004225978162139654, -0.028972461819648743, -0.0026360489428043365, -0.01414976455271244, 2.997058459186519e-07, 0.034050434827804565, 0.016735495999455452, -0.0028867044020444155, 0.0019303499720990658, -0.007173884194344282, -0.0753941684961319, -0.008905741386115551, -0.01517106406390667, 0.04016898572444916, 0.06043034419417381, 0.02062980644404888, 0.03756966069340706, -0.037983790040016174, -0.020046252757310867, -0.012787975370883942, -0.060095544904470444, -0.035073474049568176, 0.007907133549451828, -0.021919814869761467, 0.0557786300778389, 0.06925326585769653, 0.025451282039284706, 0.01377074234187603, -0.034652672708034515, -0.009946925565600395, 0.007509501650929451, -0.04108498990535736, 0.02707645855844021, 0.058177586644887924, 0.03205808997154236, 0.05954834073781967, -0.004507400095462799, 0.023196587339043617, 0.013060787692666054, 0.04481825977563858, -0.001240998157300055, 0.012042900547385216, 0.01138533279299736, 0.003952024970203638, 0.062147993594408035, 0.011987153440713882, 0.029248185455799103, 0.031695324927568436, 0.009795526042580605, 0.06951820850372314, 0.019440246745944023, 0.018078796565532684, -0.02989914081990719, -0.10261247307062149, 0.004434228874742985, 0.011747388169169426, 0.019347410649061203, -0.05954701080918312, -0.060361895710229874, 0.028368258848786354, -0.009119969792664051, -0.04522658511996269, -0.003652143059298396, 0.026676710695028305, -0.012892227619886398, -0.01578877680003643, -0.05839516222476959, 0.015157458372414112, 0.022501520812511444, 0.03603248670697212, -0.02016170136630535, -0.013983772136271, 3.2051343506094832e-34, 0.04511518031358719, -0.014024351723492146, -0.049813106656074524, -0.024724822491407394, -0.004189669154584408, -0.0629347413778305, 0.07130467146635056, -0.007639225572347641, 0.0001841194462031126, -0.021080637350678444, -0.02459944784641266], "9263bd46-63d4-4010-9ef1-ebeb7c96e88f": [0.0427716001868248, -0.037913594394922256, -0.017188094556331635, 0.024148747324943542, 0.003149649826809764, 0.02578202448785305, -0.06095471605658531, 0.012582631781697273, 0.010686819441616535, -0.01726214960217476, 0.02902662567794323, -0.03775700181722641, 0.012099790386855602, 0.04361842945218086, -0.0031806572806090117, 0.0006186977261677384, 0.021527742967009544, -0.039113759994506836, 0.008756713941693306, -0.017543315887451172, -0.015926450490951538, 0.011151472106575966, -0.05147313326597214, 0.018933013081550598, -0.013589056208729744, -0.02038586139678955, 0.04823184013366699, 0.021033549681305885, 0.05155685916543007, 0.0563538558781147, 0.0060751233249902725, -0.030148781836032867, 0.007052841130644083, -0.023791983723640442, 2.194189164583804e-06, 0.0331604927778244, -0.010762207210063934, 0.00907049048691988, 0.023153290152549744, -0.09873005747795105, 0.005084006115794182, 0.05625957250595093, -0.02101447619497776, 0.03797917068004608, -0.05083063617348671, 0.02085542306303978, 0.06750296801328659, -0.09270557761192322, 0.02605537138879299, 0.04342847317457199, 0.020121010020375252, 0.017101597040891647, 0.014283465221524239, 0.00589104276150465, 0.06385841965675354, -0.07399175316095352, -0.023320533335208893, -0.009657856076955795, 0.013791993260383606, 0.03584732115268707, 0.005246646236628294, -0.005157826002687216, -0.006658513564616442, -0.031215382739901543, 0.05441327020525932, 0.025618089362978935, 0.010821757838129997, -0.01629144884645939, -0.0133535610511899, -0.04750153794884682, 0.09068841487169266, 0.011378820985555649, -0.022882986813783646, 0.09211628139019012, 0.000160404117195867, 0.03849809989333153, 0.02151445671916008, 0.02096451073884964, -0.03976297751069069, -0.010849088430404663, -0.008660150691866875, -0.018361125141382217, -0.031785622239112854, -0.040899042040109634, 0.004951692186295986, 0.0592799074947834, 0.009108850732445717, -0.0004003547364845872, 0.015247401781380177, 0.003161635482683778, 0.044433239847421646, 0.04317466914653778, -0.029294481500983238, 0.010438613593578339, -0.031582582741975784, -0.008691548369824886, 0.022922182455658913, -0.007686096243560314, 0.014559443108737469, 0.025007108226418495, -0.03215111419558525, 0.014239884912967682, -0.003024832345545292, 0.021793154999613762, 0.004542323760688305, 0.0564071387052536, 0.053442638367414474, -0.025101840496063232, -0.05554407835006714, -0.061945971101522446, -0.05527210608124733, -0.033139824867248535, -0.04326121509075165, 0.025184612721204758, 0.029146531596779823, 0.020549248903989792, -0.01177973486483097, 0.03029746003448963, 0.018765226006507874, 0.027384070679545403, 0.007634761743247509, -0.03177886828780174, -0.04233892261981964, -0.0017725323559716344, -0.07384117692708969, -0.04942813515663147, 0.021060612052679062, -0.013913036324083805, -0.0034720858093351126, -0.07534808665513992, 0.00924068596214056, -0.005738942418247461, -0.04799110069870949, -0.04776185005903244, 0.0073975794948637486, 0.03597215190529823, 0.011280594393610954, 0.04662884399294853, 0.012087883427739143, 0.03577215224504471, -0.026910191401839256, -0.04185916483402252, 0.03800506517291069, -0.0035956536885350943, -0.02545650117099285, -0.019962143152952194, 0.04016140103340149, -0.08077379316091537, 0.006187292747199535, 0.05667439103126526, 0.0439373217523098, 0.011220911517739296, -0.02436826191842556, -0.03751615434885025, -0.030298665165901184, 0.025462687015533447, -0.030122414231300354, 0.025426607578992844, 0.014807487837970257, 0.0433981791138649, -0.016035940498113632, -0.0008150064968504012, 0.024980543181300163, -0.0072509488090872765, -0.04247128963470459, -0.010390769690275192, 0.03003833070397377, 0.03910831734538078, 0.04341229423880577, -0.00286480993963778, 0.05539635568857193, 0.032270535826683044, 0.02860676497220993, -0.002738184528425336, -0.004155803006142378, 0.03643999621272087, 0.03041869029402733, 0.03804653882980347, 0.043550219386816025, 0.026280105113983154, 0.02636110410094261, -0.04686913639307022, -0.002704996382817626, 0.048899102956056595, 0.010657706297934055, -0.0012136525474488735, -0.047153349965810776, 0.10694278031587601, -0.02801184356212616, 0.011357730254530907, 0.033334434032440186, 0.01153371762484312, -0.019744087010622025, -0.006516333669424057, 0.013394519686698914, 0.03817696496844292, -0.03899949789047241, -0.0469653345644474, -0.021498138085007668, -0.02189643122255802, -0.022485628724098206, -0.05197935551404953, -0.03152947127819061, 0.009887133724987507, 0.052052874118089676, -0.04654046893119812, 0.01112717017531395, -0.03970351070165634, -0.03802109882235527, 0.10062374174594879, 0.13449911773204803, -0.019071752205491066, -0.034182023257017136, 0.005867587402462959, -0.03298913687467575, 0.042273618280887604, -0.023687219247221947, 0.0006937822909094393, -0.013167553581297398, -0.02381325699388981, -0.02576727606356144, -0.040621068328619, -0.005359102040529251, 0.00933737400919199, -0.018168289214372635, -0.009027686901390553, -0.0007344819605350494, -0.0009815359953790903, 0.02304895594716072, 0.03916356340050697, 0.004114827141165733, 0.0034624035470187664, -0.004230327904224396, -0.0030280014034360647, 0.043023813515901566, -0.015035578049719334, -0.02349627949297428, 0.02549394965171814, 0.035341281443834305, -0.07716201990842819, -0.037968289107084274, 0.04666682332754135, -0.0028084865771234035, 0.03050215169787407, 0.03080800548195839, -0.013130860403180122, 0.021779706701636314, 0.0018165967194363475, -0.030204463750123978, 0.0018061944283545017, -0.014594604261219501, 0.02419373020529747, 0.02979787439107895, 0.0790485292673111, -0.031610410660505295, 0.04893485829234123, -0.17636770009994507, 0.024531010538339615, -0.07989507913589478, 0.01003820076584816, -0.06453307718038559, 0.0032729015219956636, 0.0244381632655859, 0.03106454573571682, 0.0008125164313241839, -0.016337541863322258, 0.01374194398522377, 0.005574238020926714, -0.0126662477850914, 0.014995047822594643, 0.038186218589544296, -0.009687570855021477, -0.004245808348059654, -0.014524181373417377, -0.022007234394550323, -0.04926537722349167, 0.008555525913834572, -0.015288903377950191, -0.04396229609847069, 0.03075072355568409, 0.005874748807400465, -0.01784091629087925, 0.005665243603289127, 0.011749046854674816, -0.005099432542920113, 8.819314825814217e-05, 0.05363747477531433, -0.030683761462569237, 0.02802376262843609, 0.01803554967045784, -0.003820663783699274, -0.016481060534715652, -0.007621129509061575, -0.061285920441150665, -0.026721427217125893, 0.01642814837396145, 0.021095113828778267, -0.004424935206770897, -0.02395348623394966, -0.008069673553109169, -0.016339030116796494, 0.00792657770216465, 0.026363207027316093, 0.019544150680303574, 0.02509436383843422, 0.0007623591227456927, -0.008590277284383774, -0.002609877148643136, -0.016566874459385872, -0.03253532573580742, -0.021900612860918045, 0.0003245010448154062, -0.009168621152639389, 0.01937284879386425, -0.0022375292610377073, 0.006546845193952322, -0.09079432487487793, -0.01050539780408144, 0.004858134314417839, 0.046107612550258636, -0.05241183936595917, -0.052262984216213226, 5.703540227841586e-05, -0.053924769163131714, -0.02254941686987877, -0.1037093922495842, -0.0286817979067564, -0.028436997905373573, 0.07987194508314133, -0.002893120050430298, 0.03044453263282776, -0.02396782673895359, 0.01564236730337143, -0.02403908595442772, -0.001027291058562696, -0.019966192543506622, -0.032537929713726044, -0.0390922948718071, -0.013621607795357704, 0.03762127831578255, -0.03569674491882324, 0.015225755982100964, -0.06404653936624527, 0.04705046862363815, 0.00833158940076828, -0.005917245522141457, -0.023276666179299355, -0.03928748518228531, -0.025216437876224518, 0.018875518813729286, 0.07061327993869781, 0.026391154155135155, 0.03920053318142891, -0.014672569930553436, 0.013049483299255371, -0.06450488418340683, 0.0081184022128582, 0.025743404403328896, 0.016219018027186394, -0.010588649660348892, 0.008766649290919304, 0.007780561689287424, -0.0013756854459643364, -0.03002932481467724, -0.022042805328965187, -0.01654539816081524, 0.023019826039671898, -0.036031078547239304, -0.02387273497879505, 0.05394754186272621, -0.01637064851820469, -0.01987767033278942, -0.04390786215662956, -0.02483014203608036, -0.0033005881123244762, -0.03415818139910698, -0.029499175027012825, 0.026324467733502388, 0.02115347608923912, 0.025318555533885956, 0.07504750043153763, -0.06962363421916962, 0.06802111119031906, -0.009687969461083412, 0.027965808287262917, -0.02291688323020935, 0.011820310726761818, -0.04307239130139351, 0.021693535149097443, 0.06416228413581848, -0.0007218121900223196, -0.0684506967663765, -0.08731884509325027, -0.002395906485617161, 0.009320186451077461, 0.024965105578303337, 0.04084652662277222, -0.0002149102947441861, -0.031160686165094376, 0.013857505284249783, 0.015805015340447426, -0.09398065507411957, -0.03242867439985275, 0.028390903025865555, -0.0032240054570138454, 0.06272510439157486, 0.05608614534139633, 0.018049484118819237, -0.012031118385493755, -0.018921982496976852, 0.06323861330747604, 0.008715883828699589, -0.002674323506653309, 0.024001650512218475, 0.026448559015989304, -0.031540971249341965, -0.022584689781069756, -0.01604514941573143, -0.013068128377199173, -0.0876203328371048, 0.024197764694690704, 0.03112994320690632, 0.058023352175951004, -0.05027817189693451, 0.0036515863612294197, -0.007999260909855366, 0.020966293290257454, 0.010791231878101826, 0.07074078172445297, -0.028589293360710144, -0.0183402132242918, 0.028018400073051453, -0.021752668544650078, 0.05899534747004509, -0.04914584755897522, -0.0794643685221672, 0.011137863621115685, 0.026329930871725082, 0.02693859115242958, -0.004569865297526121, -0.005219341721385717, 0.07243654876947403, 0.010372805409133434, 0.019596567377448082, 0.03598087653517723, -0.05157468095421791, 0.0037699874956160784, 0.010345684364438057, 0.028650939464569092, -0.06787435710430145, 0.03962783142924309, -0.022295985370874405, -0.05519071966409683, -0.01391680259257555, -0.06531064212322235, -0.05476302653551102, -0.12143979221582413, 0.0530802384018898, 0.04831470549106598, 0.06216898187994957, 0.043328866362571716, 0.031371232122182846, 0.0016894107684493065, -0.02575129270553589, -0.0041822027415037155, 0.0039015370421111584, -0.04385581240057945, -0.01767897419631481, -0.007416661828756332, -0.016719738021492958, 0.009436204098165035, -0.0505542978644371, -0.02472621761262417, -0.02726907469332218, 0.003944695927202702, -0.024685492739081383, -0.017731139436364174, 0.08515698462724686, -0.044146399945020676, 0.03575216978788376, 0.032476913183927536, -0.021446624770760536, 0.02401910535991192, 0.032510142773389816, -0.006341259460896254, 0.01497061736881733, 0.03832818195223808, 0.028809454292058945, -0.042612601071596146, -0.05534007027745247, 0.039212826639413834, -0.04355879873037338, 0.0400937981903553, -0.05442162975668907, -0.04087957739830017, 0.024758029729127884, 0.017675824463367462, 0.0976657122373581, 0.02888745255768299, 0.11026237905025482, 0.004750485066324472, -0.041085608303546906, -0.006335648242384195, 0.02338731475174427, -0.040045659989118576, 0.019782524555921555, -0.008959694765508175, -0.0027647714596241713, -0.012398391030728817, -0.03768153116106987, 0.02394094318151474, -0.02977139502763748, -0.02875708043575287, -0.06800543516874313, 0.06233341991901398, 0.010592896491289139, 0.014226625673472881, 0.04122835770249367, -0.01306941919028759, -0.04804513603448868, 0.03975643217563629, -0.012160214595496655, -0.048556454479694366, 0.04936611279845238, 0.012166615575551987, 0.05861616134643555, 0.00010357783321524039, 0.012521045282483101, -0.026760520413517952, 0.04316924139857292, -0.0317140556871891, -0.01875246874988079, -0.004938204772770405, -0.006343544460833073, -0.01128352340310812, -0.0020808447152376175, 0.015226544812321663, 0.0235159769654274, -0.002171602798625827, 0.04433766007423401, -0.03175218030810356, -0.0245201475918293, 0.016027644276618958, 0.03914828225970268, -0.028332430869340897, -0.022002387791872025, 0.025783056393265724, 0.03917280584573746, 0.03245343640446663, -0.02989908494055271, -0.019350886344909668, -0.033729154616594315, 0.007743027526885271, 0.06010175868868828, 0.026175569742918015, -5.964541722702798e-33, 0.005471086595207453, -0.0004905947134830058, 0.03799275681376457, 0.027671292424201965, 0.013474139384925365, -0.022303834557533264, 0.00890970230102539, -0.03597636520862579, -0.06747465580701828, -0.00211324542760849, -0.014199412427842617, 0.02619638293981552, 0.005765716079622507, 0.02058584801852703, -0.03871544823050499, -0.011400151997804642, 0.04103761538863182, 0.026722952723503113, 0.038931120187044144, -0.01413448341190815, -0.07862043380737305, -0.03600865975022316, -0.012329183518886566, -0.018694188445806503, 0.03333841264247894, -0.05644235387444496, -0.015196708962321281, 0.03722618892788887, 0.004108268767595291, 0.03729190677404404, 0.03174039348959923, -0.004683599807322025, -0.0076743015088140965, -0.034999262541532516, -0.0011647953651845455, 0.05456969141960144, -0.07889258861541748, -0.004324794746935368, 0.017553677782416344, 0.004076030571013689, 0.030737200751900673, -0.04381084442138672, 0.003481759689748287, 0.003556101117283106, 0.008322677575051785, -0.016146261245012283, 0.048897016793489456, -0.020216353237628937, 0.07804440706968307, -0.009038771502673626, -0.016580447554588318, 0.0044030239805579185, -0.042964886873960495, 0.06100687384605408, 0.0007765127811580896, -0.010554084554314613, 0.009073581546545029, -0.04958207532763481, -0.06717817485332489, 0.0052964333444833755, -0.0960320308804512, 0.04925793036818504, 0.050564102828502655, -0.016964895650744438, -0.013608713634312153, -0.006610375363379717, 0.003281111130490899, 0.07691621780395508, 0.028808407485485077, 0.0002086646418320015, -0.040530066937208176, 0.007040019147098064, -0.04654755815863609, -0.02699390985071659, 0.002210021484643221, 0.0215544942766428, -0.04223188757896423, 0.02132841944694519, 0.10458911955356598, 0.06337113678455353, -0.032101333141326904, -0.0209068413823843, -0.027965454384684563, 0.007538365665823221, -0.010123571380972862, 0.023071713745594025, -0.023903178051114082, -0.04411165788769722, 0.00790824182331562, -0.03074057213962078, 0.006294616032391787, -0.04699031636118889, -0.04142780229449272, 0.003047752194106579, 0.0727643221616745, -0.03728394955396652, 0.0007462993380613625, -0.05325444042682648, 0.015201750211417675, 0.0357091911137104, -0.030306749045848846, 0.01751627027988434, 0.03018045239150524, 0.0034997439943253994, 0.028438055887818336, 0.04581323266029358, -0.030811943113803864, 0.04131609946489334, -0.06086477264761925, 0.007407860830426216, -0.005716277752071619, 0.021634751930832863, -0.0030654228758066893, 0.03906986862421036, 0.0021988246589899063, -0.00897285994142294, 0.025169946253299713, -0.036250948905944824, -0.016607342287898064, -0.02431119792163372, 0.00026391760911792517, 0.02316276729106903, -0.031017731875181198, -0.028502417728304863, -0.013324140571057796, -0.017702654004096985, 0.022634968161582947, 0.05483844503760338, 0.03803538158535957, -0.003011903492733836, -0.015606654807925224, -0.01825433410704136, 2.915060690611426e-07, 0.05576853081583977, 0.011919653043150902, 0.000495277694426477, -0.001962862676009536, -0.03233063966035843, -0.07108178734779358, -0.0353194996714592, -0.011073941364884377, 0.04603712260723114, 0.03583664819598198, 0.024483365938067436, 0.055075544863939285, -0.021080298349261284, -0.003926369361579418, -0.008039494976401329, -0.08506570756435394, -0.038144584745168686, -0.010547259822487831, -0.01704293116927147, 0.04721440002322197, 0.05395616963505745, 0.03536145016551018, 0.03037389926612377, -0.03205593675374985, -0.03164547681808472, -0.002957971766591072, -0.016886403784155846, -0.027290062978863716, 0.025172341614961624, 0.04821336641907692, 0.049796245992183685, -0.0168340802192688, -0.002576354658231139, 0.04059899225831032, 0.04104970023036003, -0.009747485630214214, 0.018716635182499886, 0.023317484185099602, 0.0005709611577913165, 0.050075143575668335, -0.007592745125293732, 0.03464122489094734, 0.03262220695614815, 0.02772536873817444, 0.028353435918688774, 0.03506653383374214, 0.006589159835129976, -0.03642641380429268, -0.0799885243177414, -0.00281844031997025, -0.00158757995814085, 0.04267079755663872, -0.030063236132264137, -0.04138454794883728, 0.04345834255218506, -0.01240331307053566, -0.0671134814620018, 0.016959184780716896, 0.026310425251722336, -0.004030884709209204, -0.02828194573521614, -0.07040601223707199, 0.009663533419370651, -0.006501990836113691, 0.03530691936612129, -0.028637273237109184, 0.012042143382132053, 2.9864533712706706e-34, 0.026480291038751602, -0.025524280965328217, -0.050461143255233765, -0.003345808945596218, 0.011447821743786335, -0.06191597878932953, 0.02220563404262066, -0.010739263147115707, -0.015496385283768177, -0.012252507731318474, -0.0029323347844183445], "5d83bd6f-d55e-4a3d-b92a-95d2730cec7e": [0.013076244853436947, -0.026104453951120377, -0.005088558420538902, 0.039505161345005035, -0.01487683318555355, 0.0005908400053158402, -0.04134068638086319, -0.02508883737027645, 0.012546954676508904, 0.008578217588365078, 0.0219403188675642, 0.01240291353315115, -0.02700638771057129, 0.0600406639277935, -0.029876189306378365, 0.019909530878067017, -0.014015101827681065, -0.007588730193674564, 0.04210245981812477, -0.008248727768659592, 0.015751389786601067, 0.021728865802288055, -0.0268078800290823, 0.02885482646524906, -0.035374853760004044, -0.016177715733647346, 0.04105730354785919, 0.01940944604575634, 0.06870169192552567, 0.030714474618434906, 0.0025483432691544294, -0.007021280005574226, -0.04622650519013405, -0.0019082287326455116, 2.2833860384707805e-06, 0.044182855635881424, -0.022797049954533577, -0.02816217578947544, 0.029023898765444756, -0.08188046514987946, 0.02282392419874668, 0.0678238719701767, -0.02516433596611023, 0.033733971416950226, -0.053583309054374695, 0.05357092246413231, 0.047611087560653687, -0.03766150027513504, 0.0011714451247826219, 0.01792682334780693, 0.012198461219668388, 0.022111408412456512, -0.026843443512916565, -0.01070382446050644, 0.07501302659511566, -0.027786491438746452, -0.044456470757722855, -0.023786120116710663, -0.013532769866287708, 0.027661222964525223, 0.02377319149672985, -0.0017418472561985254, -0.026956381276249886, -0.0037059453316032887, 0.06546387076377869, 0.021776501089334488, -0.018364787101745605, -0.05403303727507591, -0.007016022223979235, -0.010325061157345772, 0.07786180078983307, 0.021738974377512932, 0.007497402839362621, 0.042964182794094086, 0.030454715713858604, -0.0023322985507547855, 0.06555367261171341, 0.05068531632423401, -0.03304670751094818, 0.02206515334546566, 0.01479362789541483, 0.02427331916987896, -0.04087631031870842, 0.0022397476714104414, -0.06149831414222717, 0.007035158108919859, -0.006687469780445099, 0.030998999252915382, 0.03669705241918564, 0.010452823713421822, 0.06668254733085632, 0.040750835090875626, -0.04180136322975159, -0.00047371076652780175, -0.014544560573995113, 0.00021376446238718927, -0.016499880701303482, -0.02248244546353817, 0.021274631842970848, 0.001275798655115068, -0.017721446231007576, 0.04034137353301048, -0.0020340781193226576, 0.005068636033684015, 0.005559800658375025, 0.05188601836562157, -0.056166451424360275, 0.00042686256347224116, -0.03625144064426422, -0.034092120826244354, -0.050505101680755615, -0.017222732305526733, -0.04622070863842964, 0.045003969222307205, 0.029812447726726532, -0.005655907094478607, -0.024917302653193474, 0.061725083738565445, 0.022635653614997864, -0.011994036845862865, 0.05104450508952141, 0.029396796599030495, -0.03023216687142849, -0.03370601683855057, -0.011582721024751663, -0.057455968111753464, 0.03210251405835152, -0.027719497680664062, -0.04218068718910217, -0.06428428739309311, 0.00495682330802083, -0.016594892367720604, -0.023001739755272865, -0.027211211621761322, 0.01692902110517025, 0.0262832660228014, 0.03001633659005165, -0.016282111406326294, 0.07301928848028183, 0.040905654430389404, -0.004663999658077955, 0.002359633333981037, 0.016171377152204514, 0.02094148099422455, -0.016248296946287155, -0.01205395720899105, 0.00468582846224308, -0.015624234452843666, 0.03266063705086708, 0.042292069643735886, 0.0845520868897438, 0.02914128266274929, -0.011677135713398457, -0.002956980839371681, -0.06453793495893478, 0.029405098408460617, -0.05667918547987938, 0.009095338173210621, 0.02350482903420925, 0.041044484823942184, -0.019644662737846375, 0.03311040624976158, 0.013023722916841507, -0.01440487615764141, -0.046931371092796326, -0.039451345801353455, 0.04544561728835106, 0.02284950762987137, 0.04715881496667862, -0.007167372852563858, -0.0021316399797797203, 0.03552164137363434, 0.013774946331977844, 0.03286934271454811, 0.021683327853679657, -0.016675135120749474, 0.06306933611631393, 0.029307376593351364, -0.04323958605527878, 0.03617174178361893, -0.01564147137105465, -0.05013915151357651, -0.005935934837907553, 0.06554771959781647, 0.03299770504236221, 0.039882853627204895, -0.0311747994273901, 0.08012134581804276, -0.011694981716573238, 0.032773975282907486, 0.016377761960029602, -0.005976252257823944, -0.03129219636321068, -0.01216814387589693, 0.017530936747789383, 0.027479425072669983, -0.05557166039943695, -0.08595544844865799, -0.0563780814409256, -0.03345929831266403, 0.010539048351347446, -0.06387984752655029, 0.014329545199871063, 0.006023701746016741, 0.03898978233337402, -0.053160641342401505, -0.021201085299253464, -0.04847969114780426, -0.06338870525360107, 0.06828087568283081, 0.08153978735208511, -0.024425318464636803, -0.02056688815355301, 0.013550058007240295, -0.05297967791557312, -0.019766073673963547, -0.07177409529685974, -0.029197921976447105, -0.02678394876420498, 0.022195380181074142, -0.01641087234020233, -0.03375931456685066, 0.03858697786927223, 0.04896977171301842, 0.002697509480640292, -0.006306282244622707, 0.01737220026552677, -0.00964166410267353, 0.03716661036014557, 0.06536882370710373, -0.01894146390259266, 0.01992334984242916, -0.003474639728665352, -0.01700257696211338, 0.024688439443707466, -0.02372720278799534, -0.04950952157378197, -0.0005021293181926012, 0.002315887250006199, -0.10310034453868866, -0.01928979717195034, 0.05789722129702568, -0.007405807264149189, 0.042480695992708206, 0.02083715610206127, -0.006379679776728153, 0.02749500796198845, -0.014738369733095169, -0.06057354062795639, 0.009707696735858917, 0.004727556370198727, -0.011087024584412575, 0.016396021470427513, 0.05041760578751564, -0.04095368832349777, 0.04038041830062866, -0.17277595400810242, -0.014797086827456951, -0.06418534368276596, 0.04891706630587578, 3.075942368013784e-05, 0.027273597195744514, 0.011235829442739487, 0.03962372988462448, -0.007532844319939613, -0.003951606340706348, -0.020007802173495293, -0.03698369860649109, -0.012317652814090252, 0.005309556145220995, 0.007489423733204603, -0.029971588402986526, 0.04147491604089737, -0.010794118046760559, -0.0027080096770077944, -0.023407887667417526, -0.04204245284199715, 0.050065506249666214, -0.019588589668273926, 0.013505431823432446, -0.0148493442684412, 0.015051735565066338, -0.01804206520318985, 0.027020767331123352, 0.00842542015016079, -0.028457537293434143, 0.036889247596263885, -0.04493767395615578, 0.006517386995255947, -0.02975955605506897, 0.029226211830973625, -0.026010217145085335, 0.020804787054657936, -0.0339447446167469, -0.013652218505740166, -0.02883441001176834, 0.00953610148280859, -0.013261737301945686, 0.014158500358462334, 0.006469195708632469, 0.023277075961232185, 0.005947781726717949, 0.016587646678090096, 0.002238449640572071, 0.00030514737591147423, 0.015145857818424702, 0.0008828900172375143, 0.009051390923559666, 0.004027336370199919, -0.03862730786204338, -0.025375327095389366, 0.000797618820797652, -0.03944333270192146, 0.05080914869904518, 0.010745414532721043, 0.014748022891581059, -0.07237260043621063, -0.05242478847503662, -0.004853772930800915, 0.027085548266768456, -0.037142135202884674, -0.07678483426570892, -0.021290792152285576, 0.006365722045302391, -0.033911339938640594, -0.08227561414241791, 0.020993974059820175, -0.050319213420152664, 0.10265025496482849, -0.022056661546230316, 0.020548945292830467, -0.032819900661706924, 0.037684548646211624, -0.03451748192310333, 0.0023926461581140757, -0.015784047544002533, -0.02216913364827633, -0.05303201079368591, 0.02113766223192215, 0.01565178856253624, -0.07440227270126343, 0.027630578726530075, -0.09977245330810547, 0.002307593822479248, 0.01808459870517254, -0.02417595125734806, -0.03706788271665573, 0.004436499439179897, -0.005742008797824383, 0.0027526668272912502, 0.06792505830526352, 0.00020045769633725286, 0.031347233802080154, -0.005330279935151339, 0.006514972075819969, -0.08473034203052521, -0.011287576518952847, -0.03188832476735115, 0.0003124225768260658, 0.03421345353126526, 0.04015858471393585, -0.025227488949894905, 0.0241947453469038, -0.005024519748985767, -0.03964735195040703, -0.030981460586190224, -0.00022982196242082864, -0.020592955872416496, 0.014192071743309498, 0.02814803458750248, -0.021755829453468323, 0.023958217352628708, -0.04236946254968643, -0.014162236824631691, -0.00930648110806942, -0.018671054393053055, -0.020310893654823303, 0.04601091891527176, 0.048356857150793076, 0.020191984251141548, 0.021784411743283272, 0.027469193562865257, 0.06139690428972244, -0.017094118520617485, 0.006077983416616917, -0.02440526895225048, 0.014598418027162552, -0.04978242889046669, 0.012756015174090862, 0.05126281455159187, -0.005867467261850834, -0.06695856153964996, -0.06336307525634766, 0.0037014472763985395, -0.00516451196745038, -0.004460949916392565, -0.023754829540848732, 0.006163462996482849, -0.022949477657675743, 0.015990324318408966, -0.009845791384577751, -0.018726306036114693, 0.01764526590704918, -0.05180101841688156, -0.039724234491586685, 0.022002412006258965, 0.09056489169597626, 0.03158285468816757, 0.0087928781285882, 0.00574989290907979, 0.027785763144493103, 0.010956451296806335, -0.030670085921883583, 0.03244023397564888, 0.04520759731531143, -0.020945392549037933, -0.04352717101573944, -0.0011205655755475163, -0.008829670958220959, -0.11351681500673294, 0.022661831229925156, 0.008889413438737392, 0.018311139196157455, -0.04448523744940758, 0.022659916430711746, -0.008722790516912937, 0.03679994121193886, 0.028905494138598442, 0.07246802747249603, -0.05038980394601822, -0.025351151823997498, 0.041980497539043427, 0.0057302615605294704, 0.0551488921046257, -0.03828474134206772, -0.05138809606432915, -0.023477189242839813, 0.006549892947077751, 0.0783984363079071, -0.031324535608291626, -0.026535578072071075, 0.02832440659403801, 0.025810856372117996, 0.025067588314414024, 0.006355066783726215, -0.05615874007344246, -0.002925399225205183, 0.02580232359468937, -0.015612428076565266, -0.03989896923303604, 0.009872214868664742, -0.022272387519478798, -0.06740281730890274, -0.024821801111102104, -0.08916384726762772, -0.01005090307444334, -0.07126221060752869, 0.07175945490598679, 0.03966740891337395, 0.07436823844909668, 0.04606606811285019, 0.025585215538740158, 0.015263577923178673, 0.018849611282348633, 0.042059626430273056, 0.0450403206050396, -0.06563278287649155, 0.01527025643736124, -0.001637360081076622, -0.017730647698044777, 0.025175318121910095, -0.04603863134980202, -0.0049919430166482925, 0.0014084866270422935, 0.01764873042702675, -0.031313635408878326, 0.0021633636206388474, 0.0627790316939354, -0.03298871964216232, 0.045438528060913086, -0.009162265807390213, 0.049699485301971436, -0.0024847020395100117, 0.048120710998773575, -0.012517397291958332, 0.007378960959613323, -0.01170684490352869, 0.03184059262275696, -0.03812268748879433, -0.03835350647568703, 0.06144598871469498, -0.014174032025039196, 0.0051124440506100655, -0.09162301570177078, -0.08486999571323395, -0.00995598267763853, 0.0558808334171772, 0.09304378181695938, 0.014921724796295166, 0.08039955794811249, 0.006600973661988974, -0.03469962626695633, -0.01448007207363844, 0.06799770891666412, -0.02708996646106243, -0.013747550547122955, -0.007287993561476469, -0.0458187535405159, 0.002810821635648608, -0.04439033567905426, 0.04035370796918869, 0.0043021999299526215, -0.015629732981324196, -0.08192729949951172, 0.05756663531064987, 0.0055677625350654125, -0.06539132446050644, 0.04589587822556496, -0.02399846538901329, -0.05341578274965286, 0.02903183177113533, -0.0058725071139633656, -0.02496032789349556, 0.0005235652206465602, 0.030875207856297493, 0.04145478829741478, -0.011424669064581394, -0.005482250824570656, -0.049745798110961914, 0.004308061208575964, -0.021644586697220802, -0.056599244475364685, -0.03527456149458885, -0.009749085642397404, -0.031194712966680527, -0.0014143522130325437, -0.040677592158317566, 0.002358903642743826, 0.003302421886473894, 0.03265071287751198, 0.0004884999361820519, -0.003327697981148958, 0.05726104602217674, -0.0042648594826459885, -0.018212290480732918, -0.014803568832576275, 0.039993587881326675, 0.025187496095895767, 0.009107789024710655, -0.03348814323544502, -0.0018172633135691285, -0.020920641720294952, -0.01743941940367222, 0.03548865765333176, 0.03570930287241936, -6.429386188289672e-33, 0.01648893766105175, 0.002982297446578741, 0.025118226185441017, 0.013847019523382187, 0.012666686438024044, 0.002622082829475403, 0.02457083947956562, -0.0027524412143975496, -0.04923202097415924, -0.023249678313732147, -0.028857624158263206, 0.019526124000549316, 0.006474649533629417, -0.0024908087216317654, -0.007362262345850468, -0.012983676977455616, 0.0485096350312233, -0.021137267351150513, 0.04831462353467941, -0.005968631710857153, -0.09081215411424637, -0.0291815847158432, -0.01984943449497223, -0.0033468797337263823, 0.005165087524801493, -0.0431227907538414, -0.011658500880002975, 0.05696089193224907, 0.006517714820802212, 0.03030994161963463, 0.013532651588320732, -0.017527654767036438, -0.0101429782807827, -0.015671415254473686, 0.008058239705860615, 0.1047232374548912, -0.04988643154501915, -0.019626719877123833, -0.01577005349099636, -0.03608328104019165, 0.019606836140155792, -0.06017458438873291, -0.0056639001704752445, -0.02342241257429123, -0.014683958142995834, -0.009206851944327354, 0.026450859382748604, 0.01732649654150009, 0.057663992047309875, 0.021323826164007187, -0.05015852674841881, 0.012402424588799477, -0.025687161833047867, 0.029650192707777023, 0.035740554332733154, -0.04551399499177933, 0.010151137597858906, -0.006129019893705845, -0.032437749207019806, -0.0012911036610603333, -0.12233008444309235, 0.008873404003679752, 0.027121419087052345, 0.02436073124408722, -0.027135642245411873, 0.006622552406042814, 0.02019312232732773, 0.0791020467877388, -0.006026440300047398, -0.02500331960618496, -0.06102390214800835, 0.01692856103181839, 0.016706479713320732, -0.05812113732099533, -0.025119617581367493, 0.0365871787071228, -0.024724233895540237, 0.0018445095047354698, 0.12846693396568298, 0.028038937598466873, 0.005888032726943493, 0.024577206000685692, -0.023607971146702766, 0.032172225415706635, 0.005188292358070612, -0.040520623326301575, -0.03659628704190254, 0.00961026269942522, 0.006111958064138889, 0.0026466145645827055, -0.0070498972199857235, -0.00470886891707778, -0.016343068331480026, 0.0329778753221035, 0.12035682797431946, -0.011909391731023788, -0.023374848067760468, -0.05361448973417282, 0.013861363753676414, -0.0005289213731884956, -0.03546101972460747, 0.02680302783846855, 0.021616876125335693, 0.015754232183098793, 0.011338447220623493, 0.03946025297045708, -0.040568072348833084, -0.02409178577363491, -0.06859838962554932, 0.01871589757502079, -0.005811659619212151, 0.038953669369220734, -0.02314126491546631, -0.008481672033667564, -0.006366578862071037, -0.024937013164162636, -0.005717593710869551, -0.027901992201805115, -0.003689723089337349, -0.02511361613869667, -0.008398869074881077, 0.056892987340688705, -0.029647894203662872, -0.020006781443953514, -0.010085956193506718, 0.018530750647187233, 0.030820339918136597, 0.08522094041109085, 0.039293523877859116, -0.015578748658299446, -0.03507339581847191, -0.029141506180167198, 3.2310134656654554e-07, 0.021756291389465332, 0.01386505551636219, -0.02615487016737461, 0.024996960535645485, -0.04832848906517029, -0.03151706978678703, 0.00015236115723382682, 0.03259030357003212, -0.004875784739851952, 0.014136443845927715, 0.02663302794098854, 0.03592472895979881, -0.051800962537527084, -0.03615676239132881, 0.03866782411932945, -0.0674523264169693, -0.024101069197058678, 0.011308346875011921, 0.0036164934281259775, 0.024234848096966743, 0.04278554394841194, 0.011930941604077816, 0.06802487373352051, -0.015410995110869408, -0.01669912226498127, 0.0263331588357687, -0.00568630313500762, -0.01889227330684662, 0.03338754549622536, 0.04759166017174721, 0.04957945644855499, -0.016102734953165054, -0.03156636282801628, -0.019505053758621216, 0.0735551193356514, -0.03165670856833458, 0.01922932267189026, -0.018871204927563667, 0.008824675343930721, 0.02682836353778839, 0.047989457845687866, 0.043005697429180145, 0.027544017881155014, 0.04281139746308327, 0.015116915106773376, 0.03968362882733345, 0.022311830893158913, -0.019391359761357307, 0.01134459488093853, 0.0016676955856382847, 0.02907913364470005, 0.039137326180934906, 0.047659505158662796, -0.013128797523677349, 0.032868366688489914, -0.038444072008132935, -0.06623392552137375, -0.010887867771089077, -0.000937165052164346, -0.052717193961143494, -0.006911753676831722, -0.01222593430429697, 0.01653619110584259, 0.04794184863567352, 0.024357816204428673, 0.002938562771305442, 0.03528807312250137, 3.130738644760635e-34, -0.005687606055289507, -0.05811311677098274, -0.06116968393325806, -0.008279087021946907, 0.004740332718938589, -0.038353461772203445, -0.009249188005924225, -0.0077254329808056355, -0.017812639474868774, -0.009038607589900494, 0.02372325211763382], "214b63dc-17e6-4093-9efe-b50dac8331a0": [0.035892266780138016, -0.018855968490242958, -0.03312115743756294, -0.002886528382077813, -0.02932913228869438, -0.012570210732519627, -0.05913189426064491, -0.028014421463012695, -0.000443610071670264, -0.040010444819927216, 0.051514774560928345, -0.005408348515629768, 0.01613292656838894, 0.07890645414590836, -0.00020900317758787423, 0.022407062351703644, 0.011275107972323895, -0.010473025031387806, 0.01498909667134285, -0.004763029981404543, 0.004612040240317583, 0.013017741963267326, -0.02156420424580574, -0.0050382609479129314, 0.021482814103364944, -0.03921584412455559, -0.02942153625190258, 0.040600281208753586, 0.023169739171862602, 0.005857682786881924, -0.034941818565130234, 0.018668081611394882, -0.015834564343094826, 0.003913803957402706, 2.4743619633227354e-06, -0.00457953242585063, -0.010435149073600769, 0.02191144973039627, -0.008066829293966293, -0.07876826077699661, 0.051218658685684204, 0.04293768107891083, 0.002610922558233142, 0.02796456776559353, -0.0439266562461853, 0.0032033072784543037, 0.07238997519016266, -0.031263601034879684, 0.06015465036034584, 0.03034578636288643, 0.015597456134855747, -0.017097994685173035, 0.00761817442253232, 0.04414129629731178, 0.06247357279062271, -0.008991873823106289, -0.030275914818048477, -0.01421360019594431, 0.016046710312366486, -0.029280448332428932, 0.044231753796339035, -0.0030837689992040396, -0.013786513358354568, 0.011623539961874485, 0.07840500771999359, 0.01626664400100708, -0.036248207092285156, -0.05430332571268082, -0.03402740880846977, -0.005388091318309307, 0.05439591035246849, -0.010554674081504345, -0.0018063075840473175, 0.06360874325037003, 0.02135082148015499, -0.0131981261074543, 0.03411606699228287, -0.004741787910461426, -0.02645551599562168, -0.0238475538790226, -0.03148641437292099, 0.01753334142267704, -0.05631600320339203, -0.02604864165186882, -0.0174371600151062, 0.0661284476518631, -0.016003189608454704, -0.016820207238197327, 0.032969798892736435, -0.016453783959150314, 0.12764233350753784, 0.005426959600299597, 0.021925639361143112, 0.012196365743875504, -0.033574264496564865, -0.013359752483665943, 0.04618051275610924, -0.01724652200937271, 0.01750171184539795, -0.0442311055958271, -0.009770945645868778, 0.005795529577881098, 0.02971366047859192, -0.015619484707713127, 0.03955370932817459, 0.06543589383363724, 0.0027067887131124735, -0.0349314920604229, -0.04609459638595581, -0.021177442744374275, -0.04409002140164375, -0.0186932310461998, -0.039027828723192215, 0.05551696941256523, 0.05887458473443985, 0.019196096807718277, -0.0013411485124379396, 0.021003471687436104, 0.025098571553826332, -0.006159728392958641, 0.03653988242149353, -0.007026027422398329, -0.0076000322587788105, 0.013955741189420223, -0.03660479933023453, -0.11336099356412888, 0.004157107789069414, -0.004590487573295832, -0.016130398958921432, -0.08195623010396957, 0.012017481029033661, 0.014045065268874168, -0.0237988643348217, -0.024637874215841293, -0.0015719316434115171, 0.036072805523872375, -0.0022103406954556704, 0.029086681082844734, 0.0333108976483345, 0.032433200627565384, 0.028820401057600975, -0.00595172168686986, 0.027362782508134842, -0.015583661384880543, 0.03135602921247482, -0.04386545345187187, -0.025495314970612526, 0.029848819598555565, 0.013612858951091766, 0.05680717155337334, 0.010205474682152271, 0.07157662510871887, -0.019683538004755974, 0.005203642416745424, -0.024063996970653534, 0.0059488690458238125, 0.013799707405269146, 0.03415017947554588, -0.0025114670861512423, 0.04747312143445015, 0.0019884109497070312, -0.03789367154240608, 0.05213805288076401, 0.012289050035178661, -0.013150526210665703, -0.031066058203577995, 0.06898415088653564, 0.07935542613267899, 0.022649841383099556, 0.01766815036535263, 0.02912253700196743, 0.041404761373996735, 0.0033621860202401876, 0.021206583827733994, 0.002761468756943941, 0.014454556629061699, 0.02854842133820057, 0.01949658989906311, -0.012382889166474342, 0.09303364902734756, -0.01960807293653488, -0.059263475239276886, -0.020753299817442894, 0.05192484334111214, -0.007032596971839666, -0.00992637500166893, -0.03364023193717003, 0.061731595546007156, -0.03783929720520973, 0.047691460698843, 0.004789256025105715, 0.00433293916285038, 0.007996313273906708, 0.02197840064764023, -0.020055577158927917, 0.028163230046629906, -0.07771167904138565, -0.059847619384527206, -0.04873764142394066, -0.020190386101603508, -0.04857311397790909, -0.06320030242204666, -0.02064998261630535, 0.015642672777175903, 0.06705139577388763, -0.011266670189797878, 0.03342145308852196, -0.05283499136567116, -0.031881287693977356, 0.011647221632301807, 0.06525270640850067, -0.03374269977211952, -0.03814391791820526, 0.015959039330482483, -0.029036054387688637, 0.0051276227459311485, -0.0410953015089035, -0.0410015806555748, -0.0018029999919235706, 0.010226446203887463, 0.002726936712861061, -0.0539836622774601, 0.015110142529010773, -0.016483867540955544, 0.034016795456409454, 0.02327769063413143, 0.028610162436962128, 0.00633822288364172, 0.03677015006542206, 0.06373312324285507, -0.01691647805273533, 0.026760289445519447, -0.000679012737236917, -0.0077615114860236645, -0.0018825182924047112, -0.01985485665500164, -0.01807534508407116, -0.0029739828314632177, -0.004396906588226557, -0.13950218260288239, -0.03111877851188183, 0.05003111809492111, -0.005874843802303076, 0.04741302877664566, 0.008508131839334965, -0.026685625314712524, -0.01763405278325081, -0.0035937256179749966, -0.012744972482323647, -0.0070532760582864285, 0.018642516806721687, 0.025967929512262344, 0.01380426250398159, 0.05926201865077019, -0.006062461528927088, 0.008653867989778519, -0.12295457720756531, 0.004632979165762663, -0.11369064450263977, 0.020094845443964005, -0.0011075307847931981, -0.02250351570546627, -0.01589488610625267, 0.018122948706150055, -0.002033861121162772, -0.029915932565927505, -0.029816625639796257, -0.06185559555888176, 0.014371047727763653, 0.012166223488748074, 0.052214909344911575, -0.015303164720535278, 0.00023852346930652857, 0.004292904399335384, -0.007106317672878504, -0.06109080836176872, -0.02955394983291626, 0.008843135088682175, -0.03249846026301384, 0.026028133928775787, 0.011334170587360859, -0.04908454045653343, 0.011552847921848297, -0.005182091612368822, -0.020083477720618248, 0.01798674464225769, 0.058701470494270325, -0.04232722148299217, -0.013536096550524235, 0.007874567992985249, 0.024025211110711098, -0.007311262656003237, 0.01868152618408203, -0.035566411912441254, -0.016973726451396942, 0.0019486051751300693, 0.003529204986989498, 0.016694385558366776, -0.0028236000798642635, 0.016530120745301247, 0.022665975615382195, 0.0055895536206662655, 0.06354616582393646, 0.0013279587728902698, 0.046772345900535583, 0.04640131816267967, 0.0030010235495865345, -0.057635121047496796, 0.008112533949315548, -0.042324163019657135, -0.010596316307783127, -0.019860081374645233, -0.012007204815745354, 0.07747253030538559, 0.046796515583992004, 0.02889067493379116, -0.06425779312849045, -0.017737356945872307, -0.014791769906878471, 0.055218905210494995, -0.04570965841412544, -0.05543765425682068, 0.011194593273103237, -0.020896367728710175, -0.03654694929718971, -0.07831006497144699, -0.013180769048631191, 0.003254698822274804, 0.08516469597816467, -0.011177904903888702, 0.0217327568680048, -0.03183189034461975, 0.00969024933874607, 0.0011382416123524308, -0.027679314836859703, -0.04038744419813156, -0.04115384444594383, -0.0920332595705986, -0.007584007456898689, -0.007666516583412886, -0.047165196388959885, 0.0003430063952691853, -0.0651225745677948, 0.025132520124316216, 0.01319352351129055, -0.005062022712081671, -0.022925464436411858, 0.05188049376010895, -0.02639186568558216, -0.003960537724196911, 0.04990862309932709, 0.02957952953875065, 0.0025220054667443037, 0.0061515276320278645, 0.0025133194867521524, -0.06996727734804153, 0.0003211921139154583, -0.014126772060990334, 0.0192004032433033, 0.05578519403934479, 0.05349130555987358, -0.03015366941690445, 0.04815618693828583, 0.0394914336502552, -0.027485910803079605, -0.03320472314953804, 0.03324378654360771, -0.06096599996089935, 0.009789127856492996, 0.04410592466592789, -0.036754265427589417, 0.01644587703049183, -0.021054161712527275, -0.0014220488956198096, 0.007665842305868864, -0.06769434362649918, -0.03292934224009514, 0.021604184061288834, -0.03173558786511421, 0.028281429782509804, 0.07068561762571335, -0.08473505824804306, 0.06516192853450775, -0.01492207869887352, 0.010836819186806679, -0.05115542560815811, -0.0029330921825021505, -0.04280976578593254, -0.03279208391904831, 0.053888265043497086, -0.01215195469558239, -0.056423161178827286, -0.0748349204659462, -0.038091715425252914, -0.03970758989453316, 0.01197531446814537, -0.01097068004310131, 0.02632765658199787, -0.002284990856423974, 0.03354613482952118, -0.04780752956867218, -0.03871825709939003, 0.0028516994789242744, 0.03910636529326439, 0.010233605280518532, 0.024201884865760803, 0.09051595628261566, 0.04365737736225128, -0.021922970190644264, 0.002020645886659622, 0.008369806222617626, 0.014012850821018219, 0.013523601926863194, 0.019777817651629448, 0.006089774891734123, -0.001393023761920631, -0.01956876553595066, -0.016171971336007118, 0.002148909028619528, -0.08491077274084091, 0.019767537713050842, 0.06280148029327393, 0.036432765424251556, -0.06819022446870804, -0.02402115799486637, -0.014049697667360306, 0.03956335410475731, 0.040302056819200516, 0.062412336468696594, -0.020887497812509537, -0.02793460711836815, 0.030029738321900368, 0.006824791431427002, 0.06469301879405975, -0.0825602188706398, -0.059006594121456146, -0.02187611348927021, 0.02457786537706852, 0.08538196980953217, -0.01760713942348957, -0.006766549311578274, 0.001511635142378509, 0.021026935428380966, 0.03380978852510452, -0.013176671229302883, -0.030676070600748062, 0.008410281501710415, -0.021220292896032333, 0.0035818072501569986, -0.029497047886252403, 0.053500596433877945, -0.017305195331573486, -0.05483046919107437, -0.004139866214245558, -0.07662470638751984, -0.054352160543203354, -0.061104852706193924, 0.005897970404475927, 0.04188728332519531, 0.04092642664909363, 0.019522447139024734, 0.028301391750574112, 0.036880142986774445, -0.01611742377281189, 0.012316343374550343, 0.019002946093678474, -0.07272341847419739, -0.005097110290080309, -0.015111633576452732, -0.025277921929955482, 0.012209099717438221, -0.011431107297539711, -0.03361545503139496, 0.011431102640926838, 0.006524218712002039, -0.028458140790462494, -0.0586899034678936, 0.05829441547393799, -0.05999123305082321, 0.012850729748606682, 0.051065899431705475, 0.048537030816078186, 0.024954363703727722, -0.012182477861642838, -0.025648856535553932, 0.028939692303538322, 0.006964343134313822, 0.019604872912168503, -0.05695401504635811, -0.03237892687320709, 0.008399629034101963, -0.0012407759204506874, 0.05501430854201317, -0.060496985912323, -0.11126226931810379, -0.016993504017591476, 0.03533970192074776, 0.1233251616358757, 0.010201136581599712, 0.07397852838039398, -0.013050687499344349, -0.04195836931467056, 0.0013993261381983757, 0.07947109639644623, 0.004259803332388401, 0.0036270739510655403, -0.017767976969480515, 0.011187943629920483, -0.0261736698448658, 0.015307243913412094, 0.02048860304057598, 0.022125372663140297, -0.009339055977761745, -0.04396023973822594, 0.035193443298339844, -0.008330120705068111, -0.08389023691415787, 0.0456906333565712, -0.019254665821790695, 0.004073854070156813, 0.05024508014321327, 0.0002899109967984259, -0.01787390559911728, -0.006807684898376465, 0.03200323507189751, 0.03450927510857582, 0.014113247394561768, -0.01553579792380333, -0.04880048334598541, 0.028495440259575844, -0.03380206227302551, -0.04918401315808296, -0.02119082398712635, -0.022839348763227463, 0.0002911878691520542, -0.00567844370380044, 0.021531105041503906, 0.02964896522462368, -0.008750805631279945, -0.01145600713789463, 0.02730897068977356, -0.026819486171007156, 0.03825005888938904, -0.017660310491919518, 0.027164865285158157, -0.013159537687897682, 0.0678350180387497, 0.0450797900557518, -0.010723782703280449, 0.007305026985704899, -0.035310085862874985, -0.030739741399884224, 0.004498998634517193, -0.003346213372424245, 0.030390555039048195, -6.32497437194582e-33, 0.0042611765675246716, -0.014025776647031307, 0.009898221120238304, 0.020893540233373642, 0.012165588326752186, -0.02283499762415886, -0.0008558082045055926, 0.012556786648929119, -0.04866306856274605, -0.0036728025879710913, -0.012083658017218113, 0.035856347531080246, 0.010404831729829311, -0.001703496091067791, -0.047791335731744766, 0.012804596684873104, 0.023671306669712067, 0.00014243382611311972, 0.03134029731154442, -0.014398480765521526, -0.13127820193767548, -0.013239018619060516, -0.027399173006415367, -0.011631261557340622, 0.04086117818951607, -0.04169493541121483, -0.03953350707888603, 0.04627110809087753, 0.007447062060236931, 0.002620982937514782, 0.018030986189842224, -0.003322139848023653, -0.01573333889245987, -0.025137245655059814, 0.017887189984321594, 0.07400408387184143, -0.0496026873588562, 0.0007563110557384789, 0.031072769314050674, 0.0158859733492136, 0.018054943531751633, -0.06040996313095093, 0.0013489085249602795, -0.040686190128326416, -0.028947632759809494, -0.013387132436037064, 0.038717132061719894, -0.00011607789201661944, 0.04797849804162979, -0.040476132184267044, 0.0033308209385722876, -0.011242269538342953, -0.07605011016130447, 0.028604499995708466, 0.048334598541259766, 0.01794332265853882, -0.024033086374402046, -0.030792977660894394, -0.004793157335370779, 0.03706705570220947, -0.023972617462277412, -0.012756514362990856, 0.004064265638589859, -0.027370402589440346, 0.03128091245889664, -0.012183908373117447, 0.05141369625926018, 0.04921047389507294, 0.020111653953790665, -0.009913751855492592, -0.05889757722616196, -0.025119585916399956, 0.017815712839365005, -0.012305046431720257, -0.013770118355751038, 0.0005132259102538228, 0.01754104159772396, 0.04339946061372757, 0.07713191956281662, -0.023079875856637955, 0.0018229669658467174, 0.006121980492025614, 0.0069049750454723835, -0.006446690298616886, -0.021604958921670914, -0.017300063744187355, -0.04344088211655617, -0.008944276720285416, -0.007966157980263233, -0.0273862536996603, 0.013819103129208088, 0.00959350261837244, -0.033782124519348145, -0.0007697056280449033, 0.10930518805980682, -0.02899106778204441, -0.006789807230234146, -0.03128032758831978, -0.0010776271810755134, 0.0004750168009195477, 0.00664143543690443, 0.029745861887931824, 0.01565067656338215, 0.041624825447797775, 0.023432718589901924, 0.04867086932063103, -0.04361465945839882, -0.003664835123345256, -0.06788495182991028, 0.010496346279978752, 0.02086351066827774, 0.01464357040822506, 0.014203530736267567, -0.00474204309284687, -0.03897178918123245, -0.009560390375554562, 0.0070887296460568905, -0.013449464924633503, -0.02172131836414337, -0.023083871230483055, -0.000165524790645577, 0.023506667464971542, -0.03527703508734703, 0.006550556980073452, -0.035254236310720444, 0.008838132955133915, -0.005574078299105167, 0.02835330180823803, 0.02338058315217495, 0.011560965329408646, -0.04932684078812599, 0.020480677485466003, 3.1567162750434363e-07, 0.011629847809672356, 0.007929077371954918, -0.05609449744224548, 0.05911640822887421, 0.016354253515601158, -0.06529487669467926, 0.001306179678067565, 0.008378307335078716, 0.014315322041511536, -0.02192607708275318, 0.035503875464200974, 0.05225476622581482, -0.02103237435221672, -0.006910054944455624, -0.0672842264175415, -0.0604141429066658, -0.03512553870677948, -0.006568112876266241, -0.005481472238898277, 0.08204350620508194, 0.03420558571815491, 0.0677122175693512, 0.022247575223445892, 0.03517986834049225, -0.037574402987957, -0.008103650063276291, -0.04033716395497322, 0.0034521929919719696, 0.027447912842035294, 0.04135320335626602, -0.00624895328655839, -0.02806299738585949, 0.013339192606508732, 0.04296375438570976, 0.020480399951338768, -0.030949553474783897, 0.06753069162368774, 0.037353914231061935, 0.002850011456757784, 0.05580304190516472, 0.057334501296281815, -0.0012133137788623571, 0.024713175371289253, -0.00028532007127068937, 0.06399401277303696, 0.0063676671124994755, -0.049209244549274445, -0.05934879928827286, -0.002602709224447608, -0.024401430040597916, -0.016338370740413666, 0.03126153349876404, 0.04574732854962349, 0.010194211266934872, 0.019249703735113144, -0.016148649156093597, -0.0347917377948761, 0.010855910368263721, 0.01520616840571165, -0.014334502629935741, -0.012731315568089485, -0.06425143778324127, 0.0306375902146101, -0.028925061225891113, 0.03078552894294262, -0.0067263091914355755, 0.030193127691745758, 3.2417712034467522e-34, 0.04931211844086647, -0.007225695066154003, -0.06959093362092972, -0.003556271316483617, 0.04267568141222, -0.060098323971033096, 0.05391179025173187, -0.04090207815170288, 0.0016762159066274762, -0.015631267800927162, -0.00816736463457346], "d04e9b9a-1e28-42c4-ac2a-e59e84cf019b": [0.06169614940881729, -0.01114070974290371, -0.04390140250325203, -0.00470835343003273, -0.04333019629120827, 0.004073431249707937, -0.0243803933262825, -0.013630363158881664, -0.009228067472577095, -0.029200082644820213, 0.023951029404997826, -0.029147490859031677, 0.05116497352719307, 0.04152211546897888, -0.028660262003540993, 0.034449245780706406, 0.01565885730087757, -0.0032850902061909437, -0.030265284702181816, -0.02429952099919319, 0.01960381492972374, 0.014338672161102295, -0.011802801862359047, -0.018200496211647987, 0.027110690250992775, -0.029641252011060715, 0.0029887768905609846, 0.03483942896127701, -0.01541722659021616, 0.012148917652666569, -0.01322256587445736, 0.020923640578985214, 0.004993700888007879, 0.0017915255157276988, 2.4355538243980845e-06, -0.009508340619504452, -0.03656025230884552, 0.018672127276659012, -0.0038093002513051033, -0.05213932693004608, 0.06827288866043091, 0.08782528340816498, 0.028119167312979698, 0.008037454448640347, -0.0429755263030529, -0.0018070967635139823, 0.029434973374009132, -0.032195717096328735, 0.031081797555088997, 0.03836992010474205, 0.025353647768497467, 0.006427371874451637, -0.0018674382008612156, 0.03140953555703163, 0.0066414931789040565, -0.0001516083866590634, -0.02142981067299843, 0.014700163155794144, 0.015189616940915585, -0.028732700273394585, 0.020528070628643036, -0.03590971603989601, -0.024124223738908768, 0.012010937556624413, 0.07007384300231934, -3.315361936984118e-06, -0.05541076883673668, -0.0790928453207016, -0.0291427168995142, 0.028963014483451843, 0.11829639226198196, -0.0016366095514968038, 0.024243993684649467, 0.03399329259991646, 0.0172172412276268, 0.024926476180553436, 0.01257761474698782, 0.02685568854212761, -0.019805189222097397, -0.021938243880867958, -0.05562952533364296, 0.039647165685892105, -0.04198858514428139, -0.04150199517607689, -0.037160035222768784, 0.07165645807981491, -0.007921569980680943, -0.008838287554681301, 0.032863862812519073, -0.042127471417188644, 0.09789401292800903, -0.0002289389376528561, 0.005215122830122709, 0.01871691271662712, -0.04185017943382263, -0.02930133230984211, 0.022443309426307678, 0.005409437231719494, 0.01724773459136486, -0.00835089385509491, -0.08241275697946548, -0.036207716912031174, -7.004826329648495e-05, -0.027321433648467064, 0.0262428130954504, 0.09357766807079315, 0.023451663553714752, -0.019114382565021515, -0.07211099565029144, -0.03419850766658783, -0.062386948615312576, -0.006349449045956135, -0.02481771446764469, 0.07294890284538269, 0.01827222853899002, -0.015543093904852867, -0.037365034222602844, -0.011174347251653671, -0.00011983698641415685, 0.014295564964413643, 0.02286684326827526, -0.0186981912702322, -0.0018850574269890785, 0.03801313787698746, -0.02439679019153118, -0.08060750365257263, 0.0069267540238797665, 0.022626465186476707, -0.028495749458670616, -0.080953449010849, 0.018361879512667656, 0.0377354770898819, -0.017539434134960175, -0.015418724156916142, 0.009867419488728046, 0.02839856967329979, 0.020064081996679306, 0.06208955869078636, 0.0363570861518383, 0.018134284764528275, 0.047285087406635284, -0.04625668376684189, 0.04737446457147598, -0.02631211094558239, 0.07689584046602249, -0.030836334452033043, -0.009085126221179962, -0.018898623064160347, 0.021131612360477448, 0.04821574687957764, -0.0015221050707623363, 0.04786216840147972, -0.02869698777794838, 0.015205377712845802, -0.021154655143618584, 0.009544380009174347, -0.003689476754516363, 0.03319527208805084, 0.010240009985864162, 0.007400013506412506, 0.009688016027212143, -0.06198851391673088, 0.025426853448152542, -0.007097413297742605, -0.02896806225180626, -0.02928736060857773, 0.0834755152463913, 0.0940828025341034, 0.041653912514448166, 0.020044483244419098, 0.02104395627975464, 0.04442957043647766, -0.026049379259347916, 0.013901608996093273, -0.043500445783138275, 0.05281957983970642, 0.03734664246439934, -0.027897438034415245, -0.011012911796569824, 0.11057759076356888, 0.0058809746988117695, 0.019755419343709946, -0.0038511555176228285, 0.03182419016957283, 0.017848333343863487, -0.018183374777436256, -0.031410351395606995, 0.07313358038663864, -0.02177608758211136, 0.04956461489200592, 0.004796077497303486, 0.009371540509164333, 0.03549586609005928, -0.0007626296137459576, -0.01607389934360981, 0.027117401361465454, -0.08598800748586655, -0.0515098012983799, -0.026620179414749146, -0.02547593228518963, -0.06748246401548386, -0.048090722411870956, -0.05370689556002617, -0.032592788338661194, 0.028311260044574738, -0.008925316855311394, 0.03840513154864311, -0.023460550233721733, -0.03512465953826904, 0.017393846064805984, 0.09156358242034912, -0.010651716962456703, -0.05526326969265938, -0.02311396598815918, -0.033563580363988876, -0.011937377974390984, -0.056569430977106094, -0.03582565858960152, 0.002046460984274745, -0.006607066839933395, 0.011060217395424843, 0.002932041883468628, 0.014993704855442047, 0.00019884371431544423, 0.01179032027721405, 0.02811848744750023, 0.017702018842101097, -0.01050688698887825, 0.04194190353155136, 0.03683001548051834, -0.01538931205868721, 0.022806890308856964, -0.03471565619111061, 0.04529283568263054, 0.009670889005064964, 0.011588990688323975, -0.022183319553732872, -0.013240375556051731, -0.003593268571421504, -0.07576363533735275, -0.02186952531337738, 0.06101737916469574, 0.005677131935954094, 0.02988397143781185, -0.0025328912306576967, 0.019335707649588585, -0.0027048401534557343, 0.015490473248064518, 0.006539895664900541, -0.026315290480852127, 0.01393307838588953, 0.03148898854851723, 0.003981482237577438, 0.04681437462568283, -0.015885887667536736, 0.05803143233060837, -0.08280682563781738, 0.04305213317275047, -0.12073589861392975, 0.043011490255594254, 0.002068850677460432, -0.020729053765535355, -0.03280382230877876, 0.03997459262609482, -0.01654035411775112, -0.04383353888988495, -0.01943439058959484, -0.019360875710844994, 0.04212530702352524, 0.012353471480309963, 0.031587470322847366, -0.024428734555840492, -0.020070694386959076, 0.0004909546696580946, 0.007491047959774733, -0.07262461632490158, -0.02390763722360134, 0.01925211399793625, 0.00431021535769105, 0.003736726939678192, -0.004066263325512409, -0.05660940334200859, -0.006826421245932579, 0.01112070120871067, -0.010510344058275223, 0.024831878021359444, 0.04121921584010124, -0.03266981244087219, -0.029241980984807014, 0.0016208509914577007, -0.020815521478652954, -0.003373547224327922, 0.011285388842225075, 0.004464181140065193, -0.007844152860343456, -0.014621463604271412, -0.040369898080825806, 0.005274513270705938, -0.03779066726565361, 0.05149630457162857, 0.023134130984544754, 0.006811334751546383, 0.022232521325349808, 0.0048465607687830925, 0.05218661203980446, 0.06010764092206955, -0.010939378291368484, -0.02904670685529709, 0.018204789608716965, -0.06133253499865532, 0.005948353558778763, -0.00458339462056756, 0.021190594881772995, 0.06654587388038635, 0.03746737167239189, 0.0006547932862304151, -0.009907917119562626, -0.09774570167064667, -0.009166114032268524, 0.04856448620557785, -0.022676846012473106, -0.058945316821336746, -0.0004988654982298613, -0.043195225298404694, -0.04463488981127739, -0.0822463259100914, -0.030095040798187256, 0.009469006210565567, 0.039223190397024155, 0.0062201670370996, 0.03206191584467888, -0.002976364688947797, -0.0017972856294363737, -0.047793902456760406, -0.04154089838266373, 0.016791578382253647, -0.05639351159334183, -0.07946953177452087, 0.008587213233113289, 0.006624944042414427, -0.06071864813566208, -0.024714985862374306, -0.06091756746172905, 0.05265994369983673, 0.043769996613264084, 0.02478897012770176, -0.029133185744285583, 0.0036563235335052013, -0.02681059017777443, 0.0036014625802636147, 0.04942863807082176, -0.01352409366518259, 0.008573937229812145, 0.00039635522989556193, 0.01042462233453989, -0.02063801884651184, 0.020041780546307564, -0.00043442120659165084, 0.04302486032247543, 0.05088755860924721, 0.05071071535348892, -0.037490058690309525, 0.05689288303256035, 0.05312303826212883, -0.028413938358426094, -0.007512873504310846, 0.02955179288983345, -0.08378516882658005, -0.00895479042083025, 0.03215036913752556, 0.003768283873796463, 0.0014512261841446161, 0.02978704497218132, -0.01938052661716938, 0.018830670043826103, -0.04014885053038597, -0.029155591502785683, 0.01865430362522602, -0.03396674245595932, 0.037556763738393784, 0.062192123383283615, -0.06735485792160034, 0.0392395555973053, 0.012543956749141216, 0.043204523622989655, -0.06365743279457092, -0.005325517617166042, -0.0469883531332016, -0.015355005860328674, 0.046648770570755005, 0.013350117951631546, -0.03929317370057106, -0.07191532850265503, -0.03617614507675171, -0.025999052450060844, -0.0209034513682127, -0.0161641426384449, 0.0308517012745142, -0.004627838730812073, 0.028846461325883865, -0.01711924932897091, -0.042436424642801285, 0.007219764403998852, 0.020517144352197647, 0.030521810054779053, 0.05383472889661789, 0.04868428409099579, 0.023529095575213432, -0.0018979976885020733, -0.0028283586725592613, 0.025990599766373634, 0.0032031412702053785, 0.022796129807829857, 0.031235886737704277, -0.019185466691851616, 0.023033689707517624, 0.0015432470245286822, -0.06385742127895355, 0.028107410296797752, -0.045895930379629135, 0.01520781684666872, 0.045297347009181976, 0.006259211339056492, -0.05079354718327522, -0.023512184619903564, -0.016923412680625916, 0.038584329187870026, -0.00737885944545269, 0.07495466619729996, -0.008490405045449734, 0.030772248283028603, 0.020632537081837654, 0.019741559401154518, 0.013330304995179176, -0.05083288252353668, -0.06320741027593613, -0.011923355050384998, 0.0316767692565918, 0.11233588308095932, 0.002682831371203065, -0.05011076107621193, -0.012889348901808262, 0.015547756105661392, 0.019990991801023483, 0.013963356614112854, -0.03980124741792679, 0.0062445057556033134, 0.011921487748622894, -0.0008264462230727077, -0.02920917235314846, 0.024074317887425423, 0.023276088759303093, -0.07134860754013062, -0.024134045466780663, -0.04869575798511505, -0.07014378905296326, -0.05576983094215393, -0.007148157339543104, 0.01457633450627327, 0.017201650887727737, -0.01237495057284832, 0.026948604732751846, 0.05001029744744301, 0.0017522379057481885, 0.03692571818828583, -0.007340703159570694, -0.0618448443710804, -0.016212863847613335, -0.005586839281022549, -0.02956818789243698, 0.005770867224782705, -0.024791644886136055, -0.030876895412802696, 0.0018425235757604241, 0.0009060195297934115, -0.010316388681530952, -0.027867848053574562, 0.050885796546936035, -0.07961107045412064, 0.018931090831756592, 0.0803527906537056, 0.0027425254229456186, 0.010266926139593124, -0.014163684099912643, -0.014564147219061852, 0.03557659313082695, 0.033136311918497086, 0.004587165080010891, -0.044993240386247635, -0.03371947258710861, -0.0044045415706932545, 0.007742575369775295, 0.066536083817482, -0.012754342518746853, -0.05643416941165924, 0.01740933582186699, 0.011936052702367306, 0.11596318334341049, 0.029416127130389214, 0.0683179646730423, -0.03899335488677025, -0.054887112230062485, 0.0026819801423698664, 0.04902544245123863, 0.026936065405607224, 0.011608874425292015, -0.01031370647251606, 0.045355867594480515, -0.031949691474437714, -0.003989898134022951, -0.0018988549709320068, 0.011587708257138729, -0.043465517461299896, -0.07974127680063248, 0.039325036108493805, -0.0020079270470887423, -0.06307411938905716, 0.01855502463877201, -0.025264497846364975, 0.023993872106075287, 0.05998891964554787, -0.02950461022555828, -0.018365217372775078, 0.016442781314253807, 0.022285720333456993, 0.04202822968363762, -0.002627641661092639, -0.014030546881258488, -0.02184656448662281, 0.06964095681905746, -0.03470092639327049, -0.038691435009241104, -0.07837118208408356, -0.02416333183646202, 0.00822084303945303, -0.05848759412765503, 0.052212104201316833, 0.019439877942204475, -0.011954378336668015, -0.02335493080317974, -0.012296597473323345, -0.011273297481238842, -0.025675656273961067, -0.05933006480336189, 0.05580688267946243, -0.017196863889694214, 0.05618854612112045, 0.03266506642103195, -0.00866146944463253, -0.028492536395788193, -0.016257736831903458, -0.030561771243810654, -0.022931089624762535, -0.0021600150503218174, 0.017509931698441505, -6.01260438063006e-33, -0.000631374423392117, 0.010754236951470375, 0.022151660174131393, 0.0004184203571639955, -0.03144983947277069, -0.04603240638971329, 0.018508650362491608, 0.014061101712286472, -0.05348056182265282, -0.024083225056529045, -0.019292600452899933, 0.008439880795776844, -0.001158890430815518, -0.009633473120629787, -0.062444038689136505, 0.02173030748963356, 0.01715046726167202, 0.009657108224928379, -0.02100384794175625, 0.0027667717076838017, -0.12220855057239532, -0.019381873309612274, -0.028449906036257744, -0.017084293067455292, 0.014921081252396107, -0.05083529278635979, 0.009544973261654377, 0.025781754404306412, 0.011438447050750256, 0.027045119553804398, 0.04712352529168129, -0.011153442785143852, -0.012969070114195347, -0.0722140446305275, 0.012505387887358665, 0.05724922567605972, -0.025143621489405632, -0.02642243728041649, 0.06631625443696976, 0.018075766041874886, 0.02987983636558056, -0.044135771691799164, 5.283543032419402e-06, -0.0301036536693573, -0.015743417665362358, -0.02632644958794117, 0.043346110731363297, 0.011441847309470177, 0.038088731467723846, -0.021051403135061264, -0.0043084886856377125, -0.014348750002682209, -0.07367771863937378, 0.06404156982898712, 0.04348957538604736, 0.059873126447200775, -0.04037909954786301, -0.015566120855510235, -0.020013244822621346, 0.02917955070734024, -0.04007419943809509, 0.0018149117240682244, 0.00710149435326457, -0.021816767752170563, 0.025549713522195816, -0.003958819899708033, 0.042871419340372086, 0.005530771799385548, 0.037084855139255524, -0.03569101169705391, -0.09275037795305252, 0.0122842313721776, 0.01014296617358923, 0.006712674628943205, -0.018351521342992783, -0.010335536673665047, -0.0117492089048028, 0.03824327141046524, 0.06275846809148788, -0.012098584324121475, -0.010484580881893635, -0.00646969024091959, 0.0153432572260499, 0.0031911765690892935, -0.057807810604572296, 0.037153128534555435, -0.040913015604019165, -0.0315169021487236, 0.008335644379258156, -0.036031465977430344, 0.02251526527106762, 0.008726954460144043, 0.0020986278541386127, -0.028021711856126785, 0.034275494515895844, -0.003887187922373414, 0.00894374679774046, -0.06578545272350311, -0.004581815097481012, 0.007011005654931068, -0.013680540025234222, 0.021911846473813057, 0.05920393019914627, 0.03138969838619232, 0.05955294519662857, 0.05539441481232643, -0.024904947727918625, -0.030506376177072525, -0.0379389151930809, 0.008634484373033047, 0.01656612940132618, -0.009488096460700035, -0.008286211639642715, -0.012919285334646702, -0.01793418638408184, 0.04352809116244316, -0.004358719103038311, -0.0263663362711668, -0.019280586391687393, -0.02022218331694603, -0.007937304675579071, -0.03866613283753395, -0.0025543710216879845, 0.0074634915217757225, -0.048074714839458466, 0.03237561136484146, -0.03480609133839607, 0.03666887432336807, 0.013026478700339794, 0.038296233862638474, -0.04034293070435524, 0.03019472025334835, 3.1788908927410375e-07, -0.02019939012825489, -0.031039176508784294, -0.048060063272714615, 0.020284539088606834, 0.024143904447555542, -0.05523204058408737, -0.03172951936721802, 0.0020353205036371946, -0.006049108225852251, 0.003394376952201128, 0.014335664920508862, 0.06595408916473389, -0.022311745211482048, -0.0076226284727454185, 0.014697730541229248, -0.06568075716495514, -0.027059582993388176, -0.017432548105716705, -0.012597717344760895, 0.06043009087443352, 0.023894628509879112, 0.029846690595149994, 0.006293540820479393, 0.05865296348929405, -0.044254664331674576, -0.006578902248293161, -0.02583654597401619, 0.009342117235064507, 0.0372590571641922, 0.0703117772936821, -0.013493264093995094, -0.0138352420181036, 0.0014072781195864081, 0.05278719216585159, 0.026730947196483612, -0.04360726848244667, 0.05252059921622276, 0.028890496119856834, -0.0003938946465495974, 0.029435960575938225, 0.046852871775627136, 0.040362581610679626, 0.02117316797375679, 0.012841609306633472, 0.06998776644468307, 0.0415739081799984, -0.04488450661301613, -0.07917458564043045, -0.01492802333086729, -0.01781228557229042, -0.013150669634342194, 0.04404127597808838, 0.03479447215795517, 0.025691289454698563, 0.021379301324486732, 0.019723208621144295, -0.030139323323965073, 0.0001516763004474342, 0.017217246815562248, -0.019513502717018127, 0.014885278418660164, -0.09834505617618561, 0.03348518908023834, -0.02596423588693142, 0.06264104694128036, -0.012826740741729736, 0.02702847309410572, 3.4242168806552467e-34, 0.03853876516222954, 0.001992925303056836, -0.04680928960442543, 0.010460508987307549, 0.03694303333759308, -0.06180528178811073, 0.019641797989606857, -0.0108941700309515, -0.018498286604881287, -0.008555768989026546, 0.010022598318755627], "f4a27cf4-d22f-47b2-bd5e-7cfd3cf286e4": [0.04102770984172821, -0.054113369435071945, -0.034517236053943634, -0.02022930048406124, -0.047804094851017, 0.0063531408086419106, -0.041609298437833786, -0.013794584199786186, 0.00027274308376945555, -0.045847903937101364, 0.03673702850937843, -0.019013620913028717, 0.049920160323381424, 0.042905498296022415, -0.02047439105808735, 0.019957950338721275, 0.014832550659775734, -0.018709030002355576, -0.03417659550905228, -0.003987906500697136, -0.011124090291559696, 0.011139501817524433, -0.02768552489578724, -0.02009393647313118, 0.024194860830903053, -0.037040598690509796, -0.007041938602924347, 0.04466715082526207, -0.004041753243654966, 0.0028216259088367224, -0.00960775837302208, -0.0006166530656628311, -0.009535635821521282, 0.00042457663221284747, 2.546457835705951e-06, -0.030738363042473793, -0.04752802476286888, 0.037214282900094986, 0.010307066142559052, -0.0501272976398468, 0.0760510265827179, 0.07711149007081985, 0.02538580261170864, 0.041734032332897186, -0.03956211730837822, -0.007872498594224453, 0.0410003587603569, -0.045257050544023514, 0.04885198175907135, 0.027237478643655777, 0.01599692367017269, -0.03301577642560005, -0.003569910302758217, 0.02715161442756653, 0.005991240497678518, -0.002659125253558159, -0.002187640406191349, 0.017337508499622345, 0.0355231948196888, -0.03653467819094658, 0.020816614851355553, -0.03446337953209877, -0.02307817153632641, 0.010518783703446388, 0.06775720417499542, -0.023224877193570137, -0.01842162385582924, -0.06499741971492767, -0.026218093931674957, 0.009597254917025566, 0.10141448676586151, 0.02512577548623085, 0.021136730909347534, 0.03757152333855629, 0.003750956617295742, 0.012852503918111324, 0.0002592736855149269, 0.0056262691505253315, -0.04573038965463638, -0.04817584902048111, -0.04615400359034538, 0.04282435402274132, -0.03688803315162659, -0.04467100277543068, -0.011847619898617268, 0.07491956651210785, -0.004235600121319294, -0.03316830098628998, 0.059538036584854126, -0.03903068229556084, 0.08297549188137054, 0.018777016550302505, 0.019852150231599808, 0.03467833250761032, -0.051045916974544525, -0.017941026017069817, 0.06080911308526993, -0.02441861853003502, 0.037134427577257156, -0.007662112358957529, -0.03319829702377319, -0.01993098296225071, 0.025407930836081505, -0.014086470007896423, 0.01854257471859455, 0.07451203465461731, 0.014961893670260906, -0.03771482780575752, -0.06414144486188889, -0.0185954999178648, -0.052582595497369766, -0.014002818614244461, -0.03098081797361374, 0.05820458009839058, 0.05047136917710304, 0.018035108223557472, -0.03351818025112152, -0.014994308352470398, -0.005180285312235355, 0.014209730550646782, 0.03199714049696922, -0.01065193209797144, -0.005433760583400726, 0.05330704525113106, -0.05317992717027664, -0.10507414489984512, -0.003994634374976158, 0.0087638720870018, -0.006493416149169207, -0.0802759900689125, 0.02326875366270542, 0.0326443649828434, -0.015401560813188553, -0.033522918820381165, 0.014214674942195415, 0.02351531945168972, 0.02175965905189514, 0.05494145676493645, 0.008761689998209476, -0.0005646191420964897, 0.029168996959924698, -0.04814481362700462, 0.04434497654438019, -0.03610053285956383, 0.04299471527338028, -0.03474877029657364, 0.010196927934885025, 0.015385941602289677, 0.024440495297312737, 0.05746325105428696, 0.007161020766943693, 0.020140886306762695, -0.02441760152578354, 0.008836962282657623, -0.01486919168382883, 0.025919044390320778, 0.013469784520566463, 0.02295466884970665, -0.008794264867901802, 0.04429759085178375, 0.003422372043132782, -0.07441400736570358, 0.040837112814188004, 0.010397682897746563, -0.008107105270028114, -0.017077721655368805, 0.058250539004802704, 0.09351237863302231, 0.01451109629124403, 0.028320960700511932, 0.013773234561085701, 0.05612017586827278, -0.018863914534449577, 0.035149142146110535, -0.04325425624847412, 0.06998475641012192, 0.013935090973973274, 0.010749167762696743, 0.014489888213574886, 0.07460634410381317, 0.014872893691062927, -0.01877048797905445, 0.007583957631140947, 0.02755209617316723, 0.005342977121472359, -0.010643623769283295, -0.01896015740931034, 0.06267475336790085, -0.025857599452137947, 0.018446896225214005, 0.009086452424526215, 0.00935665238648653, 0.01654348149895668, 0.008467118255794048, -0.01799730956554413, 0.0272480808198452, -0.07818326354026794, -0.08431559056043625, -0.041426725685596466, -0.02515983395278454, -0.06254873424768448, -0.06818480044603348, -0.04671362414956093, -0.00814978126436472, 0.0594513826072216, -0.023800957947969437, 0.04724845662713051, -0.0350535623729229, -0.03019937127828598, -0.0006087874062359333, 0.08061880618333817, -0.025108855217695236, -0.03805273771286011, -0.0027606035582721233, -0.040752626955509186, 0.03430427983403206, -0.03577819839119911, -0.04341387748718262, -0.009971068240702152, -0.013661840930581093, 0.007243061438202858, -0.023774001747369766, -0.02141696587204933, -0.008392544463276863, 0.006941799074411392, 0.002425597282126546, 0.03360086679458618, -0.00031686111469753087, 0.0397811159491539, 0.05582438409328461, -0.01096325647085905, 0.028457975015044212, -0.013668837957084179, 0.03515329957008362, 0.007397457957267761, -0.0066477893851697445, 0.023906966671347618, 0.03599083051085472, -0.005051642656326294, -0.09534788131713867, -0.02996063232421875, 0.06637861579656601, 0.013793247751891613, 0.01715337485074997, 0.002194599714130163, -0.022656502202153206, -0.00647652568295598, 0.026296883821487427, 0.006974389310926199, -0.026148635894060135, 0.0008811774314381182, 0.028381699696183205, 0.01932126097381115, 0.05263593792915344, 0.042343661189079285, 0.045318540185689926, -0.11518757790327072, 0.04462895542383194, -0.09867127239704132, -0.001809996087104082, -0.04716726765036583, -0.03186232969164848, -0.018346920609474182, 0.050248563289642334, -0.017949122935533524, -0.06024580076336861, -0.014419807121157646, -0.036971352994441986, 0.025539914146065712, 0.010418223217129707, 0.06795703619718552, -0.016745256260037422, -0.02085311897099018, -0.0014591373037546873, 0.004803108982741833, -0.056282054632902145, -0.008951692841947079, 0.009931329637765884, -0.012118439190089703, 0.015255097299814224, 0.012909854762256145, -0.06072394922375679, 9.129599493462592e-05, -0.0034644128754734993, -0.027383890002965927, 0.03328640013933182, 0.050038572400808334, 0.006428244989365339, 0.014796426519751549, 0.006096323020756245, -0.012828659266233444, -0.024680376052856445, 0.020180584862828255, -0.02132027968764305, 0.003979315049946308, 0.006161257158964872, -0.0220759529620409, 0.018802247941493988, -0.016180692240595818, 0.029156886041164398, 0.008224116638302803, -0.0029415821190923452, 0.0413430817425251, -0.003523939521983266, 0.045742545276880264, 0.058740295469760895, 0.004928853362798691, -0.07354971021413803, 0.0003943929623346776, -0.05873023718595505, 0.020356392487883568, -0.013924691826105118, 0.00120907137170434, 0.058050673454999924, 0.04018959775567055, 0.0005033877678215504, -0.05277956649661064, -0.03144676610827446, -0.014105062931776047, 0.06515255570411682, -0.031813815236091614, -0.0236810389906168, 0.007497147191315889, -0.03318203240633011, -0.013429210521280766, -0.08752530813217163, -0.013985627330839634, 0.011810293421149254, 0.05977250263094902, -0.0025077019818127155, 0.0256867203861475, -3.827433829428628e-05, 0.010994100011885166, 0.0025651792529970407, -0.05270069092512131, -0.009384631179273129, -0.07036475837230682, -0.0753360241651535, 0.01794905960559845, 0.0005561624420806766, -0.04591408744454384, 0.017588965594768524, -0.04031796380877495, 0.031369391828775406, 0.04474849998950958, 0.013472667895257473, -0.018399810418486595, 0.01521940715610981, -0.028644811362028122, -0.017142999917268753, 0.07178345322608948, 0.004119596444070339, 0.0015013022348284721, -0.007239526603370905, 0.016133029013872147, -0.03421599790453911, 0.028678162023425102, -0.006879460997879505, 0.035690516233444214, 0.0381665974855423, 0.05507313832640648, -0.004410057328641415, 0.04545803740620613, 0.0503186397254467, -0.040227338671684265, -0.026597822085022926, 0.015247139148414135, -0.0685412809252739, -0.008736846968531609, 0.045889705419540405, -0.023938296362757683, 0.011811349540948868, -0.01362973265349865, -0.009161079302430153, 0.023558109998703003, -0.02948218397796154, -0.018253574147820473, 0.021566230803728104, -0.02407100424170494, 0.03965071588754654, 0.06582976877689362, -0.09593670070171356, 0.06825971603393555, -0.013880211859941483, 0.052463360130786896, -0.07639176398515701, -0.03217210993170738, -0.02148946188390255, -0.04234243184328079, 0.07224329560995102, -0.00528803002089262, -0.0471738837659359, -0.07530339062213898, -0.042651377618312836, -0.011893881484866142, -0.02295110374689102, -0.02322612889111042, 0.02988526225090027, 0.0023779855109751225, 0.017205270007252693, -0.007300471421331167, -0.05373738333582878, -0.012250445783138275, 0.06718561798334122, 0.025056296959519386, 0.04300758242607117, 0.05528105050325394, 0.02648177184164524, -0.017749205231666565, -0.022680852562189102, 0.02348790317773819, -0.011370446532964706, 0.01299451943486929, 0.0184822678565979, -0.006862469017505646, 0.005019715521484613, -0.0021918558049947023, -0.030387265607714653, -0.0003616553731262684, -0.05674443766474724, 0.020672239363193512, 0.06859661638736725, 0.049926433712244034, -0.06357773393392563, -0.011173837818205357, -0.019091619178652763, 0.042890530079603195, 0.030146656557917595, 0.057995326817035675, 0.0038838288746774197, -0.010756419040262699, 0.020181264728307724, 0.01081660483032465, 0.0393017940223217, -0.09036677330732346, -0.052299875766038895, -0.02138654515147209, 0.03074526973068714, 0.08715028315782547, -0.004137611016631126, -0.03872621804475784, 0.015141953714191914, 0.031272053718566895, 0.026028329506516457, -0.010021394118666649, -0.030683457851409912, 0.024109086021780968, -0.031389858573675156, -0.000748407153878361, 0.011263844557106495, 0.05618900805711746, 0.010948508977890015, -0.051779069006443024, 0.013655055314302444, -0.03859611228108406, -0.07151451706886292, -0.08056624978780746, -0.018991461023688316, 0.03396075963973999, 0.02851417474448681, 0.03617081046104431, 0.029300305992364883, 0.00171163328923285, -0.024782197549939156, 0.012885933741927147, 0.0006598982727155089, -0.08235783129930496, -0.008185289800167084, -0.0027494323439896107, -0.02161019667983055, 0.007468377705663443, -0.029138287529349327, -0.05896913260221481, 0.0006311556790024042, 0.020284580066800117, -0.02773226983845234, -0.05692076310515404, 0.03737330436706543, -0.06750410050153732, 0.0047937799245119095, 0.07504650950431824, -0.0037682249676436186, 0.012590060010552406, -0.02264132723212242, -0.00022777076810598373, 0.024826593697071075, 0.02637637034058571, -0.009490869008004665, -0.03016260266304016, -0.025079015642404556, 0.0025297203101217747, -0.01319828350096941, 0.048373255878686905, -0.04206814989447594, -0.07623759657144547, -0.016248513013124466, 0.011113864369690418, 0.1248249039053917, 0.05418609827756882, 0.05769842490553856, -0.029331741854548454, -0.04439385235309601, -0.02011493220925331, 0.009121805429458618, 0.008059273473918438, 0.03863849490880966, 0.0019535489846020937, 0.06053323671221733, -0.03749598562717438, 0.028380190953612328, 0.017343657091259956, 0.019077226519584656, -0.009171362966299057, -0.03635694459080696, 0.028492558747529984, -0.023863792419433594, -0.07049211859703064, 0.03772915527224541, -0.028276484459638596, 0.014286233112215996, 0.05852283537387848, -0.023950258269906044, -0.013119488954544067, -0.02723703719675541, 0.03424984961748123, 0.042303916066884995, 0.0181618332862854, -0.00516255060210824, -0.026922041550278664, 0.034592464566230774, -0.04430420324206352, -0.03767948970198631, -0.011796653270721436, -0.011915411800146103, 0.0004872820863965899, -0.04968965798616409, 0.03172031417489052, 0.02503192238509655, -0.0076637109741568565, -0.02091635949909687, -0.016673676669597626, -0.0423409640789032, -0.004484250210225582, -0.0019539659842848778, 0.052567388862371445, -0.02140916883945465, 0.05783133581280708, 0.029964519664645195, -0.007457657251507044, -0.0019853694830089808, -0.03668559342622757, -0.03322054445743561, -0.03202635049819946, 0.0014028415316715837, 0.025365540757775307, -6.382467800644539e-33, 0.005722162779420614, -0.02231968194246292, 0.02502850629389286, -0.0048773083835840225, -0.02209782786667347, -0.05116632580757141, -0.0010609476594254375, 0.0007058079354465008, -0.05805673450231552, -0.023549972102046013, -0.01657251827418804, 0.009594906121492386, -0.006364944390952587, 0.00397471385076642, -0.06964302062988281, 0.040500104427337646, 0.006156773306429386, -0.004630526062101126, -0.011047783307731152, -0.021289214491844177, -0.10695850849151611, -0.0285341814160347, -0.029905039817094803, -0.009647691622376442, 0.06146882846951485, -0.029798848554491997, -0.03867200389504433, 0.023336080834269524, -0.001473320764489472, 0.020814970135688782, 0.037133265286684036, -0.009666002355515957, -0.004763494711369276, -0.058750517666339874, 0.02085106447339058, 0.06617492437362671, -0.054346781224012375, -0.011242661625146866, 0.0562431626021862, 0.029937615618109703, 0.007424291223287582, -0.01539828535169363, -0.0014475448988378048, -0.006934509612619877, -0.024591362103819847, -0.01414686068892479, 0.03676554188132286, -0.016150301322340965, 0.03701702505350113, -0.025385767221450806, 0.006266813259571791, 0.00022219549282453954, -0.0753425806760788, 0.04495992884039879, 0.03333786129951477, 0.0732734203338623, -0.029929576441645622, -0.04313919320702553, -0.030135387554764748, 0.031596727669239044, -0.002818450564518571, -0.007745408918708563, -0.000735474459361285, -0.024393219500780106, 0.02485617622733116, -0.01088306587189436, 0.022533509880304337, 0.0227534007281065, 0.05845247209072113, -0.02901860512793064, -0.06265964359045029, -0.012976618483662605, -0.013418132439255714, 0.00040491335676051676, 0.0019786530174314976, 0.006688796915113926, -0.007161386776715517, 0.05194509029388428, 0.06423958390951157, -0.018861450254917145, 0.005554297938942909, -0.030633483082056046, 0.002682584337890148, -0.009543190710246563, -0.046561453491449356, 0.027084052562713623, -0.04613293334841728, -0.02788538672029972, -0.002275926759466529, -0.046553175896406174, -0.014700121246278286, 0.016516977921128273, -0.012660499662160873, -0.012602182105183601, 0.06485135853290558, -0.010236358270049095, 0.011312219314277172, -0.020008623600006104, -0.006690470967441797, 0.009445962496101856, -0.011318264529109001, 0.026025786995887756, 0.031635720282793045, 0.04101094976067543, 0.05852644145488739, 0.033673737198114395, -0.05909382551908493, 0.0036278669722378254, -0.0819852203130722, 0.004119371064007282, 0.024853350594639778, 0.02166803553700447, -0.0010608738521113992, 0.009666494093835354, -0.036595188081264496, 0.03033420816063881, 0.00989722739905119, -0.006293654907494783, -0.02439234033226967, -0.020925970748066902, -0.009426960721611977, -0.00911274179816246, 0.007865730673074722, -0.009592259302735329, -0.028683684766292572, -0.0007041165954433382, -0.007000910118222237, 0.03901383653283119, 0.023396972566843033, 0.045614808797836304, -0.027495011687278748, 0.014271014370024204, 3.2210019185185956e-07, 0.01264466717839241, -0.008723628707230091, -0.039147090166807175, 0.030657321214675903, 0.028282832354307175, -0.05391421169042587, -0.013044428080320358, -0.005730547476559877, 0.02423746883869171, -0.031118493527173996, 0.05222562327980995, 0.03769354149699211, -0.002457408234477043, 0.0015530429081991315, -0.0038095959462225437, -0.08039860427379608, -0.053130168467760086, -0.013957720249891281, 0.0017857778584584594, 0.06572991609573364, 0.014713483862578869, 0.05106673389673233, -0.0025618532672524452, 0.056765660643577576, -0.05635546147823334, -0.0005855918861925602, -0.05574922263622284, 0.026359692215919495, 0.048611126840114594, 0.056624460965394974, 0.008115911856293678, -0.020833032205700874, 0.029253371059894562, 0.0652131661772728, 0.02030532993376255, -0.03752407059073448, 0.04378458485007286, 0.050761234015226364, -0.00843729730695486, 0.036425910890102386, 0.02943788282573223, 0.021201904863119125, 0.024588044732809067, -0.007697499822825193, 0.057574592530727386, 0.028363224118947983, -0.046812333166599274, -0.06860212981700897, -0.026533642783761024, -0.0313468836247921, 0.010314494371414185, 0.025538500398397446, 0.02819601632654667, 0.012296301312744617, 0.014412060379981995, 0.004685453604906797, -0.02563696913421154, 0.02075229585170746, 0.032638076692819595, 0.01427245419472456, 0.0027313781902194023, -0.10558551549911499, 0.039182767271995544, -0.028323348611593246, 0.03364679217338562, -0.040390703827142715, 0.020904596894979477, 3.447245320083084e-34, 0.05927377566695213, 0.008026293478906155, -0.04607967659831047, 0.0012352715712040663, 0.02689346857368946, -0.07449840754270554, 0.025268778204917908, -0.03650563210248947, 0.0059084114618599415, -0.003041884396225214, -0.006313318852335215], "4139f092-9cd1-46db-ba5a-5a5759ae4bb1": [0.019885266199707985, -0.007970276288688183, -0.05137811228632927, -0.006134677212685347, -0.057798851281404495, 0.001966155366972089, -0.013901694677770138, -0.017204953357577324, -0.011495929211378098, -0.03011683188378811, 0.053393203765153885, -0.0059514474123716354, 0.052998777478933334, 0.03519035503268242, -0.0005949052283540368, -0.006178569048643112, 0.033519089221954346, -0.015138945542275906, -0.03141654282808304, -0.016342684626579285, -0.0019096900941804051, -0.009615035727620125, -0.031330905854701996, -0.01759432628750801, 0.007912534289062023, -0.035279855132102966, -0.01637800596654415, 0.01799488067626953, 0.014804269187152386, -0.003276884090155363, -0.007880337536334991, -0.0015154349384829402, 0.02390855737030506, 0.009836200624704361, 2.630253220559098e-06, -0.045940984040498734, -0.03788768872618675, 0.01273895800113678, -0.02514738216996193, -0.02618708834052086, 0.05267183855175972, 0.08302416652441025, 0.012446776032447815, 0.030871160328388214, -0.04920358955860138, 0.022431956604123116, 0.05178672447800636, -0.02994193136692047, 0.06275118142366409, 0.053404197096824646, -0.00019393644470255822, -0.0035037014167755842, -0.014568710699677467, 0.011122605763375759, 0.033038511872291565, -0.009464731439948082, 0.001505727181211114, 0.016093870624899864, 0.007502282503992319, -0.060490015894174576, 0.012739136815071106, -0.01081829983741045, -0.025960026308894157, 0.004396690987050533, 0.05603749305009842, 0.006932285148650408, -0.02036403678357601, -0.03764136880636215, -0.0379796177148819, 0.017543571069836617, 0.0980360209941864, 0.03297704830765724, 0.01963973417878151, 0.048048220574855804, 0.004985004663467407, 0.01798943057656288, -0.005447636358439922, 0.017810219898819923, -0.0541657879948616, -0.033900510519742966, -0.0532025471329689, 0.04463735222816467, -0.04276811704039574, -0.032575998455286026, -0.03469270095229149, 0.061055731028318405, -0.0026227100752294064, -0.03259669989347458, 0.03339570388197899, -0.0434473417699337, 0.08091054856777191, -0.0026458948850631714, 0.032499395310878754, 0.029065972194075584, -0.054039351642131805, -0.01589387096464634, 0.056984562426805496, -0.029657455161213875, 0.03963826969265938, -0.04252046346664429, -0.0011007643770426512, -0.01739935204386711, 0.011578713543713093, 0.003580976277589798, 0.02142125368118286, 0.07214187830686569, 0.005110688041895628, -0.03279946371912956, -0.060757312923669815, 0.007663874886929989, -0.05750850588083267, -0.0060738325119018555, -0.04066897928714752, 0.058232516050338745, 0.06332819908857346, 0.03769310191273689, -0.05098918080329895, 0.0006202347576618195, -0.030464326962828636, 0.014589965343475342, 0.035943642258644104, -0.023008516058325768, -0.005499179940670729, 0.07874065637588501, -0.06601188331842422, -0.07604938000440598, -0.028705652803182602, 0.017331799492239952, -0.004696068819612265, -0.08386391401290894, 0.0111360689625144, 0.02524402178823948, -0.00019881669140886515, -0.025956692174077034, 0.007376975379884243, 0.054269857704639435, 0.03475555032491684, 0.0292680487036705, -0.021250659599900246, 0.0009259773651137948, 0.02160000056028366, -0.04681677743792534, 0.015501781366765499, -0.05466083809733391, 0.04366251453757286, -0.03825296461582184, -0.010050038807094097, 0.017252760007977486, 0.013430312275886536, 0.04457667097449303, 0.019853409379720688, 0.04902329295873642, -0.017887234687805176, 0.004166042432188988, 0.017117204144597054, 0.01652689278125763, -0.005970196798443794, 0.04472184553742409, 0.00299490406177938, 0.04004176706075668, 0.023290514945983887, -0.06381481885910034, 0.05225663632154465, 0.002499294700101018, -0.016407912597060204, -0.02783920243382454, 0.0482114814221859, 0.07605710625648499, -0.002859373576939106, 0.026334213092923164, 0.01462068222463131, 0.048489928245544434, -0.015887727960944176, 0.016251040622591972, -0.011347456835210323, 0.06080855429172516, 0.02157921902835369, -0.000857463339343667, -0.010053007863461971, 0.07434023171663284, -0.00447471160441637, -0.02222129888832569, 0.014043239876627922, 0.03205806016921997, -0.012304309755563736, -0.014354837127029896, -0.013616426847875118, 0.04463186487555504, -0.029879018664360046, -0.008239240385591984, -0.004554330371320248, 0.011179964058101177, 0.02787897363305092, 0.022550132125616074, 0.011807413771748543, -0.00019108927517663687, -0.06616723537445068, -0.06381870061159134, -0.001277294009923935, -0.034062549471855164, -0.06605685502290726, -0.07253827899694443, -0.01598869264125824, -0.023648811504244804, 0.030422018840909004, -0.04941390082240105, 0.02107197418808937, -0.02672339603304863, -0.02716095745563507, 0.010982834734022617, 0.10134006291627884, -0.021265465766191483, -0.02814912050962448, -0.033580176532268524, -0.03420737385749817, 0.026561923325061798, -0.02989383041858673, -0.022621655836701393, -0.03369760885834694, 0.0033377413637936115, 0.019452117383480072, -0.03309580311179161, -0.0023748953826725483, 0.006813427899032831, 0.03411927446722984, 0.010082780383527279, 0.021068299189209938, 0.020161189138889313, 0.04562662914395332, 0.03225443512201309, -0.013929619453847408, 0.015856966376304626, 0.008731327950954437, 0.033835459500551224, 0.017922956496477127, -0.013910158537328243, 0.008849021978676319, -0.007531816139817238, 0.023226836696267128, -0.11254604905843735, -0.04207862541079521, 0.07419805228710175, -0.010107777081429958, -0.003201510291546583, 0.017982034012675285, -0.024315426126122475, -0.004045623820275068, 0.004669602960348129, 0.004951160866767168, -0.0006792183849029243, 0.004463607911020517, 0.018691502511501312, 0.035586293786764145, 0.06741964817047119, 0.025427361950278282, 0.03365349769592285, -0.1352173537015915, 0.051366496831178665, -0.1280406415462494, 0.01661858893930912, -0.04337191954255104, -0.042812202125787735, -0.0034713021013885736, 0.03187473863363266, -0.013637782074511051, -0.04920981451869011, 0.021676180884242058, -0.03821984678506851, 0.007225144188851118, 0.01479407586157322, 0.059602148830890656, -0.012050109915435314, -0.0381566546857357, -0.0015697956550866365, 0.0014087960589677095, -0.07023326307535172, -0.008364222943782806, -0.014985758811235428, -0.019307134672999382, 0.035157281905412674, 0.0029974316712468863, -0.05280960351228714, -0.011694453656673431, 0.004886046051979065, -0.023205017670989037, 0.03222021460533142, 0.07043515890836716, -0.01607549749314785, 0.006957664154469967, -0.007241647690534592, -0.01191284041851759, -0.01701335981488228, 0.002678300254046917, -0.017277589067816734, 0.00042453003698028624, -0.00195585610345006, 0.00395176699385047, 0.015288637951016426, -0.001916577690280974, 0.045422326773405075, 0.026877591386437416, 0.01515350304543972, 0.028765028342604637, 0.002815788146108389, 0.03408493101596832, 0.06741653382778168, 0.007958982139825821, -0.05770575627684593, -0.005352332256734371, -0.0534944050014019, 0.023953761905431747, -0.018291564658284187, 0.01203142013400793, 0.06094473600387573, 0.025592735037207603, -0.0017645859625190496, -0.09403692185878754, -0.05941310152411461, -0.009908238425850868, 0.07996568828821182, -0.011714928783476353, -0.039067402482032776, 0.019798263907432556, -0.021025899797677994, -0.0012440814170986414, -0.08368710428476334, -0.036489337682724, 0.010736234486103058, 0.08039833605289459, -0.013732647523283958, 0.02911490760743618, -0.027845637872815132, -0.011843589134514332, -0.02875608205795288, -0.03775353357195854, 0.016057707369327545, -0.06667330861091614, -0.04917076230049133, 0.0014374532038345933, 0.002413380891084671, -0.03870849311351776, -0.008632850833237171, -0.0541517473757267, 0.029617851600050926, 0.042457301169633865, -0.0024770109448581934, -0.02076871134340763, 0.008694431744515896, -0.04540633037686348, 0.0014894864289090037, 0.04202835634350777, 0.0026661413721740246, 0.00987821165472269, -0.014740080572664738, 0.02288329415023327, -0.009419221431016922, 0.018421202898025513, 0.03399757295846939, 0.015478972345590591, 0.009416346438229084, 0.04751003161072731, 0.018516041338443756, 0.051425836980342865, 0.07932908833026886, -0.030043236911296844, -0.010845445096492767, 0.016140921041369438, -0.08443652838468552, 0.018640980124473572, 0.018645592033863068, -0.008414617739617825, 0.00881215464323759, -0.007839243859052658, 0.011196978390216827, 0.030384862795472145, -0.060003526508808136, 0.000955214083660394, -0.014505866914987564, -0.03703145682811737, 0.029288051649928093, 0.06160128116607666, -0.09356751292943954, 0.06480977684259415, -0.015993980690836906, 0.05658996105194092, -0.07333014160394669, -0.02903001941740513, -0.021575285121798515, -0.05826473981142044, 0.07036608457565308, 0.00603819265961647, -0.044561758637428284, -0.09545983374118805, -0.056161701679229736, -0.010387739166617393, -0.02195736952126026, -0.02122320421040058, 0.015771957114338875, 0.014299905858933926, 0.013266143389046192, 0.013561679981648922, -0.04999661073088646, -0.0027861976996064186, 0.06909572333097458, 0.004441470839083195, 0.02397691272199154, 0.0476958267390728, 0.04943416640162468, -0.02213553711771965, -0.03889154642820358, 0.028086533769965172, -0.012691541574895382, -0.002416370902210474, 0.010974165052175522, 0.030586330220103264, 0.011899018660187721, 0.002076358301565051, -0.031023269519209862, 0.016133952885866165, -0.027287080883979797, 0.01651899144053459, 0.08459959179162979, 0.07723358273506165, -0.04243704676628113, 0.0017882552929222584, -0.028842894360423088, 0.03308411315083504, 0.028947606682777405, 0.06932061165571213, 0.013346647843718529, 0.0042394185438752174, 0.020801445469260216, -0.0008569654892198741, 0.03756909817457199, -0.04852042347192764, -0.044385649263858795, -0.016543226316571236, 0.027736922726035118, 0.06140279024839401, -0.027956129983067513, -0.02634894661605358, 0.031873174011707306, 0.062212709337472916, 0.018105369061231613, -1.6901407434488647e-05, -0.04212275147438049, 0.03173878416419029, -0.05053777992725372, 0.001364086288958788, 0.0017475576605647802, 0.05571288242936134, -0.018999673426151276, -0.04769929498434067, -0.016529738903045654, -0.03759470582008362, -0.0752374604344368, -0.058849185705184937, -0.03229956328868866, 0.001535615767352283, 0.02167912945151329, 0.020634744316339493, 0.04063263162970543, 0.009463022463023663, -0.02142292633652687, 0.03498966991901398, 0.04581928253173828, -0.03692181408405304, -0.008089897222816944, -0.0065282671712338924, -0.004095911048352718, -0.01590244472026825, -0.030536970123648643, -0.037534069269895554, 0.008087885566055775, 0.02664748579263687, -0.02889450453221798, -0.048284679651260376, 0.03054301254451275, -0.059127215296030045, 0.017097432166337967, 0.0788443461060524, 0.03791551664471626, 0.03409344702959061, -0.03805948793888092, -0.013704107142984867, 0.04320065304636955, 0.017929725348949432, -0.011011411435902119, -0.033592671155929565, -0.03999735042452812, 0.01882881671190262, -0.0036908190231770277, 0.019085392355918884, -0.06204285845160484, -0.06271696835756302, -0.013788668438792229, -0.013280464336276054, 0.12086112797260284, 0.06343130022287369, 0.05590732395648956, -0.03023901954293251, -0.04195065051317215, -0.0018177127931267023, 0.009653503075242043, 0.00981857255101204, 0.0350714735686779, -0.02272474579513073, 0.05982453003525734, -0.025057630613446236, 0.01720494031906128, -0.002645973116159439, 0.005914515815675259, -0.02053114026784897, -0.03266501426696777, 0.025306351482868195, -0.011042854748666286, -0.06250304728746414, 0.009924935176968575, -0.02947542630136013, -0.011020135134458542, 0.044325266033411026, -0.008164762519299984, 0.0161752812564373, -0.008683959022164345, 0.01529361680150032, 0.05887915566563606, 0.026155926287174225, -0.010607767850160599, 0.0063514369539916515, 0.04061514884233475, -0.0624072439968586, -0.030267836526036263, -0.045530516654253006, -0.01862061768770218, -0.029278142377734184, -0.024625971913337708, 0.037290558218955994, 0.003607486141845584, 0.008071226999163628, -0.033917687833309174, -0.04154292121529579, -0.057373568415641785, -0.00764815229922533, -0.004357791971415281, 0.07708990573883057, -0.011022466234862804, 0.04597732052206993, 0.025409121066331863, -0.00688095111399889, -0.008349484764039516, -0.031061625108122826, -0.03387199342250824, -0.006839722860604525, -0.005601086653769016, 0.01210591197013855, -6.567252573857925e-33, -0.010319001972675323, -0.016889620572328568, 0.012991417199373245, 0.0033421730622649193, -0.034687042236328125, -0.030979743227362633, 0.008520310744643211, -0.0054008676670491695, -0.04004170000553131, -0.043108489364385605, -0.016644194722175598, 0.02285980060696602, 0.016346817836165428, -0.0036417292430996895, -0.04921679571270943, 0.0333014540374279, 0.007184382062405348, 0.013336176984012127, -0.02611238695681095, -0.027461431920528412, -0.08970621228218079, -0.02030770294368267, -0.0018027754267677665, -0.01778203807771206, 0.04412241652607918, -0.02140619233250618, -0.041582003235816956, 0.01690933294594288, -0.018664930015802383, 0.012684259563684464, 0.025601031258702278, 0.004252227488905191, -0.01013021171092987, -0.03755680471658707, 0.019590454176068306, 0.05325602740049362, -0.04182024300098419, -0.03367424011230469, 0.021407080814242363, 0.023214289918541908, 0.014563528820872307, -0.03085304982960224, -0.017420832067728043, -0.009278892539441586, -0.007933899760246277, -0.003775262273848057, 0.060335539281368256, -0.0011562785366550088, 0.01510778907686472, -0.017094863578677177, -0.0025977306067943573, 0.01660786382853985, -0.07819270342588425, 0.04670385643839836, 0.030814629048109055, 0.07305450737476349, -0.023278478533029556, -0.04993908107280731, -0.04499145969748497, 0.06410347670316696, 0.022969404235482216, 0.007708257995545864, 0.015806354582309723, -0.03595328330993652, 0.020727412775158882, 0.003828373271971941, 0.017486445605754852, 0.014940470457077026, 0.041232798248529434, -0.027691639959812164, -0.07070671766996384, -0.004101921338587999, -0.004626031965017319, -0.0115796634927392, 0.03802041336894035, -0.040465306490659714, -0.04948088526725769, 0.06058478355407715, 0.08213533461093903, -0.0023989276960492134, -0.014182893559336662, -0.030741503462195396, -0.008009673096239567, -0.012223800644278526, -0.05474047735333443, 0.026112040504813194, -0.038853030651807785, -0.029750969260931015, 0.012380998581647873, -0.0538429357111454, -0.0260164774954319, 0.021593520417809486, -0.010520219802856445, -0.006466907914727926, 0.04487958177924156, -0.03563517704606056, 0.021501917392015457, -0.005103475414216518, 0.007665170822292566, -0.008101923391222954, 0.006226507481187582, 0.003645851043984294, 0.04570191353559494, 0.04589864984154701, 0.071852907538414, 0.025122981518507004, -0.04086536914110184, 0.019490696489810944, -0.07576632499694824, -0.001114494982175529, 0.01652272418141365, 0.0015924804611131549, -0.0020822305232286453, -0.00534553499892354, -0.0016285361489281058, 0.028942061588168144, 0.002581600099802017, -0.012446163222193718, -0.010347169823944569, -0.023482738062739372, -0.007358580362051725, 0.004291900433599949, -0.0188241358846426, 0.004553104750812054, -0.036139585077762604, -0.008063500747084618, -0.028522800654172897, 0.015415235422551632, 0.02776878885924816, 0.00589260458946228, -0.01110079512000084, -0.009760605171322823, 3.2217067769124696e-07, -0.0010094696190208197, 0.003995851613581181, -0.036337874829769135, 0.032639533281326294, 0.007389059755951166, -0.06216036155819893, -0.035240963101387024, 0.014806761406362057, 0.013696885667741299, -0.0164774302393198, 0.07496914267539978, 0.029227668419480324, 0.011675424873828888, 0.018499672412872314, -0.021325964480638504, -0.08564742654561996, -0.0342022180557251, -0.012108462862670422, -0.037914350628852844, 0.09505075961351395, 0.05728711560368538, 0.0834512785077095, 0.01702982373535633, 0.019582565873861313, -0.041471775621175766, -0.006046788301318884, -0.029861310496926308, -0.006528038531541824, 0.04951028898358345, 0.02324775792658329, 0.04681655764579773, -0.042616888880729675, 0.005286646541208029, 0.08260337263345718, 0.0056029208935797215, -0.03758010268211365, 0.018968593329191208, 0.03601779416203499, 0.0009029931970871985, 0.043738916516304016, 0.03130696341395378, 0.03807622194290161, 0.012418066151440144, 0.020078184083104134, 0.06959553062915802, 0.014643510803580284, -0.04642932116985321, -0.04033514857292175, -0.057502493262290955, -0.010282461531460285, 0.01835385523736477, 0.043702755123376846, 0.011960834264755249, 0.02065889537334442, -0.0007990634767338634, 0.000669445435050875, -0.008317671716213226, -0.0002810137521009892, 0.0374520868062973, -0.006904601585119963, -0.01804034411907196, -0.09767041355371475, 0.03730566054582596, -0.019123012199997902, 0.06496340781450272, -0.04299912229180336, 0.0005795402685180306, 3.41851665140872e-34, 0.04787289723753929, 0.007270547095686197, -0.04437876120209694, -0.0009899078868329525, 0.03649364039301872, -0.06868410855531693, 0.043451614677906036, -0.021014520898461342, 0.010524122975766659, -0.03055652603507042, -0.01434777770191431], "2c693769-1efc-4102-8d1e-253fcede566b": [0.007228146772831678, -0.020789464935660362, -0.02755754068493843, -0.04142263904213905, -0.026409702375531197, -0.011714575812220573, -0.0379318930208683, -0.004231632687151432, -0.026767950505018234, -0.046741317957639694, 0.03174404054880142, 0.020004041492938995, 0.012888235971331596, 0.057136230170726776, -0.020024096593260765, -0.013510249555110931, 0.0016282955184578896, -0.023974623531103134, 0.010431867092847824, -0.03549627959728241, 0.009508559480309486, -0.02705821394920349, -0.055174633860588074, -0.05607980117201805, -0.007305653765797615, -0.016657598316669464, -0.00275827175937593, 0.03075980767607689, 0.013758943416178226, -0.022064989432692528, -0.0024633181747049093, 0.011417240835726261, -0.02549368515610695, -0.02132990024983883, 2.692113866942236e-06, -0.04425152391195297, -0.042007941752672195, 0.008582398295402527, -0.04481242224574089, -0.04962518438696861, 0.02516651339828968, 0.006891631055623293, 0.021818792447447777, 0.01860622502863407, -0.05110757425427437, 0.0086364122107625, 0.05403142049908638, 0.012030242010951042, 0.08678502589464188, 0.030170006677508354, 0.003189095761626959, -0.03056524507701397, -0.03216082975268364, 0.020393606275320053, 0.010620941407978535, -0.04175815358757973, -0.0020067542791366577, 0.0063955411314964294, 0.0005964352749288082, -0.0354122668504715, -0.04054050147533417, -0.0039330776780843735, -0.002594203921034932, -0.009437044151127338, 0.046594131737947464, 0.001897657522931695, -0.01676127128303051, -0.028835877776145935, -0.030111949890851974, 0.005845929961651564, 0.09670001268386841, 0.02274366281926632, 0.008258266374468803, 0.03602609783411026, -0.0036667976528406143, 0.005044102668762207, 0.012832598760724068, 0.019796820357441902, -0.056499648839235306, -0.04153576120734215, -0.05666258931159973, 0.052010826766490936, -0.0467769056558609, -0.04462697356939316, -0.012059546075761318, 0.09846387058496475, -0.02134956605732441, -0.051781948655843735, 0.03316039592027664, -0.023009561002254486, 0.03303216025233269, -0.004431494046002626, 0.031097695231437683, 0.04894315078854561, -0.07131700217723846, 0.012723450548946857, 0.06192624941468239, -0.042474448680877686, 0.018402770161628723, -0.035187728703022, -0.041764482855796814, 0.011747639626264572, 0.06099454686045647, 0.025186609476804733, 0.06620682030916214, 0.024456394836306572, -0.0462743379175663, -0.05920463427901268, -0.0856294333934784, -0.020906956866383553, -0.04865444079041481, -0.03503229469060898, -0.05881248414516449, 0.07408875226974487, 0.03385566920042038, 0.03653181716799736, -0.014047245495021343, -0.010914912447333336, 0.0052281515672802925, 0.007341714575886726, 0.00945975910872221, -0.022596806287765503, 0.017649289220571518, 0.04339034482836723, -0.04861920699477196, -0.09287852793931961, -0.027879338711500168, 0.020109718665480614, 0.0019008942181244493, -0.029755378141999245, 0.0173511803150177, 0.023453358560800552, -0.01597743108868599, -0.010442019440233707, 0.012750936672091484, 0.04827658087015152, 0.0229459460824728, 0.0720314309000969, 0.008304363116621971, -0.01721186563372612, 0.01104696560651064, 0.008253823965787888, -0.01691717468202114, -0.038932789117097855, 0.013279161415994167, -0.020816510543227196, -0.0591483972966671, 0.014910970814526081, 0.026035986840724945, 0.051506102085113525, 0.00026698855799622834, 0.0186809953302145, -0.031644102185964584, -0.012359283864498138, 0.01752573437988758, 0.022090360522270203, -0.026424864307045937, 0.013032379560172558, 0.028561539947986603, 0.05174976587295532, 0.017822839319705963, -0.05281106010079384, 0.009195175021886826, -0.0022041485644876957, -0.0012904383474960923, -0.03622005507349968, 0.06746029108762741, 0.08415082097053528, -4.8797272029332817e-05, 0.0327632836997509, 0.011874660849571228, 0.03839699178934097, -0.008923763409256935, -0.0049931881949305534, 0.003911090083420277, 0.04726873338222504, 0.022809606045484543, 0.021428078413009644, -0.026905113831162453, 0.07247322052717209, -0.01706184446811676, -0.06023687496781349, -0.0139662716537714, 0.03804776072502136, 0.0004578996158670634, 0.006291532889008522, -0.0127568319439888, 0.02041012793779373, -0.03471916541457176, 0.017674483358860016, 0.007156883832067251, 0.019768143072724342, 0.001716700498946011, 0.04836014285683632, -0.02807646431028843, -0.017633019015192986, -0.05243946984410286, -0.03630970045924187, -0.023631205782294273, 0.003236571094021201, -0.026273377239704132, -0.024003276601433754, 0.026882434263825417, -0.0581476166844368, 0.06068899855017662, -0.024546397849917412, 0.003370198654010892, -0.028507890179753304, -0.009231067262589931, 0.014721277169883251, 0.11005666106939316, -0.010378144681453705, -0.03631138801574707, -0.025212055072188377, -0.022414686158299446, 0.02559087611734867, -0.008483539335429668, -0.032600484788417816, -0.022197794169187546, -0.01577598601579666, 0.023358387872576714, -0.012218646705150604, -0.0069010560400784016, 0.0031690325122326612, 0.020319391041994095, -0.0072958702221512794, 0.03769147768616676, 0.010889891535043716, 0.03127668797969818, 0.04516614228487015, -0.008511681109666824, 0.04031161963939667, -0.033396683633327484, 0.009713026694953442, 0.01892184652388096, 0.0238936934620142, -0.001599278417415917, 0.011293656192719936, -0.006493085063993931, -0.10046613961458206, -0.023162908852100372, 0.020163435488939285, -0.007826871238648891, 0.015414930880069733, 0.03865823894739151, -0.024391325190663338, -0.04317998141050339, 0.007141813635826111, -0.028180602937936783, 0.018321800976991653, 0.03521214425563812, 0.013595822267234325, 0.00466494495049119, 0.07525695115327835, -0.017671940848231316, 0.006010084412992001, -0.10839425772428513, 0.05882001668214798, -0.13118603825569153, 0.030879046767950058, -0.04982134327292442, -0.015273209661245346, -0.00024638319155201316, 0.026965394616127014, 0.020389597862958908, -0.05160167068243027, 0.02567930333316326, -0.00040792670915834606, 0.02285395748913288, 0.026418643072247505, 0.07424210757017136, 0.007594345603138208, -0.034873560070991516, 0.0027952694799751043, -0.03321261703968048, -0.05577622354030609, -0.011970803141593933, 0.017391933128237724, -0.0200117789208889, 0.04740656912326813, 0.021425975486636162, -0.018788853660225868, 0.01122889295220375, -0.019145542755723, -0.04335477948188782, 0.01682756468653679, 0.08327441662549973, 0.026122238487005234, -0.00186982995364815, 0.0073927282355725765, -0.022021690383553505, -0.005082138814032078, 0.00628197006881237, -0.00014213865506462753, -0.006585800088942051, -0.00019846954091917723, -0.03331340476870537, 0.032652392983436584, 0.01966467685997486, 0.011485906317830086, -0.015615402720868587, -0.006223990581929684, 0.047151923179626465, -0.010607311502099037, 0.04853034019470215, 0.09843870997428894, 0.015124732628464699, -0.028455952182412148, 0.016016792505979538, 0.02691056579351425, 0.019678156822919846, -0.04264384135603905, 0.006004164461046457, 0.0810273289680481, 0.013899668119847775, -0.01662503182888031, -0.10817793756723404, -0.003013746114447713, -0.025359248742461205, 0.08011901378631592, -0.019097857177257538, -0.025101274251937866, 0.007830720394849777, -0.004052777774631977, -0.006938489153981209, -0.09112000465393066, -0.029523327946662903, -0.014041413553059101, 0.05370839685201645, -0.02479151077568531, 0.033417440950870514, -0.023381274193525314, 0.002255938481539488, -0.07258747518062592, -0.014319031499326229, 0.03467624634504318, -0.027804454788565636, -0.05730750411748886, 0.02513759210705757, -0.011081387288868427, -0.0622926726937294, -0.010323823429644108, -0.05472303181886673, 0.021598296239972115, 0.030139856040477753, 0.015304862521588802, -0.0034019071608781815, 0.023087166249752045, -0.03736386448144913, 0.010769861750304699, 0.055301837623119354, -0.006982054561376572, 0.005823313724249601, -0.0008538382244296372, 0.012799193151295185, -0.014700625091791153, 0.019868385046720505, 0.051302582025527954, 0.04751120135188103, 0.005141230300068855, 0.029265878722071648, 0.021185854449868202, 0.044812191277742386, 0.09057028591632843, -0.001691975980065763, 0.02972903847694397, 0.005695192143321037, -0.058044180274009705, 0.06416495144367218, -0.005387479905039072, -0.037924472242593765, 0.011087274178862572, -0.020345406606793404, -0.008198383264243603, 0.01759202778339386, -0.037909943610429764, -0.00670597655698657, 0.010652339085936546, -0.0361788310110569, 0.011668123304843903, 0.08359593152999878, -0.1390780657529831, 0.06378732621669769, -0.027655355632305145, 0.057156357914209366, -0.03927432745695114, -0.04300235956907272, -0.04188363254070282, -0.04888664558529854, 0.011341056786477566, -0.018109535798430443, -0.006665122229605913, -0.020149698480963707, -0.03556228429079056, -0.031009245663881302, -0.007937257178127766, -0.010835221037268639, 0.027504734694957733, 0.033669132739305496, 0.02009914256632328, 0.016637226566672325, -0.0010893341386690736, 0.04041946306824684, 0.0701204389333725, -0.01428270898759365, 0.00029607079341076314, 0.057835690677165985, 0.05677785724401474, -0.03655783087015152, -0.016537679359316826, 0.008367898873984814, 0.015320207923650742, -0.04395836964249611, 0.02884482964873314, 0.013787214644253254, -0.005561796482652426, 0.0006001211004331708, -0.025805925950407982, 0.04332013428211212, -0.0562344454228878, 0.003676960477605462, 0.09597117453813553, 0.04817092418670654, -0.03399556130170822, -0.0051649282686412334, -0.01285950280725956, 0.051366738975048065, -0.0233799759298563, 0.0647098571062088, -0.02480347454547882, -0.021038711071014404, 0.03705258667469025, 0.0006794984801672399, 0.029947374016046524, -0.05474954843521118, -0.03245307877659798, 0.03691250458359718, 0.022073514759540558, 0.1033356636762619, -0.02465231902897358, -0.006753888912498951, 0.05457428842782974, 0.053170472383499146, 0.0324937142431736, -0.04478861391544342, -0.035130634903907776, 0.02198641002178192, -0.03196249157190323, -0.029057202860713005, -0.004042783286422491, 0.016462292522192, -0.014005366712808609, -0.025904718786478043, -0.000777276000007987, -0.07414735108613968, -0.053665999323129654, -0.084872767329216, -0.018653934821486473, 0.029413901269435883, 0.017929406836628914, 0.0495230071246624, 0.030589843168854713, -0.003193001030012965, -0.030736062675714493, 0.010167635977268219, 0.035652775317430496, -0.027975359931588173, -0.02160484716296196, -0.01866455003619194, -0.058557718992233276, 0.018636971712112427, -0.03514745086431503, -0.0527966134250164, -0.019737187772989273, 0.019984398037195206, -0.0371219739317894, -0.04978843405842781, 0.04296882823109627, -0.07098786532878876, 0.027861125767230988, 0.07139337062835693, -0.013679321855306625, 0.03720995411276817, -0.006969504989683628, -0.001973847160115838, 0.02125668339431286, 0.003329093335196376, 0.006396926939487457, -0.03024730645120144, -0.039575375616550446, 0.0462062694132328, -0.00888496171683073, 0.053259413689374924, -0.055787015706300735, -0.048048265278339386, 0.004783556330949068, 0.03760868310928345, 0.12243859469890594, 0.029233811423182487, 0.03699889034032822, -0.02148975245654583, -0.028476381674408913, 0.024368859827518463, 0.011813155375421047, 0.01784108579158783, 0.05844762921333313, 0.012774246744811535, 0.04123208299279213, 0.004204137250781059, 0.024911025539040565, -0.021922975778579712, 0.01789572462439537, -0.0012113731354475021, -0.07007947564125061, 0.031126033514738083, -0.04454164579510689, -0.08929061889648438, 0.00040260213427245617, -0.034599654376506805, -0.03068477287888527, 0.052586160600185394, 0.029750315472483635, -0.03471600264310837, 0.01041767280548811, 0.049310337752103806, 0.07905889302492142, 0.028854960575699806, -0.010998914949595928, -0.004199662245810032, 0.010985266417264938, -0.03711109980940819, -0.01869342289865017, -0.021005412563681602, -0.014054229483008385, -0.02163250930607319, 0.0027776830829679966, -0.01876988261938095, 0.017503736540675163, -0.024402247741818428, -0.010341242887079716, -0.04285326227545738, -0.02524617686867714, -0.02904505841434002, -0.03563828393816948, 0.04102035239338875, -0.01956360600888729, 0.009818119928240776, 0.0192440003156662, 0.0003082993207499385, -0.009920553304255009, 0.0010139932855963707, -0.006160154938697815, -0.066983163356781, -0.03849664703011513, 0.03202951326966286, -6.405616223148106e-33, 0.007804651744663715, -0.00788646936416626, 0.04701465740799904, 0.019308749586343765, -0.01683838851749897, -0.01726008765399456, -0.017334897071123123, -0.027987990528345108, -0.055135730654001236, -0.04770149663090706, -0.025489190593361855, 0.005662293639034033, 0.002964270766824484, 0.019787313416600227, -0.04294032230973244, -0.00039243357605300844, -0.02356623485684395, -0.001605193829163909, -0.028514178469777107, -0.06113790348172188, -0.08550047129392624, -0.002261207439005375, 0.03769175335764885, 0.012222997844219208, 0.03618696331977844, -0.04330383986234665, -0.04482319578528404, 0.07250814139842987, 0.025396892800927162, 0.007217466365545988, 0.02959337830543518, -0.014417491853237152, -0.008675578981637955, -0.03266545385122299, 0.023316731676459312, 0.04771675541996956, -0.024839339777827263, -0.0035892773885279894, 0.033237818628549576, 0.017504924908280373, 0.018414853140711784, -0.043351925909519196, 0.005967348348349333, 0.013089570216834545, -0.0031726586166769266, -0.020709548145532608, 0.03385029733181, -0.01523140911012888, 0.04218719154596329, 0.00881564524024725, 0.010865973308682442, 0.009977204725146294, -0.07172439247369766, 0.04266515001654625, 0.0317467637360096, 0.06311295926570892, -0.04113749787211418, -0.04487668722867966, -0.036617547273635864, 0.07078121602535248, 0.03504931926727295, 0.010936561971902847, -0.004360145889222622, -0.0201129037886858, 0.06986185163259506, -0.027374060824513435, 0.028551310300827026, 0.03985860198736191, 0.026603257283568382, -0.015483773313462734, -0.036754682660102844, -0.018579699099063873, -0.014724789187312126, 0.020932136103510857, 0.029204562306404114, 0.015139535069465637, -0.02287709340453148, 0.010524297133088112, 0.08208948373794556, -0.012295727618038654, -0.027093496173620224, -0.009427817538380623, 0.007532227784395218, -0.03892827406525612, -0.017574211582541466, 0.00812623929232359, -0.03363862261176109, -0.05947638303041458, 0.006941347382962704, -0.05319701135158539, -0.015369024127721786, 0.0338997021317482, -0.020175406709313393, 0.0023727992083877325, 0.0699617862701416, -0.03181974217295647, 0.006331360433250666, -0.01808798685669899, -0.006878348998725414, -0.005033066496253014, -0.037438686937093735, 0.04373785853385925, 0.010707719251513481, 0.01920880377292633, 0.0391804538667202, 0.07667895406484604, -0.06494855135679245, -0.002160875592380762, -0.0374632328748703, -0.00015968810475897044, 0.03283003345131874, 0.017005866393446922, -0.015967216342687607, -0.015411126427352428, -0.03377613425254822, 0.0047114258632063866, 0.007987509481608868, -0.0277243722230196, 0.005519607104361057, -0.03706500306725502, 0.012273544445633888, 0.0700480192899704, 0.0026544099673628807, -0.003584545571357012, -0.014326975680887699, -0.03148104250431061, 0.03976459801197052, -0.0207643024623394, 0.033670149743556976, -0.02180819772183895, -0.005661077331751585, 0.0006419642013497651, 3.3410555033697165e-07, 0.01944158785045147, 0.00284225563518703, -0.023464713245630264, 0.03658811375498772, 0.0007123563555069268, -0.0011157233966514468, 0.0009824479930102825, -0.016999665647745132, 0.030397797003388405, -0.00303740450181067, 0.07446164637804031, 0.02879032865166664, -0.03815333545207977, 0.008163293823599815, -0.00773866381496191, -0.08817324042320251, -0.028030607849359512, -0.0411088801920414, -0.021429119631648064, 0.042456869035959244, 0.0441376231610775, 0.052054569125175476, 0.012500164099037647, 0.02889712154865265, -0.023939313367009163, 0.0073487889021635056, -0.030917247757315636, -0.023136673495173454, 0.026053883135318756, 0.029501544311642647, 0.009374504908919334, -0.07923024147748947, 0.008891049772500992, 0.05357421562075615, -0.015267843380570412, -0.013137842528522015, 0.02909887209534645, 0.03505006805062294, 0.03181019797921181, 0.027428967878222466, -0.0001265334867639467, -0.011805249378085136, 0.013429123908281326, -0.013039880432188511, 0.02938162162899971, -0.01868876814842224, -0.08723374456167221, -0.048248205333948135, -0.04318458214402199, -0.030597452074289322, -0.03581010550260544, 0.023081161081790924, 0.030545594170689583, -0.006842962000519037, 0.0039027114398777485, 0.02677265740931034, 0.02334790863096714, 0.0561794675886631, 0.007110395934432745, 0.030185122042894363, -0.013486754149198532, -0.05749542638659477, 0.03403761237859726, 0.02064615860581398, 0.04939768835902214, -0.01281782053411007, 0.016160447150468826, 2.9399272130296283e-34, 0.03256074711680412, 0.0371779203414917, -0.04461120814085007, 0.03539728745818138, 0.033368900418281555, -0.05017898231744766, 0.01117520872503519, -0.033501386642456055, 0.041205041110515594, -0.0012060292065143585, -0.02134609781205654], "202a5ff9-6f89-4301-a80f-0577d6989b87": [0.03458331152796745, 0.023608526214957237, -0.020468927919864655, -0.039440713822841644, -0.020028006285429, 0.04849439486861229, -0.015388060361146927, -0.0008736085146665573, -0.029439598321914673, -0.012142275460064411, -0.00490112230181694, -0.02690037339925766, -0.00533637311309576, 0.06797033548355103, -0.025650477036833763, 0.005372161511331797, 0.0345008447766304, -0.03041643090546131, -0.006896412931382656, -0.015516846440732479, 0.015068365260958672, -7.831745460862294e-05, -0.07485469430685043, 0.010702014900743961, -0.01953122764825821, 0.007491672411561012, 0.0548146553337574, 0.05154068022966385, 0.04531713202595711, 0.040344636887311935, 0.04981079325079918, -0.028115181252360344, -0.02103683538734913, 0.010882947593927383, 2.4924927402025787e-06, 0.010715214535593987, -0.04145047813653946, 0.015070514753460884, -0.0017046368448063731, -0.04556690901517868, 0.0026746082585304976, 0.05064878985285759, -0.03821108117699623, 0.032139331102371216, -0.0308691393584013, 0.02371627278625965, 0.055752094835042953, -0.09301897138357162, -0.01874277926981449, 0.01780175417661667, -0.002332790056243539, -0.0029846196994185448, -0.08424120396375656, -0.024021433666348457, 0.02646150067448616, -0.042407892644405365, -0.027681205421686172, -0.012637756764888763, 0.047752391546964645, 0.0019164422992616892, 0.020854679867625237, -0.04973626881837845, -0.03329305723309517, -0.041946880519390106, 0.05430194362998009, 0.05607948824763298, -0.01211876142770052, -0.0552307590842247, -0.007069481536746025, -0.02210395596921444, 0.09397329390048981, 0.023144105449318886, 0.00824439525604248, 0.07044102251529694, 0.03030022606253624, 0.04492354020476341, 0.03409501537680626, 0.020655056461691856, 0.006295745261013508, 0.020658906549215317, -0.04666530713438988, 0.07444632798433304, -0.06006728485226631, -0.04189307987689972, 0.0033715798053890467, 0.05169375240802765, 0.00631850678473711, 0.008319632150232792, 0.02352053113281727, 0.02206561341881752, -0.005297780968248844, 0.036209940910339355, -0.036629289388656616, 0.003952587954699993, -0.0300871841609478, -0.01774662546813488, 0.000308641348965466, -0.01889113336801529, 0.03852466493844986, 0.08235077559947968, -0.02250519022345543, -0.0027587423101067543, 0.01253934483975172, 0.021460620686411858, -0.006020577624440193, 0.03267767280340195, 0.00036083199665881693, -0.015687622129917145, -0.03727271407842636, -0.05826141685247421, -0.04078170284628868, -0.005679483059793711, -0.03213481977581978, 0.06182577461004257, -0.010701647959649563, -0.03597569838166237, -0.040309831500053406, 0.035816144198179245, 0.01918519102036953, 0.05327184498310089, 0.04444939270615578, 0.020629001781344414, -0.02060152217745781, 0.016599059104919434, -0.06999678909778595, -0.049736153334379196, -0.003803204046562314, -0.01360695343464613, -0.02705279365181923, -0.029904454946517944, 0.0344814769923687, -0.011087523773312569, -0.04528074339032173, -0.03531915321946144, -0.0115518132224679, -0.002896455582231283, 0.03556341677904129, -0.002475099405273795, 0.03952087089419365, 0.021178463473916054, 0.00353252817876637, -0.010215497575700283, 0.02001209557056427, 0.03470942750573158, -0.023475406691432, -0.019050896167755127, 0.005009450949728489, -0.040464065968990326, 0.027139661833643913, 0.004467002581804991, 0.06573426723480225, -0.003968375269323587, -0.06600440293550491, 0.008087295107543468, -0.032692745327949524, 0.04026084020733833, -0.025849418714642525, 0.0021214301232248545, -0.021477127447724342, 0.042129192501306534, -0.013219528831541538, 0.022645236924290657, 0.020347226411104202, -0.005477322265505791, -0.05014955997467041, 0.0017764436779543757, 0.07030007988214493, 0.04350778087973595, 0.016632042825222015, -0.013506583869457245, 0.003984618466347456, 0.024641655385494232, -0.0147758349776268, 0.059938058257102966, 0.02742936462163925, 0.007149325218051672, 0.06392145156860352, 0.015964040532708168, -0.038554418832063675, 0.004718742333352566, -0.017489450052380562, -0.12259198725223541, -0.0011012055911123753, 0.04463088512420654, 0.015266493894159794, 0.05081105977296829, -0.054488152265548706, 0.09144770354032516, 0.011340768076479435, 0.024564949795603752, 0.018351124599575996, 0.02104797400534153, -0.026891378685832024, 0.011202416382730007, 0.028622275218367577, -0.006014383863657713, -0.009077020920813084, -0.03175871819257736, 0.01128136832267046, -0.012079134583473206, -0.05698501691222191, -0.0784919336438179, 0.02813909575343132, -0.028216468170285225, 0.061613503843545914, -0.04575568810105324, -0.04876808822154999, -0.045151837170124054, -0.026680216193199158, 0.05625496432185173, 0.13137196004390717, 0.018692322075366974, -0.04117080941796303, 0.006702016107738018, -0.029287070035934448, 0.03653056547045708, -0.034291788935661316, 0.04436084255576134, 0.0476231686770916, 0.0033757493365556, -0.04426908493041992, -0.012862437404692173, -0.02565704844892025, 0.011964568868279457, 0.0028984476812183857, -0.0021064511965960264, 0.02095719426870346, 0.0005135744577273726, 0.011925547383725643, 0.0358363501727581, -0.0353405736386776, 0.02647726982831955, 0.0005213340045884252, -0.0066171856597065926, 0.031560804694890976, 0.020003175362944603, 0.003991174511611462, 0.05969402939081192, 0.006878896150738001, -0.008383252657949924, -0.043798744678497314, 0.046028729528188705, 0.01572584919631481, 0.038939666002988815, 0.0035982902627438307, 0.01827273517847061, 0.05333087965846062, 0.01983976922929287, -0.028650229796767235, -0.015423105098307133, 0.025645766407251358, 0.0034760565031319857, 0.007366284728050232, 0.032030392438173294, -0.036410827189683914, 0.056176457554101944, -0.14351648092269897, 0.03217883035540581, -0.037719082087278366, 0.01775096170604229, -0.025426536798477173, -0.00803333893418312, -0.05269014835357666, 0.011879133060574532, -0.004892634693533182, -0.029688207432627678, 0.037027403712272644, 0.054346561431884766, 0.008078130893409252, 0.0191451795399189, 0.0450110137462616, -0.0012725881533697248, -0.006397934164851904, -0.028071558102965355, -0.0248880498111248, -0.006960195489227772, -0.02024604193866253, 0.035984355956315994, -0.03628023713827133, 0.02815922163426876, 0.009752659127116203, -0.029667800292372704, -0.014255858026444912, 0.01759965531527996, 0.0390133336186409, -0.005651388317346573, 0.07765933871269226, -0.015880458056926727, -0.014677834697067738, -0.02478354424238205, 0.012544525787234306, -0.03676421940326691, 0.012661281041800976, -0.07026764750480652, -0.018446432426571846, 0.015095003880560398, 0.02090322971343994, 0.0009756191866472363, -0.026790263131260872, 0.011129631660878658, -0.00844400655478239, 0.038780100643634796, 0.042818162590265274, -0.010418270714581013, 0.022100146859884262, 0.023354776203632355, 0.031430020928382874, 0.021428680047392845, -0.0040379660204052925, -0.054305486381053925, -0.03070429153740406, 0.0004328903742134571, 0.039476800709962845, 0.05668078362941742, 0.0064592245034873486, 0.030876552686095238, -0.06856674700975418, -0.06627761572599411, -0.011798531748354435, 0.04898236691951752, -0.018062017858028412, -0.03356713429093361, -0.03064916282892227, -0.021083394065499306, -0.036657534539699554, -0.11184480786323547, -0.032690949738025665, -0.027740390971302986, 0.042245421558618546, -0.016973383724689484, 0.008630814030766487, 0.0016090139979496598, -0.0007292304071597755, 0.013253234326839447, -0.0263072419911623, -0.006679171696305275, -0.021949060261249542, -0.042976681143045425, 0.0024001982528716326, 0.005019291769713163, -0.07357970625162125, 0.023215945810079575, -0.06608303636312485, 0.01614345610141754, 0.02264278009533882, 0.000608937640208751, 0.0014942713314667344, -0.03427726402878761, -0.03910957649350166, 0.03083793818950653, 0.07206834107637405, 0.009414094500243664, -0.00849632453173399, -0.015747612342238426, 0.01645938865840435, -0.04592059180140495, -0.02847248688340187, 0.008987586945295334, 0.030630338937044144, -0.013706875033676624, -0.029219144955277443, 0.003024481236934662, -0.05783845856785774, -0.011675860732793808, -0.02634236589074135, -0.06161405146121979, 0.0009137850138358772, -0.012887711636722088, 0.03548493608832359, 0.026110712438821793, -0.02548879012465477, 0.01907247118651867, -0.029297208413481712, -0.01742236502468586, -0.015783710405230522, -0.05868988484144211, -0.00046595383901149035, 0.0015865808818489313, 0.09695615619421005, 0.02298375964164734, 0.0005390368751250207, -0.037303995341062546, 0.05484926700592041, 0.015861639752984047, 0.035343874245882034, -0.04423356056213379, -0.012676261365413666, -0.0036037974059581757, 0.035093311220407486, 0.05164116248488426, -0.015009302645921707, -0.07541868835687637, -0.058695465326309204, 0.05145983025431633, 0.0185845959931612, 0.025859057903289795, -0.0074480860494077206, 0.012681491672992706, -0.02832808345556259, 0.024936961010098457, 0.024336911737918854, -0.08703557401895523, -0.00997988972812891, 0.0032690821681171656, -0.046686362475156784, 0.030188927426934242, 0.1184082180261612, 0.028313089162111282, -0.0006346569862216711, -0.05636891722679138, 0.05160863324999809, 0.045610763132572174, 0.009771083481609821, 0.042875051498413086, 0.030979519709944725, 0.002251851372420788, -0.016070423647761345, 0.018727941438555717, -0.006576858460903168, -0.08256325125694275, 0.04297315701842308, 0.024366198107600212, 0.021134991198778152, -0.040037672966718674, 0.04487662389874458, -0.05029374733567238, 0.025275634601712227, 0.02034151926636696, 0.04298477619886398, -0.017463672906160355, 0.005491562187671661, 0.011751187033951283, 0.011080790311098099, 0.054222844541072845, -0.03934900090098381, -0.03388211503624916, 0.006068688817322254, -0.005656333174556494, 0.022107021883130074, 0.017817825078964233, 0.008337052538990974, 0.0848793089389801, 0.0058928001672029495, -0.03175743669271469, -0.03654281795024872, -0.07896345853805542, 0.044332750141620636, 0.04262811318039894, 0.01675347238779068, -0.04261218011379242, 0.04738201946020126, -0.018107760697603226, -0.07289011776447296, -0.052455801516771317, -0.001629806705750525, -0.025105070322752, -0.12257920205593109, 0.02416803501546383, 0.04292762279510498, 0.034758541733026505, 0.02677420899271965, 0.038175128400325775, 0.0010335245169699192, 0.030208798125386238, 0.05373454466462135, -0.01171986386179924, -0.04280192032456398, -0.00883442535996437, -0.007237204350531101, -0.05616011470556259, 0.03354145213961601, -0.06194138154387474, -0.055624037981033325, 0.006082091014832258, 0.02400687150657177, -0.0026455477345734835, -0.0416293628513813, 0.07075449079275131, -0.02799374982714653, 0.024389328435063362, 0.05256054177880287, -0.005864650942385197, 0.007400176487863064, 0.01714116707444191, -0.0018139748135581613, 0.007236828096210957, 0.00634349649772048, 0.03798999264836311, -0.006518917623907328, -0.05781959742307663, 0.06898022443056107, -0.04952932149171829, 0.009005068801343441, 0.01852862350642681, 0.0018007225589826703, 0.04564729705452919, -0.03100642003118992, 0.08738836646080017, 0.036462873220443726, -0.0015326228458434343, 0.04694309085607529, -0.014428322203457355, -0.0174066424369812, 0.03628675639629364, -0.018107518553733826, 0.00016214800416491926, -0.034949395805597305, 0.020978743210434914, -0.018686773255467415, -0.005066335201263428, 0.023514386266469955, 0.007760714739561081, -0.019316544756293297, -0.07133471220731735, 0.0529002845287323, -0.016368811950087547, -0.04415848106145859, 0.07750668376684189, -0.0005355616449378431, -0.07481811940670013, 0.01909603923559189, 0.00443875091150403, -0.017355982214212418, -0.024785414338111877, 0.04006553813815117, 0.05551331490278244, -0.015539698302745819, -0.007959851063787937, -0.0217374749481678, 0.03506622463464737, -0.012963912449777126, -0.06438929587602615, -0.013053977862000465, 0.01651591621339321, -0.022523077204823494, 0.0210373904556036, 0.03142579644918442, 0.005027572624385357, -0.007622186094522476, 0.03376973420381546, -0.04983292892575264, 0.018967989832162857, -0.004615298938006163, 0.0013502213405445218, -0.025476515293121338, -0.060434892773628235, 0.005036891903728247, 0.006397484336048365, 0.03311851620674133, -0.05997500196099281, 0.004734646063297987, -0.004957136698067188, -0.012073659338057041, 0.06315145641565323, 0.005417088512331247, -6.17834173725631e-33, 0.0020781985949724913, -0.04379597678780556, -0.007818345911800861, 0.018376657739281654, -0.05454138666391373, -0.048561856150627136, 0.034132085740566254, -0.02457309141755104, -0.027019396424293518, -0.028659114614129066, -0.006137902848422527, 0.015392766334116459, 0.004637697245925665, 0.020051583647727966, -0.01632826030254364, 0.006397961638867855, 0.02302372455596924, -0.0034571082796901464, 0.01615920662879944, 0.0031022781040519476, -0.08901818841695786, 0.01249423623085022, -0.03776125609874725, -0.0053557525388896465, -0.009828110225498676, 0.0012209269916638732, -0.008414339274168015, 0.018997933715581894, -0.003995282109826803, 0.016934765502810478, 0.04760117828845978, -0.04044400528073311, -0.021315470337867737, -0.046254318207502365, -0.002922864630818367, 0.08587402105331421, -0.11374199390411377, 0.04083363339304924, -0.023427754640579224, -0.012641300447285175, 0.011685581877827644, -0.002811944577842951, -0.01104042399674654, -4.37112212239299e-05, 0.0012302412651479244, -0.008249794133007526, -0.007800019346177578, -0.02222464792430401, -0.03495452180504799, -0.022021356970071793, -0.07949279993772507, -0.005423350725322962, -0.03079504519701004, 0.06863128393888474, 0.015890661627054214, -0.025803986936807632, -0.013182930648326874, -0.009192160330712795, -0.05666527897119522, 0.016476137563586235, -0.07226711511611938, 0.006002511363476515, 0.004932934418320656, 0.003977967891842127, -0.00517924502491951, -0.044963594526052475, -0.01396537572145462, 0.06863617897033691, -0.006676735822111368, 0.0038110031746327877, -0.029612457379698753, 0.006865129806101322, -0.015289557166397572, -0.0068392762914299965, 0.01295290794223547, -0.011074624955654144, -0.03890284523367882, 0.031145678833127022, 0.08044465631246567, 0.00030872770003043115, 0.014207342639565468, 0.028140533715486526, -0.010327381081879139, 0.02780531719326973, 0.04077264666557312, 0.01337077934294939, -0.00674261013045907, -0.03063015453517437, 0.011901323683559895, -0.0030637094751000404, -0.02944868803024292, -0.012082445435225964, -0.03874741867184639, 0.009457701817154884, 0.08169972151517868, 0.014157908037304878, 0.044374968856573105, -0.022229116410017014, -0.029553266242146492, -0.0423404723405838, -0.05305358022451401, 0.0366981141269207, -0.023505378514528275, 0.04638240113854408, 0.03913310170173645, 0.020056314766407013, -0.010198378935456276, -2.7387935915612616e-05, -0.046902306377887726, 0.04473958536982536, 0.01559274923056364, 0.06895702332258224, 0.002952630165964365, -0.04350078105926514, -0.024762554094195366, -0.04029295593500137, 0.03718532621860504, 0.0060724662616848946, 0.014863128773868084, -0.022954681888222694, -0.004166972823441029, 0.012271447107195854, -0.01563040353357792, -0.03962806984782219, -0.04179554060101509, -0.01415999699383974, 0.02469986490905285, 0.016321789473295212, 0.06867041438817978, -0.010316149331629276, 0.002761904150247574, -0.09398691356182098, 3.19475134347158e-07, 0.028424134477972984, 0.030076291412115097, 0.003089464269578457, 0.004214747808873653, -0.01454202737659216, -0.04336676746606827, 0.0013464305084198713, 0.007845534011721611, 0.05208148434758186, 0.05423251911997795, 0.042213838547468185, -0.000857270322740078, -0.018085332587361336, 0.014954899437725544, 0.01627892069518566, -0.09972208738327026, -0.06159227713942528, -0.04854225739836693, -0.01967536099255085, 0.023091653361916542, 0.049948349595069885, 0.0035732320975512266, 0.01792384311556816, -0.03261176869273186, -0.008234293200075626, 0.012631337158381939, -0.019505685195326805, -0.03516656905412674, 0.00954520981758833, 0.03955679386854172, 0.1018325611948967, -0.04819277673959732, -0.010884946212172508, -0.021800007671117783, 0.033252667635679245, -0.012007593177258968, -0.02845349907875061, 0.015926038846373558, 0.0012480274308472872, 0.033406756818294525, 0.012377210892736912, -0.024738788604736328, 0.04761604592204094, 0.03283021226525307, 0.03087918646633625, -0.03001563251018524, 0.009761422872543335, -0.0026320754550397396, -0.05350835621356964, -0.03561732545495033, -0.002875243779271841, 0.0403645820915699, 0.0007828882080502808, -0.02607952430844307, 0.032524000853300095, -0.02605605684220791, -0.04890162870287895, -0.00739095127210021, 0.026631493121385574, 0.014574934728443623, -0.025666411966085434, -0.027085984125733376, 0.036238621920347214, 0.03718595579266548, 0.03231270983815193, -0.008102146908640862, -0.05147019773721695, 3.3472922548309477e-34, 0.007726761978119612, -0.020142577588558197, -0.03936326503753662, 0.03634342551231384, 0.020345788449048996, -0.04970996081829071, -0.002118610544130206, -0.03516138717532158, 0.005577891133725643, 0.01334726344794035, -0.012868968769907951], "2977a99a-b5bc-4548-8003-77766a64b591": [0.038837261497974396, -0.05134821683168411, -0.02011195383965969, -0.012478073127567768, -0.024546770378947258, 0.026099368929862976, 0.006986742839217186, -0.017893731594085693, -0.00027814097120426595, 0.018953846767544746, 0.006450635846704245, 0.02718675322830677, 0.018563317134976387, 0.05209428817033768, -0.026878705248236656, -0.007138101849704981, 0.033030521124601364, -0.024479234591126442, -0.013276109471917152, -0.011331286281347275, 0.010812084190547466, 0.02554740011692047, -0.05186982452869415, 0.03768058121204376, 0.025553500279784203, -0.0025168375577777624, 0.0485185831785202, 0.01949133537709713, 0.06856858730316162, 0.06864859163761139, 0.0026280980091542006, -0.02669910527765751, -0.05223136022686958, -0.03568851575255394, 2.555768105594325e-06, 0.009467694908380508, -0.0106233861297369, -0.012324202805757523, 0.011540883220732212, -0.04581882804632187, 0.03310474380850792, 0.02648761123418808, 0.0034201228991150856, 0.050324440002441406, -0.025549007579684258, 0.046779993921518326, 0.06326991319656372, -0.051542483270168304, 0.0246652290225029, -0.0010347277857363224, 0.023233776912093163, 0.05143551528453827, -0.02977733500301838, -0.007446015253663063, 0.03742644563317299, -0.024235708639025688, -0.04764793440699577, -0.025977369397878647, 0.015738042071461678, 0.053212858736515045, 0.047078248113393784, -0.012438748963177204, -0.0023908864241093397, -0.022035975009202957, 0.09500838071107864, 0.06143168732523918, -0.026122963055968285, -0.08018568903207779, 0.016040947288274765, -0.031202934682369232, 0.10547518730163574, 0.01279924251139164, -0.012090691365301609, 0.05966150015592575, 0.04471887648105621, 0.06257234513759613, 0.038667671382427216, 0.023652078583836555, -0.021292323246598244, -0.0054735178127884865, 0.01526053249835968, 0.057110127061605453, -0.060300372540950775, -0.00249020429328084, 0.01842569001019001, 0.012728581205010414, -0.0028137159533798695, 0.01314273290336132, -0.02895357646048069, 0.012933946214616299, 0.035784874111413956, 0.030951226130127907, 0.019048212096095085, 0.01700829714536667, 0.010538866743445396, -0.04591289907693863, 0.022644050419330597, -0.012418597936630249, 0.033606354147195816, 0.04863907769322395, -0.03479418531060219, 0.03486166149377823, -0.026681093499064445, 0.03384356573224068, 0.006025840062648058, -0.0025445830542594194, 0.004026797134429216, -0.035010453313589096, -0.01650560274720192, -0.012673542834818363, -0.04833154007792473, 0.011401456780731678, -0.03280861675739288, 0.03654395416378975, -0.0038504053372889757, -0.03985236585140228, -0.008571562357246876, 0.06238050013780594, 0.03451991826295853, 0.05684570595622063, 0.07045981287956238, 0.00798571016639471, -0.06340297311544418, -0.01360503863543272, -0.029991652816534042, -0.06768671423196793, -0.03675731271505356, -0.01862393505871296, -0.05514703318476677, -0.011508628726005554, 0.005634300410747528, -0.03837371617555618, -0.027828209102153778, -0.027896936982870102, -0.0005191657110117376, 0.03389611840248108, 0.05425161123275757, 0.008260106667876244, 0.04637705162167549, 0.01990276388823986, 0.02290775254368782, -0.003367170924320817, -0.009572443552315235, 0.0373370498418808, -0.015160515904426575, -0.022677766159176826, 0.014908005483448505, 0.001613504602573812, 0.007294401992112398, 0.027182724326848984, 0.028939753770828247, 0.013568849302828312, -0.05709417536854744, 0.013523614034056664, 0.007734231185168028, 0.06010475382208824, 0.00921402033418417, -0.0028272264171391726, -0.010938315652310848, 0.023490816354751587, -0.0060192919336259365, 0.014898691326379776, -0.005612221080809832, 0.00529570784419775, -0.020728275179862976, -0.02857803739607334, 0.06918221712112427, 0.017631638795137405, 0.020984476432204247, -0.0018702091183513403, -0.02018151991069317, 0.054498255252838135, -0.018626589328050613, 0.066713847219944, 0.007659631781280041, 0.007827440276741982, 0.08390486985445023, 0.015611154027283192, -0.02499505691230297, 0.01073901541531086, 0.0018316095229238272, -0.09851067513227463, -0.031226014718413353, 0.06318926811218262, 0.017348922789096832, 0.03588768467307091, 0.00153865956235677, 0.07906106859445572, -0.029057985171675682, 0.013079746626317501, 0.017929377034306526, 0.017375009134411812, -0.025406919419765472, -0.014737805351614952, 0.011461537331342697, -0.011670858599245548, -0.0134035749360919, -0.05794580280780792, -0.014337386004626751, -0.012778740376234055, 0.004752476699650288, -0.07152459770441055, 0.006633419077843428, 0.0787612646818161, 0.03753884881734848, -0.047379087656736374, -0.035472527146339417, -0.04919539764523506, -0.009522028267383575, 0.056042443960905075, 0.07389418035745621, 0.0030876118689775467, -0.03786367550492287, -0.0014516523806378245, -0.024096660315990448, 0.009654827415943146, -0.028435170650482178, -0.019334953278303146, 0.0012931128730997443, 0.017204945906996727, -0.05968752130866051, -0.04499860107898712, -0.020057333633303642, 0.02406889759004116, 0.015014691278338432, -0.008072826080024242, 0.007202706299722195, -0.00010496793402126059, 0.005180275533348322, 0.07372049242258072, -0.029883159324526787, 0.012918141670525074, 0.022162077948451042, -0.02325478382408619, 0.03854714334011078, 0.019413435831665993, -0.028325248509645462, 0.04663178324699402, 0.030149657279253006, -0.07822225242853165, -0.03835611790418625, 0.04815417528152466, 0.039727672934532166, 0.02407645247876644, 0.04484597593545914, 0.010022529400885105, 0.03833632916212082, 0.015675386413931847, -0.030365776270627975, -0.011869262903928757, 0.02123715542256832, 0.010734371840953827, 0.014779741875827312, 0.019840937107801437, -0.05168687179684639, 0.039304155856370926, -0.13476958870887756, 0.0061640492640435696, -0.03665205463767052, 0.0421893484890461, 0.014295196160674095, 0.004549962468445301, -0.02520192787051201, 0.04250158742070198, 0.02431703731417656, -0.05130394548177719, 0.007077439688146114, -0.028955582529306412, -0.007158623542636633, -0.018545938655734062, 0.039604444056749344, -0.003205126617103815, 0.00459300447255373, -0.02407986670732498, -0.0012035368708893657, 0.0021047110203653574, -0.027180099859833717, 0.02149130403995514, -0.030801044777035713, 0.03461605682969093, 0.022647326812148094, -0.01955973356962204, -0.00364729599095881, 0.010358249768614769, 0.005374306812882423, -0.042826417833566666, 0.0579242929816246, -0.07085598260164261, -0.015879377722740173, 0.001281765871681273, 0.019195297732949257, -0.05527827516198158, 0.016299361363053322, -0.03112204559147358, 0.0070890807546675205, 0.012897150591015816, 0.04128401353955269, -0.010877632535994053, 0.007960986346006393, 0.04512758180499077, -0.01837047189474106, 0.01412192452698946, 0.01412869244813919, -0.009429868310689926, 0.025151634588837624, -0.019122125580906868, -0.006071999669075012, -0.021593192592263222, -0.024700000882148743, -0.05697218328714371, -0.03775014728307724, 0.014337755739688873, -0.0374862439930439, 0.044941019266843796, -0.005394713953137398, 0.027794701978564262, -0.015727253630757332, -0.050681471824645996, -0.013488523662090302, 0.0004925457178615034, -0.023703623563051224, -0.045701514929533005, -0.018417272716760635, -0.01198638416826725, -0.0409032441675663, -0.1039368212223053, -0.04210899397730827, -0.03653895854949951, 0.08344149589538574, -0.03429943323135376, 0.019411146640777588, 0.0035774684511125088, -0.04182279855012894, 0.04414042457938194, -0.003054442349821329, 0.0060502770356833935, -0.0274826530367136, -0.05948692560195923, 0.002688114996999502, -0.014029212296009064, -0.06098031625151634, 0.09244868159294128, -0.04400518536567688, 0.0585068017244339, 0.006089691538363695, -0.009704433381557465, -0.031048424541950226, -0.015601107850670815, -0.028087515383958817, -0.027792327105998993, 0.0501302145421505, 0.007088531274348497, 0.018479401245713234, -0.021619506180286407, 0.01575770601630211, -0.0701516792178154, -0.03010556846857071, -0.018127236515283585, -0.011170969344675541, -0.058036793023347855, -0.025720203295350075, -0.0051419055089354515, 0.01404797937721014, -0.03385022282600403, 0.013884659856557846, -0.0729258805513382, 0.04608425870537758, -0.014056195504963398, 0.03373758867383003, 0.04202551394701004, -0.0021478671114891768, 0.04163045436143875, -0.0469786673784256, 0.017071833834052086, 0.009447671473026276, -0.06921469420194626, 0.011043322272598743, -0.0009324924321845174, 0.06498491019010544, -0.0019140205113217235, -0.007795387413352728, -0.04569118469953537, 0.06279495358467102, -0.005463732406497002, 0.0010915378807112575, -0.03364492207765579, -0.0009916342096403241, -0.03070645034313202, 0.04552862048149109, 0.025754671543836594, -0.0010903332149609923, -0.07638060301542282, -0.0745847299695015, 0.025400584563612938, -0.0035469334106892347, -0.021428802981972694, -0.001795919262804091, -0.0198562890291214, -0.007410035002976656, 0.03630136325955391, 0.027172932401299477, -0.06826858967542648, -0.017920812591910362, 0.0002520406269468367, -0.03946143761277199, 0.09004630148410797, 0.06770756840705872, 0.0041165477596223354, -0.002775565953925252, -0.024600721895694733, 0.04104636609554291, 0.013052966445684433, 0.009814578108489513, 0.01049012690782547, 0.04182615876197815, -0.08198931068181992, -0.0003871968074236065, 0.044199492782354355, 0.038238342851400375, -0.10122856497764587, 0.02686639316380024, 0.012142960913479328, 0.02115430124104023, -0.051108356565237045, 0.029199697077274323, -0.03450377658009529, 0.03999058157205582, 0.009748460724949837, 0.03373796120285988, -0.03776774927973747, -0.03129424527287483, 0.06697726249694824, -0.024079300463199615, 0.04755443334579468, -0.04227426275610924, -0.059387750923633575, -0.06478540599346161, 0.010232100263237953, 0.03968757390975952, -0.004842687398195267, -0.036325935274362564, 0.09013962745666504, 0.0065445746295154095, -0.0016784945037215948, -0.0010170924942940474, -0.11794613301753998, 0.04542805999517441, 0.01073006447404623, 0.021940307691693306, -0.040511853992938995, 0.02940388396382332, 0.01833030767738819, -0.10304035246372223, -0.09168336540460587, -0.037818919867277145, -0.006737141404300928, -0.11388467997312546, 0.04441200569272041, 0.030238265171647072, 0.05032368749380112, 0.036184947937726974, 0.04737040400505066, -0.004552340600639582, 0.030584171414375305, 0.04094438999891281, -0.0027256531175225973, 0.012884181924164295, -0.03153691440820694, -0.009329397231340408, -0.019467785954475403, 0.038808103650808334, -0.011302992701530457, -0.01602066494524479, 0.0020547532476484776, 0.02258252538740635, -0.039481885731220245, -0.014015276916325092, 0.04830446466803551, -0.027506161481142044, 0.01751318760216236, -0.006876789499074221, -0.00433522230014205, 0.004040192347019911, -0.0035980066750198603, -0.023609153926372528, 0.006057437043637037, 0.0016054463339969516, 0.008124513551592827, -0.0024904974270612, -0.042876236140728, 0.05044450983405113, -0.05693485215306282, -0.004424655809998512, -0.0032505178824067116, -0.050405342131853104, 0.03751031681895256, -0.00036597508005797863, 0.10111159831285477, 0.05650719255208969, 0.046092499047517776, 0.022681256756186485, -0.026253700256347656, -0.022547218948602676, 0.0027325416449457407, -0.03405824676156044, 0.005531718954443932, -0.01416700053960085, 0.010480266064405441, -0.02428472973406315, 0.007501290179789066, 0.021173855289816856, 0.005858971271663904, -0.02131071873009205, -0.0861634612083435, 0.050681136548519135, 0.019327372312545776, -0.036205895245075226, 0.06709866970777512, 0.00046855409163981676, -0.0473029725253582, 0.022577017545700073, -0.0012707947753369808, -0.009884586557745934, -0.031205076724290848, 0.04227127879858017, 0.023581380024552345, -0.007403404917567968, 0.016729013994336128, -0.047089964151382446, 0.00465633487328887, -0.046725548803806305, -0.02448073774576187, -0.027752427384257317, 0.02986638993024826, -0.022808583453297615, -0.0015448074555024505, -0.02124575898051262, 0.0359727144241333, -0.004659872967749834, 0.018963515758514404, -0.02409558929502964, 0.010170109570026398, 0.03286164999008179, 0.0011286367662250996, -0.005163998808711767, -0.04976959526538849, 0.021527227014303207, 0.03184180706739426, 0.0027926540933549404, -0.0443483330309391, 0.0014758589677512646, -0.013361270539462566, -0.003830576315522194, 0.057585958391427994, 0.032527271658182144, -6.528766154128034e-33, -0.006674769800156355, -0.033946454524993896, 0.048470281064510345, 0.01046376209706068, -0.040128398686647415, -0.039496712386608124, 0.02154741995036602, -0.013932048343122005, -0.068639375269413, -0.04500427469611168, 0.0024315391201525927, 0.028800684958696365, 0.007070925552397966, -0.017389588057994843, 0.011735985986888409, -0.008461406454443932, 0.03832832723855972, -0.027048295363783836, 0.019919782876968384, 0.032903384417295456, -0.09228447824716568, -0.006086039822548628, -0.0026468229480087757, 0.015074065886437893, 0.04367583617568016, -0.03389870002865791, -0.0011135401437059045, 0.01236329972743988, 0.027214931324124336, -0.005563842598348856, -0.003946113865822554, -0.04904792457818985, -0.019432850182056427, -0.012714182958006859, 0.03525552526116371, 0.07267589867115021, -0.061973605304956436, 0.0240777600556612, 0.010745985433459282, -0.022414302453398705, -0.01668200083076954, -0.06622064113616943, -0.027614116668701172, -0.0031452886760234833, -0.021839143708348274, -0.03444685786962509, 0.022777695208787918, 0.00030111835803836584, 0.030620509758591652, 0.02356083318591118, -0.05125226080417633, 0.02656504139304161, -0.029960012063384056, 0.05795111507177353, -0.005820033140480518, -0.021908452734351158, 0.006587724667042494, -0.03498290106654167, -0.01662147417664528, 0.017779473215341568, -0.06391638517379761, 0.009893085807561874, 0.0258394256234169, -0.048074979335069656, -0.033539026975631714, -0.02146163582801819, -0.018000101670622826, 0.09272170811891556, 0.01863834634423256, -0.0038844505324959755, -0.008842583745718002, 0.024215126410126686, 0.0010353176621720195, -0.02772114798426628, -0.041266486048698425, 0.014749904163181782, -0.0009332551853731275, 0.005015261936932802, 0.10885348170995712, 0.04014360532164574, -0.0005869029555469751, 0.01717471517622471, -0.041740674525499344, 0.03334907069802284, -0.013690290041267872, -0.011965659447014332, -0.015624414198100567, -0.016679951921105385, 0.0035484442487359047, 0.01302748080343008, -0.03677060827612877, -0.020651625469326973, -0.010602690279483795, 0.020487960427999496, 0.11077907681465149, 0.024737464264035225, 0.011421462520956993, -0.02658172883093357, -0.0011837658239528537, -0.019265342503786087, -0.11365760117769241, -0.003571450477465987, -0.019708430394530296, 0.021850207820534706, 0.025407522916793823, 0.0023467172868549824, -0.011692621745169163, -0.008578259497880936, -0.055030595511198044, 0.03207479044795036, 0.0005456948420032859, 0.03466623276472092, -0.01403491199016571, -0.03238389641046524, 0.0028562736697494984, -0.03587156906723976, 0.013522904366254807, -0.03898672014474869, -0.014722499065101147, -0.04507763683795929, -0.031331468373537064, 0.050770167261362076, -0.04353637620806694, -0.047616519033908844, -0.03155313804745674, 0.017175043001770973, 0.009028800763189793, 0.04187702760100365, 0.05456802621483803, -0.02556874044239521, -0.012913097627460957, -0.07867050170898438, 3.3400067422917346e-07, -0.005481065716594458, 0.06274477392435074, -0.004179928917437792, 0.014440988190472126, -0.0005030298489145935, -0.05760180950164795, -0.0034262321423739195, 0.04828291013836861, 0.0632908046245575, 0.03230312094092369, 0.04268911853432655, 0.03213496506214142, -0.04846272990107536, -0.0047110156156122684, 0.03997373208403587, -0.10958347469568253, -0.026893921196460724, -0.03964677080512047, -0.005304754711687565, 0.00258123641833663, 0.005075611639767885, 0.003061983035877347, 0.024867914617061615, 0.011571367271244526, -0.004125951789319515, -0.028621139004826546, -0.017625030130147934, -0.020686935633420944, 0.01008134800940752, 0.05182778462767601, 0.026981869712471962, -0.020873984321951866, -0.028378544375300407, -0.009283501654863358, 0.02733425796031952, -0.0011950735934078693, -0.008642573840916157, 0.006685953587293625, 0.012414177879691124, 0.06440605968236923, -0.017435550689697266, -0.045047320425510406, 0.004247291944921017, 0.049647070467472076, 0.051385413855314255, 0.031263336539268494, 0.0062892744317650795, -0.013842438347637653, -0.03503111004829407, -0.018468456342816353, -0.007504113018512726, 0.05357576161623001, 0.030878741294145584, -0.015707271173596382, 0.03482077643275261, -0.025345778092741966, -0.052685439586639404, -0.020107226446270943, 0.029064610600471497, -0.009956104680895805, -0.016649141907691956, -0.07573127746582031, 0.029090596362948418, 0.04228271543979645, 0.015015386044979095, -0.001266544801183045, -0.02877948060631752, 3.5010338293603004e-34, 0.009140631183981895, -0.05123819783329964, -0.025732778012752533, 0.018373781815171242, -0.0166892372071743, -0.04300101473927498, 0.03523419052362442, -0.03223586082458496, -0.00298826745711267, 0.013742394745349884, -0.02083059959113598], "9950c23a-f73d-423f-b120-fc886fdc8843": [0.010011623613536358, -0.029152587056159973, 0.0014874935150146484, -0.027539677917957306, -0.028211282566189766, 0.046637240797281265, 0.0016622954281046987, 0.017304502427577972, 0.013945098035037518, -0.00693031121045351, 0.0077120838686823845, 0.019162243232131004, 0.014549563638865948, 0.027203785255551338, -0.02395883947610855, 0.016336018219590187, 0.011306827887892723, -0.021971754729747772, -0.0016797230346128345, -0.029301512986421585, -0.0012912678066641092, 0.024620437994599342, -0.054840415716171265, 0.00986066460609436, -0.0035382069181650877, 0.026776986196637154, 0.043606340885162354, 0.024258725345134735, 0.08947660773992538, 0.07711562514305115, -0.00637081591412425, -0.03199123218655586, -0.04523586109280586, -0.025606291368603706, 2.2683329916617367e-06, 0.011386255733668804, 0.0020111151970922947, 0.017993435263633728, -0.011908509768545628, -0.06624453514814377, 0.015837624669075012, 0.04301257058978081, -0.021902471780776978, 0.03258901089429855, -0.003295802976936102, 0.08364063501358032, 0.09787624329328537, -0.07037318497896194, -0.008280224166810513, -0.002956705866381526, 0.00528820650652051, 0.02294030413031578, -0.06204722449183464, -0.024313829839229584, 0.0417088158428669, -0.033505961298942566, -0.03476175293326378, -0.02948199212551117, 0.007640287280082703, 0.028307223692536354, 0.04396496340632439, 0.0007731993682682514, -0.018557501956820488, -0.0247895959764719, 0.08318538963794708, 0.07860284298658371, -0.013738749548792839, -0.0624752976000309, 0.023904044181108475, -0.04697377607226372, 0.10265692323446274, 0.045286599546670914, -0.011012958362698555, 0.06578023731708527, 0.03595590591430664, 0.059968650341033936, 0.03367064520716667, 0.05353953689336777, -0.01896834559738636, 0.0036027252208441496, -0.001224233885295689, 0.051918212324380875, -0.051901549100875854, -0.02228417992591858, -0.009632590226829052, 0.02280527912080288, 0.012745438143610954, 0.017561407759785652, 0.03565480187535286, 0.021373698487877846, -0.0025652856566011906, 0.03911883383989334, -0.0041823610663414, 0.012430011294782162, 0.017869075760245323, -0.03479291498661041, -0.0033647960517555475, -0.036966949701309204, 0.04829777404665947, 0.03901391103863716, -0.0389547124505043, 0.003932002931833267, -0.06221054866909981, 0.036674194037914276, 0.03133830055594444, 0.008894149214029312, -0.040438368916511536, -0.03904860094189644, -0.030194008722901344, -0.011587467044591904, -0.028146758675575256, -0.021529842168092728, -0.025082385167479515, 0.07108995318412781, -0.004279336426407099, -0.03452131152153015, -0.02589024417102337, 0.04619991406798363, 0.02703421376645565, 0.043911926448345184, 0.09172053635120392, -0.0005193246179260314, -0.054633304476737976, 0.006781109608709812, -0.04603611305356026, -0.07906624674797058, -0.015157523564994335, 0.00638437969610095, -0.05313904583454132, -0.04879666492342949, -0.0009626390528865159, -0.015259720385074615, -0.02066694013774395, -0.036733586341142654, 0.006088625639677048, 0.01488136500120163, 0.060276105999946594, -0.009647217579185963, 0.06873434036970139, 0.01678207702934742, 0.0028715538792312145, 2.1284249669406563e-05, 0.010536937974393368, 0.014818680472671986, -0.009758871980011463, -0.0222967229783535, 0.02421974577009678, 0.005738884210586548, 0.02987213246524334, 0.029349885880947113, 0.013785588555037975, 0.015483547002077103, -0.04750742018222809, -0.0076759811490774155, -0.02830496057868004, 0.021215055137872696, -0.014840280637145042, -0.002141890348866582, 0.008266055956482887, 0.030216066166758537, -0.005463229026645422, 0.0364285409450531, -0.00459837494418025, -0.00695069832727313, -0.035516370087862015, -0.013373104855418205, 0.08168821781873703, 0.021887624636292458, -0.012964772991836071, -0.0027767657302320004, 0.016207654029130936, 0.025225700810551643, 0.0035154169891029596, 0.008783815428614616, -0.01608787477016449, 0.04529867693781853, 0.06592246890068054, -0.004402606748044491, -0.04035742208361626, 0.027137480676174164, -0.004864797927439213, -0.11753726005554199, -0.022707022726535797, 0.03709287941455841, 0.0029830557759851217, 0.05258097127079964, -0.0024594946298748255, 0.03527257591485977, -0.02016906812787056, 0.028927065432071686, 0.015342392027378082, -0.016329919919371605, -0.018009835854172707, -0.002172785345464945, 0.05327218025922775, -0.0067510539665818214, -0.017692485824227333, -0.06226044148206711, 0.00048440619139000773, -0.005696311127394438, -0.0033993881661444902, -0.09780475497245789, -0.0025578713975846767, 0.023040559142827988, 0.03085263818502426, -0.05761505290865898, -0.027626190334558487, -0.038127556443214417, -0.020875101909041405, 0.07234574109315872, 0.063744455575943, -0.002880290849134326, -0.0018745737615972757, -0.0063727437518537045, -0.039151620119810104, -0.01995234191417694, -0.023789148777723312, -0.005437502637505531, -0.0037843165919184685, -0.015952805057168007, -0.021669980138540268, -0.032766833901405334, -0.012504479847848415, 0.011536852456629276, 0.04254133626818657, -0.008920315653085709, 0.0266891960054636, -0.0075469547882676125, 0.01992933452129364, 0.06317012757062912, -0.04257034882903099, 0.019369302317500114, -0.004329079762101173, -0.03849007189273834, 0.03600694611668587, 0.016274819150567055, -0.030520029366016388, 0.018376754596829414, -0.002037956379354, -0.042242441326379776, -0.03473135083913803, 0.055236246436834335, 0.011292166076600552, 0.0392046682536602, 0.011418179608881474, -0.004496629349887371, 0.027643544599413872, 0.0010595201747491956, -0.03175300359725952, 0.011379292234778404, 0.03368338197469711, -0.013394961133599281, 0.02905442751944065, 0.042276591062545776, -0.0541117861866951, 0.0339214950799942, -0.13312378525733948, -0.0029064775444567204, -0.09565469622612, 0.030910519883036613, -0.016749307513237, 0.03210045024752617, -0.02268528938293457, 0.008036664687097073, -0.007772171404212713, -0.016525208950042725, 0.014906313270330429, -0.051745664328336716, 0.018154248595237732, 0.006696181371808052, 0.03813774883747101, -0.01482345163822174, 0.008907381445169449, 0.013373170047998428, 0.004890914540737867, -0.03607526421546936, -0.01936553418636322, 0.042889051139354706, -0.005027379374951124, 0.01286012027412653, -0.017825612798333168, 0.009083433076739311, 0.011587748304009438, 0.00787051860243082, 0.02879958227276802, -0.03706074506044388, 0.10427362471818924, -0.023402633145451546, -0.006655990146100521, -0.0037162876687943935, 0.03199157863855362, -0.01967286318540573, -0.009675330482423306, -0.04157546907663345, -0.007373341359198093, 0.006096479948610067, 7.95725645730272e-05, -0.004364156164228916, 0.008094068616628647, 0.01466394867748022, -0.032253287732601166, 0.028039192780852318, 0.022045303136110306, -0.017554862424731255, 0.016756882891058922, -0.011459828354418278, 0.001380118657834828, 0.0034131731372326612, -0.032013874500989914, -0.0443679504096508, -0.022100966423749924, 0.0235533956438303, -0.02748543582856655, 0.04943285509943962, -0.007175483740866184, 0.023542217910289764, -0.07682733237743378, -0.03912677988409996, -0.022601554170250893, 0.048005037009716034, 0.0026728385128080845, -0.06017594784498215, -0.024660682305693626, -0.022221852093935013, -0.04835313558578491, -0.10575095564126968, -0.02348382957279682, -0.020869653671979904, 0.06857231259346008, -0.03616001456975937, 0.021073609590530396, -0.0015471583465114236, -0.025291595607995987, 0.02919730730354786, 0.02506726048886776, -0.014869611710309982, -0.04332761466503143, -0.06086114048957825, 0.010358079336583614, 0.009900343604385853, -0.0789957195520401, 0.04243738204240799, -0.045967064797878265, 0.011620602570474148, 0.007508525624871254, -0.012310686521232128, -0.048703934997320175, -0.008385464549064636, 0.002162037417292595, 0.003779294667765498, 0.07042092829942703, 0.021151810884475708, 0.0028682025149464607, 0.0045075188390910625, -0.001872523920610547, -0.05135127156972885, -0.021586401388049126, 0.012826287187635899, 0.0035313647240400314, -0.033311355859041214, -0.046760596334934235, -0.016840098425745964, -0.010424071922898293, 0.014466078951954842, 0.026766061782836914, -0.05391472950577736, 0.023101476952433586, -0.013378907926380634, 0.043390728533267975, 0.009761226363480091, -0.032811492681503296, 0.015946220606565475, -0.036296676844358444, -0.005930600222200155, -0.014958836138248444, -0.07912518084049225, 0.011949310079216957, 0.026469286531209946, 0.06281980127096176, -0.0061360192485153675, -0.021801287308335304, -0.03976001590490341, 0.07968483120203018, 0.028327027335762978, 0.007493001874536276, -0.028941769152879715, 0.008111857809126377, -0.018269972875714302, 0.03213933855295181, 0.04225383326411247, 0.0028142505325376987, -0.05132123455405235, -0.06477828323841095, 0.025222832337021828, 0.0035449829883873463, 0.01644587703049183, -0.02436642348766327, 0.002589224372059107, -0.0009081526077352464, 0.025574197992682457, -0.008171307854354382, -0.00040411759982816875, -0.014483626931905746, 0.00025628128787502646, -0.020309701561927795, 0.055316660553216934, 0.11540251970291138, 0.01568758115172386, -0.02338557317852974, -0.026234852150082588, 0.08210639655590057, 0.018539225682616234, -0.03529994189739227, 0.042660996317863464, 0.07314834743738174, -0.04076768830418587, -0.02408931590616703, 0.03557271137833595, 0.027497073635458946, -0.09246362745761871, 0.036483101546764374, 0.01014129538089037, 0.0148830721154809, -0.050498344004154205, 0.03449486196041107, -0.002501285169273615, 0.046246688812971115, 0.013330635614693165, 0.04065665975213051, -0.049985434859991074, -0.028278985992074013, 0.048661816865205765, 0.002415963914245367, 0.04703228548169136, -0.035102758556604385, -0.06856746226549149, -0.00029390427516773343, 0.01768561638891697, -0.0006565395160578191, -0.01362351793795824, -0.025228388607501984, 0.08645857125520706, 0.011172449216246605, 0.005726857576519251, -0.046094268560409546, -0.08028452098369598, 0.03611219301819801, 0.04900538921356201, 0.037287916988134384, -0.05690205097198486, 0.04134975001215935, -0.012458243407309055, -0.09297546744346619, -0.06803009659051895, -0.05974689498543739, -0.01425106730312109, -0.15865762531757355, 0.028260963037610054, 0.031618278473615646, 0.03755924478173256, 0.043228261172771454, 0.039201024919748306, 0.029940692707896233, 0.007771422155201435, 0.05807732790708542, 0.03572860732674599, 0.02225809544324875, -0.03954649716615677, 0.02179841883480549, -0.021388599649071693, 0.06934084743261337, -0.03290523961186409, -0.028354711830615997, -0.026079853996634483, -0.0023761545307934284, -0.048467330634593964, -0.025659263134002686, 0.09141212701797485, -0.005454879719763994, 0.01796535588800907, 0.010921688750386238, -0.020688410848379135, 0.027708973735570908, 0.04144365340471268, -0.007450252305716276, 0.017575573176145554, 0.005899546667933464, 0.026084499433636665, -0.028012100607156754, -0.055391401052474976, 0.0531977042555809, -0.07376722246408463, 0.0015129834646359086, -0.04003654792904854, -0.04096926003694534, 0.04666461795568466, 0.05239804461598396, 0.07758147269487381, 0.046564746648073196, 0.02305050753057003, 0.042558133602142334, -0.029550332576036453, -0.010237728245556355, 0.03450067341327667, -0.04044508934020996, 0.015722686424851418, -0.012302108108997345, 0.002230806974694133, -0.009950309991836548, -0.02234341762959957, 0.017311766743659973, -0.006145702674984932, 0.003919084556400776, -0.10429958999156952, 0.07654420286417007, -0.0005151614313945174, -0.07475610822439194, 0.04160070791840553, 0.044413693249225616, -0.05307789891958237, 0.01532403938472271, -0.002790781669318676, -0.015405763871967793, 0.0023953707423061132, 0.030863365158438683, 0.05581178888678551, -0.012508985586464405, 0.012422256171703339, -0.02920711226761341, 0.021572228521108627, -0.008271978236734867, -0.018601955845952034, -0.035811539739370346, 0.009171701036393642, -0.019634470343589783, -0.04685578867793083, -0.025544555857777596, 0.004739117808640003, -0.016208117827773094, 0.01823756843805313, -0.03088274784386158, -0.0027939542196691036, -0.009481689892709255, -0.017152976244688034, -0.0017308688256889582, -0.04022444784641266, 0.04702319577336311, 0.013743679970502853, -0.009807017631828785, -0.04266301542520523, -0.0019500349881127477, 0.00568430358543992, -0.022088680416345596, 0.06280463188886642, 0.03385003283619881, -6.135081341094142e-33, -0.003122800961136818, 0.005817227065563202, 0.0036345417611300945, 0.03269404172897339, -0.010666792280972004, -0.017067916691303253, 0.013825028203427792, -0.05168945714831352, -0.03564080223441124, -0.044053979218006134, 0.004340570420026779, 0.02033756673336029, 0.00399388512596488, 0.025243986397981644, -0.026714233681559563, -0.010179081000387669, 0.021347301080822945, 0.0029739404562860727, 0.015669522807002068, 0.04307130351662636, -0.0906250923871994, -0.007975270040333271, 0.003921219613403082, 0.015323839150369167, 0.04062250256538391, -0.015347824431955814, 0.0018353710183873773, 0.03034960851073265, 0.01851526089012623, -0.0162968710064888, 0.006748582236468792, -0.030737003311514854, -0.014947975054383278, 0.002430848078802228, 0.0301594790071249, 0.07059603929519653, -0.02880878746509552, 0.042882855981588364, 0.013240941800177097, -0.0077785891480743885, -0.022359171882271767, -0.0753779411315918, -0.013716856949031353, -0.0008129441412165761, -0.0045240940526127815, -0.03291701525449753, 0.025551842525601387, -0.007067116443067789, 0.020000001415610313, -0.01916656829416752, -0.04362918809056282, 0.011358911171555519, -0.03900984674692154, 0.05362171307206154, 0.02004214935004711, -0.021669968962669373, 0.002447095001116395, 0.00038780010072514415, -0.02095996029675007, 0.009299318306148052, -0.050477176904678345, 0.0172882080078125, 0.011432270519435406, -0.027365339919924736, -0.0010462438222020864, -0.060754965990781784, -0.046410977840423584, 0.07093804329633713, -0.020235847681760788, -0.0013161924434825778, -0.021887755021452904, -0.013296359218657017, -0.021463748067617416, -0.01808254048228264, 0.002087837550789118, 0.02729354240000248, -0.012409544549882412, 0.011684478260576725, 0.08745467662811279, 0.036785710602998734, 0.0065738484263420105, 0.011791674420237541, 0.012528873048722744, 0.014452558942139149, -0.012895837426185608, 0.000932946742977947, -0.03183228150010109, -0.037377044558525085, 0.0216126199811697, 0.0036727727856487036, -0.005701339337974787, -0.026447473093867302, -0.05100969970226288, 0.018877755850553513, 0.10432124882936478, 0.0167101938277483, 0.03143385425209999, -0.028347240760922432, -0.006423083133995533, -0.06684257090091705, -0.0831826850771904, 0.03990337997674942, -0.010182982310652733, 0.03377370536327362, 0.029089150950312614, 0.0216226726770401, 0.0044327485375106335, -0.009672543965280056, -0.04889994487166405, 0.05776866525411606, -0.00889428611844778, 0.0154895493760705, 0.013931650668382645, -0.007932864129543304, 0.005640025716274977, -0.04887128993868828, 0.011031188070774078, -0.03477344661951065, -0.0006543555064126849, -0.02356020361185074, -0.030139414593577385, 0.053946249186992645, -0.030629031360149384, -0.038901470601558685, -0.04442752152681351, 0.017998812720179558, 0.016162844374775887, 0.06617499142885208, 0.05260426178574562, -0.009001579135656357, 0.0004547735152300447, -0.08367175608873367, 3.0352791213772434e-07, 0.008661985397338867, 0.03934440389275551, -0.023607630282640457, -0.02484610490500927, -0.03143471106886864, -0.029720503836870193, 0.005198974162340164, 0.004974148701876402, 0.066180020570755, 0.049940384924411774, 0.03805835172533989, 0.004392182920128107, -0.03449669107794762, -0.01704438589513302, 0.015158263966441154, -0.11092431098222733, -0.03371749445796013, -0.025117091834545135, -0.0031638871878385544, -0.0009974524145945907, 0.018174046650528908, 0.026568012312054634, 0.04630130156874657, -0.014479356817901134, 0.018569516018033028, 0.016276229172945023, -0.011089183390140533, -0.04545729234814644, 0.0023592289071530104, 0.015156153589487076, 0.008067461661994457, -0.009149200282990932, -0.02068258449435234, -0.030427340418100357, 0.0058429972268640995, 0.014305369928479195, -0.020890509709715843, 0.025972234085202217, 0.0017589988419786096, 0.05286174267530441, -0.009879055432975292, -0.03975464776158333, 0.04101734235882759, 0.03673502057790756, 0.04124874249100685, 0.013403631746768951, -0.017617329955101013, -0.025579998269677162, -0.037376344203948975, -0.030558276921510696, -0.011459989473223686, 0.034400999546051025, -0.004368182737380266, -0.019587723538279533, 0.03967825323343277, -0.017347384244203568, -0.03814646974205971, -0.021241692826151848, 0.023830045014619827, -0.009825502522289753, -0.01479137409478426, -0.06830760091543198, 0.041844237595796585, 0.07352496683597565, 0.003845450235530734, -0.025195537135004997, -0.027988050132989883, 3.248791108773069e-34, 0.005409893114119768, -0.023538973182439804, -0.04666867107152939, 0.05036001652479172, -0.009476863779127598, -0.04453504458069801, 0.0540466383099556, -0.02779367007315159, -0.004964151419699192, 0.026731394231319427, -0.006407910492271185], "35db1781-d829-46cd-b2df-e30df000dc0d": [0.04199821129441261, -0.016946978867053986, -0.043680258095264435, 0.006868980824947357, 0.03410740941762924, 0.05272846668958664, 0.022949695587158203, 0.06533440202474594, 0.013791999779641628, -0.01318980474025011, -0.019220901653170586, -0.0042001623660326, 0.025435345247387886, 0.032188475131988525, -0.029132740572094917, 0.008048848249018192, 0.05729939416050911, -0.0019339347491040826, -0.015500595793128014, -0.0044743758626282215, -0.0380530022084713, 0.04077288880944252, 0.0033770333975553513, -0.002624132204800844, 0.04710042476654053, -0.02192164584994316, 0.00581947760656476, 0.025904547423124313, -0.009612816385924816, -0.07617795467376709, 0.05216019228100777, 0.019668128341436386, 0.0196427833288908, -0.016767529770731926, 2.275214455949026e-06, -0.008876229636371136, -0.04544219374656677, -0.01006949320435524, -0.07505298405885696, -0.027357030659914017, 0.016682377085089684, 0.033745214343070984, -0.011403984390199184, -0.002135420683771372, -0.008383497595787048, -0.018836824223399162, -0.05132949352264404, 0.08155812323093414, -0.039904527366161346, 0.03514609858393669, 0.028142429888248444, -0.03620561212301254, -0.04042801633477211, -0.018790114670991898, 0.09310983121395111, -0.03499777242541313, -0.03451765701174736, 0.06483883410692215, 0.025282109156250954, -0.014647744596004486, -0.037724338471889496, 0.010495838709175587, -0.05150080844759941, 0.011027942411601543, 0.10228157043457031, 0.042571913450956345, 0.08767404407262802, -0.12388234585523605, 0.024360524490475655, 0.018332181498408318, 0.04849132522940636, -0.00438748300075531, 0.027153197675943375, 0.033486854285001755, -0.055377598851919174, 0.029793046414852142, 0.01539249811321497, 0.02642129734158516, -0.02079937979578972, -0.004952152259647846, 0.0022363027092069387, -0.04279850050806999, -0.006083212327212095, -0.011440470814704895, 0.041827864944934845, 0.06012095883488655, -0.0336265042424202, -0.05123042315244675, 0.054573893547058105, -0.014890571124851704, 0.05678404122591019, 0.007361676078289747, -0.021685047075152397, 0.011748094111680984, 0.016936169937253, -0.03886772692203522, 0.012829788029193878, -0.049666836857795715, 0.03216242045164108, 0.03306907042860985, -0.05045444518327713, -0.020613927394151688, -0.009483392350375652, 0.03378206863999367, -0.019212383776903152, 0.021205678582191467, 0.059585921466350555, -0.005792493000626564, -0.024465437978506088, 0.09685330837965012, -0.021667685359716415, 0.021289844065904617, -0.05356495454907417, -0.04114176332950592, -0.004630426876246929, -0.015691308304667473, -0.016536695882678032, 0.025894952937960625, 0.0178472138941288, 0.0519077442586422, 0.024996502324938774, 0.018962962552905083, -0.04183783009648323, 0.022767100483179092, -0.028567979112267494, -0.10554681718349457, 0.04473443329334259, -0.022628791630268097, -0.027380866929888725, 0.027722438797354698, 0.026440851390361786, 0.01902543380856514, 0.013669396750628948, 0.030712151899933815, -0.012342926114797592, 0.048052169382572174, 0.030783480033278465, -0.05197941139340401, -0.0029381169006228447, -0.052538491785526276, 0.06287678331136703, -0.015399951487779617, -0.009894954040646553, -0.006202688440680504, 0.040495533496141434, -0.0018129374366253614, 0.030726009979844093, 0.002543050330132246, 0.020178742706775665, 0.020295599475502968, -0.04194903373718262, 0.04318343475461006, 0.02207767590880394, 0.0017906513530761003, 0.03435678035020828, 0.02567986398935318, -0.02318537048995495, -0.009544857777655125, -0.003876449540257454, -0.0033000903204083443, 0.03602853789925575, 0.03573904186487198, 0.00028473473503254354, -0.02173648402094841, -0.015667729079723358, -0.002807821612805128, 0.07714934647083282, -0.012701569125056267, 0.030812568962574005, 0.0033209065441042185, -0.0038091696333140135, -0.026180919259786606, -0.038556117564439774, 0.058946024626493454, -0.05167591571807861, 0.06681322306394577, 0.012228644452989101, 0.029513170942664146, 0.010571405291557312, 0.008690710179507732, -0.04972696676850319, -0.05162724107503891, -0.03450809791684151, -0.0008811193401925266, -0.057611458003520966, -0.02015507034957409, -0.023706750944256783, 0.038281846791505814, 0.026866167783737183, -0.006243634503334761, -0.015130914747714996, 0.002120268065482378, 0.013035005889832973, -0.05236963927745819, 0.0014232777757570148, 0.007255060598254204, -0.08337707817554474, -0.09720408916473389, -0.007340544369071722, -0.028161317110061646, 0.03796185553073883, 0.010366181842982769, 0.057820048183202744, 0.035329222679138184, 0.05152016505599022, -0.004922099877148867, -0.013544040732085705, -0.02121792733669281, -0.011926040053367615, -0.026930905878543854, 0.05882865563035011, 0.0034665849525481462, -0.04085518792271614, -0.017184192314743996, -0.06275253742933273, 0.03269079700112343, -0.020743057131767273, -0.02789919823408127, 0.035900626331567764, -0.006120904814451933, 0.009708426892757416, -0.055238064378499985, -0.0607445128262043, 0.03570421040058136, -0.03051706589758396, -0.0389057956635952, -0.019896958023309708, 0.02644367702305317, 0.039833471179008484, -0.0035293414257466793, 0.002552152145653963, -0.02274736389517784, 0.02021951787173748, 0.04234351962804794, -0.00952397845685482, 0.0005758785409852862, 0.0056551662273705006, -0.03570310026407242, -0.03541899845004082, -0.08027655631303787, -0.04104680195450783, 0.051152266561985016, 0.014555971138179302, 0.043228425085544586, -0.0017417471390217543, 0.04932526871562004, -0.012349936179816723, 0.023056725040078163, 0.026894286274909973, 0.05253807455301285, 0.03118419647216797, -0.018913544714450836, 0.05196314677596092, 0.022985493764281273, -0.0164078027009964, 0.020812440663576126, -0.07700895518064499, 0.0019779049325734377, -0.053683117032051086, 0.005709552206099033, -0.01378408819437027, -0.002422560006380081, -0.04185266047716141, 0.016571994870901108, 0.021899104118347168, -0.0022216138895601034, -0.003513108240440488, -0.0537564717233181, -0.013823720626533031, 0.019247647374868393, 0.020436031743884087, 0.0002269089745823294, 0.005768337287008762, -0.027025118470191956, 0.03902233764529228, 6.568975368281826e-05, 0.021307209506630898, 0.02339349500834942, -0.05144887790083885, -0.031269654631614685, -0.011802750639617443, -0.036099471151828766, -0.034164320677518845, 0.0023683051113039255, -0.023957720026373863, -0.02676786668598652, 0.04816547408699989, -0.06781385093927383, -0.032831672579050064, -0.06544951349496841, 0.014562594704329967, 0.025477396324276924, 0.021678166463971138, -0.0329916849732399, -0.04171375557780266, 0.02287359908223152, -0.041327912360429764, 0.01569943130016327, -0.01063217967748642, 0.06808261573314667, 0.03237070143222809, 0.0016033784486353397, -0.013077140785753727, 0.013232514262199402, -0.010867836885154247, 0.04831365495920181, 0.022383110597729683, -0.02711147628724575, -0.020655440166592598, -0.05425737053155899, 0.04305426776409149, 0.025139564648270607, 0.008340182714164257, -0.015335624106228352, -0.02585606276988983, -0.008151977322995663, -0.02672952227294445, -0.06137083098292351, 0.0057707661762833595, 0.0646895095705986, 0.013373877853155136, -0.0025589480064809322, -0.02067364566028118, 0.001537158153951168, 0.004616918042302132, -0.09551926702260971, 0.007495072670280933, -0.003275122959166765, -0.027188118547201157, 0.015274807810783386, 0.03960302844643593, 0.07183929532766342, -0.005749687552452087, 0.0008397012134082615, 0.023118779063224792, -0.003318565431982279, -0.010839669965207577, 0.009128173813223839, 0.03054320253431797, -0.0078422324731946, 0.003229093737900257, 0.06699864566326141, -0.05122262239456177, -0.020881902426481247, -0.00030694383895024657, -0.006818235386162996, -0.01502186432480812, -0.005552890710532665, -0.09547069668769836, -0.0085933031514287, 0.04426592215895653, 0.004744439385831356, 0.019351277500391006, -0.03355317562818527, -0.014250341802835464, -0.01635805144906044, -0.009174126200377941, 0.00636805547401309, 0.043301258236169815, -0.07460175454616547, 0.03385163098573685, 0.002660152269527316, 0.02411074750125408, 0.009891878813505173, 0.0239894837141037, 0.0021206096280366182, 0.0014196252450346947, -0.007999842055141926, 0.012858645059168339, 0.01753724180161953, -0.07701270282268524, 0.00800317618995905, 0.006501064635813236, 0.05919976904988289, 0.012480661273002625, -0.04591771587729454, 0.019753657281398773, 0.008435106836259365, 0.019799737259745598, -0.039498310536146164, -0.006704528816044331, -0.02658454142510891, 0.05504725128412247, 0.01160795520991087, 0.06767717748880386, 0.0038629884365946054, 0.02597195655107498, 0.011616038158535957, 0.07782714813947678, -0.001505326828919351, 0.027257470414042473, -0.090100958943367, -0.042856357991695404, 0.015973959118127823, -0.0652463287115097, 0.0002525812014937401, -0.020575227215886116, -0.005724078044295311, -0.03741789981722832, -0.0073553710244596004, -0.02759295515716076, 0.019579648971557617, -0.009096173569560051, 0.0449165515601635, -0.004404102917760611, 0.0561705119907856, 0.03647325560450554, 0.01329279039055109, 0.019477732479572296, 0.04279455170035362, 0.09818559139966965, 0.01755210943520069, 0.027885355055332184, 0.0007797582074999809, 0.04257741943001747, -0.06907317787408829, 0.045331716537475586, -0.006723970640450716, -0.044485315680503845, -0.04344503954052925, -0.04180554673075676, 0.036559153348207474, 0.016182048246264458, -0.017257701605558395, 0.024887962266802788, -0.04376217722892761, 0.08577312529087067, -0.005598552990704775, 0.03783540055155754, -0.03997873514890671, 0.04269760474562645, 0.012284871190786362, 0.00033321388764306903, 0.06431184709072113, 0.04653618484735489, -0.005498906131833792, 0.022417332977056503, -0.08968383073806763, -0.022612987086176872, -0.035258691757917404, -0.007859147153794765, 0.022496439516544342, 0.04224073141813278, 0.013653612695634365, -0.0007413316634483635, 0.03818961977958679, 0.037306059151887894, 0.048197343945503235, 0.012857705354690552, -0.07711334526538849, -0.00010956449841614813, -0.09716799110174179, -0.07669367641210556, -0.053067125380039215, -0.012267320416867733, 0.0017836377955973148, 0.005907979793846607, 0.07639571279287338, 0.0007192727643996477, 0.02082100138068199, -0.05221783369779587, 0.053074438124895096, 0.023303376510739326, -0.007915139198303223, 0.004220554139465094, 0.014311256818473339, -0.029700201004743576, -0.0312824547290802, 0.05460275709629059, -0.019215665757656097, 0.04460308328270912, -0.011031689122319221, -0.010413502342998981, -0.02356947958469391, 0.026213688775897026, -0.0847240537405014, -0.05598069354891777, -0.006665150634944439, -0.032168373465538025, -0.03939322009682655, 0.01678832806646824, -0.025116369128227234, 0.004463811870664358, -0.008040204644203186, -0.031738001853227615, 0.053539663553237915, 0.00867959950119257, -0.0009107799851335585, 0.01714107021689415, -0.014079106971621513, 0.040529005229473114, 0.0020195713732391596, 0.006054678000509739, -0.015232414938509464, 0.005296485964208841, 0.06668674200773239, -0.038961417973041534, 0.019778620451688766, 0.015945913270115852, -0.017389610409736633, 0.01918684132397175, -0.037665173411369324, -0.009940250776708126, 0.04489973559975624, -0.039791423827409744, -0.04177870973944664, -0.010913397185504436, 0.036876507103443146, 0.004595581907778978, -0.009959227405488491, -0.06405261904001236, -0.023140642791986465, -0.04743510112166405, -0.03312651813030243, 0.04014496132731438, 0.018753699958324432, -0.04960304871201515, -0.024794045835733414, 0.01864643208682537, -0.01494235172867775, 0.03100890852510929, 0.014676200225949287, -0.0037314908113330603, -0.02825041674077511, -0.016711046919226646, 0.048577260226011276, 0.02605588361620903, 0.05484030023217201, 0.016820864751935005, 0.060966409742832184, 0.002489705802872777, 0.023146478459239006, 0.018440313637256622, -0.009362375363707542, -0.0504249632358551, 0.031569287180900574, 0.07635647058486938, 0.05795178562402725, -0.010137569159269333, 0.020449019968509674, 0.0020330396946519613, 0.011827019043266773, 0.01922929845750332, 0.04496481269598007, 0.021385740488767624, -0.023920239880681038, 0.03561351075768471, 0.0072361771017313, -0.017907338216900826, -0.09206432849168777, 0.010880455374717712, -0.030685920268297195, -0.04730105400085449, 0.04505101591348648, 0.01290061790496111, -6.117275907757046e-33, -0.05552148446440697, -0.03644213452935219, 0.0051308684051036835, 0.07556087523698807, -0.010570335201919079, -0.050682805478572845, 0.0008806888945400715, -0.030506659299135208, -0.030046137049794197, -0.04872651398181915, -0.009943834505975246, -0.0325491726398468, 0.005297597497701645, -0.005131136160343885, -0.006299152038991451, -0.015004608780145645, 0.01393675897270441, 0.0008231342071667314, -0.028910387307405472, 0.01965557225048542, -0.04106264188885689, -0.01937194913625717, -0.03629452735185623, 0.005725986324250698, -0.024618079885840416, -0.07054245471954346, -0.040293138474226, -0.014215407893061638, -0.0073415846563875675, 0.027854911983013153, -0.06217983365058899, -0.05162310227751732, -0.009170131757855415, 0.017851756885647774, 0.014870090410113335, 0.07400576770305634, -0.03673325851559639, -0.016795480623841286, -0.01855967566370964, 0.04201290011405945, 0.033128708600997925, -0.01627466455101967, -0.015021082013845444, -0.014957020059227943, 0.033962998539209366, 0.022221790626645088, 0.04709768667817116, 0.03539662063121796, 0.004055564757436514, 0.038851283490657806, -0.10395673662424088, 0.015477308072149754, 0.012646770104765892, 0.0540916807949543, 0.018554292619228363, 0.034245215356349945, 0.02352556772530079, -0.07199147343635559, -0.04319927096366882, -0.038611769676208496, 0.011161107569932938, 0.029197264462709427, 0.026671690866351128, 0.019423045217990875, -0.04239331930875778, 0.02452804706990719, -0.008072896860539913, 0.08279591798782349, 0.023859867826104164, 0.02051851898431778, 0.0072510032914578915, -0.01724771037697792, -0.049487676471471786, -0.04618871957063675, -0.018098685890436172, -0.005776300560683012, -0.041452500969171524, 0.04638158902525902, 0.06251794844865799, 0.05647905543446541, 0.01611221767961979, -0.011716371402144432, -0.02201615460216999, 0.010984229855239391, 0.00185149977914989, -0.037450116127729416, -0.019705791026353836, -0.018453950062394142, 0.013464041985571384, 0.03432570770382881, -0.009402400813996792, -0.09394194185733795, -0.05577881261706352, 0.02792412042617798, 0.006339086219668388, 0.05522962659597397, 0.06553658097982407, -0.03331133723258972, -0.028867775574326515, -0.0629909485578537, -0.06261393427848816, -0.034544408321380615, 0.010156260803341866, -0.019589485600590706, 0.027254527434706688, -0.00957924872636795, -0.013233975507318974, 0.0008870948804542422, -0.0419040285050869, -0.00024767042486928403, 0.007949130609631538, -0.04126597195863724, 0.036251019686460495, -0.02572411112487316, 0.006402765866369009, -0.016780726611614227, -0.013524050824344158, -0.014121567830443382, -0.025538245216012, -0.0007140855886973441, 0.003446542425081134, -0.034736212342977524, 0.012297327630221844, -0.03342500329017639, -0.05567162111401558, 0.010325901210308075, -0.0033059490378946066, -0.0017908676527440548, 0.0656871423125267, -0.02455260418355465, 0.004944873508065939, 0.01811838336288929, 2.9884427021897864e-07, -0.01483152061700821, 0.05610273778438568, 0.014431153424084187, -0.08012821525335312, -0.009100698865950108, -0.03853265568614006, -0.00714081758633256, -0.00658622570335865, -0.008213837631046772, -0.004678803961724043, 0.031273264437913895, 0.008073328994214535, -0.0421191081404686, 0.01725696586072445, -0.01785260997712612, -0.062159907072782516, 0.045764267444610596, -0.01963883452117443, -0.03249781206250191, -0.0294275414198637, 0.08319661766290665, 0.021940212696790695, 0.028040427714586258, 0.00031876127468422055, -0.04164069518446922, 0.030512221157550812, -0.036120716482400894, -0.012545832432806492, -0.01613287255167961, -0.0067458199337124825, 0.06348151713609695, 0.032475028187036514, -0.0336616188287735, -0.003315873211249709, 0.0027856689412146807, 0.007095928303897381, -0.014457865618169308, -0.002786338096484542, 0.030929209664463997, 0.046849384903907776, 0.03420044109225273, 0.01692301407456398, -0.03000485524535179, -0.05289531871676445, 0.031921159476041794, -0.006133895833045244, 0.03161260858178139, 0.021423157304525375, -0.08786624670028687, -0.01489406730979681, -0.0023162306752055883, 0.06212540715932846, 0.019536638632416725, 0.037960149347782135, 0.018222574144601822, -0.02770201303064823, -0.030353011563420296, -0.025855449959635735, 0.04573828727006912, 0.048405226320028305, -0.04148031026124954, -0.021209504455327988, 0.03683313727378845, 0.048163726925849915, 0.028779229149222374, 0.0029226418118923903, -0.05185754969716072, 3.5886712954001694e-34, -0.004025566857308149, -0.03125378116965294, 0.018209777772426605, -0.044176775962114334, 0.03630688786506653, -0.02308456227183342, 0.027805745601654053, 0.02836623415350914, 0.007823590189218521, -0.08839801698923111, -0.0233442485332489], "9ef54c37-488c-41f4-b826-cf988eb9e138": [0.04415195435285568, 0.00771493511274457, -0.0310210008174181, -0.00888589583337307, -0.007394460029900074, 0.02100253850221634, 0.07421566545963287, 0.026856260374188423, -0.014287615194916725, 0.02614940144121647, 0.013977574184536934, -0.032099295407533646, -0.009570038877427578, 0.0511651411652565, -0.024587703868746758, -0.03522138670086861, 0.03979606181383133, 0.02359980344772339, 0.0131614301353693, -0.013907859101891518, -0.009308138862252235, 0.035424597561359406, -0.008212960325181484, 0.0074806129559874535, 0.031482961028814316, -0.03789224103093147, 0.010224736295640469, 0.036344967782497406, 0.014808982610702515, -0.046455662697553635, 0.03405733406543732, 0.025132091715931892, -0.02771313302218914, 0.023112718015909195, 2.6148254619329236e-06, -0.018347663804888725, -0.033147603273391724, 0.007538442965596914, -0.07258107513189316, -0.006176359951496124, 0.003081351751461625, 0.01725214347243309, 0.025994662195444107, 0.013409332372248173, -0.02575191855430603, 0.0037339022383093834, -0.027232211083173752, 0.008212216198444366, -0.028421666473150253, -0.001109621487557888, 0.028018241748213768, 0.00674938689917326, -0.0776490569114685, -0.023331746459007263, 0.07968432456254959, -0.0639951080083847, -0.04697204753756523, 0.03624195232987404, 0.0387825109064579, -0.001997248036786914, -0.027471641078591347, -0.015765687450766563, -0.0025602371897548437, 0.023027144372463226, 0.15056301653385162, 0.04688012972474098, 0.08418841660022736, -0.06628263741731644, -0.014073069207370281, 0.012923316098749638, 0.017122607678174973, 0.01611931063234806, 0.025140807032585144, 0.02535128779709339, -0.02232731133699417, 0.021176371723413467, 0.013637814670801163, 0.005941982381045818, -0.04314940795302391, -0.025357775390148163, 0.011966705322265625, -0.031154638156294823, -0.01989150606095791, 0.004384344909340143, 0.045144300907850266, 0.05379214510321617, -0.02894698642194271, -0.043673187494277954, 0.03627091273665428, 0.004003877751529217, 0.038884539157152176, 0.028425082564353943, 0.020005464553833008, 0.021618137136101723, 0.017874548211693764, -0.021508831530809402, 0.03129296749830246, 0.034511104226112366, 0.014522327110171318, 0.047545500099658966, -0.02714160643517971, 0.017336037009954453, -0.010551225394010544, 0.045222457498311996, -0.03775085136294365, 0.010285677388310432, 0.04847210645675659, -0.027418864890933037, -0.00017436282359994948, 0.07032491266727448, -0.01881650649011135, 0.0393417663872242, -0.04518413916230202, -0.014151634648442268, 0.061291106045246124, -0.0018256929470226169, -0.028870366513729095, 0.06832094490528107, 0.029215533286333084, 0.0493243932723999, 0.055231865495443344, 0.016718605533242226, -0.03324688598513603, 0.018851477652788162, -0.03636525198817253, -0.07274283468723297, 0.005969757679849863, -0.012815839610993862, -0.033727627247571945, -0.02236613631248474, -0.0001568371371831745, -0.03074704110622406, 0.01035580039024353, 0.02205214835703373, 0.00564268883317709, 0.040104471147060394, 0.01675223931670189, -0.043645381927490234, 0.04466596245765686, -0.021394172683358192, 0.02150142751634121, 0.02850668877363205, -0.0076543246395885944, -0.021597769111394882, 0.005371554754674435, -0.00209711492061615, 0.0278558861464262, 0.0008863601251505315, 0.006868909578770399, 0.04373512789607048, 0.002452762331813574, 0.045501019805669785, -0.03373248875141144, 0.01009192131459713, 0.01718048006296158, 0.060736097395420074, -0.05480380356311798, 0.004231392405927181, -0.020269664004445076, -0.002501343609765172, 0.02381238155066967, 0.029166165739297867, -0.014424942433834076, -0.011629077605903149, -0.020115628838539124, -0.0010469108819961548, 0.06867159903049469, -0.01095775980502367, 0.027445729821920395, -0.0012031259248033166, -0.014333542436361313, -0.0039073568768799305, -0.037101056426763535, 0.023177338764071465, -0.024854470044374466, 0.01563068851828575, 0.03170371800661087, 0.10799597203731537, 0.02456282451748848, 0.01693074218928814, -0.03434203192591667, -0.04864370450377464, -0.023780982941389084, 0.057652547955513, -0.06003910303115845, -0.018671883270144463, -0.03245963528752327, 0.05324934422969818, -0.015146153047680855, 0.024503305554389954, 0.006892539095133543, 0.003392714075744152, 0.0006524014752358198, -0.05897782742977142, 0.007201198022812605, -0.008586524985730648, -0.03578541427850723, -0.10584255307912827, -0.0386556051671505, -0.03240930289030075, 0.0038535785861313343, -0.0073543451726436615, 0.01883714646100998, 0.06061198189854622, 0.062337297946214676, -0.016236402094364166, -0.02484844997525215, -0.013817603699862957, -0.03740166127681732, 0.007077554706484079, 0.09576571732759476, 0.011753152124583721, -0.022379843518137932, -0.029410822317004204, -0.0598822757601738, 0.083742156624794, -0.03190253674983978, -0.026944806799292564, 0.019746342673897743, 0.020220082253217697, -0.006230500992387533, -0.01358856726437807, -0.02331489883363247, 0.02097211219370365, -0.007349839899688959, -0.034832876175642014, 0.014261535368859768, 0.02105012722313404, 0.02205081842839718, 0.007174698170274496, 0.0036658260505646467, -0.018295222893357277, -0.0014642212772741914, -0.0021844201255589724, 0.014061984606087208, 0.009040548466145992, -0.0728147029876709, -0.019955739378929138, 0.0038590789772570133, -0.03734777867794037, -0.02663946896791458, 0.01630440726876259, -0.000398188189137727, 0.03734346851706505, 0.025777064263820648, 0.017138876020908356, -0.021719176322221756, -0.00036116072442382574, 0.01510244607925415, 0.023154979571700096, -0.0015874208183959126, -0.002348075620830059, 0.016537807881832123, 0.03803558275103569, 0.012933710590004921, 0.005345467943698168, -0.08190792053937912, 0.025454463437199593, -0.11643090844154358, 0.009337843395769596, -0.04422016441822052, 0.004343084525316954, -0.0188276506960392, -0.015993215143680573, 0.06006913259625435, 0.004652044270187616, 0.0099380137398839, -0.07766789197921753, -0.00724380137398839, 0.00955747626721859, -0.0017755931476131082, 0.020738035440444946, 0.006853831000626087, -0.030838320031762123, -0.017622023820877075, -0.02362704649567604, 0.07699353247880936, 0.017367884516716003, -0.04730723425745964, 0.01581624522805214, 0.01409017015248537, -0.05613633990287781, -0.007034205365926027, -0.004267169628292322, -0.03788996487855911, -0.04266133904457092, 0.044832900166511536, -0.07044614106416702, -0.03709116578102112, -0.031187403947114944, 0.002554758684709668, 0.0024133939296007156, 0.037369538098573685, -0.021161967888474464, -0.024530967697501183, 0.009801109321415424, 0.009546659886837006, 0.040323082357645035, -0.011471910402178764, 0.053349971771240234, -0.014823040924966335, 0.021548781543970108, -0.010736754164099693, -0.00028909696266055107, 0.01769351400434971, 0.029716983437538147, 0.04324350133538246, -0.05223645642399788, -0.05612841621041298, -0.03411180526018143, -0.0008450833847746253, 0.01362779550254345, 0.0002586893970146775, 0.03102061152458191, -0.008064893074333668, 0.003312452230602503, -0.0835367888212204, -0.05631909891963005, -0.008010595105588436, 0.0247687678784132, -0.0014470020541921258, -0.02066042460501194, 0.007938504219055176, -0.02047414891421795, -0.01584509387612343, -0.09411035478115082, -0.04494473710656166, -0.02208811603486538, 0.03915224224328995, -0.009115854278206825, 0.029264917597174644, 0.062369126826524734, -0.01670013554394245, -0.05254793539643288, 0.0482381172478199, 0.01170777902007103, 0.004721567966043949, -0.04379649832844734, -0.01995905302464962, -0.020105432718992233, -0.020359186455607414, 0.024463724344968796, -0.07248907536268234, -0.05121350660920143, -0.02411781996488571, 0.03135162591934204, -0.02989722229540348, -0.03025045618414879, -0.03485431149601936, -0.02153608947992325, 0.06375294178724289, -0.006218838971108198, 0.02878664620220661, -0.01547691598534584, 0.0018838051473721862, -0.047819316387176514, -0.02559865266084671, 0.006119488272815943, 0.006137373857200146, -0.058524977415800095, 0.008856324478983879, -0.0033095646649599075, 0.05265813320875168, -0.014135576784610748, 0.0005437805666588247, -0.024004779756069183, 0.030194059014320374, -0.010701657272875309, 0.0034706618171185255, 0.02329668216407299, -0.03453342989087105, 0.04209338128566742, -0.039288099855184555, 0.05847448483109474, 0.006975497119128704, -0.05239943414926529, 0.0033018183894455433, 8.332850848091766e-05, 0.04317457228899002, -0.01589278131723404, 0.009869448840618134, -0.07705651968717575, 0.05342201888561249, -0.03300810605287552, 0.02822115086019039, -0.005193055607378483, -0.002159206196665764, -0.0036029210314154625, 0.03689346835017204, -0.010284420102834702, 0.018266066908836365, -0.08613358438014984, -0.022620076313614845, -0.00031233939807862043, -0.034551043063402176, 0.026646234095096588, -0.05884377285838127, 0.0037981849163770676, -0.03103429637849331, 0.008148630149662495, 0.01757967844605446, 0.008507020771503448, 0.02880321443080902, 0.029535425826907158, -0.022510066628456116, 0.08101111650466919, 0.037242341786623, -0.003552874783053994, 0.015737341716885567, 0.04283232241868973, -0.00893418025225401, -0.0045153736136853695, 0.019428608939051628, 0.0041423458606004715, 0.03275572508573532, -0.08552981913089752, 0.013321095146238804, -0.03192278370261192, -0.03822435438632965, -0.050663333386182785, -0.013338067568838596, 0.04750479757785797, 0.009806790389120579, -0.014756593853235245, 0.03356621041893959, -0.04397471994161606, 0.10682736337184906, 0.033618632704019547, 0.04140106588602066, -0.004610818345099688, -0.017031939700245857, 0.06806371361017227, 0.012205440551042557, 0.04734388366341591, 0.01837073639035225, -0.022946318611502647, -0.01372340228408575, -0.10094576328992844, -0.02221212349832058, -0.02735951729118824, -0.009017275646328926, 0.04898381233215332, 0.05992170423269272, -0.008941098116338253, -0.0318741500377655, -0.01185485441237688, 0.06631384789943695, 0.02780088782310486, -0.006610726471990347, -0.07236368209123611, 0.014220460318028927, -0.09468498826026917, -0.052316777408123016, -0.08570413291454315, -0.018907330930233, 0.0024245968088507652, -0.03183019533753395, 0.10219253599643707, 0.02892703376710415, 0.042237091809511185, -0.01970802992582321, 0.04959053918719292, -0.040237583220005035, -0.016637621447443962, 0.007982000708580017, 0.034354981034994125, 0.013013833202421665, -0.047126203775405884, 0.06438716500997543, -0.012028626166284084, 0.03190220892429352, -0.006527285557240248, -0.010867743752896786, -0.0008520768606103957, 0.014100460335612297, -0.06800656020641327, -0.01997218281030655, -0.016504468396306038, -0.12569217383861542, -0.02579989843070507, 0.033487554639577866, -0.005970332771539688, 0.0038274601101875305, -0.012118065729737282, 0.006848374847322702, 0.03291678428649902, 0.018751023337244987, -0.006981692276895046, -0.005318363197147846, -0.02512861043214798, 0.014641571789979935, -0.0035407168325036764, 0.010705566965043545, -0.06680047512054443, -0.02356327325105667, 0.1024307906627655, 0.0037379127461463213, 0.006417626980692148, -0.023736046627163887, 0.03468713164329529, -0.022602254524827003, 0.00662445742636919, -0.016122804954648018, 0.024365313351154327, -0.008636873215436935, -0.011186938732862473, -0.006991450674831867, 0.08450685441493988, -0.017148533836007118, -0.011664343066513538, -0.041631393134593964, 0.012356015853583813, -0.04553866386413574, -0.0761532410979271, 0.031334422528743744, 0.061791758984327316, -0.03935013338923454, 0.021351121366024017, -0.005707967095077038, -0.03830697014927864, 0.03655770793557167, 0.012560931034386158, -0.01092072855681181, -0.045987993478775024, 0.006629277020692825, 0.04770103842020035, 0.024827517569065094, 0.04284641146659851, -0.022434134036302567, 0.05399734526872635, -0.03137702867388725, -0.013306285254657269, -0.007821900770068169, -0.008870304562151432, -0.02569587156176567, 0.0466189906001091, 0.06533458083868027, 0.040310561656951904, -0.0007738872081972659, 0.013533146120607853, -0.05778287723660469, 0.01817011460661888, 0.031084617599844933, 0.030245261266827583, 0.020899280905723572, -0.024155789986252785, 0.07992186397314072, 0.02369670383632183, -0.0422624908387661, -0.05699995532631874, 0.007057822309434414, 0.05107277259230614, -0.04310673847794533, 0.02726285718381405, -0.014552568085491657, -6.951587064014995e-33, -0.05627967789769173, -0.04874708503484726, 0.0012004920281469822, 0.01010493841022253, 0.020276106894016266, -0.02491854503750801, 0.016381720080971718, -0.0027249855920672417, -0.026976101100444794, -0.03826679289340973, -0.028733447194099426, 0.0021675750613212585, 0.019075682386755943, -0.04039555788040161, 0.0015284295659512281, -0.002706663217395544, 0.016369037330150604, 0.002344472100958228, 0.006535568740218878, 0.018267596140503883, -0.03753555938601494, 0.0014497132506221533, -0.015306453220546246, -0.02614375203847885, -0.013441329821944237, -0.03524264320731163, -0.01852581836283207, 0.01062324084341526, 0.0025274185463786125, -0.02426423877477646, -0.022172272205352783, -0.024570371955633163, 0.0006393491057679057, 0.08190278708934784, 0.03876910358667374, 0.05901235342025757, -0.037452731281518936, -0.01888243295252323, -0.03472081199288368, 0.003212015377357602, -0.015351847745478153, -0.03615276515483856, -0.04582199826836586, -0.010274062864482403, 0.00563983665779233, 0.019005676731467247, 0.06222149357199669, 0.023644061759114265, -0.007550608832389116, 0.07099320739507675, -0.05137203261256218, 0.012112265452742577, 0.017786642536520958, 0.011040378361940384, -0.029983920976519585, 0.06356285512447357, 0.018564172089099884, -0.10964304953813553, -0.04053115472197533, 0.0005309206899255514, -0.02675332874059677, 0.017854874953627586, 0.002675390336662531, -0.021908311173319817, -0.022858798503875732, 0.03655786067247391, -0.026049332693219185, 0.0606096088886261, 0.02909105457365513, -0.036475565284490585, -0.014544613659381866, 0.01851426437497139, -0.006670795381069183, -0.03299006447196007, 0.008009613491594791, 0.005196189507842064, -0.031998202204704285, 0.06310603022575378, 0.14711222052574158, 0.019510677084326744, -0.018678369000554085, 0.006554025691002607, -0.07222654670476913, 0.0029017948545515537, 0.04332193359732628, -0.026803981512784958, -0.016270630061626434, -0.07017862796783447, -0.01688368432223797, 0.022804975509643555, -0.033848248422145844, -0.0495353639125824, -0.0174994058907032, 0.043091557919979095, 0.04179752990603447, -0.024535207077860832, 0.06289272010326385, -0.024213360622525215, -0.00032203691080212593, -0.043099358677864075, -0.10328090190887451, -0.03443314880132675, 0.00490869814530015, 0.024731162935495377, 0.023016687482595444, 0.03129398822784424, -0.010827591642737389, 0.015601526945829391, -0.04074115306138992, 0.004195424262434244, -0.0022747914772480726, -0.041923657059669495, 0.022626258432865143, -0.008128550834953785, -0.021445786580443382, -0.01996118202805519, 0.004903241526335478, 0.0422791950404644, -0.00023971134214662015, -0.043379709124565125, -0.03578481450676918, -0.025805016979575157, 0.00619711447507143, -0.028632579371333122, -0.0451325923204422, 0.002229218604043126, -0.01306473184376955, 0.0027189627289772034, 0.07339237630367279, -0.010693656280636787, -0.0022599142976105213, -0.05202823877334595, 3.3585925507395586e-07, -0.0020026424899697304, 0.042786527425050735, 0.056088704615831375, -0.0389418788254261, -0.010202523320913315, -0.017911411821842194, 0.017806077376008034, 0.03477145731449127, 0.02682250365614891, 0.007314479909837246, 0.034897685050964355, 0.02111314982175827, -0.053138166666030884, 0.0034388762433081865, -0.02217014692723751, -0.09055278450250626, -0.017183436080813408, -0.025426069274544716, -0.006713985465466976, -0.014024194329977036, 0.10399137437343597, -0.0004791288520209491, 0.05277750641107559, -0.0011863945983350277, -0.030698683112859726, -0.02261226624250412, -0.010081551969051361, -0.024994762614369392, -0.008406337350606918, 0.008332150988280773, 0.03946783021092415, -0.005833357572555542, -0.021963488310575485, 0.01698380522429943, 0.03062674216926098, -0.013674774207174778, 0.025199368596076965, 0.013073920272290707, 0.014359519816935062, 0.05380205437541008, 0.03754565864801407, 0.006593301892280579, -0.015119945630431175, -0.011524710804224014, 0.008987964130938053, -0.02925274148583412, 0.007141061592847109, 0.09906046837568283, -0.052219562232494354, -0.02477283589541912, 0.023724785074591637, 0.053025275468826294, 0.003217552322894335, 0.02799292653799057, 0.016539137810468674, -0.004988186992704868, -0.058514270931482315, 0.0006539106252603233, 0.02602868340909481, -0.018687991425395012, -0.014044146984815598, -0.07077213376760483, 0.021956663578748703, 0.007569459266960621, 0.0030620889738202095, -0.01359598059207201, -0.03901045769453049, 3.7061185634929224e-34, -0.013041228987276554, -0.0022848027292639017, 0.008176103234291077, -0.021351607516407967, 0.024019978940486908, -0.013233580626547337, -0.005062002222985029, 0.01678663305938244, 0.059674784541130066, -0.022444529458880424, -0.04909488186240196], "584f6865-e808-41c0-8032-05e75d746feb": [0.03139456734061241, -9.81154153123498e-05, -0.00425636675208807, -0.0025893975980579853, -0.00045451457845047116, 0.008292648009955883, 0.04526329040527344, -0.010478478856384754, -0.01908717304468155, 0.02210860140621662, -0.0017693464178591967, -0.0664428249001503, -0.005492418073117733, 0.028135772794485092, -0.039835087954998016, -0.037639688700437546, 0.03773112967610359, 0.026516053825616837, 0.007453089114278555, 0.01186009868979454, 0.031397607177495956, 0.03594985976815224, -0.02026999369263649, 0.02623031474649906, -0.02139623463153839, -0.0050632837228477, -0.013690630905330181, 0.029494324699044228, 0.013657010160386562, -0.003483818145468831, 0.037365201860666275, 0.02829992212355137, 0.009130979888141155, 0.05328061431646347, 2.4122994091158034e-06, 0.002753062639385462, -0.03437338024377823, 0.00831583421677351, -0.03310557082295418, -0.08423810452222824, -0.004672561772167683, -0.003084886586293578, 0.005507979076355696, 0.007814006879925728, -0.03380078449845314, -0.005580457393079996, -0.016450347378849983, -0.028807353228330612, -0.018290644511580467, -0.006155470386147499, 0.0008601098088547587, 0.04040118306875229, -0.07723990827798843, 0.01677151396870613, 0.03315882012248039, -0.03716161474585533, -0.023542970418930054, 0.033599887043237686, 0.02333834394812584, -0.03719529137015343, -0.008502766489982605, -0.04204200208187103, 0.01694626361131668, 0.014952140860259533, 0.15584364533424377, 0.04043421149253845, 0.07378804683685303, -0.020907003432512283, -0.05708928406238556, 0.012538482435047626, 0.0058748675510287285, 0.056705739349126816, 0.020950665697455406, 0.035902537405490875, 0.0322592630982399, 0.007124969735741615, 0.023828187957406044, -0.007273036055266857, -0.051249075680971146, 0.009054392576217651, 0.01187641080468893, -0.018860191106796265, -0.03875833749771118, 0.013726013712584972, 0.022458206862211227, 0.059315651655197144, 0.002221571747213602, -0.010255618020892143, -0.021624669432640076, 0.04667150229215622, 0.025368068367242813, 0.060239601880311966, 0.008649938739836216, 0.027722138911485672, -0.0067930761724710464, -0.016610778868198395, 0.005719759501516819, 0.04387317970395088, -0.02279999852180481, 0.0920393094420433, -0.04429010674357414, 0.00734000513330102, -0.007422812283039093, 0.05206022784113884, -0.007388997357338667, -0.0384361669421196, 0.053952474147081375, -0.03316696733236313, 0.0411846861243248, 0.00596608268097043, -0.02941117435693741, 0.02957286685705185, -0.03161638602614403, 0.029067253693938255, 0.06149929016828537, -0.031926967203617096, -0.0371440090239048, 0.09031069278717041, 0.03163177892565727, 0.009232904762029648, 0.04143455624580383, -0.014679912477731705, -0.03402596712112427, 0.02040066011250019, -0.04191117361187935, -0.060689643025398254, 0.02407476119697094, 0.0013560486258938909, -0.03370803967118263, -0.08497558534145355, -0.01286490261554718, -0.016381975263357162, 0.012073361314833164, 0.015576382167637348, -0.02595389448106289, -0.019459154456853867, 0.0075053260661661625, -0.06570859253406525, 0.07478000223636627, 0.01279684342443943, 0.015285425819456577, 0.03073669597506523, -0.019386088475584984, -0.0004294907848816365, -0.002453905064612627, -0.017648113891482353, 0.0018392532365396619, -0.025963475927710533, -0.005762872286140919, 0.03112860582768917, 0.027380073443055153, 0.03196868300437927, -0.08017796277999878, 0.010574140585958958, -0.024962056428194046, 0.03873506933450699, -0.03547092154622078, 0.019237009808421135, -0.022070830687880516, -0.02939360775053501, -0.012944499030709267, 0.033796101808547974, -0.03218047693371773, 0.015691271051764488, -0.01181842666119337, -0.026509536430239677, 0.08390273153781891, -0.018729904666543007, 0.04206080734729767, 0.031011493876576424, 0.016476435586810112, 0.0012060394510626793, -0.04116061329841614, 0.029596101492643356, -0.01905275322496891, 0.00796827394515276, 0.03578580170869827, 0.07450417429208755, 0.08481039851903915, 0.0024677461478859186, -0.042532216757535934, -0.028896665200591087, -0.03968140482902527, 0.025835976004600525, -0.003225980792194605, -0.02442721463739872, 0.011243888176977634, 0.10087033361196518, -0.01150206383317709, 0.03916250914335251, 0.04423918575048447, -0.021892229095101357, -0.01914209872484207, -0.061046820133924484, -0.006010965444147587, 0.005601633805781603, -0.04273563623428345, -0.09275586903095245, -0.02674591913819313, -0.03179904446005821, 0.01761479675769806, -0.019007273018360138, -1.0099023711518385e-05, 0.037059321999549866, 0.06108631193637848, 0.01642766036093235, -0.013939696364104748, -0.003149291267618537, -0.05650157108902931, 0.013936295174062252, 0.07440807670354843, -0.0026083842385560274, -0.03002971224486828, -0.0069665382616221905, -0.02774176560342312, 0.11244849860668182, -0.027031967416405678, 0.0067454176023602486, 0.0418669693171978, 0.03656787425279617, -0.023341674357652664, 0.00913513358682394, 0.024241650477051735, 0.020846251398324966, 0.011419188231229782, 0.009659101255238056, 0.0033346444834023714, 0.01005302183330059, 0.009939250536262989, 0.0075098867528140545, -0.01371090393513441, -0.03438330814242363, -0.011936968192458153, 0.012560131959617138, 0.008204424753785133, 0.04500928893685341, -0.07495500892400742, -0.04227342829108238, 0.04885365068912506, 0.028095876798033714, -0.036879003047943115, -0.013805019669234753, 0.04047712683677673, 0.01886979304254055, 0.04347224533557892, 0.05917231738567352, 0.013401991687715054, -0.020517216995358467, -0.006361192092299461, 0.01748579554259777, 0.01225485373288393, 0.01979960687458515, -0.027345454320311546, 0.04475972428917885, -0.012417616322636604, -0.008584338240325451, -0.10106176882982254, 0.009931690990924835, -0.08742689341306686, -0.0012739949161186814, -0.07206672430038452, 0.007691665086895227, -0.029369110241532326, -0.02249848283827305, 0.024059686809778214, -0.016991017386317253, -0.014856351539492607, -0.04347127676010132, 0.009292696602642536, 0.009823807515203953, 0.003891977481544018, 0.0150497667491436, 0.015265333466231823, -0.024985508993268013, -0.029943227767944336, -0.029508553445339203, 0.08089800924062729, 0.0450582318007946, -0.0397118404507637, 0.04142490029335022, 0.03298638388514519, -0.05589687079191208, 0.023768603801727295, 0.0061084916815161705, -0.02444043569266796, -0.01657438464462757, 0.052910540252923965, -0.028079932555556297, -0.04515276849269867, -0.06316094100475311, 0.009180579334497452, -0.019623195752501488, 0.01518192607909441, -0.003572320332750678, -0.01486155204474926, -0.013875994831323624, 0.0348748154938221, 0.008691214956343174, 0.005739761050790548, 0.02237606793642044, -0.028735635802149773, 0.014240916818380356, -0.025349918752908707, -0.012615306302905083, 0.025869417935609818, 0.010634118691086769, 0.035079024732112885, -0.011089706793427467, -0.037385985255241394, 0.008331989869475365, -0.06960935890674591, 0.012762095779180527, 0.00797196850180626, 0.052784617990255356, 0.005261105950921774, 0.04046180099248886, -0.0638054683804512, -0.07749384641647339, -0.0003856989205814898, 0.0029568164609372616, 0.017670007422566414, -0.02551882714033127, -0.007878145202994347, -0.03869936987757683, -0.037776682525873184, -0.08143963664770126, -0.03524439409375191, -0.019547011703252792, -0.012900206260383129, -0.006943328771740198, 0.02185380831360817, 0.039509233087301254, 0.0017614992102608085, -0.031707763671875, -0.02527083456516266, -0.005331888794898987, 0.02082783356308937, -0.04696875810623169, -0.019533012062311172, 0.0035446458496153355, -0.014888955280184746, 0.015349630266427994, -0.0534275583922863, -0.01198270358145237, -0.021027274429798126, 0.01764531433582306, -0.04579325020313263, -0.032542698085308075, -0.0005849393201060593, -0.009510824456810951, 0.028034944087266922, -0.027898211032152176, 0.01146844495087862, -0.0008363819215446711, -0.009860143065452576, -0.0370374359190464, -0.03788994625210762, 0.01681881956756115, 0.03628534451127052, -0.02404581755399704, 0.025167318060994148, -0.015474817715585232, 0.01823974959552288, -0.05917661637067795, -0.013674093410372734, -0.08803386241197586, 0.0223037488758564, 0.019758613780140877, 0.007571479305624962, 0.057218924164772034, 0.019302738830447197, 0.04592033848166466, -0.02875482477247715, 0.018239231780171394, 0.004076112061738968, -0.07014171034097672, -0.01626630127429962, 0.004279821179807186, 0.0851224884390831, -0.01728987693786621, -0.0028519269544631243, -0.07710544764995575, 0.055855363607406616, -0.025335881859064102, 0.011459006927907467, -0.006100365426391363, -0.022547079250216484, -0.012619522400200367, 0.019125530496239662, 0.01863725297152996, 0.007727615535259247, -0.09912324696779251, -0.02409571036696434, 0.010018445551395416, -0.015559242106974125, 0.03994155675172806, -0.0026169114280492067, -0.0012394427321851254, -0.05009706690907478, 0.03519729897379875, 0.008270639926195145, -0.02338566817343235, 0.02383268252015114, -0.01134822703897953, -0.07482001185417175, 0.07326392829418182, 0.005178922321647406, -0.024248715490102768, 0.038412366062402725, 0.048627227544784546, -0.030269060283899307, 0.027390003204345703, 0.02196062169969082, -0.0139008779078722, 0.0143046909943223, -0.06584052741527557, 0.011127091012895107, -0.02642073668539524, -0.009401300922036171, -0.03478546813130379, 0.007642523851245642, 0.04203321784734726, -0.015088072046637535, 0.0017297982703894377, 0.04199712723493576, -0.01779874600470066, 0.10490282624959946, 0.06785120815038681, 0.02413885109126568, 0.013972151093184948, -0.01751960627734661, 0.06808866560459137, 0.022555546835064888, 0.0632762536406517, 0.00854784157127142, -0.04546133428812027, -0.015661243349313736, -0.048554886132478714, -0.037819039076566696, -0.009983144700527191, -0.026092281565070152, 0.05898250639438629, 0.024839123710989952, -0.011118698865175247, -0.005078105255961418, -0.06619278341531754, 0.06586568802595139, 0.06914199888706207, 0.0404500775039196, -0.06949816644191742, 0.01225245837122202, -0.07067955285310745, -0.04530571028590202, -0.09860832989215851, -0.03739733248949051, 0.006878043990582228, -0.07420867681503296, 0.08997615426778793, 0.05866038799285889, 0.06150138005614281, -0.03219267353415489, 0.01802092418074608, 0.01914539933204651, -0.013359231874346733, 0.054300278425216675, -0.004413792863488197, -0.021070923656225204, -0.01856239326298237, 0.047411538660526276, -0.0007484119851142168, 0.061574384570121765, -0.011016619391739368, 0.00852773617953062, 0.027953870594501495, -0.0072067659348249435, -0.030659949406981468, -0.043513961136341095, 0.017481209710240364, -0.0753985270857811, -0.016888324171304703, 0.021772898733615875, 0.013458221219480038, 0.007700121030211449, 0.08043793588876724, 0.022836310788989067, -0.021604862064123154, 0.032608337700366974, -0.009343089535832405, -0.036252252757549286, -0.03811383619904518, -0.014994349330663681, 0.009565988555550575, -0.0003227215202059597, -0.054340217262506485, -0.05695348605513573, 0.09223645180463791, 0.00977701973170042, 0.022508390247821808, -0.011297991499304771, 0.025054972618818283, -0.020321229472756386, -0.01323765143752098, 0.013442601077258587, 0.019698865711688995, 0.015366226434707642, -0.0012100770836696029, -0.02272151969373226, 0.047759898006916046, 0.0014919344102963805, -0.03466229513287544, -0.004410497844219208, 0.017395224422216415, -0.016835415735840797, -0.05066867917776108, 0.009769397787749767, 0.05304626002907753, -0.025331629440188408, 0.08608834445476532, -0.00929225143045187, -0.036064788699150085, 0.035862501710653305, 0.00565556762740016, -0.008511839434504509, -0.04421588405966759, -0.01583230309188366, 0.07501369714736938, -0.006843494717031717, 0.0015270162839442492, -0.012705778703093529, 0.02681088261306286, -0.05043637752532959, 0.006726662162691355, 0.01398949883878231, 0.007182619068771601, -0.019132638350129128, 0.041955482214689255, 0.051929473876953125, 0.013002579100430012, -0.006099878344684839, 0.011461067013442516, -0.04155704751610756, 0.04457017779350281, 0.01694549061357975, -0.0014478144003078341, -0.03532029688358307, -0.018224606290459633, 0.0453544557094574, 0.0010430763941258192, -0.05087943375110626, -0.047304220497608185, -0.018438221886754036, 0.026798037812113762, 0.008191116154193878, -0.0022591485176235437, 0.020321659743785858, -6.505407612009257e-33, -0.039028704166412354, -0.03238486498594284, 0.009542875923216343, -0.022718971595168114, 0.014975877478718758, -0.02796645648777485, 0.01858571544289589, -0.0030206041410565376, -0.013017823919653893, -0.021899333223700523, -0.020443186163902283, 0.03405539691448212, 0.004558075685054064, -0.02949172630906105, -0.013052232563495636, -0.00966623518615961, 0.01896880753338337, -0.008471734821796417, 0.018485743552446365, 0.02854127623140812, -0.06952229887247086, 0.04150674119591713, -0.021792033687233925, -0.03428918868303299, 0.003428223542869091, -0.003290673019364476, -0.024677226319909096, 0.02940051630139351, 0.02216407097876072, -0.028001394122838974, 0.012734884396195412, -0.01355061773210764, 0.0008491227636113763, 0.058186791837215424, 0.025367354974150658, 0.04944222420454025, -0.011653706431388855, 0.037808045744895935, -0.05469691753387451, 0.005872386507689953, -0.017479674890637398, -0.030247429385781288, -0.03381912410259247, -0.03240183740854263, 0.015169397927820683, 0.04446037486195564, 0.045468155294656754, 0.02568111941218376, -0.007777869701385498, 0.06213578209280968, -0.03108343854546547, -0.007733708713203669, 0.0023736266884952784, -0.004096145275980234, 0.012501352466642857, 0.0020312322303652763, -0.0015000441344454885, -0.10630492866039276, -0.029492603614926338, 0.0288535263389349, -0.020573142915964127, 0.008381905034184456, -0.019495738670229912, -0.01706310361623764, -0.021956944838166237, -0.0019535294268280268, -0.036364201456308365, 0.0468871109187603, 0.026410017162561417, -0.018295658752322197, -0.03372092545032501, 0.0019234054489061236, -0.037453100085258484, -0.004588810261338949, 0.012995416298508644, 0.035756830126047134, -0.03687787055969238, 0.07819604128599167, 0.13926592469215393, -0.015659956261515617, -0.052214689552783966, -0.019183609634637833, -0.04448626562952995, 0.013882891274988651, 0.011515063233673573, -0.01786487177014351, 0.0070914714597165585, -0.0880158320069313, -0.04109352082014084, 0.03196346014738083, -0.01996632106602192, -0.08559489250183105, 0.0007084185490384698, -0.00047967361751943827, 0.028508448973298073, -0.04212958365678787, 0.039398983120918274, -0.04120505973696709, 0.006847593933343887, -0.03467056155204773, -0.07640732824802399, -0.027289289981126785, 0.023108983412384987, 0.036700524389743805, 0.012802931480109692, 0.022307956591248512, 0.0003039162838831544, 0.007574876304715872, -0.028754573315382004, 0.023182563483715057, 0.008628244511783123, 0.010113378055393696, 0.022474192082881927, -0.02801555208861828, -0.016242224723100662, -0.021314620971679688, -0.0018761706305667758, 0.06860916316509247, 0.03902732953429222, -0.0508255772292614, -0.019690578803420067, -0.029518987983465195, -0.012241486459970474, -0.0355161651968956, -0.06944361329078674, -0.014314258471131325, -0.018001392483711243, 0.02566668577492237, 0.08178023248910904, 0.02025122195482254, 0.007234580814838409, -0.08169694244861603, 3.168732121139328e-07, 0.025245966389775276, 0.014245031401515007, 0.029211409389972687, -0.07269804179668427, 0.010534195229411125, -0.054203830659389496, 0.0236589964479208, 0.05302130803465843, 0.015994949266314507, 0.018461938947439194, 0.017320318147540092, 0.03416704759001732, -0.04325979948043823, -0.010237487033009529, -0.04435763508081436, -0.09682866185903549, -0.03435977175831795, -0.02770715206861496, 0.007494858466088772, 0.011272060684859753, 0.04266832396388054, 0.0027363772969692945, 0.0013816581340506673, 0.0015577217563986778, -0.008279022760689259, 0.003977471962571144, -0.008115898817777634, -0.017087213695049286, -0.03205038607120514, 0.03327780216932297, 0.03630693629384041, -0.014020754024386406, -0.02152399905025959, 0.021202636882662773, 0.03512568399310112, 0.03161590173840523, -0.025365643203258514, -0.0057376171462237835, -0.017032358795404434, 0.056808196008205414, 0.02108597569167614, 0.019760573282837868, -0.006699268240481615, 0.009643122553825378, 0.0018311499152332544, -0.0830945149064064, -0.01949724182486534, 0.024350151419639587, -0.03957365080714226, -0.03661886602640152, 0.004223180003464222, 0.04825906455516815, 0.012532327324151993, 0.04617166146636009, 0.013719349168241024, 0.02472027577459812, -0.04089217633008957, 0.014759267680346966, 0.01951763778924942, -0.0435473658144474, 0.014492510817945004, -0.09514445066452026, 0.01862686686217785, -0.01583925075829029, -0.015786446630954742, 0.022022614255547523, -0.03388400375843048, 2.9445612321657605e-34, -0.0371033139526844, 0.0146937919780612, 0.009256640449166298, 0.051789045333862305, 0.04680642485618591, -0.024939466267824173, 0.0024972595274448395, -0.006707219406962395, 0.05643526092171669, -0.011645965278148651, -0.018599750474095345], "36f72676-0d86-4d9b-b3c5-18d5cbe0ad06": [0.023233646526932716, -0.0177494827657938, 0.0074244006536901, 0.01019971538335085, -0.020704006776213646, 0.023591801524162292, 0.03228573501110077, -0.017087364569306374, -0.02774939127266407, 0.03415362536907196, 0.000659500656183809, -0.08285996317863464, -0.016752269119024277, 0.03614409267902374, -0.04173032194375992, -0.03135659918189049, 0.0339941680431366, 0.05924195423722267, 0.04595668986439705, -0.02023349143564701, 0.02790318988263607, 0.03221716731786728, -0.0057853092439472675, 0.020709402859210968, -0.035386502742767334, -0.028429409489035606, -0.016132410615682602, 0.03359441086649895, 0.012662388384342194, 0.0008991050417535007, 0.04436776041984558, 0.026120375841856003, -0.0305035263299942, 0.04525286331772804, 2.5402657684026053e-06, -0.01099144946783781, -0.025896627455949783, -8.381029329029843e-05, -0.029540488496422768, -0.06704705953598022, 0.016122162342071533, -0.04504914581775665, 0.007327680941671133, 0.006678563542664051, -0.026835355907678604, 0.0008023558184504509, -0.010415799915790558, 0.024761324748396873, 0.015846796333789825, -0.01566941663622856, 0.008353307843208313, 0.02014153264462948, -0.04985306039452553, -0.008727017790079117, 0.011917869560420513, -0.06825908273458481, -0.010704061016440392, 0.004556669387966394, 0.025241486728191376, -0.018917091190814972, -0.015995554625988007, -0.03823394328355789, 0.002264363458380103, 0.007973918691277504, 0.14054061472415924, 0.028161203488707542, 0.08017787337303162, -0.014768310822546482, -0.03726737201213837, 0.012900358997285366, -0.014636613428592682, 0.05977977439761162, 0.011830209754407406, 0.019987747073173523, 0.014589538797736168, 0.030060183256864548, 0.008228574879467487, -0.03588595241308212, -0.021932153031229973, -0.014130455441772938, 0.015103565528988838, -0.01919705420732498, -0.03805198147892952, 0.026708602905273438, 0.042045995593070984, 0.047238789498806, -0.01249715406447649, -0.02120545133948326, -0.009544434025883675, 0.01760915480554104, 0.027345215901732445, 0.05730511620640755, 0.00029634786187671125, 0.04240576550364494, 0.002883461769670248, -0.00958841759711504, 0.003581685246899724, 0.06639109551906586, -0.03783167526125908, 0.018852582201361656, -0.03574259206652641, 0.025459297001361847, 0.002685657935217023, 0.04836801439523697, -0.034123100340366364, -0.020887555554509163, 0.04372410103678703, -0.004220122937113047, 0.037224553525447845, 0.017492249608039856, -0.023038318380713463, 0.03139599412679672, -0.03817828372120857, -0.00026767252711579204, 0.11286015063524246, -0.045620426535606384, -0.007966041564941406, 0.042349763214588165, 0.0194279495626688, 0.02519312873482704, 0.03666817396879196, 0.008105647750198841, -0.016790136694908142, 0.01683717966079712, -0.04140697047114372, -0.05273006856441498, 0.023379718884825706, -0.0027336380444467068, -0.0308590829372406, -0.03820062428712845, -0.008444610983133316, -0.03509058058261871, 0.0206290315836668, 0.038121096789836884, 0.016331501305103302, -0.021654533222317696, 0.022855237126350403, -0.019965672865509987, 0.022225523367524147, 0.044346440583467484, -0.0020663104951381683, 0.026429681107401848, -0.02892572246491909, -0.007458957377821207, 0.003349941922351718, 0.014928949996829033, -0.0037993434816598892, -0.05133068561553955, -0.0029251156374812126, 0.02219438925385475, 0.011235756799578667, 0.019727975130081177, -0.09242818504571915, 0.007892741821706295, -0.014252366498112679, 0.052384477108716965, 0.0032879046630114317, 0.026033783331513405, -0.04216098040342331, -0.03197386488318443, -0.014720644801855087, 0.014358031563460827, -0.025568777695298195, -0.0012631539721041918, 0.006961088627576828, 0.005965457763522863, 0.0526328943669796, -0.030525093898177147, 0.027436217293143272, 0.022056058049201965, 0.0188163910061121, 0.007109939586371183, -0.038861628621816635, -0.011677700094878674, -0.009524799883365631, -0.014593196101486683, 0.025151744484901428, 0.09174361824989319, 0.04533835127949715, 0.01471179723739624, -0.00920192152261734, -0.0482102632522583, -0.043306414037942886, 0.04480215162038803, -0.008956787176430225, -0.041084859520196915, -0.03092992678284645, 0.10816406458616257, -0.010745090432465076, 0.023249397054314613, 0.017150798812508583, -0.0025832350365817547, -0.01381083857268095, -0.05624091997742653, -0.04241085425019264, 0.008535057306289673, -0.04049672186374664, -0.06402736157178879, -0.0496801920235157, -0.039696741849184036, -0.006557988468557596, 0.021664459258317947, 0.018251365050673485, 0.033112794160842896, 0.06034828722476959, 0.02585698664188385, -0.0266046654433012, -0.02556244470179081, -0.056565094739198685, -0.007626113016158342, 0.04625619947910309, -0.006885355804115534, -0.031490255147218704, -0.005688568577170372, -0.02623465657234192, 0.1008804515004158, -0.022679118439555168, -0.031816139817237854, 0.06134907901287079, 0.029366424307227135, -0.005315933842211962, 0.04192472994327545, -0.011250811628997326, 0.02265002951025963, 0.008195370435714722, -0.025169996544718742, 0.009460696950554848, -0.0020358397159725428, 0.01204143837094307, 0.012557044625282288, -0.0022847598884254694, -0.006754458416253328, -0.026481295004487038, 0.013661280274391174, -0.019370565190911293, 0.05528539419174194, -0.0617903470993042, -0.005668914411216974, 0.04279130697250366, 0.03884463012218475, -0.033081311732530594, -0.03397383913397789, 0.035086143761873245, 0.02226259931921959, 0.07103670388460159, 0.02947329916059971, -0.013410882093012333, -0.018793458119034767, 0.004360534716397524, -0.009883059188723564, 0.01997864432632923, 0.030497178435325623, -0.030385451391339302, 0.04126114398241043, 0.021233318373560905, 0.006585192866623402, -0.044720668345689774, 0.033530205488204956, -0.08380575478076935, -0.009578562341630459, -0.033991020172834396, -0.006674892269074917, -0.01292091142386198, -0.03959730640053749, 0.02154315635561943, -0.016739310696721077, 0.0069196815602481365, -0.04959437623620033, -0.013577021658420563, -0.0046621449291706085, 0.014596525579690933, 0.0006617092876695096, -0.018623294308781624, -0.03595691919326782, -0.04682900756597519, -0.013768324628472328, 0.09844657778739929, 0.03938930109143257, -0.05010661855340004, 0.034195426851511, 0.06259746104478836, -0.04023764654994011, 0.018826788291335106, 0.005120169371366501, -0.02685527130961418, -0.012396994046866894, 0.029929323121905327, 0.00620791083201766, -0.0318002887070179, -0.05512230098247528, 0.017844069749116898, -0.016210686415433884, 0.031757205724716187, 0.004787391517311335, -0.0006648802664130926, -0.0036184212658554316, 0.031602486968040466, 0.005043152719736099, 0.026859406381845474, 0.02276410534977913, -0.021136637777090073, 0.02894335798919201, -0.033761944621801376, -0.01723356917500496, 0.020836886018514633, 0.017480146139860153, 0.03436360880732536, 0.02017456665635109, -0.039533816277980804, 0.012315133586525917, -0.03477256000041962, -0.01033572293817997, 0.0026125607546418905, 0.04811236634850502, 0.02003626897931099, 0.024044111371040344, -0.054132577031850815, -0.0690254345536232, -0.0058409227058291435, -0.0465538315474987, 0.026677517220377922, 0.0032302571926265955, -0.027080416679382324, -0.03851746767759323, -0.016778811812400818, -0.061629559844732285, -0.06110097095370293, -0.005015228874981403, 0.004227983765304089, -0.009197277016937733, 0.012771490029990673, 0.06617662310600281, 0.0038948259316384792, -0.021474827080965042, 0.023953048512339592, 0.008639775216579437, 0.02551969699561596, -0.09895481914281845, -0.000970797729678452, -0.01573289930820465, -0.02367367595434189, 0.04060004651546478, -0.0653044730424881, -0.028949381783604622, -0.026100199669599533, 0.03453672677278519, -0.034454286098480225, -0.015174158848822117, 0.012621060945093632, -0.03562670573592186, 0.03914835676550865, -0.04839432239532471, -0.004247676115483046, 0.005274518858641386, -0.0004289031494408846, -0.050953641533851624, -0.03208567202091217, 0.0197772067040205, 0.03648500517010689, -0.0511167012155056, -0.015113187953829765, -0.011393845081329346, 0.01985030807554722, -0.038853228092193604, -0.04765430465340614, -0.0645202100276947, 0.0409952811896801, 0.027202172204852104, 0.008231233805418015, 0.046696171164512634, -0.015469401143491268, 0.056838296353816986, -0.02676723711192608, 0.020080767571926117, 0.0009708240395411849, -0.05404733121395111, 0.011846335604786873, -0.04049794375896454, 0.03209972009062767, 0.004554255865514278, 0.008305047638714314, -0.059013281017541885, 0.038897596299648285, -0.03532182052731514, -0.008661630563437939, 0.007317807991057634, -0.026361513882875443, -0.0102127930149436, 0.017475994303822517, 0.019868601113557816, 0.013452724553644657, -0.05307359993457794, -0.0276119913905859, -0.004715684801340103, -0.015451418235898018, 0.02015049383044243, -0.022657640278339386, -0.004831718280911446, -0.008201769553124905, 0.020599592477083206, 0.025888482108712196, 0.007064477074891329, 0.018348699435591698, -0.016372380778193474, -0.048870958387851715, 0.07418207079172134, 0.01488014031201601, -0.011727603152394295, 0.03461442142724991, 0.06206643953919411, -0.06910102814435959, -4.40581061411649e-05, 0.010648460127413273, -0.010769236832857132, 0.03132538124918938, -0.0953117161989212, -0.0007133782492019236, 0.015244163572788239, -0.007366632577031851, -0.043189022690057755, 0.007934520952403545, 0.045891258865594864, -0.020037706941366196, -0.012499628588557243, 0.03866987302899361, -0.03199596703052521, 0.11853858083486557, 0.10126723349094391, 0.014621097594499588, 0.011460768058896065, -0.010967805981636047, 0.0755571499466896, 0.04308534413576126, 0.06493977457284927, 0.002079262398183346, -0.03822527825832367, -0.004746876657009125, -0.045993443578481674, 0.015886716544628143, -0.0007221858249977231, -0.01378921139985323, 0.044443387538194656, 0.027308540418744087, -0.006164181046187878, -0.014536397531628609, -0.07620398700237274, 0.05137729272246361, 0.03997449576854706, 0.02261314168572426, -0.017132742330431938, 0.05143284797668457, -0.0832597017288208, -0.04743096977472305, -0.07773598283529282, 0.0015391017077490687, 0.010807112790644169, -0.07748915255069733, 0.07275354862213135, 0.04839463159441948, 0.03888664022088051, -0.041155196726322174, 0.017685597762465477, 0.0035178179387003183, 0.003821417922154069, 0.007790041621774435, 0.0011275355936959386, 0.006952093914151192, -0.04576537013053894, 0.016446584835648537, 0.00558394705876708, 0.03221779689192772, -0.012882338836789131, 0.00621842872351408, 0.06429203599691391, 0.018785517662763596, -0.029228441417217255, -0.0545075349509716, 0.002768936799839139, -0.130325585603714, -0.023795111104846, 0.01808871142566204, -0.0008512262138538063, -0.0245622918009758, 0.02097000554203987, 0.03464784845709801, -0.02555718459188938, 0.02095889300107956, -0.023583199828863144, -0.0328979529440403, -0.0429365448653698, -0.013930676504969597, 0.017980927601456642, 0.01831139624118805, -0.05940259248018265, -0.0363377183675766, 0.06968878209590912, -0.015760714188218117, 0.033782634884119034, -0.03731478750705719, 0.019532863050699234, -0.048922643065452576, 0.012069652788341045, 0.007178571540862322, -0.03534570336341858, 0.02506992220878601, -0.0058457208797335625, -0.002185075543820858, 0.08862520009279251, -0.004840453155338764, -0.00999403279274702, 0.006976914592087269, 0.03495796397328377, -0.010298438370227814, -0.046556711196899414, -0.04473727568984032, 0.07743071764707565, -0.053481996059417725, 0.058940496295690536, 0.009759355336427689, -0.04930049553513527, 0.03550484776496887, 0.006719157099723816, 0.010723182000219822, -0.07510358840227127, 0.01892273500561714, 0.06520723551511765, -0.006559266243129969, 0.009078137576580048, -0.023465948179364204, 0.020410612225532532, -0.04651777818799019, 0.011685770004987717, -0.01966046914458275, 0.024455934762954712, -0.008517518639564514, 0.04347794130444527, 0.09181281179189682, 0.01920592226088047, -0.00812106765806675, 0.031476620584726334, -0.043027594685554504, 0.04186543822288513, 0.0030624093487858772, 0.003884053323417902, -0.025723440572619438, -0.006420779041945934, 0.04448292404413223, 0.013916587457060814, -0.042779065668582916, -0.014978623948991299, -0.012273658998310566, 0.01901176944375038, -0.0061966292560100555, -0.002367120236158371, 0.015360057353973389, -6.281144595707473e-33, -0.030958998948335648, -0.045015014708042145, 0.016590988263487816, -0.009192823432385921, 0.013828027062118053, -0.03336136043071747, 0.026747819036245346, 0.018318532034754753, -0.009655584581196308, -0.005366631783545017, -0.04716068133711815, 0.02421395480632782, 0.004475556313991547, -0.03494921699166298, 0.006505943834781647, 0.014302761293947697, 0.012465319596230984, -0.0015524368500337005, 0.022456757724285126, 0.022330807521939278, -0.05233331769704819, 0.04318352788686752, -0.021379509940743446, -0.03424111381173134, 0.014603913761675358, 0.014665504917502403, -0.035161394625902176, 0.021514082327485085, 0.03661007434129715, -0.06209029629826546, 0.019130853936076164, -0.022566460072994232, -0.010061487555503845, 0.06319749355316162, 0.019074998795986176, 0.0375240296125412, -0.02419540472328663, 0.02172178588807583, -0.053742945194244385, 0.02043502777814865, -0.05585673451423645, -0.039459213614463806, -0.028728218749165535, -0.026155712082982063, 0.012606850825250149, 0.009206854738295078, 0.036755915731191635, 0.015133406966924667, 0.021864168345928192, 0.08132575452327728, -0.063401959836483, -0.009568141773343086, -0.004537462256848812, -0.025266626849770546, 0.0226304791867733, 0.03956387937068939, -0.02577062137424946, -0.12307818233966827, -0.03386085480451584, 0.04106483981013298, -0.03683653846383095, 0.007525346707552671, -0.03077465482056141, -0.005799872800707817, -0.01107737235724926, 0.005330490414053202, -0.02160046435892582, 0.018817048519849777, 0.019135447219014168, -0.01753409393131733, -0.00868960376828909, 0.04049697890877724, -0.02155313268303871, -0.006473049987107515, 0.013025813736021519, 0.042694155126810074, 0.017162686213850975, 0.08242474496364594, 0.14497330784797668, -0.029799705371260643, -0.07269492000341415, -0.0025551114231348038, -0.0595332533121109, 0.00567270303145051, 0.0321679562330246, -0.023925429210066795, 0.01371658407151699, -0.10623200237751007, -0.04176345840096474, 0.03730729594826698, -0.051012180745601654, -0.05158289149403572, 0.008622604422271252, -0.0035700423177331686, 0.040200259536504745, -0.06046478822827339, 0.013163961470127106, -0.04374794661998749, 0.017201798036694527, -0.011119249276816845, -0.10165449231863022, -0.04162411391735077, 0.031043849885463715, 0.019647637382149696, 0.013057091273367405, 0.027233324944972992, -0.007333184592425823, 0.035617899149656296, -0.0055198995396494865, 0.005432854872196913, 0.024235285818576813, -0.015507298521697521, 0.007590258959680796, -0.013907596468925476, -0.07923151552677155, -0.03532179445028305, -0.0024929367937147617, 0.06062554940581322, 0.019893629476428032, -0.029226796701550484, -0.017400022596120834, -0.022510109469294548, 0.023350557312369347, -0.017191695049405098, -0.06266095489263535, -0.032135579735040665, -0.028722170740365982, -0.006655142642557621, 0.05687319487333298, 0.001353493775241077, 0.004678009077906609, -0.06472743302583694, 3.1788030696588976e-07, 0.00846233032643795, 0.02828098088502884, 0.04858273267745972, -0.06606346368789673, 0.005685016978532076, -0.02083137072622776, 0.013350540772080421, 0.06694842875003815, 0.016225729137659073, 0.019609926268458366, 0.033432744443416595, 0.025753052905201912, -0.056829337030649185, -0.02983221784234047, -0.021238096058368683, -0.10733949393033981, -0.04206489399075508, -0.06981681287288666, 0.02268855832517147, -0.014394660480320454, 0.04513227939605713, -0.005599189084023237, -0.008832136169075966, 0.005651536863297224, -0.0044925096444785595, -0.0030992745887488127, -0.006380907725542784, 0.006823085714131594, -0.0221380777657032, 0.03615107759833336, 0.042196761816740036, -0.033107321709394455, 0.0033964605536311865, 0.06700924038887024, 0.019046638160943985, 0.02857143059372902, 0.001599726965650916, 0.014078255742788315, -0.04486546665430069, 0.06400744616985321, 0.006107107736170292, 0.038839224725961685, -0.0076706307008862495, -0.01645093970000744, 0.012966875918209553, -0.07424311339855194, -0.040814660489559174, 0.04110835865139961, -0.029048923403024673, -0.027022480964660645, 0.006131542846560478, 0.04633191600441933, 0.011165522038936615, 0.04021511971950531, 0.016230834648013115, 0.010956339538097382, -0.05432470515370369, 0.030244724825024605, 0.012119853869080544, -0.028511308133602142, -0.0007066637044772506, -0.07017302513122559, 0.025585055351257324, -0.03419692814350128, 0.011087104678153992, 0.022014589980244637, -0.021668007597327232, 2.630092845680538e-34, -0.052099838852882385, 0.02664150483906269, 0.005236176773905754, 0.031222788617014885, 0.03518221154808998, -0.039600055664777756, 0.008243409916758537, -0.003964382689446211, 0.0401349812746048, 0.04237380623817444, -0.015346233732998371], "1fdb1412-26d8-4077-955c-b338014f395c": [0.03912690281867981, -0.006273348815739155, -0.03148498013615608, 0.01908629573881626, 0.030054908245801926, 0.04838135465979576, -0.002555646002292633, 0.05727161839604378, 0.012202818877995014, -0.03539029881358147, -0.03545805811882019, -0.02430887334048748, 0.02320384979248047, 0.022079091519117355, -0.05952669680118561, 0.016951555386185646, 0.052286818623542786, 0.006993891205638647, -0.013835552148520947, -0.008264816366136074, -0.029288509860634804, 0.03910626471042633, 0.014792559668421745, 0.0011907719308510423, 0.04058782756328583, -0.012708962894976139, 0.00592568377032876, 0.02671763487160206, -0.015398059040307999, -0.07619752734899521, 0.04517804831266403, 0.011705583892762661, 0.009045378305017948, 0.014143133535981178, 2.3889990643510828e-06, -0.02221810817718506, -0.05707203596830368, -0.0044998954981565475, -0.056406352669000626, -0.003110838821157813, -0.010359839536249638, 0.025831563398241997, -0.014222112484276295, -0.0019141940865665674, -0.024515144526958466, -0.007522504776716232, -0.0464087538421154, 0.05235963687300682, -0.050356436520814896, 0.06558789312839508, 0.037677034735679626, -0.030460495501756668, -0.024284617975354195, -0.0401432029902935, 0.08944592624902725, -0.0603911317884922, -0.02824113331735134, 0.05618920922279358, 0.022836962714791298, -0.027194393798708916, -0.04684707522392273, -0.0027210533153265715, -0.062092375010252, 0.010513096116483212, 0.07669595628976822, 0.04112939536571503, 0.05968082323670387, -0.1122792437672615, 0.03407156839966774, 0.026656391099095345, 0.069987952709198, -0.01473597064614296, 0.03700105473399162, 0.0524822473526001, -0.054825473576784134, 0.06928590685129166, 0.00833882112056017, 0.028420764952898026, -0.010457326658070087, -0.006032111588865519, -0.026623811572790146, -0.05287594348192215, 0.0072428691200912, -0.019169241189956665, 0.020226184278726578, 0.03438996523618698, -0.03830698877573013, -0.04530187323689461, 0.0348689891397953, -0.029498986899852753, 0.030918581411242485, 0.01017810869961977, -0.03673591837286949, 0.016381749883294106, 0.004374824929982424, -0.04239118471741676, 0.0014570971252396703, -0.06015682965517044, 0.02659515291452408, 0.05721288546919823, -0.03102320432662964, -0.022968117147684097, 0.0022073991131037474, 0.019004061818122864, -0.016164181753993034, 0.007306321058422327, 0.04503248631954193, -0.018892986699938774, -0.02269546315073967, 0.06870200484991074, -0.022418225184082985, 0.014506544917821884, -0.027615100145339966, -0.021845104172825813, -0.015044618397951126, -0.017282018437981606, -0.01647183671593666, 0.013784108683466911, 0.0076035400852561, 0.04094359651207924, 0.04067937284708023, 0.007110464386641979, -0.04346597567200661, 0.007934119552373886, -0.06293443590402603, -0.09149687737226486, 0.038377631455659866, -0.02538745477795601, -0.027982227504253387, 0.010188720189034939, 0.019693579524755478, 0.019391311332583427, 0.013160455971956253, 0.025033479556441307, -0.01391636487096548, 0.04188980907201767, 0.022736992686986923, -0.0453602597117424, 0.010625883936882019, -0.04324562847614288, 0.05953230336308479, -0.007555775810033083, 0.011840508319437504, 0.0062633091583848, 0.04972070828080177, 0.007047717925161123, 0.05237189307808876, -0.0212076585739851, 0.012677852995693684, 0.01798749342560768, -0.05039118975400925, 0.03084903582930565, -0.00422506220638752, 0.01646123267710209, 0.016941476613283157, 0.011334353126585484, -0.010171696543693542, -0.013700275681912899, -0.0071188476867973804, -0.008566927164793015, 0.022486157715320587, 0.0748973861336708, 0.022235622629523277, -0.048175033181905746, 0.0004135326307732612, -0.016991402953863144, 0.04111374169588089, 0.008078173734247684, 0.03289702534675598, -0.01142603624612093, -0.010418536141514778, -0.011699378490447998, -0.03283892944455147, 0.02975434996187687, -0.05038032680749893, 0.05271625891327858, 0.030339637771248817, 0.046027444303035736, -0.004688451997935772, 0.014983896166086197, -0.03343280404806137, -0.079946368932724, -0.028416292741894722, -0.010896451771259308, -0.08922798931598663, -0.01573808491230011, -0.06039492413401604, 0.03648688271641731, 0.027691207826137543, -0.005277543794363737, -0.025305090472102165, -0.013144643045961857, 0.0007468712865374982, -0.05092570185661316, 0.008950399234890938, 0.028615381568670273, -0.048860445618629456, -0.08674705028533936, -0.009579031728208065, -0.020457902923226357, 0.02216394618153572, -0.0013749642530456185, 0.07991032302379608, 0.016595270484685898, 0.056730836629867554, -0.02676951326429844, -0.011965536512434483, -0.01229432225227356, 0.005707222037017345, -0.026941370218992233, 0.09355978667736053, 0.00796501338481903, -0.04442188888788223, -0.03045336715877056, -0.05710909515619278, 0.05269913375377655, -0.012722251936793327, -0.007987650111317635, 0.03938806429505348, -0.02848231978714466, 0.01255442202091217, -0.0610794872045517, -0.04621369391679764, 0.027244100347161293, -0.03611098974943161, -0.02285115234553814, -0.033007968217134476, 0.022792590782046318, 0.03974613547325134, -0.005976114887744188, 0.006658325903117657, -0.0016458051977679133, 0.0284910649061203, 0.05337565764784813, -0.03101850301027298, -0.008578228764235973, 0.029421431943774223, -0.011483218520879745, -0.028731675818562508, -0.0907541811466217, -0.03733525425195694, 0.05472107231616974, 0.009991530328989029, 0.03146818280220032, 0.0021230815909802914, 0.03223423659801483, 0.01652391068637371, 0.026095470413565636, 0.03566937521100044, 0.06310651451349258, 0.015336728654801846, -0.020922081544995308, 0.06279157102108002, 0.022452468052506447, -0.027552584186196327, 0.06312154233455658, -0.13283976912498474, 0.009458888322114944, -0.034741371870040894, 0.023615451529622078, -4.846024967264384e-05, -0.0007502675871364772, -0.028161969035863876, 0.022876717150211334, 0.03379594907164574, 0.0033100643195211887, -0.013211063109338284, 0.0070607028901577, 0.013474628329277039, 0.012032476253807545, 0.0288257859647274, -0.00030381022952497005, 0.0126823540776968, -0.027279280126094818, 0.02307342365384102, -0.001401408575475216, -0.0017209328943863511, 0.011938006617128849, -0.03576153516769409, -0.023799186572432518, 0.007357869762927294, -0.02386007457971573, -0.032447513192892075, 0.010591383092105389, -0.00964949931949377, -0.023299213498830795, 0.042708538472652435, -0.057963840663433075, -0.01970459334552288, -0.0655842199921608, 0.005797490011900663, 0.008396562188863754, 0.02318952977657318, -0.054430242627859116, -0.03520888835191727, 0.020351357758045197, -0.03378882259130478, 0.02772882580757141, -0.020490113645792007, 0.08161300420761108, 0.03634726256132126, 0.017011120915412903, -0.021932343021035194, 0.011786630377173424, -0.014247535727918148, 0.031077435240149498, 0.024405587464571, -0.01639156974852085, 0.007300490513443947, -0.05434044823050499, 0.02402440458536148, 0.016902487725019455, 0.021711060777306557, -0.02598125860095024, -0.0032065671402961016, -0.01287289522588253, -0.03467192128300667, -0.06315387040376663, 0.01978176459670067, 0.0558655820786953, 0.008240459486842155, 0.007361000869423151, -0.02903934381902218, 0.030426595360040665, 0.0025150689762085676, -0.11451824009418488, 0.020326022058725357, -0.004875753074884415, -0.020097972825169563, 0.04272608086466789, 0.03574468567967415, 0.03388503938913345, 0.0024485778994858265, -0.016183769330382347, -6.580527406185865e-05, 0.026196544989943504, -0.011378713883459568, 0.012522178702056408, 0.037620268762111664, 0.0011751671554520726, -0.009205009788274765, 0.08280529081821442, -0.051622647792100906, -0.0012195693561807275, -0.014671540819108486, -0.007484247907996178, -0.02394653484225273, -0.011831865645945072, -0.08561099320650101, -0.0004496736219152808, 0.05128059163689613, -0.00998601969331503, 0.02239539660513401, -0.0506439283490181, -0.005158849060535431, -0.012443527579307556, -0.0005724903312511742, 0.00552930124104023, 0.023156221956014633, -0.07318297028541565, 0.018694696947932243, 0.006049607880413532, -0.0034689484164118767, 0.020226644352078438, 0.024504734203219414, -0.008483866229653358, -0.009053528308868408, 0.004350115545094013, 0.02284381352365017, 0.021573029458522797, -0.09903080761432648, 0.015100267715752125, 0.038319896906614304, 0.049211833626031876, 0.021699655801057816, -0.04410211741924286, 0.01490350067615509, 0.009514868259429932, 0.039874929934740067, -0.03008882701396942, -0.015047641471028328, -0.026737121865153313, 0.04835660010576248, 0.006364612374454737, 0.05558904632925987, 0.021719660609960556, 0.01758185774087906, 0.02040935680270195, 0.04727156460285187, -0.0341387502849102, 0.02130344696342945, -0.10168576240539551, -0.050056010484695435, 0.024394145235419273, -0.049312442541122437, -0.016316119581460953, -0.009381565265357494, 0.0032999750692397356, -0.051535286009311676, -0.00582844065502286, -0.030330460518598557, 0.00940938200801611, -0.004045568406581879, 0.016736820340156555, -0.016982153058052063, 0.0683467835187912, 0.07150174677371979, 0.039055898785591125, 0.01555114146322012, 0.015995608642697334, 0.1215592473745346, 0.055513959378004074, 0.022936994209885597, -0.009147724136710167, 0.06036791205406189, -0.03063313476741314, 0.033572934567928314, 0.025849224999547005, -0.060498785227537155, -0.04558917507529259, -0.02810392528772354, 0.027040408924221992, 0.01612112857401371, -0.006241942290216684, 0.027398807927966118, -0.037935663014650345, 0.08408396691083908, -0.027715830132365227, 0.03146910294890404, -0.02765667252242565, 0.06787736713886261, 0.008685276843607426, -0.017603134736418724, 0.06455085426568985, 0.028106098994612694, 0.0008004876435734332, 0.04999419301748276, -0.08912190794944763, -0.031339798122644424, -0.025952817872166634, 0.0011296590091660619, 0.031212234869599342, 0.02492631785571575, 0.013272189535200596, -0.005148332100361586, 0.04898368567228317, 0.03418963402509689, 0.0434877835214138, -0.0012609190307557583, -0.10750341415405273, -0.020088789984583855, -0.10174489766359329, -0.06517816334962845, -0.054528895765542984, -0.014093521051108837, 0.014911487698554993, -0.029408160597085953, 0.08216060698032379, 0.01017765887081623, 0.009824104607105255, -0.04732705280184746, 0.05246426910161972, 0.02716716192662716, -0.01917317882180214, -0.003169837174937129, -0.034761060029268265, -0.028033047914505005, -0.050709668546915054, 0.03497380018234253, -0.02081894688308239, 0.012184005230665207, -0.03228328377008438, 0.003519434481859207, -0.01571490243077278, 0.045504748821258545, -0.08794162422418594, -0.05460898205637932, -0.002928252099081874, -0.030525008216500282, -0.017918197438120842, 0.03467855975031853, -0.009489303454756737, 0.026728365570306778, 0.002889972412958741, -0.02823653817176819, 0.03935716673731804, -0.010126963257789612, 0.02495410479605198, 0.007041144650429487, -0.013639966957271099, 0.036793533712625504, -0.003928078804165125, 0.003025934798642993, 0.02064209245145321, 0.007053193636238575, 0.09179183095693588, -0.054658059030771255, 0.0012302828254178166, 0.017880331724882126, -0.012805856764316559, 0.035120874643325806, -0.04482855275273323, 0.0026364244986325502, 0.05736253410577774, -0.025546887889504433, -0.033385004848241806, 0.002439962001517415, 0.00972468126565218, 0.00779099203646183, -0.016126247122883797, -0.03879351168870926, -0.03482828661799431, -0.04266626760363579, -0.05160440877079964, 0.050403349101543427, -0.029001593589782715, -0.04394078999757767, -0.009550653398036957, 0.036429885774850845, -0.02409888245165348, 0.028157852590084076, 0.0025864446070045233, 0.025062207132577896, -0.02170335315167904, -0.00860643945634365, 0.04844479262828827, 0.02944168820977211, 0.03907313942909241, 0.026258191093802452, 0.07606431841850281, 0.013076214119791985, -0.0006667504785582423, 0.015567474067211151, -0.026267850771546364, -0.045315131545066833, 0.02610916644334793, 0.07274694740772247, 0.025397466495633125, -0.013246250338852406, 0.014392299577593803, -0.01152587030082941, 0.008561955764889717, 0.01959267631173134, 0.038977447897195816, 0.020857982337474823, -0.025791460648179054, 0.03300466760993004, 0.019075680524110794, -0.029335716739296913, -0.06442291289567947, 0.015468125231564045, -0.0245323795825243, -0.04177912324666977, 0.037197548896074295, 0.035386521369218826, -6.166262798117642e-33, -0.039229102432727814, -0.054139070212841034, -0.009564022533595562, 0.05158810690045357, 0.0018987496150657535, -0.04465525969862938, 0.007262105587869883, -0.038534339517354965, -0.04679740220308304, -0.03622956946492195, -0.009005382657051086, -0.008875840343534946, 0.0023944354616105556, -0.0053650434128940105, -0.01660003513097763, -0.029395367950201035, 0.02510145679116249, -0.006723560858517885, -0.02336720936000347, 0.0016440795734524727, -0.035318613052368164, -0.022066019475460052, -0.04306881129741669, 0.0004367119981907308, -0.053230226039886475, -0.05412594601511955, -0.050055913627147675, -0.011060998775064945, 0.002619817852973938, 0.04169110581278801, -0.047361504286527634, -0.04996810853481293, 0.0013226137962192297, 0.03774302452802658, 0.010160000063478947, 0.044933076947927475, -0.05036512762308121, -0.028512367978692055, -0.024797191843390465, 0.000893344113137573, 0.04892372339963913, -0.0015883507439866662, -0.026305558159947395, 0.00945095531642437, 0.04445374384522438, 0.027354111894965172, 0.03489382937550545, 0.01707799918949604, -0.035272832959890366, 0.024858437478542328, -0.09460453689098358, 0.010837338864803314, 0.0158374160528183, 0.04391242563724518, 0.010170861147344112, 0.03521375358104706, 0.027135148644447327, -0.04388383775949478, -0.0549318827688694, -0.0245630145072937, 0.029295960441231728, 0.03047114610671997, 0.03142118453979492, 0.03287278115749359, -0.044469598680734634, 0.0007789925439283252, -0.03274237737059593, 0.08537297695875168, 0.04204612970352173, 0.04011647403240204, -0.0019406427163630724, -0.012275083921849728, -0.06964343041181564, -0.022233517840504646, -0.017108816653490067, -0.0026534476783126593, -0.056586503982543945, 0.05754530057311058, 0.05510781332850456, 0.0481395497918129, -0.0032374318689107895, 0.0024050807114690542, -0.04299427941441536, 0.01492471992969513, 0.025675304234027863, 0.011917168274521828, -0.027430424466729164, -0.002504602773115039, 0.004755162633955479, 0.03754371404647827, -0.013897744938731194, -0.07576259970664978, -0.07113423198461533, 0.02596188522875309, -0.011824561282992363, 0.0738745704293251, 0.04483965411782265, -0.04794284328818321, -0.030602306127548218, -0.06413573771715164, -0.05795925483107567, -0.02243901789188385, 0.018916917964816093, 0.010747874155640602, 0.011169830337166786, -0.004640447441488504, 0.013454685918986797, 0.02456565387547016, -0.03673404082655907, -0.001154888654127717, 0.011548093520104885, -0.037380993366241455, 0.04113463684916496, -0.03945877403020859, -0.0014726730296388268, -0.0028224154375493526, -0.0003209513670299202, 0.0032552219927310944, -0.028311265632510185, -0.019954901188611984, -0.013291697949171066, -0.020383257418870926, 0.01763518899679184, -0.04200879484415054, -0.028101235628128052, 0.004842984955757856, -0.014999523758888245, 0.00897563062608242, 0.09177011996507645, -0.02380366250872612, -0.0023572263307869434, -0.018032319843769073, 3.1261427579920564e-07, 0.019768860191106796, 0.03485186770558357, 0.009100477211177349, -0.031270675361156464, -0.02406015433371067, -0.043195679783821106, -0.004221383016556501, 0.01437640842050314, 0.002583578694611788, 0.0058466591872274876, 0.03755369782447815, 0.022007882595062256, -0.027304766699671745, 0.010937360115349293, -0.013468435034155846, -0.05866395682096481, 0.004282661247998476, -0.02484370581805706, -0.02489827759563923, -0.0319853201508522, 0.07607097923755646, 0.01842779479920864, 0.01675407961010933, -0.002399730496108532, -0.04638734832406044, 0.04247308522462845, -0.013140873983502388, -0.05143561214208603, -0.036007970571517944, -0.003284404519945383, 0.1055026724934578, -0.006127139553427696, -0.03752442076802254, -0.011394021101295948, -0.0031347530893981457, 0.0112428218126297, -0.018223803490400314, -0.008457932621240616, 0.021920407190918922, 0.031888823956251144, 0.042489081621170044, -0.020500073209404945, -0.017361745238304138, -0.0042357295751571655, 0.024559900164604187, -0.012183559127151966, 0.049044325947761536, 0.059627726674079895, -0.05674944072961807, -0.00812963955104351, 0.019623013213276863, 0.03914378210902214, 0.02034963108599186, 0.023456480354070663, 0.015273535624146461, -0.019117139279842377, -0.021517785266041756, -0.008264942094683647, 0.031524721533060074, 0.03998455032706261, -0.042098477482795715, -0.014016225002706051, 0.027560805901885033, 0.02661198377609253, 0.03797106444835663, 0.006538878194987774, -0.049057409167289734, 3.664519150032016e-34, 0.0009584956569597125, -0.03745364025235176, 0.007219787687063217, -0.021223632618784904, 0.030284130945801735, -0.02970670536160469, 0.008881340734660625, 0.020464325323700905, -0.014652002602815628, -0.07576954364776611, -0.014078990556299686], "139ccd73-c4b8-4a69-9349-3584a45b27f6": [0.035448163747787476, -0.052182793617248535, -0.013795115984976292, -0.0101845134049654, 0.024267276749014854, 0.07854912430047989, -0.014799501746892929, 0.041359689086675644, 0.07407581061124802, -0.039829157292842865, 0.01974530518054962, -0.03623772785067558, 0.016018282622098923, 0.020786073058843613, -0.02757231704890728, 0.003899278584867716, 0.062378622591495514, -0.002889186143875122, -0.003943913616240025, -0.011333832517266273, -0.021918276324868202, 0.028482506051659584, -0.03376186266541481, -0.0017777878092601895, 0.022815119475126266, -0.017071878537535667, 0.02714741975069046, 0.05580645427107811, 0.007704468909651041, -0.09276080131530762, 0.0308180283755064, 0.030849432572722435, -0.009874091483652592, -0.03170346841216087, 2.4702637801965466e-06, -0.020012257620692253, -0.021985257044434547, -0.02130071260035038, -0.07075245678424835, -0.003560601267963648, -0.030321482568979263, 0.00900974404066801, 0.009452683851122856, 0.01724124141037464, -0.0030181128531694412, -0.016716139391064644, -0.0264446921646595, 0.0779217779636383, -0.02969910390675068, 0.0562758594751358, 0.015645882114768028, 0.01882869377732277, -0.05708432197570801, -0.03792615607380867, 0.08480414003133774, -0.045935630798339844, -0.021659836173057556, 0.060524601489305496, 0.013856670819222927, -0.03213930130004883, -0.03414352238178253, -0.027922851964831352, -0.04251962527632713, 0.03093787468969822, 0.08918271958827972, 0.01945582590997219, 0.040851905941963196, -0.09250620007514954, 0.019516997039318085, 0.010293157771229744, 0.04706661403179169, -0.009720333851873875, 0.05908845365047455, 0.024959616363048553, -0.009529686532914639, 0.010359393432736397, 0.004503588657826185, 0.006712447851896286, -0.023988060653209686, -0.013179647736251354, -0.019093507900834084, -0.054837584495544434, 0.009562298655509949, -0.03261588141322136, 0.05922161042690277, 0.0648031011223793, -0.00909888930618763, -0.046457577496767044, 0.03419695049524307, 0.004174323752522469, 0.021937662735581398, -0.004876915831118822, -0.04533125087618828, 0.007453196682035923, -0.0036452901549637318, -0.056336935609579086, 0.012246228754520416, 0.003058968111872673, 0.04949921369552612, 0.07421084493398666, -0.001848947606049478, -0.004948032088577747, 0.0031820295844227076, 0.021857578307390213, -0.0146266408264637, 0.03337056562304497, 0.04470580816268921, -0.0174997691065073, -0.04592001438140869, 0.05318066105246544, -0.00838303193449974, 0.016002492979168892, -0.03591155633330345, 0.0032540936954319477, 0.06244443356990814, -0.010752358473837376, -0.0386374369263649, 0.021257225424051285, 0.02356991171836853, 0.06073649600148201, 0.030526842921972275, 0.005996430292725563, -0.0015362929552793503, 0.010589920915663242, -0.05136418342590332, -0.11419327557086945, -0.00751530472189188, 0.0059480383060872555, -0.011049571447074413, -0.00014730925613548607, 0.010811841115355492, -0.0062810080125927925, -0.003381450427696109, 0.029723383486270905, -0.0044852555729448795, 0.0106979850679636, 0.026701921597123146, -0.037531860172748566, -0.00456628343090415, -0.01524012628942728, 0.020695818588137627, 0.0052629257552325726, 0.019740933552384377, -0.009323320351541042, 0.033753734081983566, -0.021783800795674324, 0.025663958862423897, 0.015528389252722263, 0.019550995901226997, 0.02914435788989067, -0.016721487045288086, -0.00705172773450613, 0.006509015336632729, -0.0020051535684615374, 0.0037172487936913967, 0.021217897534370422, 0.0010814144043251872, -0.012474923394620419, -0.014088805764913559, 0.0202440544962883, 0.015933150425553322, 0.0299829188734293, 0.03233001008629799, -0.03235143423080444, 0.004689091816544533, -0.01771722361445427, 0.037054192274808884, -0.013313811272382736, 0.03014220856130123, -0.01745450869202614, -0.04678875952959061, 0.016666503623127937, -0.051048822700977325, 0.07298967242240906, -0.05780264362692833, 0.03931688889861107, 0.006380239501595497, 0.029074635356664658, 0.02143401838839054, 0.0036506291944533587, -0.03933398425579071, -0.03911697119474411, -0.031004244461655617, 0.011146899312734604, -0.06478361040353775, -0.019712241366505623, -0.06735603511333466, 0.03673119470477104, -0.017084291204810143, 0.007258343044668436, -0.05164765939116478, -0.0023483531549572945, 0.0067395661026239395, -0.05214112997055054, -0.027056947350502014, 0.029282167553901672, -0.06486032158136368, -0.06575778871774673, -0.02441694773733616, -0.032922253012657166, -0.008337569423019886, 0.02749975398182869, 0.06963120400905609, 0.050868455320596695, 0.01928051747381687, -0.008891180157661438, -0.029522912576794624, -0.012739908881485462, 0.00880823377519846, -0.03358903527259827, 0.10536744445562363, 0.003699036780744791, -0.038174573332071304, -0.04899974539875984, -0.042362939566373825, 0.07273025065660477, -0.0049991728737950325, -0.020350612699985504, 0.0553734265267849, -0.00729817058891058, -0.011640198528766632, -0.020798319950699806, -0.08006475865840912, 0.027868693694472313, -0.003918149508535862, -0.06024612858891487, 0.009585721418261528, 0.03027460351586342, 0.04065818339586258, 0.003829577472060919, 0.028441201895475388, -0.017788520082831383, 0.00957730133086443, 0.04655579477548599, 0.020498959347605705, -0.029212864115834236, 0.014112060889601707, 0.02212994359433651, -0.006486021913588047, -0.03326477110385895, -0.02512391284108162, 0.0888371616601944, -0.0009833112126216292, -0.013443286530673504, -0.025418611243367195, 0.05121825635433197, -0.001044434611685574, 0.02037733420729637, -0.0017850789008662105, 0.07749387621879578, 0.006551985163241625, 0.006493549328297377, 0.01762937568128109, 0.0071919322945177555, -0.015516221523284912, 0.04170601814985275, -0.1023789495229721, 0.014749772846698761, -0.04660333693027496, -0.023320840671658516, -0.04056348651647568, -0.018099721521139145, -0.012358027510344982, 0.0031941186171025038, 0.043331000953912735, -0.006704200524836779, 0.00569666363298893, -0.023218395188450813, -0.0019530830904841423, 0.01496068388223648, 0.010416129603981972, -0.006869248114526272, -0.007434224244207144, -0.032138071954250336, -0.0011923242127522826, -0.0043878694996237755, 0.03572694957256317, 0.008643325418233871, -0.03242202475667, 0.0016738154226914048, -0.005301790311932564, -0.03849288821220398, -0.00991425383836031, -0.00973587203770876, -0.0018401097040623426, -0.024988174438476562, 0.032799914479255676, -0.04074027016758919, -0.003505283035337925, -0.06176732853055, 0.014616564847528934, 0.00041378726018592715, 0.023203201591968536, -0.03554079309105873, -0.04378650337457657, 0.022061605006456375, -0.026308882981538773, 0.015058961696922779, 0.002010873518884182, 0.04334631562232971, 0.006604277063161135, -0.009352689608931541, -0.005178534891456366, -0.0031115016900002956, 0.01182339433580637, 0.05318211019039154, 0.024547824636101723, -0.05290600657463074, -0.006143977865576744, -0.03909480571746826, 0.011292989365756512, 0.03291432186961174, -0.002522376598790288, -0.04460916295647621, -0.010450659319758415, 0.01975335367023945, -0.053756650537252426, -0.051968734711408615, -0.014384354464709759, 0.06573770940303802, 0.002747640246525407, 0.02540143020451069, -0.039717480540275574, -0.017104387283325195, 0.004494627006351948, -0.09989750385284424, 0.02066759206354618, 0.01248374953866005, -0.00720846327021718, 0.010966945439577103, 0.025996247306466103, 0.06857535988092422, -0.012438536621630192, 0.018006762489676476, -0.031745899468660355, 0.02367773838341236, 0.004772110376507044, -0.02086893655359745, 0.017949042841792107, 0.00475960923358798, -0.024203801527619362, 0.07737637311220169, -0.06722249835729599, -0.017740078270435333, -0.018396472558379173, -0.0018672646256163716, -0.037144552916288376, 0.004476408939808607, -0.06504944711923599, -0.00434207683429122, 0.025102965533733368, -0.010998674668371677, 0.02867644838988781, -0.007648630533367395, 0.03295467048883438, -0.041760653257369995, 0.0030810097232460976, 0.005232424475252628, 0.040665511041879654, -0.05200658366084099, -0.011592700146138668, -0.010094945318996906, -0.024291975423693657, 0.027089329436421394, 0.044455789029598236, -0.04933902248740196, 0.02358446829020977, 0.008163593709468842, -0.0007682794821448624, 0.050227951258420944, -0.0674290657043457, 0.01589636132121086, -0.0013107839040458202, 0.04221746325492859, -0.009641917422413826, -0.041860587894916534, 0.00952557846903801, 0.04053777828812599, 0.04389062896370888, -0.004931746516376734, 0.0008000066736713052, -0.08903327584266663, 0.04603101313114166, -0.00027258406043983996, 0.0561552420258522, 3.172552533214912e-05, 0.01047938596457243, 0.015568800270557404, 0.05636299028992653, -0.005640257149934769, 0.009409915655851364, -0.11254055052995682, -0.0438491553068161, 0.06662335246801376, -0.0682762935757637, -0.01931818202137947, -0.012120313011109829, -0.0027100068982690573, -0.052664484828710556, -0.019076276570558548, 0.012959224171936512, -0.05515069514513016, -0.03320325165987015, 0.02213367447257042, 0.014803646132349968, 0.056391391903162, 0.07605425268411636, -0.007126918062567711, -0.0074281347915530205, -0.014183796010911465, 0.10914100706577301, 0.013298077508807182, 0.014343436807394028, -0.015491201542317867, 0.025895733386278152, -0.04966992884874344, 0.021402783691883087, 0.00466252863407135, -0.026216557249426842, -0.05868087708950043, -0.034632716327905655, 0.03381505608558655, -0.011455541476607323, -0.013843539170920849, -0.0013183823321014643, -0.01308909710496664, 0.0913626104593277, -0.00010064268280984834, 0.042353056371212006, -0.024560675024986267, 0.0558910109102726, 0.0303164254873991, -0.0163418035954237, 0.03299389407038689, 0.005494268145412207, 0.01801290549337864, 0.024302508682012558, -0.07827921211719513, -0.04512221738696098, -0.041518621146678925, -0.01706618070602417, 0.05493990331888199, 0.027636922895908356, 0.011352978646755219, -0.0387875996530056, 0.02628301829099655, 0.05659829452633858, 0.033471837639808655, -0.006976544391363859, -0.08448770642280579, -0.03201313689351082, -0.0817897841334343, -0.07635587453842163, -0.08289419114589691, -0.002214569365605712, 0.011704704724252224, -0.02123285084962845, 0.009726174175739288, 0.04614091292023659, 0.04380255565047264, 0.011304391548037529, 0.03330884873867035, -0.01373427826911211, -0.005937537178397179, 0.024157511070370674, -0.039117030799388885, -0.06425506621599197, -0.028022555634379387, 0.04234889894723892, -0.012705205008387566, 0.013688559643924236, -0.0064606619998812675, -0.00949778500944376, -0.023756014183163643, 0.03493433818221092, -0.07656369358301163, -0.03611879050731659, -0.014425277709960938, -0.026084911078214645, -0.04257591813802719, 0.030345864593982697, -0.026593223214149475, 0.007829158566892147, 0.01420031301677227, -0.037368256598711014, 0.03449936583638191, 0.023513250052928925, -0.014516525901854038, -0.0038332908879965544, 0.02883335016667843, 0.031046628952026367, -0.019382908940315247, 0.003711894853040576, 0.011466729454696178, -0.03556303307414055, 0.0843137726187706, -0.046669814735651016, -0.021837018430233, 0.02317747473716736, -0.012913936749100685, 0.014960725791752338, -0.02844160981476307, -0.04813549295067787, 0.05528327077627182, -0.006341703236103058, -0.04219270125031471, 0.0025408074725419283, 0.05767824128270149, -0.0025771446526050568, -0.004301426000893116, -0.02712571993470192, -0.024197177961468697, -0.0025405993219465017, -0.05704432725906372, 0.011876428499817848, -0.020012974739074707, -0.04130277782678604, -0.014892665669322014, 0.025631820783019066, -0.04232803359627724, 0.023150566965341568, -0.007036898285150528, 0.016689758747816086, -0.036230139434337616, 0.004982859827578068, 0.0608106404542923, 0.017398729920387268, 0.02346767485141754, -0.038734156638383865, 0.07775223255157471, -0.014153813011944294, 0.0021678812336176634, 0.04105471074581146, -0.0011872672475874424, -0.07052868604660034, 0.013357200659811497, 0.061142448335886, 0.07894232869148254, -0.020971190184354782, -0.0197563748806715, -0.02865585684776306, 0.000989541644230485, 0.02796045131981373, 0.03925376757979393, 0.021765995770692825, -0.007525358349084854, 0.049712006002664566, -0.018985789269208908, -0.028619434684515, -0.01502819824963808, 0.0031114164739847183, -0.0632169097661972, -0.04887585714459419, 0.04925789311528206, 0.02214893512427807, -6.293877403578786e-33, -0.05586036667227745, -0.028324086219072342, 0.0319729819893837, 0.03359781205654144, 0.026732150465250015, -0.03287838026881218, 0.015234235674142838, -0.0071329683996737, -0.008365698158740997, -0.023972932249307632, 0.023553336039185524, 0.013302837498486042, 0.0005793056334368885, -0.010649011470377445, 0.007379103451967239, -0.02005114033818245, 0.03451993316411972, -0.0043286774307489395, -0.02477067895233631, -0.00987604632973671, -0.05839254707098007, -0.003012388478964567, -0.013373850844800472, 0.015779992565512657, -0.049362704157829285, -0.03929012268781662, -0.049877047538757324, -0.017377246171236038, -0.011015382595360279, 0.0216074101626873, -0.042642369866371155, -0.05285137519240379, 0.014045458287000656, 0.049018871039152145, 0.026857979595661163, 0.04942736029624939, -0.06901572644710541, -0.018204018473625183, 0.001604745164513588, -0.003966332878917456, 0.028810936957597733, -0.0034694198984652758, -0.05451735481619835, 0.014000505208969116, 0.041774995625019073, 0.04166484996676445, 0.03851582482457161, 0.011910450644791126, -0.018790947273373604, 0.055586881935596466, -0.06071310490369797, -0.0023902442771941423, 0.03377911448478699, 0.021147595718503, -0.005671816878020763, 0.07554442435503006, 0.017373312264680862, -0.09698574244976044, -0.046653926372528076, 0.005325303412973881, 0.025758376345038414, 0.001563534140586853, 0.01056126318871975, 0.012826613150537014, -0.037343502044677734, 0.0038348515518009663, -0.030107848346233368, 0.10094084590673447, 0.040657587349414825, 0.015831593424081802, 0.019975146278738976, -0.009345829486846924, -0.07717634737491608, -0.0029172231443226337, -0.01459750160574913, -0.002155906520783901, -0.022022247314453125, 0.05024122819304466, 0.07605481892824173, 0.04099157080054283, 0.0030954829417169094, -0.019126294180750847, -0.03950051963329315, -0.006805777549743652, 0.050966519862413406, 0.02689712680876255, -0.01814393512904644, 0.015630783513188362, 0.02013980783522129, 0.057122763246297836, -0.06171300634741783, -0.03816130757331848, -0.05383504182100296, 0.0587787851691246, -0.0036765194963663816, 0.04280468076467514, 0.05864299461245537, -0.0770159363746643, -0.019849658012390137, -0.05991143733263016, -0.07888975739479065, -0.025791293010115623, 0.024784518405795097, -0.0009799014078453183, 0.004500300157815218, 0.029245201498270035, 0.016095416620373726, 0.000537585059646517, -0.023271208629012108, 0.014268380589783192, 0.013593272306025028, 0.002018617931753397, 0.03126249089837074, -0.02400936186313629, -0.00709078973159194, -0.01852879673242569, 0.022411977872252464, 0.07287134230136871, -0.04604404792189598, -0.08199799060821533, 0.0034824658650904894, 0.01425387803465128, 0.08039594441652298, -0.0686362236738205, -0.02697014808654785, -0.009115230292081833, 0.00779066514223814, 0.038643188774585724, 0.10648522526025772, 0.030619481578469276, 0.014362389221787453, 0.006910586263984442, 3.1608212225364696e-07, 0.010726646520197392, 0.0364837646484375, 0.02147337608039379, -0.05891197547316551, -0.010187768377363682, -0.030085623264312744, 0.0203726626932621, -0.01597723923623562, -0.025427300482988358, 0.052307140082120895, 0.06015713885426521, 0.007821643725037575, -0.043898049741983414, 0.042246975004673004, 0.008787819184362888, -0.10226186364889145, -0.007221445441246033, -0.029347969219088554, -0.02112409844994545, -0.017624391242861748, 0.05498487874865532, -0.008222229778766632, 0.011962267570197582, -0.003701717359945178, -0.02475796453654766, 0.055482618510723114, -0.014659377746284008, -0.04530750587582588, -0.005099102854728699, -0.012587586417794228, 0.07442686706781387, -0.0007545867701992393, -0.026890011504292488, 0.031674887984991074, 0.007864722050726414, -0.05198308825492859, -0.0074341027066111565, 0.018412290140986443, 0.030995715409517288, 0.02435939572751522, 0.03284917771816254, 0.00193990848492831, -0.028059981763362885, -0.024175014346837997, 0.00942551251500845, -0.003977659158408642, 0.048700861632823944, 0.012124926783144474, -0.07475823163986206, -0.0038421079516410828, 0.02322026900947094, 0.06262104958295822, 0.02990066632628441, 0.008684013970196247, 0.03308391943573952, 0.0010226276936009526, -0.03384723141789436, -0.00643641734495759, 0.03734173625707626, 0.047441788017749786, -0.03093722090125084, -0.03899884968996048, 0.03465890884399414, -0.024215353652834892, -0.012209426611661911, -0.03987083211541176, -0.044219303876161575, 3.3052582298844735e-34, -0.02699442207813263, -0.003659578040242195, -0.00407071877270937, -0.025965861976146698, 0.02001539245247841, -0.013292345218360424, -7.09955784259364e-05, 0.014319186098873615, -0.005014365538954735, -0.041151151061058044, -0.013891815207898617], "478492af-909f-4927-afa3-a22f69624c18": [0.0027161315083503723, -0.04203931987285614, -0.0037391469813883305, -0.032353587448596954, -0.010538700968027115, 0.07554630190134048, -0.0052405837923288345, 0.0423993319272995, 0.08806510269641876, -0.0174133088439703, 0.030431652441620827, -0.044670552015304565, 0.018740970641374588, 0.039562735706567764, -0.042117178440093994, 0.046946678310632706, 0.026060963049530983, -0.003981753718107939, -0.05540500581264496, -0.03168583661317825, -0.013519148342311382, 0.02112169750034809, -0.04799804091453552, -0.020103292539715767, 0.009430327452719212, 0.006310483906418085, -0.013625514693558216, 0.07939636707305908, 0.038230735808610916, -0.009212721139192581, 0.01268192008137703, 0.03994845971465111, -0.033215589821338654, -0.013465231284499168, 2.068074081762461e-06, -0.036626238375902176, 0.009935918264091015, 0.0003533434064593166, -0.047140367329120636, -0.028111649677157402, 0.0190825667232275, -0.030690105631947517, -0.011287838220596313, 0.01046725083142519, 0.007277264259755611, -0.016842495650053024, 0.011151171289384365, 0.019114099442958832, -0.016656087711453438, 0.04333481192588806, -0.0008263447089120746, 0.006455410271883011, -0.0656718835234642, -0.033861272037029266, 0.06182964891195297, -0.052632320672273636, 0.008646064437925816, 0.014710734598338604, 0.07675177603960037, -0.012617259286344051, -0.0032990695908665657, -0.024025101214647293, -0.028031161054968834, 5.057463204138912e-05, 0.09674791246652603, 0.04765784740447998, 0.048798978328704834, -0.11766377091407776, -0.003365778364241123, -0.005629072431474924, 0.05793726444244385, 0.020775841549038887, 0.023468995466828346, 0.03985965624451637, -0.006636178586632013, -0.025496110320091248, 0.01682356745004654, 0.03043496608734131, -0.012489964254200459, -0.022884249687194824, -0.023616155609488487, -0.021453451365232468, -0.031115451827645302, -0.01864268258213997, 0.01186258252710104, 0.05793352797627449, 0.03349841758608818, -0.03172259032726288, 0.040968555957078934, 0.022930381819605827, 0.09436254948377609, 0.011739755980670452, 0.00165726023260504, 0.021801993250846863, 0.012660237960517406, -0.048682671040296555, 0.024181950837373734, 0.05702362582087517, 0.05492279306054115, 0.055372755974531174, -0.03113960288465023, -4.981217716704123e-05, -0.012297010980546474, 0.04563900828361511, -0.0025046230293810368, 0.02646857686340809, 0.010274521075189114, -0.04804801568388939, -0.03958449885249138, 0.01668275147676468, -0.02762286365032196, 0.013829394243657589, -0.057541731745004654, -0.01140600722283125, 0.034392986446619034, -0.01670016534626484, -0.03412829712033272, 0.023160673677921295, 0.05502402409911156, 0.08855695277452469, 0.0909653753042221, 0.00517705362290144, -0.021557100117206573, 0.01237468235194683, -0.059790272265672684, -0.1172018051147461, 0.013669044710695744, 0.006244303192943335, -0.013815456070005894, -0.020396724343299866, 0.009038969874382019, -0.0028095701709389687, 0.020079679787158966, 0.0009545625653117895, 0.005275622941553593, -0.034902505576610565, 0.043671153485774994, 0.014793230220675468, 0.025801070034503937, 0.0031657200306653976, 0.02013470232486725, -0.011586961336433887, 0.03351810202002525, 0.0065893856808543205, 0.027396636083722115, -0.01454871241003275, 0.0012580984039232135, 0.0020953170023858547, 0.012791397050023079, 0.022014202550053596, -0.0501236766576767, 0.006805113051086664, -0.08029129356145859, -0.029037125408649445, -0.0060803540982306, 0.03516573831439018, 0.03467978909611702, -0.02214844711124897, -0.023399129509925842, 0.025852438062429428, -0.01932884007692337, 0.013532648794353008, 0.04682451859116554, 0.03976299613714218, -0.01154314074665308, -0.013970088213682175, 0.07740037143230438, -0.002679630881175399, 0.021800410002470016, 0.0209199246019125, 0.010681516490876675, 0.004804827272891998, -0.03655151277780533, 0.08228430151939392, -0.05746414139866829, 0.023285821080207825, -0.00800473801791668, -0.030605876818299294, 0.05074186623096466, 0.0016188452718779445, -0.0353347547352314, -0.06225559115409851, -0.02722412720322609, 0.009297491982579231, -0.0048758527263998985, 0.012745670974254608, -0.04015742242336273, 0.07112038135528564, -0.026890408247709274, 0.021333985030651093, -0.015538721345365047, -0.014606769196689129, -0.011343693360686302, -0.06117044389247894, 0.0020352185238152742, 0.028897136449813843, -0.033557914197444916, -0.05569322779774666, -0.01407384779304266, -0.04699455201625824, -0.046035777777433395, -0.016065726056694984, 0.007363489829003811, 0.05865905061364174, -0.00399053143337369, 0.0021058141719549894, -0.011146499775350094, -0.023217473179101944, -0.00018099434964824468, 0.03768167272210121, 0.08442380279302597, -0.014280317351222038, -0.020951861515641212, -0.029290882870554924, -0.04292616993188858, 0.060339927673339844, -0.007224453147500753, -0.011581235565245152, 0.02834230288863182, -0.02570510096848011, -0.002051903400570154, -0.009869024157524109, -0.051611557602882385, 0.002352287760004401, 0.005629190243780613, -0.04254908114671707, 0.01420818641781807, 0.031684037297964096, 0.01804189383983612, 0.02031850814819336, -0.012981090694665909, 0.003177264239639044, 0.02052178792655468, 0.0093986252322793, 0.024143148213624954, 0.013676933012902737, 0.011211222968995571, 0.03207993507385254, 0.007352403365075588, 0.011755751445889473, -0.033394403755664825, 0.025262145325541496, -0.004182769916951656, 0.014480600133538246, -0.011139665730297565, 0.04713182896375656, -0.04034234955906868, 0.016413649544119835, -0.0038790064863860607, 0.06237656623125076, 0.023745663464069366, -0.008730560541152954, 0.009218650870025158, 0.0003323309647385031, 0.010697873309254646, 0.020505020394921303, -0.12117592990398407, -0.0050040800124406815, -0.05296210199594498, -0.03673134744167328, 0.0029140517581254244, -0.006591766141355038, -0.0062497807666659355, -0.007797665428370237, 0.02288409322500229, -0.02298063598573208, 0.04712028056383133, -0.060723405331373215, -0.03470458462834358, 0.02097381092607975, 0.018935728818178177, 0.019863687455654144, 0.009627707302570343, -0.027729570865631104, -0.0027302938979119062, -0.029920654371380806, 0.035764794796705246, 0.047881029546260834, -0.03207699954509735, 0.02249443344771862, 0.0013444132637232542, -0.060958463698625565, 0.005918403621762991, -0.019925381988286972, 0.013309074565768242, -0.014597486704587936, 0.03906676173210144, -0.005112537648528814, -0.01831088401377201, -0.04539158195257187, 0.04804762080311775, -0.01390170119702816, 0.010664261877536774, -0.008220840245485306, -0.033089615404605865, -0.007304412312805653, -0.01619129255414009, 0.01473418902605772, 0.003503131913021207, 0.010785706341266632, 0.004375938791781664, 0.019683711230754852, 0.014380928128957748, -0.031673070043325424, 0.02220631204545498, 0.07157760858535767, 0.016365932300686836, -0.07437709718942642, -0.006133495829999447, -0.02774072252213955, -0.03311653062701225, 0.03179723769426346, -0.012502869591116905, 0.026639292016625404, 0.005265180021524429, 0.01691478118300438, -0.05185152217745781, -0.04283896088600159, -0.031266722828149796, 0.08350075781345367, 0.03553161770105362, -0.002612039214000106, -0.055924899876117706, -0.07159817963838577, -0.00011734712461475283, -0.09206809848546982, -0.008191880770027637, 0.028882404789328575, 0.013449774123728275, -0.011385306715965271, 0.03763436898589134, 0.06180776655673981, -0.010300633497536182, 0.0326622799038887, -0.05539384111762047, 0.0012204631930217147, -0.006942776031792164, -0.09059668332338333, 0.027040468528866768, 0.02028021588921547, -0.06339539587497711, 0.05849921703338623, -0.07010213285684586, 0.008621975779533386, -0.013938847929239273, 0.013241304084658623, -0.0636768639087677, 0.029645899310708046, -0.023767443373799324, -0.004230963531881571, 0.02150683104991913, 0.03891431540250778, 0.01914253644645214, -0.002048786962404847, 0.02132975310087204, -0.03265979886054993, -0.026764927431941032, 0.028247864916920662, 0.05349159240722656, -0.05243620648980141, -0.019175715744495392, -0.033747028559446335, -0.0023884805850684643, 0.04131781682372093, 0.017378170043230057, -0.065332792699337, -0.0057173799723386765, -0.009039306081831455, 0.017856160178780556, 0.01650453731417656, -0.046027105301618576, -0.0050257970578968525, -0.02955227717757225, 0.012587352655827999, -0.012874997220933437, -0.041224293410778046, -0.0024728283751755953, 0.0536092072725296, -0.02429513819515705, 0.01077868603169918, 0.0033259931951761246, -0.08691251277923584, 0.08080655336380005, 0.0076676951721310616, 0.0308428555727005, -0.002725538332015276, 0.008927644230425358, -0.007475677412003279, 0.06199624761939049, 0.03161244094371796, 0.006007464602589607, -0.060815535485744476, -0.060517292469739914, 0.07147692888975143, -0.026094751432538033, -0.009926842525601387, -0.036203570663928986, -0.022932279855012894, -0.04421805217862129, -0.029947752133011818, 0.00788988545536995, -0.025935152545571327, -0.04056626185774803, 0.020965326577425003, -0.024386798962950706, 0.053163811564445496, 0.06546911597251892, -0.01670825108885765, -0.013860354200005531, -0.03213450312614441, 0.1225828304886818, -0.016892535611987114, -0.014062329195439816, 0.015453333966434002, -0.0152232451364398, -0.03796813264489174, 0.019384441897273064, 0.05691106617450714, -0.002116772113367915, -0.07685136795043945, -0.034040819853544235, 0.03374756500124931, -0.012569497339427471, -0.021822195500135422, -0.012789905071258545, -0.006912203039973974, 0.09590104967355728, 0.016758566722273827, 0.06744537502527237, -0.022618532180786133, 0.0025494934525340796, 0.0426473431289196, 0.008692451752722263, 0.024431690573692322, -0.006312493234872818, -0.013286808505654335, 0.05492658540606499, -0.034888580441474915, -0.011654019355773926, -0.01663917489349842, -0.05288631469011307, 0.06763798743486404, 0.01607775315642357, 0.008217526599764824, -0.06317206472158432, -0.008532898500561714, 0.013074086979031563, 0.044453591108322144, 0.03572332113981247, -0.05731163173913956, 0.0469730868935585, -0.07145679742097855, -0.04548445716500282, -0.09208568930625916, -0.0005108619807288051, -0.013080607168376446, -0.09182991832494736, -0.007615348324179649, 0.04970864951610565, 0.05844992399215698, 0.01232955139130354, 0.040312424302101135, 0.011259575374424458, 0.012028376571834087, 0.03590487688779831, -0.029817525297403336, -0.037530262023210526, -0.0364546924829483, 0.029930783435702324, -0.030675522983074188, 0.03532788157463074, -0.03776880353689194, -0.02197273261845112, -0.007257440127432346, 0.03183327242732048, -0.04612606391310692, -0.023246437311172485, 0.02062317728996277, -0.04722895473241806, -0.01216169260442257, 0.051371123641729355, -0.05015134438872337, -0.008923614397644997, 0.028270097449421883, -0.03225569427013397, 0.01801922358572483, 0.0487065352499485, -0.004367166198790073, 0.010764354839920998, -0.043916407972574234, 0.013066265732049942, -0.014070314355194569, 0.015602229163050652, -0.007189887575805187, -0.08130265027284622, 0.019512934610247612, -0.03515968471765518, 0.022128481417894363, 0.02297164499759674, 0.013904227875173092, 0.022932661697268486, -0.04947159066796303, -0.024325568228960037, 0.05207410082221031, -0.021377187222242355, 0.010877327062189579, -0.024818001314997673, 0.04630834236741066, -0.03720463812351227, -0.004866728559136391, -0.019855955615639687, 0.0012307562865316868, -0.0038675800897181034, -0.056480761617422104, 0.026406068354845047, -0.005040408112108707, -0.056296732276678085, 0.007893674075603485, 0.026575647294521332, -0.032609209418296814, 0.019917715340852737, -0.022570371627807617, -0.028653888031840324, -0.02716738171875477, 0.022683903574943542, 0.06786107271909714, -0.002917436184361577, 0.025259843096137047, -0.0279507078230381, 0.03626717999577522, -0.0399196557700634, 0.0011765537783503532, 0.042920105159282684, 0.03647588938474655, -0.058827340602874756, -0.017016999423503876, 0.057688597589731216, 0.027429621666669846, -0.04828996956348419, -0.021668078377842903, -0.010788357816636562, -0.0033343082759529352, 0.0056580486707389355, 0.026508985087275505, -0.022065401077270508, -0.00559383537620306, 0.05687376484274864, 0.003409390337765217, -0.015799490734934807, 0.004255745559930801, 0.011709548532962799, -0.04785201698541641, -0.01793932169675827, 0.019043205305933952, 0.05381624028086662, -6.0417158655701585e-33, -0.04940001666545868, -0.0004889633855782449, 0.039120715111494064, 0.026925332844257355, 0.007488506846129894, -0.029515406116843224, -0.021386941894888878, -0.01979326270520687, -0.0469013936817646, -0.019078528508543968, 0.003950662445276976, 0.024693652987480164, 0.008343862369656563, 0.004157212562859058, -0.0010061680804938078, 0.02192290499806404, 0.04634279012680054, 0.004373813513666391, -0.009123304858803749, -0.0015606456436216831, -0.08997015655040741, 0.005093633197247982, -0.014448625966906548, 0.03359781578183174, 0.0272266436368227, -0.0022387776989489794, -0.06922484189271927, 0.006992435082793236, 0.021342165768146515, 0.0019166613928973675, -0.020090535283088684, -0.0454881489276886, -0.0033528294879943132, 0.025591017678380013, 0.0387776754796505, 0.071958526968956, -0.08561591804027557, 0.0371127724647522, -0.006339964456856251, 0.0275996383279562, 0.037201449275016785, -0.02871164120733738, -0.009532897733151913, -0.02832132577896118, 0.0031155874021351337, 0.0010979840299114585, 0.024885673075914383, 0.02756798081099987, 0.018877465277910233, 0.010809579864144325, -0.08385712653398514, -0.0031077039893716574, -0.0009448604541830719, 0.05078764259815216, 0.010535304434597492, 0.01216858346015215, -0.005151757504791021, -0.10532687604427338, -0.05327817425131798, 0.007389584090560675, -0.019477015361189842, -0.03256522864103317, 0.015121925622224808, -0.033262308686971664, -0.02294628694653511, -0.05092472583055496, -0.0056281606666743755, 0.06527256965637207, 0.03781136870384216, 0.033335890620946884, 0.0076175229623913765, -0.014702077023684978, -0.07886340469121933, -0.01981171779334545, -0.050421591848134995, 0.04316825419664383, -0.027787094935774803, 0.041284285485744476, 0.08532407879829407, 0.03563939034938812, -0.009750865399837494, -0.021279530599713326, 0.0015260196523740888, 0.0006205756799317896, 0.025458727031946182, 0.02356577292084694, -0.016399456188082695, 0.0018162743654102087, 0.007838787510991096, 0.052652958780527115, -0.03709251433610916, -0.051467910408973694, -0.04757534712553024, 0.01727793551981449, 0.03622470423579216, -0.018534550443291664, 0.04148874804377556, -0.05195590853691101, -0.007090917322784662, -0.03209499269723892, -0.05332224816083908, 0.007151714060455561, 0.02557828649878502, 0.0011345880338922143, 0.027701979503035545, 0.052448589354753494, -0.013427527621388435, -0.003852022113278508, -0.03672992065548897, 0.034155189990997314, 0.01847132295370102, 0.021346140652894974, 0.016011202707886696, -0.013529466465115547, -0.0012842246796935797, -0.026063472032546997, 0.02020450495183468, 0.02057037502527237, -0.009446986950933933, -0.04465648531913757, 0.01928296685218811, 0.005457250401377678, 0.06160914525389671, -0.017756829038262367, -0.05120163410902023, 0.013619247823953629, -0.002775781322270632, 0.04274952411651611, 0.12189792841672897, 0.0264818724244833, 0.023997653275728226, 0.001703588292002678, 2.776922940483928e-07, 0.01119991298764944, 0.021594399586319923, -0.0028927118983119726, -0.03524939343333244, -0.017854223027825356, -0.04339985176920891, -0.0025918150786310434, -0.008785945363342762, -0.007737644016742706, 0.04015011712908745, 0.03147392347455025, -0.014510471373796463, -0.03941988945007324, 0.019121015444397926, -0.013544856570661068, -0.1434229016304016, 0.030873596668243408, -0.03227830305695534, -0.024939853698015213, 0.0024631726555526257, 0.019347740337252617, 0.027448533102869987, -0.01183452270925045, 0.0012145783985033631, 0.009713433682918549, 0.04744566231966019, -0.02845102548599243, -0.011220979504287243, -0.003908947110176086, -0.013588258996605873, 0.023311486467719078, -0.024847282096743584, -0.002838635817170143, 0.06658133864402771, -0.005735998973250389, -0.007508820854127407, -0.00227351114153862, 0.01712954044342041, 0.008095070719718933, 0.09525290131568909, 0.029667986556887627, -0.05676957964897156, 0.030931709334254265, -0.01740676537156105, 0.026833457872271538, -0.01896470971405506, 0.013863819651305676, -0.03481408581137657, -0.07167214900255203, -0.019433479756116867, 0.022786764428019524, 0.07119720429182053, 0.018219325691461563, 0.0022120403591543436, 0.05750306323170662, 0.0001948293938767165, -0.008254341781139374, -0.021084418520331383, 0.05063021183013916, 0.045519303530454636, -0.022096026688814163, -0.07635338604450226, 0.05373328924179077, -0.0009404695010744035, 0.026394981890916824, -0.03084373287856579, -0.039372872561216354, 2.9817943269618353e-34, -0.008821067400276661, 0.015452680177986622, -0.018641114234924316, 0.010022545233368874, 0.012655296362936497, -0.044173676520586014, 0.03909185156226158, 0.009090755134820938, -0.013876975513994694, -0.05935207009315491, -0.00358380819670856], "80a01e0f-9042-4493-92d6-a07003cd87a9": [0.005213282536715269, -0.04559954255819321, -0.01925726607441902, -0.04011527821421623, 0.012429127469658852, 0.05682250112295151, -0.00400541303679347, 0.06044609472155571, 0.08794498443603516, -0.015672342851758003, 0.02071611024439335, -0.005612866021692753, 0.0275576189160347, 0.06514143198728561, -0.00961298681795597, 0.024715464562177658, 0.02232871763408184, 0.01164332777261734, -0.05381054803729057, -0.030654719099402428, -0.010030834004282951, 0.02752741053700447, -0.042849697172641754, -0.0014346095267683268, 0.031020505353808403, -0.008138656616210938, 0.009428984485566616, 0.059448447078466415, 0.06103723868727684, -0.02646881528198719, -0.015002119354903698, 0.00306470668874681, -0.029833106324076653, -0.015017839148640633, 2.157145672754268e-06, -0.032053615897893906, 0.022680921480059624, 0.012791118584573269, -0.05809400975704193, -0.03804967552423477, 0.013151662424206734, -0.042149826884269714, 0.0038282149471342564, 0.021399738267064095, 0.005546802654862404, -0.004809453152120113, 0.0160670205950737, 0.014445627108216286, 0.02415996417403221, 0.029502075165510178, -0.005466682370752096, 0.047244954854249954, -0.025040963664650917, -0.020388109609484673, 0.05810289457440376, -0.048919979482889175, 0.008260903880000114, -0.019645849242806435, 0.07102054357528687, -0.00984546821564436, 0.014957776293158531, -0.017517713829874992, -0.011518637649714947, -0.006983108818531036, 0.08346913754940033, 0.05361320078372955, 0.06017525866627693, -0.09490419924259186, 0.0027737708296626806, 0.002514786086976528, 0.05301917344331741, -0.008999625220894814, 0.007421033922582865, 0.061179112643003464, -0.005011145491153002, -0.017917627468705177, 0.014496037736535072, 0.03347009792923927, -0.027245597913861275, -0.03810633718967438, -0.02117546647787094, -0.026511404663324356, -0.033812277019023895, -0.02011238969862461, 0.04297836869955063, 0.07121773064136505, 0.02305496484041214, -0.053322598338127136, 0.04071444645524025, 0.016728011891245842, 0.12248166650533676, -0.008940257132053375, 0.009829772636294365, 0.025387203320860863, -0.00550020020455122, -0.04991145804524422, 0.014063400216400623, 0.03519187495112419, 0.04248414933681488, 0.01967490278184414, -0.0016262595308944583, 0.01080587599426508, -0.006234329659491777, 0.04817171394824982, -0.00516221160069108, 0.018763704225420952, 0.02722236141562462, -0.06452029943466187, -0.023035624995827675, 0.02641977369785309, -0.01483164168894291, -0.004757944960147142, -0.048393070697784424, 0.026607705280184746, 0.060658492147922516, 0.0007204532157629728, -0.02825654111802578, 0.050115421414375305, 0.038453660905361176, 0.06888537108898163, 0.07425428926944733, -0.02486172690987587, -0.0166457649320364, 0.011974208988249302, -0.07266276329755783, -0.11862929165363312, -0.017178930342197418, 0.01228412240743637, -0.009521893225610256, -0.05339064076542854, -0.0021975012496113777, 0.008691968396306038, 0.018092622980475426, -0.0076653361320495605, 0.009667622856795788, 0.0034054971765726805, 0.05755777284502983, 0.020672086626291275, 0.030601385980844498, 0.014365347102284431, 0.0075999097898602486, -0.0014968388713896275, 0.014861831441521645, 0.0029095159843564034, 0.015412858687341213, -0.01102711446583271, 0.00039144017500802875, 0.022465981543064117, 0.01246067974716425, 0.03735673427581787, -0.04833250120282173, 0.005224582273513079, -0.06421911716461182, -0.03831712529063225, -0.006170199252665043, 0.01786133088171482, 0.04034822806715965, -0.02320726402103901, -0.03730621188879013, 0.04447145387530327, -0.017682276666164398, 0.0071413591504096985, 0.06094874069094658, 0.018896739929914474, -0.0099376505240798, -0.0102742500603199, 0.03972829878330231, 0.01309059839695692, 0.019093748182058334, 0.01490061730146408, -0.0019523618975654244, 0.037079498171806335, -0.03500645235180855, 0.0627363994717598, -0.04731989651918411, 0.008153567090630531, 0.009698855690658092, -0.022021563723683357, 0.058857887983322144, 0.0017442939570173621, -0.02483251504600048, -0.07756716758012772, -0.011487620882689953, 0.025611164048314095, -0.04818787798285484, 0.005923234857618809, -0.043834272772073746, 0.05995147302746773, -0.04640073701739311, 0.00697694206610322, -0.010910138487815857, -0.020092986524105072, -0.017264459282159805, -0.05367094278335571, 0.012269487604498863, 0.031295038759708405, -0.058276236057281494, -0.089237742125988, -0.014903785660862923, -0.032246291637420654, -0.032699041068553925, -0.04689550772309303, -0.0013199398526921868, 0.08507997542619705, -0.007958933711051941, -0.00020256332936696708, -0.0005676359869539738, -0.038450874388217926, -0.006160301622003317, 0.04388042166829109, 0.070807084441185, -0.00918697938323021, -0.03901725634932518, -0.047718849033117294, -0.018278101459145546, 0.06149720773100853, 0.007435022387653589, 0.0092965392395854, 0.018933691084384918, -0.006488500628620386, -0.020448312163352966, -0.021402588114142418, -0.035688240081071854, 0.0010484864469617605, 0.04954497143626213, -0.06185916066169739, 0.00014244353224057704, 0.03076818212866783, 0.02055484429001808, 0.021827830001711845, 0.0009012482478283346, -0.006850682199001312, 0.009893639013171196, 0.010372004471719265, 0.012357744388282299, 0.01774686388671398, -0.015740051865577698, 0.03044428676366806, 0.006535448133945465, -0.027027927339076996, -0.02585303783416748, 0.04391595348715782, 0.018049120903015137, 0.01060181949287653, 0.02407005988061428, 0.02423703856766224, -0.044492680579423904, 0.012736971490085125, 0.012566115707159042, 0.054297491908073425, 0.04213594272732735, -0.0037018379662185907, 0.011744752526283264, 0.023592233657836914, -0.003996880725026131, 0.0037949923425912857, -0.14393559098243713, -0.01613626442849636, -0.0817217007279396, -0.02692185528576374, -0.0013293619267642498, -0.01946619339287281, 0.0015858238330110908, -0.012496019713580608, 0.034843575209379196, -0.016821082681417465, 0.026097750291228294, -0.051207493990659714, -0.03623109683394432, 0.02505144663155079, 0.013891682960093021, 0.019574148580431938, 0.00786963477730751, -0.017711620777845383, -0.009652188047766685, -0.0145271560177207, 0.03769901767373085, 0.03731973096728325, -0.04121009632945061, 0.025704050436615944, 0.012642467394471169, -0.04252487048506737, 0.01923743076622486, -0.024570200592279434, -0.018396619707345963, -0.01912185549736023, 0.04314081370830536, -0.036980532109737396, -0.02631239965558052, -0.028182748705148697, 0.033272694796323776, -0.014200029894709587, 0.01225583627820015, -0.01540517807006836, -0.040478888899087906, -0.00897532794624567, -0.007948262616991997, 0.04678812250494957, 0.012056926265358925, 0.041535891592502594, -0.014829029329121113, 0.025161072611808777, 0.0173043105751276, -0.026722270995378494, 0.0382474921643734, 0.06058238074183464, 0.016763214021921158, -0.06187370792031288, -0.0009562333580106497, -0.030438844114542007, -0.02026168629527092, 0.025709686800837517, -0.022032296285033226, 0.02404174581170082, -0.00655296491459012, 0.02650410123169422, -0.05216798186302185, -0.03218919411301613, -0.04270394891500473, 0.05149068310856819, 0.03063146024942398, -0.002654577139765024, -0.0028252252377569675, -0.041685860604047775, -0.01674538664519787, -0.08912026137113571, -0.039239197969436646, 0.029523231089115143, 0.021953225135803223, -0.0029256960842758417, 0.027087271213531494, 0.02737562730908394, -0.01580367609858513, 0.026204630732536316, -0.052517496049404144, -0.0032811667770147324, 0.0034335488453507423, -0.1063922569155693, 0.017275825142860413, 0.0085368687286973, -0.055515993386507034, 0.05877133086323738, -0.0681699886918068, 0.023449890315532684, -0.03218294307589531, -0.0026157021056860685, -0.06430473923683167, 0.018137289211153984, -0.038803402334451675, -0.016213009133934975, 0.026447439566254616, 0.031133783981204033, 0.018093671649694443, -0.006514426786452532, 0.01662815921008587, -0.046368375420570374, -0.00285304500721395, 0.011348624713718891, 0.014580567367374897, -0.027253704145550728, 0.014033087529242039, -0.02721833996474743, 0.01720092073082924, 0.025777582079172134, 0.021143630146980286, -0.0646209567785263, 0.025432677939534187, -0.026063209399580956, 0.02711646817624569, 0.01579844206571579, -0.06063991039991379, 0.0014583178563043475, -0.023834284394979477, 0.01921685039997101, -0.017740700393915176, -0.030450766906142235, -0.012841002084314823, 0.07707589864730835, -0.025496676564216614, -0.0033006775192916393, 0.017854085192084312, -0.11062870174646378, 0.08795644342899323, 0.01161240041255951, 0.015964921563863754, -9.395852976012975e-05, 0.015966106206178665, 0.008787406608462334, 0.014635520055890083, 0.014340999536216259, -0.008437789045274258, -0.08611130714416504, -0.0819498598575592, 0.05147692561149597, -0.03265531361103058, 0.01655164547264576, -0.007401961367577314, -0.0127529576420784, -0.04276260361075401, -0.01434625405818224, 0.012790663167834282, -0.005918839946389198, -0.020383890718221664, 0.03047744370996952, -0.0036821302492171526, 0.04627890884876251, 0.09010517597198486, -0.013862981460988522, -0.045648396015167236, -0.05999530851840973, 0.0965460017323494, -0.003112721722573042, -0.012714186683297157, 0.0008651732932776213, -0.015009245835244656, -0.059471212327480316, 0.01606624200940132, 0.021698307245969772, 0.025579925626516342, -0.072784923017025, -0.011399798095226288, 0.037534717470407486, 0.009467961266636848, -0.028199169784784317, -0.02614527754485607, -0.00399065064266324, 0.10521465539932251, 0.006224701646715403, 0.04988822713494301, -0.03487565368413925, -0.019496185705065727, 0.030407385900616646, 0.002611700911074877, 0.02971867471933365, -0.02425977773964405, -0.030951788648962975, 0.024271348491311073, -0.019959740340709686, -0.02053605392575264, -0.04914196953177452, -0.05243014916777611, 0.057395484298467636, 0.033635761588811874, 0.009823739528656006, -0.07163036614656448, -0.01707254722714424, 0.03278474137187004, 0.010123191401362419, 0.015276980586349964, -0.05286412313580513, 0.02472737617790699, -0.0608089417219162, -0.048658087849617004, -0.09585858881473541, -0.03075779415667057, -0.01831437274813652, -0.08755156397819519, 0.01875184290111065, 0.03888823837041855, 0.06543585658073425, 0.040287427604198456, 0.044640518724918365, -0.0035353328566998243, -0.014475412666797638, 0.055207401514053345, -0.003205276094377041, 0.004989112727344036, -0.037077825516462326, 0.01629195362329483, -0.001665972056798637, 0.04124031960964203, -0.00848411675542593, -0.026864366605877876, -0.02076307311654091, 0.0065911561250686646, -0.04448668658733368, -0.019991453737020493, 0.03232806921005249, -0.04640856012701988, -0.016074396669864655, 0.04910213500261307, -0.04599427431821823, 0.0011850738665089011, 0.01852642185986042, -0.03365447744727135, 0.018018698319792747, 0.019176378846168518, 0.011226752772927284, 0.0034838244318962097, -0.0266876183450222, 0.023618612438440323, -0.005258255172520876, 0.021406251937150955, -0.0282085333019495, -0.06162628158926964, 0.032313402742147446, -0.0003171715943608433, 0.03597322478890419, -0.023125072941184044, 0.0538550466299057, 0.001635346794500947, -0.04328020662069321, -0.030402155593037605, 0.041630763560533524, -0.0004524325777310878, 0.01702052168548107, -0.0034843841567635536, 0.04417085647583008, -0.031315453350543976, -0.002911230782046914, -0.019744543358683586, 0.023174380883574486, -0.0007194672944024205, -0.0755595937371254, 0.0073351776227355, 0.009793641045689583, -0.0599922239780426, 0.006448890082538128, 0.013191789388656616, -0.04137096181511879, 0.02232392504811287, -0.002890628995373845, -0.010039392858743668, -0.00902512762695551, 0.019110333174467087, 0.06603170186281204, 0.004328214563429356, 0.011486169882118702, -0.02205398865044117, 0.03365032747387886, -0.062144529074430466, 0.0197361558675766, 0.03981098160147667, 0.024914473295211792, -0.06214198097586632, -0.019240999594330788, -0.003549091750755906, 0.03942989557981491, -0.035382963716983795, -0.033523138612508774, -0.007109571248292923, -0.013759803026914597, 0.018352732062339783, 0.022819600999355316, -0.011808257550001144, -0.005716558545827866, 0.05255492404103279, 0.01534140296280384, -0.001877693342976272, 0.01302624586969614, 0.009951949119567871, -0.04822913929820061, 0.015030249953269958, 0.013246280141174793, 0.04094991832971573, -6.186114693651122e-33, -0.03849002346396446, 0.007976650260388851, 0.027596067637205124, 0.03965999186038971, 0.015616373158991337, -0.03567737713456154, -0.002412258181720972, -0.008907396346330643, -0.04768414422869682, -0.020874101668596268, 0.013177301734685898, 0.03363117575645447, 0.02430872619152069, -0.0007333067478612065, -0.016245370730757713, 0.01741550862789154, 0.041227564215660095, 0.009753658436238766, -0.008657768368721008, -0.013739064335823059, -0.10162559896707535, -0.004527353215962648, 0.030366716906428337, 0.03487776964902878, 0.03986416384577751, -0.008801192976534367, -0.06495695561170578, -0.009505413472652435, 0.0009915608679875731, 0.0034620591904968023, -0.03790414705872536, -0.03256284072995186, -0.0013606901047751307, 0.02464870736002922, 0.05216576159000397, 0.06736371666193008, -0.07060619443655014, 0.017075153067708015, -0.0008541721035726368, 0.021505648270249367, 0.027382265776395798, -0.054064203053712845, -0.02478380687534809, -0.030676890164613724, 0.005574840120971203, 0.018553275614976883, 0.04596447944641113, 0.012517635710537434, 0.026579586789011955, 0.004431023262441158, -0.05323481559753418, 0.01633286476135254, -0.0032860341016203165, 0.03695240989327431, -0.015280961990356445, 0.025018207728862762, 0.004173965193331242, -0.11511973291635513, -0.06790199130773544, 0.027251269668340683, 0.01454513892531395, -0.036038558930158615, 0.006461919751018286, -0.03806060552597046, 0.006177024450153112, -0.02978077344596386, 0.02486789971590042, 0.07262405008077621, 0.02450932003557682, 0.02900439128279686, 0.008263804949820042, -0.020355885848402977, -0.07649793475866318, -0.03430910408496857, -0.05387848988175392, 0.016602948307991028, -0.018529819324612617, 0.03617772459983826, 0.09512719511985779, 0.04891376197338104, 0.005205223802477121, -0.019827160984277725, -0.03743255138397217, -0.0017855969490483403, 0.03241908550262451, 0.015744440257549286, -0.029014945030212402, -0.01444336213171482, 0.0015347879379987717, 0.057605378329753876, -0.027756625786423683, -0.038274019956588745, -0.03335185721516609, 0.01163887232542038, 0.06251929700374603, -0.04225929453969002, 0.04509896785020828, -0.05587909743189812, 0.005185302812606096, -0.046153079718351364, -0.05649103969335556, 0.007787136826664209, 0.013220316730439663, 0.029760021716356277, 0.025005605071783066, 0.04070279002189636, -0.0004525892436504364, 0.002073328010737896, -0.06093519926071167, 0.032653652131557465, 0.011157316155731678, 0.019003355875611305, 0.031703442335128784, -0.01200563833117485, 0.0064293397590518, -0.019810175523161888, 0.02796240709722042, 0.023987330496311188, -0.02353987842798233, -0.05457227677106857, 0.0028536475729197264, 0.043983303010463715, 0.04739179462194443, -0.03865571320056915, -0.050425998866558075, 0.011226105503737926, 0.0011881671380251646, 0.026846151798963547, 0.08322800695896149, 0.008182237856090069, 0.019683441147208214, 0.00900635402649641, 2.8685462893918157e-07, -0.009251721203327179, 0.03445015847682953, 0.0034300510305911303, -0.02445133961737156, -0.019242217764258385, -0.04984543099999428, -0.00018270158034283668, -0.026563100516796112, -0.007304329425096512, 0.06415311992168427, 0.02726752683520317, 0.00950564444065094, -0.02999548614025116, 0.0018852738430723548, -0.026689797639846802, -0.14798887073993683, 0.013264293782413006, -0.03554774820804596, -0.02661348506808281, -0.00528211472555995, 0.04418838396668434, 0.039338380098342896, 0.016462191939353943, 0.012949250638484955, 0.028863582760095596, 0.022373223677277565, -0.016635354608297348, -0.013320582918822765, 0.009317701682448387, -0.023576833307743073, 0.02133738063275814, 0.0020803818479180336, -0.012405871413648129, 0.050924308598041534, 0.003027985105291009, -0.03378341719508171, 0.005801717285066843, 0.032980889081954956, 0.015479850582778454, 0.06115538254380226, 0.02982894517481327, -0.06298115849494934, 0.028679370880126953, -0.013591825030744076, 0.03091594949364662, 0.012482435442507267, -0.007934833876788616, -0.034845657646656036, -0.08093228191137314, -0.01780605874955654, 0.010944666340947151, 0.04634654521942139, 0.007203730754554272, -0.006198365706950426, 0.04904869198799133, 0.01744326390326023, -0.013413508422672749, -0.012809301726520061, 0.040626946836709976, 0.05290291830897331, -0.0374632328748703, -0.10334422439336777, 0.05631409212946892, -0.006598315201699734, 0.04997633025050163, -0.025518348440527916, -0.03409292921423912, 3.0056880863522215e-34, 0.011769209988415241, 0.015550617128610611, -0.015627026557922363, -0.010547119192779064, 0.01773066259920597, -0.03856903687119484, 0.05047139525413513, -0.0003466660564299673, 0.004121788777410984, -0.05429745465517044, -0.022390367463231087], "95e4556b-baf0-40be-a66b-4d2b0eebafb3": [-0.02382740005850792, -0.05301773548126221, -0.002036949386820197, -0.02195402793586254, 0.029163505882024765, 0.046719178557395935, 0.006321853958070278, 0.07024109363555908, 0.06077797710895538, 0.027448607608675957, 0.020906196907162666, 0.04056863859295845, 0.04451901838183403, 0.04344029352068901, -0.004085255786776543, 0.0507408082485199, 0.003447806928306818, -0.016543738543987274, -0.04188351333141327, -0.009900074452161789, -0.0052809761837124825, 0.0329960435628891, -0.06458703428506851, -0.012812651693820953, -0.011244661174714565, -0.018200453370809555, 0.014938784763216972, 0.0037605175748467445, 0.07851368188858032, 0.021459059789776802, 0.017797470092773438, 0.012474206276237965, -0.0492468923330307, -0.017133010551333427, 1.995331103898934e-06, -0.00230023474432528, 0.023768767714500427, -0.009212655946612358, -0.05329421907663345, -0.0037836243864148855, -0.009364044293761253, -0.016171956434845924, 0.028253717347979546, 0.005413934122771025, -0.011704469099640846, 0.047252800315618515, 0.021627910435199738, -0.03402330353856087, 0.049910396337509155, 0.0158209390938282, -0.009729664772748947, -0.009114260785281658, -0.015580132603645325, -0.01176071260124445, 0.03399866446852684, -0.10743526369333267, 0.02134072408080101, 0.026950465515255928, 0.0004596067301463336, -0.01463670376688242, 0.026234544813632965, -0.014586330391466618, -0.03164268657565117, 0.010090189054608345, 0.10092125833034515, 0.04729845002293587, 0.040199071168899536, -0.08311361819505692, -0.011166373267769814, -0.018051905557513237, 0.08344455063343048, 0.008969239890575409, 0.0018661136273294687, 0.042729079723358154, -0.014024533331394196, -0.01369781605899334, 0.043001286685466766, 0.03313254565000534, -0.006418078672140837, -0.018202805891633034, -0.012082903645932674, -0.03640223294496536, -0.030369753018021584, 0.021076582372188568, -0.029422566294670105, 0.05476192757487297, 0.02309485897421837, -0.005257807206362486, 0.047650035470724106, 0.004578523803502321, 0.08326353877782822, 0.022720398381352425, -0.011284234002232552, 0.02866244502365589, 0.04985044524073601, -0.04412344843149185, 0.0402764193713665, 0.006925067864358425, 0.012628327123820782, -0.008041075430810452, -0.008786779828369617, -0.009644443169236183, -0.009956518188118935, 0.045548759400844574, 0.0141587620601058, 0.04985013231635094, -0.028824787586927414, -0.01645113341510296, 0.012405742891132832, 0.054580189287662506, 0.012962798587977886, 0.002451230539008975, -0.03647381812334061, 0.016256362199783325, 0.02621142752468586, 0.011282561346888542, -0.02218702994287014, 0.010828482918441296, 0.03728373721241951, 0.06469874829053879, 0.1007351502776146, -0.034744665026664734, -0.014933989383280277, -0.011925865896046162, -0.04765648394823074, -0.12045814096927643, 0.025317182764410973, -0.0050847213715314865, -0.03347797691822052, -0.035132888704538345, -0.004817151930183172, 0.01875046081840992, 0.02533397637307644, -0.002962780650705099, -0.006608279421925545, 0.021164078265428543, 0.03844882547855377, -0.007498180493712425, 0.045514073222875595, 0.014777335338294506, 0.022330930456519127, 0.007623001933097839, 0.028843803331255913, 0.027215097099542618, -0.014298113994300365, 0.00026230630464851856, 0.006629268638789654, 0.01847616583108902, 0.02763395942747593, 0.027986841276288033, -0.029133431613445282, -0.026828208938241005, -0.03777727857232094, -0.04169187322258949, -0.07924237847328186, 0.004048100207000971, 0.044234372675418854, -0.03758396953344345, -0.015841269865632057, 0.011744771152734756, -0.04217475652694702, 0.04002668708562851, 0.03244791552424431, 0.004154622089117765, 0.0077385990880429745, -0.03684936463832855, 0.027562908828258514, 0.011737534776329994, -0.02421221137046814, -0.026950174942612648, -0.018382536247372627, 0.014479340985417366, -0.052973125129938126, 0.04832301288843155, -0.08030262589454651, -0.05747058615088463, 0.037342656403779984, -0.05461224541068077, 0.021712981164455414, -0.04047059640288353, -0.006293023470789194, -0.10933635383844376, 0.017118938267230988, 0.012410619296133518, -0.040146354585886, 0.004911052528768778, 0.004665803164243698, 0.04720040783286095, -0.03900471702218056, -0.0028590967413038015, -0.033859364688396454, -0.03243891894817352, -0.03490107133984566, -0.0363750196993351, 0.027355633676052094, -0.017151711508631706, 0.013286550529301167, -0.042773906141519547, 0.0035794698633253574, -0.002335993805900216, -0.03657503426074982, -0.09005275368690491, 0.03884761780500412, 0.059035345911979675, -0.0009442486334592104, 0.015624643303453922, 0.003662572940811515, -0.02107442170381546, -0.01516904216259718, 0.07212373614311218, 0.023356813937425613, -0.03219148889183998, 0.008122778497636318, -0.047093939036130905, -0.019410880282521248, 0.03142552077770233, -0.0356379896402359, -0.001341683673672378, 0.04431985691189766, -0.034403081983327866, -0.018416158854961395, -0.05531430244445801, -0.004406617023050785, 0.0002974045928567648, 0.030476147308945656, -0.0445040725171566, 0.007225544657558203, -0.009811378084123135, 0.022798899561166763, 0.009103725664317608, -0.027316097170114517, -0.007905038073658943, -0.010058432817459106, 0.01961747370660305, 0.04796093329787254, 0.02074362337589264, 0.01828908734023571, 0.020526926964521408, 0.02439502626657486, -0.04746424779295921, 0.014181354083120823, 0.03020847775042057, -0.011346111074090004, 0.042506132274866104, -0.03099515102803707, 0.027470191940665245, 0.003141204360872507, -0.028462503105401993, -0.010767743922770023, 0.035833265632390976, 0.04067234322428703, -0.018913375213742256, 0.024775581434369087, -0.009802163578569889, -0.0065340884029865265, -0.006879101973026991, -0.12445087730884552, -0.027241894975304604, -0.06480410695075989, 0.011964828707277775, -0.030547650530934334, 0.015252778306603432, 0.0299987830221653, -0.012148351408541203, 0.02744714356958866, 0.010462692007422447, 0.02986619435250759, 0.0176191795617342, -0.03477583825588226, 0.038622599095106125, -0.01207888312637806, 0.028541158884763718, -0.04934804514050484, -0.010506253689527512, 0.007248670794069767, -0.014944152906537056, 0.006220576819032431, 0.022958310320973396, -0.03408690169453621, 0.01345786452293396, -0.024694031104445457, 0.023391027003526688, 0.018727874383330345, -0.015801576897501945, 0.024664105847477913, -0.02832566574215889, 0.03023339994251728, -0.04617999866604805, -0.05908619239926338, -0.04809536412358284, 0.03441253677010536, -0.0350717231631279, -0.023334674537181854, 0.003690255805850029, -0.03133934363722801, -0.0075945486314594746, 0.0007791817770339549, 0.023412220180034637, -0.017586905509233475, 0.015072989277541637, -0.028235936537384987, 0.005661879666149616, -0.010840905830264091, -0.021054595708847046, 0.04709358140826225, 0.05689883604645729, 0.04481131583452225, -0.04684130847454071, -0.01911345310509205, -0.042338777333498, -0.050456371158361435, 0.03222164139151573, -0.029319176450371742, 0.05103660002350807, 0.04612352326512337, 0.0038665940519422293, -0.014227963984012604, 0.0668521523475647, -0.02025444060564041, 0.06501325219869614, 0.03866716846823692, -0.03503195568919182, -0.056865666061639786, -0.04035055637359619, -0.004686674568802118, -0.08760714530944824, -0.02947893925011158, 0.02616177499294281, -0.006769177038222551, 0.0002938268007710576, 0.036697302013635635, 0.008809033781290054, -0.011926038190722466, 0.04706031456589699, -0.0459364615380764, 0.0012541075702756643, 0.014887976460158825, -0.07109607756137848, 0.053308792412281036, 0.005725751165300608, -0.012033138424158096, 0.07385925948619843, -0.047193434089422226, 0.025648336857557297, -0.023455744609236717, 0.007848765701055527, -0.07618775218725204, -0.021504828706383705, -0.0043894569389522076, 0.018364138901233673, 0.05549735203385353, 0.03729785606265068, 0.011658180505037308, 0.0022011001128703356, 0.03421848639845848, -0.055872634053230286, -0.03451486676931381, 0.0510537289083004, 0.006044880021363497, -0.043677862733602524, -0.024868834763765335, -0.0576007179915905, -0.015214692801237106, 0.027206918224692345, 0.03228387236595154, -0.054900992661714554, 0.006333342753350735, -0.026228955015540123, 0.060361724346876144, 0.041835810989141464, -0.06005724146962166, 0.008379865437746048, -0.07116217911243439, -0.011904963292181492, 0.006313728168606758, -0.0038883541710674763, -0.04651230573654175, 0.024862997233867645, 0.012251809239387512, -0.01000992488116026, -0.03140169382095337, -0.04840950295329094, 0.09154899418354034, 0.017905576154589653, -0.016749516129493713, 0.03207181766629219, 0.014764404855668545, 0.015464765951037407, 0.0480104498565197, -0.0061975386925041676, 0.04041247442364693, -0.06063968688249588, -0.06424161046743393, 0.05114160105586052, 0.00023841895745135844, -0.025747882202267647, -0.009171025827527046, 0.002358965575695038, 0.0028746859170496464, 0.002463346114382148, -0.00046245797420851886, -0.02539384737610817, 0.01772415265440941, 0.007080450188368559, -0.0053703258745372295, 0.03224474936723709, 0.09493841975927353, 0.015892265364527702, -0.07518328726291656, -0.08496778458356857, 0.07686512917280197, 0.00190330995246768, -0.03411249443888664, -0.009564901702105999, 0.0044497293420135975, -0.041977785527706146, -0.015253416262567043, 0.04924318566918373, 0.03219112008810043, -0.05857648700475693, -0.02702026441693306, 0.006583597976714373, 0.03482026606798172, -0.00407242588698864, 0.024924488738179207, 0.003730421420186758, 0.10285113006830215, -0.01780107244849205, 0.03605276718735695, -0.061137303709983826, -0.02581559680402279, 0.010792724788188934, 0.013363759033381939, 0.024455074220895767, -0.017984800040721893, -0.02102050930261612, 0.03468344360589981, 0.022463764995336533, 0.028249118477106094, -0.052421338856220245, -0.016663260757923126, 0.0421052947640419, 0.02376544661819935, -0.012640300206840038, -0.0735795646905899, -0.029212243854999542, 6.71343514113687e-05, -0.0011974663939327002, 0.003914985340088606, -0.11172381788492203, 0.039534710347652435, -0.08029583841562271, -0.037371061742305756, -0.08554786443710327, -0.021716875955462456, -0.03465282917022705, -0.11819326877593994, 0.048264846205711365, -0.0020898208022117615, 0.014982439577579498, 0.02426030859351158, 0.03801184147596359, 0.004800862167030573, 0.002215903252363205, 0.09124895930290222, -0.010617905296385288, 0.02544965222477913, -0.02635231986641884, 0.022573169320821762, 0.013021870516240597, 0.060716819018125534, -0.0061404951848089695, -0.005621839314699173, -0.023618193343281746, 0.0004527853452600539, -0.03417244181036949, 0.03257524222135544, 0.06248317286372185, -0.0633024275302887, 0.0214181337505579, 0.02709420770406723, -0.040662866085767746, 0.04241694509983063, -0.005627048667520285, -0.03946492820978165, -0.00429146271198988, 0.026999209076166153, 0.04336872696876526, 0.014470345340669155, -0.05371125042438507, 0.04711909592151642, -0.00461465073749423, -0.006211679894477129, -0.07277701050043106, -0.07289855182170868, 0.01787605881690979, 0.058915454894304276, 0.048857033252716064, -0.02830919250845909, 0.058367595076560974, -0.01764008402824402, -0.021366016939282417, 0.00946555845439434, 0.019424887374043465, -0.05461033061146736, -0.01650935783982277, 0.037268027663230896, 0.03859446942806244, -0.027918679639697075, 0.005262251477688551, -0.007209024392068386, -0.015059630386531353, 0.028934938833117485, -0.056873880326747894, 0.05035512149333954, -0.013866965658962727, -0.05409332737326622, 0.022300153970718384, 0.0058547030203044415, -0.04704798385500908, -0.000561230699531734, 0.0026294314302504063, 0.01823108270764351, -0.006315473932772875, 0.01624199189245701, 0.0415220633149147, 0.004030965734273195, 0.01399167999625206, -0.02235420234501362, 0.058342039585113525, -0.02200051210820675, -0.010655374266207218, 0.01906692236661911, 0.024365313351154327, -0.045162346214056015, -0.05941619351506233, -0.03274232894182205, -0.008766756393015385, 0.009340221993625164, 0.005593972280621529, 0.03772244229912758, -0.04281597211956978, 0.03881542384624481, 0.023083319887518883, 0.003410306992009282, -0.03893974423408508, 0.04406317323446274, 0.006972177419811487, -0.01972189173102379, 0.024668222293257713, 0.019869813695549965, -0.017024794593453407, 0.005204570014029741, 0.014425991103053093, 0.04225165769457817, -5.7201597532447064e-33, -0.04410577937960625, 0.06211632117629051, 0.02442488633096218, 0.09478592872619629, 0.017611995339393616, 0.02350509725511074, -0.010072953067719936, -0.011681778356432915, -0.06665349751710892, -0.023076264187693596, 0.013384820893406868, 0.053153131157159805, 0.018349701538681984, -0.0018497720593586564, -0.032514456659555435, -0.008971240371465683, 0.04237185791134834, 0.020624354481697083, 0.010747922584414482, -0.0034647099673748016, -0.06927073746919632, -0.017771193757653236, 0.014346379786729813, 0.057117853313684464, 0.01358590368181467, 0.02377288229763508, -0.0351189486682415, 0.05083686113357544, -0.016795603558421135, 0.0011672155233100057, -0.018207425251603127, -0.06457827240228653, -0.022508613765239716, 0.04618740826845169, 0.035832248628139496, 0.05345181003212929, -0.018114233389496803, 0.0023855878971517086, -0.021362952888011932, 0.00797807052731514, 0.03940710052847862, -0.05607932433485985, 0.011382644064724445, -0.04930876940488815, -0.028827901929616928, 0.0008936292724683881, 0.00539887510240078, 0.01927037537097931, 0.035852618515491486, 0.020941073074936867, -0.044403500854969025, 0.019147099927067757, -0.00870822835713625, 0.07044419646263123, 0.02813056670129299, -0.035353876650333405, 0.00048680990585125983, -0.09092769771814346, -0.05308215692639351, 0.009283583611249924, -0.01415146142244339, -0.026837371289730072, 0.005428014323115349, -0.03288863226771355, -0.007463448215276003, -0.03240571543574333, -0.013706727884709835, 0.04246678575873375, 0.004575568251311779, 0.019149310886859894, 0.0013497553300112486, -0.015870073810219765, -0.038585320115089417, -0.028759831562638283, -0.054038964211940765, 0.013797342777252197, -0.02612304501235485, 0.01369323767721653, 0.08580595999956131, 0.04456276819109917, -0.0047568464651703835, -0.018870024010539055, -0.018510956317186356, 0.027790086343884468, 0.0045967744663357735, -0.002317724283784628, -0.04120020568370819, -0.02956385537981987, 0.013994957320392132, 0.02032170444726944, 0.01830916479229927, -0.0368281826376915, -0.0524873211979866, 0.010088271461427212, 0.05981721356511116, -0.02691878192126751, 0.06285099685192108, -0.004294408019632101, 0.008125643245875835, -0.013303366489708424, -0.09606620669364929, -0.011928488500416279, -0.007447623182088137, 0.0271958839148283, 0.026171904057264328, 0.042816221714019775, 0.01741492561995983, -4.6550776460208e-05, -0.03816230595111847, 0.04482421278953552, -0.007108212448656559, -0.014099394902586937, -0.007406610529869795, 0.02503441460430622, 0.006582619622349739, -0.009630342945456505, -0.0008114262600429356, -0.04346013069152832, 0.014342209324240685, -0.04356938973069191, -0.010604810900986195, 0.023942453786730766, 0.023640360683202744, -0.04122783616185188, -0.01917865127325058, 0.029571043327450752, -0.031016750261187553, 0.030505456030368805, 0.06406915932893753, -0.0002561906003393233, 0.03548530861735344, -0.004935398232191801, 2.643308789629373e-07, -0.014772539027035236, 0.027686068788170815, -0.030673140659928322, -0.026513773947954178, -0.053602851927280426, -0.08112021535634995, -0.018534187227487564, -0.03419972211122513, -0.002135372254997492, 0.040997542440891266, 0.004739577416330576, 0.0019697730895131826, -0.01699640601873398, -0.016377625986933708, 0.005763111636042595, -0.12428853660821915, 0.0026363516226410866, -0.0047918278723955154, -0.01409012172371149, -0.015114502981305122, -0.0038726150523871183, 0.016114886850118637, 0.04582897946238518, 0.01332797296345234, 0.021691782400012016, 0.013735606335103512, -0.012949558906257153, -0.00036276900209486485, 0.00942055694758892, -0.020173940807580948, -0.004435271490365267, 0.0284659955650568, 0.026039021089673042, 0.025942042469978333, -0.01908743940293789, 0.016815628856420517, 0.0028384237084537745, 0.010662783868610859, -0.006872706580907106, 0.09774408489465714, 0.041316621005535126, -0.04515926539897919, 0.03540530428290367, 0.007561155594885349, 0.04545353353023529, 0.02925434336066246, -0.003334382316097617, -0.06873108446598053, -0.011824068613350391, -0.03205925226211548, 0.011966658756136894, 0.0757613405585289, 0.021636737510561943, -0.028046585619449615, 0.036109477281570435, 0.007164746522903442, -0.023535775020718575, -0.006634969729930162, 0.014121351763606071, 0.05204914137721062, -0.0181271955370903, -0.06327514350414276, 0.04005683213472366, 0.008814912289381027, 0.008139568381011486, -0.047984201461076736, -0.006384857464581728, 2.822319232818599e-34, 0.016110265627503395, -0.016448119655251503, -0.0444156751036644, 0.029170863330364227, -0.006130209658294916, -0.04470418021082878, 0.0697581097483635, 0.01680634915828705, 0.000905069406144321, -0.055793702602386475, 0.023233354091644287], "32f9cd78-e1aa-43d6-ad05-0c482996ffb4": [0.023953158408403397, -0.0013975377660244703, -0.026382947340607643, -0.008236370980739594, 0.0011888282606378198, 0.036761440336704254, -0.026575826108455658, 0.005160681437700987, 0.04569048434495926, 0.019962528720498085, -0.01754184253513813, -0.00972819048911333, 0.01096106693148613, 0.10110688209533691, -0.0512518584728241, -0.004911700263619423, 0.035915568470954895, -0.021079082041978836, -0.008870239369571209, -0.02760966867208481, 0.016790132969617844, 0.03929390385746956, -0.05319627746939659, 0.003920425660908222, 0.02326366864144802, -0.024993186816573143, -0.004905735608190298, 0.031225651502609253, 0.05159439519047737, 0.019378794357180595, -0.015539654530584812, 0.02667718566954136, -0.05080306902527809, 0.0007295156829059124, 2.2372969397110865e-06, -0.009083691984415054, -0.009140216745436192, -0.009569321759045124, -0.03286655992269516, -0.032695040106773376, 0.03190908208489418, -0.011600671336054802, -0.012530188076198101, 0.0156102878972888, -0.027953151613473892, 0.033397067338228226, 0.051685284823179245, 0.0029476298950612545, -0.018181802704930305, 0.0551283024251461, 0.001182951615191996, 0.03921632096171379, -0.006374501623213291, -0.042489033192396164, 0.06426393985748291, -0.03937568515539169, -0.006290667224675417, 0.0011717753950506449, 0.08747079223394394, 0.039111074060201645, 0.034449659287929535, 0.0011748855467885733, -0.021621564403176308, 0.0022264898288995028, 0.11327970027923584, 0.07897092401981354, 0.045464470982551575, -0.10769882798194885, -0.023543108254671097, -0.019501084461808205, 0.07885418087244034, 0.017100553959608078, 0.010772721841931343, 0.03426351398229599, 0.001769202295690775, 0.013778431341052055, -0.005260794423520565, -0.01117934100329876, 0.011908032931387424, 0.0002951464266516268, -0.05726233497262001, -0.021411553025245667, -0.05096285790205002, 0.017908422276377678, 0.0535917766392231, 0.05601416155695915, 0.012727188877761364, -0.010321795009076595, 0.00691327964887023, -0.0048101297579705715, 0.07037322223186493, 1.768202224639026e-07, 0.008858021348714828, 0.023202350363135338, 0.0004705781175289303, -0.030116599053144455, 0.02356354519724846, 0.02245204523205757, 0.05578199774026871, 0.06357979029417038, -0.02091369964182377, 0.024304257705807686, 0.003539073746651411, 0.05177879333496094, 0.005479572806507349, 0.024929402396082878, 0.04541574791073799, -0.016382746398448944, -0.005624319892376661, 0.01560413371771574, -0.035718291997909546, 0.02411847747862339, -0.07541503757238388, 0.02338857762515545, 0.012994158081710339, -0.02262161485850811, -0.024534378200769424, 0.05235927179455757, 0.036503907293081284, 0.04572249948978424, 0.05344706028699875, 0.014973822049796581, -0.026496274396777153, -0.021011637523770332, -0.08737451583147049, -0.09976394474506378, -0.03401142358779907, 0.00301993265748024, -0.049714285880327225, -0.029919471591711044, 0.0019453077111393213, 0.007230860181152821, 0.002388708759099245, -0.01655067317187786, 0.013683288358151913, 0.0027282647788524628, 0.027942484244704247, -0.019078629091382027, 0.028023606166243553, 0.0331885926425457, -0.005414553917944431, 0.029737113043665886, -0.022128229960799217, 0.00784686952829361, 0.009895643219351768, 0.0023722276091575623, 0.009900440461933613, -7.541466038674116e-05, -0.0043181320652365685, 0.022309519350528717, -0.014354093931615353, 0.031893838196992874, -0.05794546380639076, -0.0048691690899431705, 0.009055410511791706, 0.020510835573077202, 0.0053574154153466225, 0.02769496664404869, -0.0282424483448267, 0.03864379972219467, -0.014603350311517715, 0.041284993290901184, 0.054308898746967316, 0.012813888490200043, -0.010028567165136337, -0.00822495762258768, 0.06276464462280273, 0.006109612062573433, -0.009740496054291725, 0.012091737240552902, -0.039113402366638184, 0.04009208083152771, -0.017392003908753395, 0.08355137705802917, -0.011258549988269806, 0.012822250835597515, 0.02548309788107872, -0.006561136804521084, -0.01135993655771017, -0.01776803284883499, -0.04635448008775711, -0.12922467291355133, -0.03456258401274681, 0.06914156675338745, -0.016875674948096275, 0.006528475321829319, -0.040680211037397385, 0.09095823019742966, -0.04121474549174309, 0.023393811658024788, -0.009698404930531979, -0.021281100809574127, -0.02712424471974373, -0.056823790073394775, 0.03051174245774746, 0.00663912296295166, -0.038956183940172195, -0.07864616811275482, -0.016718480736017227, -0.023750681430101395, -0.04095640033483505, -0.03204372525215149, 0.016116322949528694, 0.04631573706865311, 0.00958417821675539, -0.03195270150899887, -0.03337754309177399, -0.030366089195013046, -0.020109495148062706, 0.026837768033146858, 0.0724429041147232, -0.003105041803792119, -0.04816553369164467, -0.021040506660938263, -0.018529951572418213, 0.03569524362683296, -0.02312401495873928, -0.01770775206387043, 0.051771942526102066, 0.020785735920071602, -0.024773497134447098, -0.06067074090242386, -0.007792723830789328, 0.0035147194284945726, 0.018287913873791695, -0.021733414381742477, 0.022189313545823097, 0.009268812835216522, 0.05596562847495079, 0.03804526478052139, -0.004785641562193632, 0.006423289887607098, 0.020729612559080124, -0.011755949817597866, -0.009722249582409859, 0.005830162670463324, 0.03592463955283165, 0.05460697039961815, 0.005001456942409277, -0.06335059553384781, -0.039410658180713654, 0.030583444982767105, 0.002893581986427307, 0.036064401268959045, 0.020085738971829414, 0.018116779625415802, 0.03135623782873154, 0.020145233720541, -0.004617611411958933, 0.011545630171895027, 0.011204921640455723, -0.010673321783542633, 0.021836111322045326, 0.020307760685682297, -0.025561559945344925, 0.028827935457229614, -0.13578052818775177, 0.007694585714489222, -0.07000821828842163, 0.008458936586976051, 0.014461683109402657, -0.01981581561267376, -0.027703285217285156, -0.020156241953372955, 0.02104591578245163, -0.021995041519403458, 0.0017261699540540576, -0.05291496217250824, -0.029251350089907646, 0.010643246583640575, 0.01431751623749733, -0.000908896210603416, 0.017323115840554237, -0.025855939835309982, -0.026262646540999413, 0.011666814796626568, 0.02891460247337818, 0.0012960451422259212, -0.040708620101213455, 0.02549404464662075, 0.015727611258625984, -0.023797404021024704, 0.0033479712437838316, -0.013098398223519325, -0.01596718281507492, -0.010199366137385368, 0.06590557843446732, -0.08108813315629959, -0.00732401804998517, -0.08967519551515579, 0.013873228803277016, -0.041433874517679214, 0.02987687662243843, -0.04706506058573723, -0.01754874922335148, 0.006032648496329784, 0.04333031550049782, -0.01932624727487564, 0.009897137060761452, 0.05424769967794418, -0.0028311554342508316, 0.03757227957248688, 0.006564059294760227, -0.02419999986886978, 0.008347141556441784, 0.06044434756040573, 0.042319610714912415, -0.04773419350385666, 0.026761556044220924, -0.05466444790363312, -0.02263236604630947, 0.0263901948928833, -0.01446681097149849, 0.04042532294988632, 0.005421845242381096, 0.026775972917675972, -0.002269322983920574, -0.046161308884620667, 0.0241986196488142, 0.015444242395460606, 0.011084018275141716, -0.017223555594682693, -0.01786959171295166, -0.051678095012903214, -0.032130200415849686, -0.10863165557384491, -0.06052825599908829, -0.004487352445721626, 0.026804612949490547, -0.015396698378026485, 0.03154725953936577, 0.007391015999019146, -0.01316638570278883, 0.0430576428771019, -0.03992369398474693, -0.00861677248030901, 0.02213517762720585, -0.0568934865295887, 0.040922850370407104, 0.020697440952062607, -0.044732917100191116, 0.0669381320476532, -0.07972057908773422, 0.007056599482893944, -0.06814044713973999, 0.01059968862682581, -0.01438452210277319, -0.005894307512789965, -0.03991226479411125, 0.05257964879274368, 0.03369023650884628, 0.04152543842792511, 0.010641695000231266, -0.01132019143551588, 0.021486474201083183, -0.07290031015872955, -0.012467029504477978, 0.0010464517399668694, 0.010497713461518288, -0.01658811792731285, -0.020889976993203163, -0.028459763154387474, 0.020173126831650734, 0.012428376823663712, -0.028724756091833115, -0.08273797482252121, 0.022133877500891685, -0.0363624133169651, 0.05061563849449158, 0.023074869066476822, -0.055748578161001205, 0.059739526361227036, -0.01697148010134697, 0.03316652774810791, 0.02632046677172184, -0.05724694952368736, 0.013709891587495804, 0.023569801822304726, 0.01615913398563862, -0.01839704066514969, -0.004209334962069988, -0.1096305251121521, 0.05376807600259781, -0.020164601504802704, 0.009467082098126411, -0.027199210599064827, 0.011459465138614178, -0.012243382632732391, 0.013431420549750328, 0.022588929161429405, -0.0041389078833162785, -0.0590377114713192, -0.07357294112443924, 0.011969555169343948, 0.008708426728844643, -0.007884286344051361, -0.03095381148159504, -0.023548085242509842, -0.028627509251236916, 0.00755182234570384, -0.015194667503237724, -0.04278416559100151, -0.019928062334656715, -0.006098845973610878, -0.007982304319739342, 0.06799038499593735, 0.09524712711572647, 0.02698105201125145, -0.013592096976935863, -0.03330828249454498, 0.06828363239765167, 0.05869249999523163, 0.022066157311201096, -0.012362773530185223, 0.028065010905265808, -0.06524548679590225, 0.013493069447577, 0.05539576709270477, 0.03793076053261757, -0.08619777858257294, -0.036811232566833496, 0.013642470352351665, 0.00953851081430912, -0.02885844185948372, 0.024078233167529106, -0.031995806843042374, 0.09251943975687027, 0.04761414974927902, 0.059130825102329254, -0.03685474023222923, -0.006587064824998379, 0.050836753100156784, 0.0071209198795259, 0.08852433413267136, 0.005939411465078592, 9.272462921217084e-05, -0.0037145318929105997, -0.006429183296859264, -0.016068415716290474, -0.028846191242337227, 0.01579456217586994, 0.10012239217758179, 0.02743641287088394, -0.011592007242143154, -0.047987110912799835, 0.003572864690795541, 0.058459412306547165, 0.03376671299338341, 0.008429372683167458, -0.021856868639588356, 0.027132494375109673, -0.07909886538982391, -0.09104207158088684, -0.06571125239133835, -0.0449925996363163, -0.016322392970323563, -0.046799954026937485, 0.01716551184654236, 0.029068002477288246, 0.026574185118079185, 0.00034162981319241226, 0.04367237165570259, 0.0032845414243638515, -0.03649235516786575, 0.026885932311415672, -0.021191660314798355, -0.0077374824322760105, -0.007254806812852621, 0.005137540400028229, -0.035014282912015915, 0.045519519597291946, -0.014380896463990211, -0.017106829211115837, 0.0024855986703187227, 0.013072526082396507, -0.04100067913532257, 0.007353976834565401, -0.020775768905878067, -0.05602170154452324, -0.005359042901545763, 0.041104089468717575, -0.011559884995222092, 0.0003499366866890341, 0.006056752521544695, -0.03246327117085457, 0.01986454799771309, 0.05863996222615242, 0.03294898197054863, -0.02143527939915657, -0.06458874046802521, 0.015931105241179466, -0.06113465875387192, 0.01261927280575037, -0.017131295055150986, -0.07980091869831085, 0.01831721141934395, -0.010989907197654247, 0.0325852669775486, 0.017326004803180695, 0.015794144943356514, 0.03291948139667511, -0.04987126216292381, -0.015925979241728783, 0.04126289486885071, -0.042949650436639786, -0.03230296075344086, 0.0023419992066919804, 0.026460833847522736, -0.02838302031159401, -0.04423779249191284, 0.002767897443845868, -0.0019502770155668259, -0.009229565970599651, -0.09633618593215942, 0.00804585125297308, 0.04836632311344147, -0.03206655755639076, 0.0528050996363163, 0.002926336135715246, -0.07686343044042587, 0.028334442526102066, -0.008959082886576653, 0.0038110087625682354, -0.022379519417881966, 0.017793120816349983, 0.03216848894953728, 0.0002244011702714488, 0.013997858390212059, -0.0507751926779747, 0.04163982719182968, -0.07903480529785156, -0.021711133420467377, 0.03911789879202843, 0.02251582406461239, -0.04429514333605766, 0.0016465927474200726, 0.026382815092802048, 0.024059975519776344, -0.03149278834462166, 0.011268113739788532, -0.006389778107404709, 0.009739477187395096, 0.04120198264718056, -0.009071393869817257, -0.050662875175476074, -0.03972790017724037, 0.0612066350877285, 0.016438988968729973, -0.021342048421502113, 0.0086062578484416, 0.020716272294521332, -0.043017592281103134, -0.007660975679755211, 0.02215096540749073, 0.02262474223971367, -6.344010768273418e-33, -0.012034871615469456, -0.03722389414906502, 0.004366897512227297, -0.0024526838678866625, 0.024594809859991074, -0.020564252510666847, 0.004265173338353634, 0.003334769746288657, -0.03641831874847412, -0.015218125656247139, 0.013360455632209778, 0.02559165097773075, 0.026948746293783188, -0.014273248612880707, 0.002547534415498376, 0.02494039013981819, 0.048607297241687775, -0.0018026879988610744, 0.0019004062050953507, 0.005023567005991936, -0.0891936868429184, 0.005171715747565031, -0.02415064163506031, 0.03597581014037132, -0.0001282698503928259, 0.023490196093916893, -0.05738338828086853, 0.013145518489181995, 0.055485013872385025, 0.023738669231534004, -0.025398027151823044, -0.05327340215444565, -0.012716386467218399, 0.031186698004603386, 0.016800733283162117, 0.057055700570344925, -0.04968315735459328, -0.00979626178741455, -0.014103811234235764, -0.006900654640048742, 0.037720538675785065, -0.019622892141342163, -0.029961535707116127, -0.024397864937782288, 0.03241857513785362, 0.021000977605581284, 0.041038911789655685, 0.03629228100180626, 0.00733247771859169, 0.07178037613630295, -0.09777039289474487, 0.019541962072253227, -0.0017841599183157086, 0.04647411033511162, -0.00029454202740453184, -0.025557128712534904, 0.009604072198271751, -0.04578135535120964, -0.04121815040707588, 0.02703452855348587, -0.006474388763308525, -0.05210598185658455, 0.03784136846661568, -0.01735684648156166, -0.05400444194674492, -0.009413805790245533, -0.028171300888061523, 0.08076506108045578, 0.0021792289335280657, 0.0016643902054056525, -0.012136118486523628, 0.013944162987172604, -0.029028847813606262, -0.0020704553462564945, -0.047206226736307144, 0.029462702572345734, 0.006433834321796894, 0.0271023940294981, 0.09320174157619476, 0.043858520686626434, 0.006864429451525211, -0.0016631491016596556, -0.011332649737596512, 0.024821415543556213, 0.0581372007727623, -0.0021322444081306458, -0.02675357460975647, -0.01811201684176922, -0.01974371075630188, 0.05164187029004097, -0.04671040177345276, -0.024026520550251007, -0.05703665688633919, 0.02544242888689041, 0.04272819682955742, -0.00974312238395214, 0.045767031610012054, -0.015480341389775276, -0.012592506594955921, -0.008432258851826191, -0.0725809708237648, 0.006774185225367546, -0.000850564509164542, 0.043258119374513626, 0.01529144961386919, 0.021816479042172432, -0.0014889549929648638, -0.009371929802000523, -0.023157961666584015, 0.031859658658504486, 0.03345901146531105, 0.01966194063425064, -0.009395492263138294, -0.03461024910211563, -0.024682192131876945, -0.012267589569091797, 0.0071368045173585415, 0.02925235964357853, -0.04239696264266968, -0.024675359949469566, 0.005806664004921913, 0.008236010558903217, -0.00902146752923727, -0.02881930023431778, -0.05293094366788864, -0.005076745990663767, -4.030153650091961e-05, -0.011818870902061462, 0.10405570268630981, 0.0079569136723876, 0.011898907832801342, -0.03500296548008919, 2.9837838155799545e-07, 0.00665133586153388, 0.05402611196041107, -0.008881011977791786, 0.018886957317590714, -0.02913973294198513, -0.059354059398174286, 0.0007870163535699248, 0.014041166752576828, -0.01815582811832428, 0.055292095988988876, 0.038184408098459244, 0.012012782506644726, -0.027300862595438957, 0.012362588196992874, -0.02297084778547287, -0.12842793762683868, -0.04668779298663139, -0.001700804103165865, -0.04652324691414833, 0.03181885927915573, 0.03396475315093994, 0.013806390576064587, 0.02599211037158966, 0.029926490038633347, -0.010024207644164562, 0.005731263197958469, -0.00906459242105484, -0.03451453894376755, 0.03581128269433975, 0.042409222573041916, 0.007491373922675848, -0.04295486956834793, -0.0005204458138905466, 0.050574444234371185, -0.012092121876776218, -0.04412755370140076, 0.002754440763965249, 0.003849980654194951, -0.011836188845336437, 0.06339748948812485, 0.034942157566547394, -0.0013825853820890188, -0.008060818538069725, -0.01683776080608368, 0.03180720657110214, -0.058351144194602966, 0.013651770539581776, 0.0012993491254746914, -0.03824716433882713, -0.019186027348041534, 0.012960872612893581, 0.03534630686044693, 0.016533026471734047, -0.02246510051190853, 0.0436517670750618, -0.02052486315369606, -0.03168848156929016, -0.015841221436858177, 0.07326199114322662, 0.013291693292558193, -0.04419512674212456, -0.07428538054227829, 0.011171063408255577, -0.04623585194349289, 0.03773851320147514, -0.007695084437727928, -0.018014799803495407, 3.0839268781265413e-34, -0.0016346233896911144, -0.008838080801069736, -0.01864873245358467, 0.018043724820017815, 0.002500063506886363, -0.029665548354387283, 0.06442677229642868, -0.007742584217339754, 0.009072830900549889, -0.04376616328954697, -0.01231514010578394], "b0534a2e-7f2a-493d-895f-0ba89a3d940b": [0.011371451430022717, 0.011164981871843338, -0.036151666194200516, -0.015266358852386475, 0.012972675263881683, 0.024073796346783638, 0.012413780204951763, 0.014306548982858658, 0.07467347383499146, -0.006078772246837616, -0.011141344904899597, 0.027429578825831413, 0.00790504738688469, 0.08824297785758972, -0.030634013935923576, 0.010305467993021011, 0.05731438100337982, 0.003261975245550275, -0.010127153247594833, -0.017217688262462616, 0.0077178929932415485, 0.022896289825439453, -0.061202168464660645, -0.015194353647530079, 0.047318946570158005, -0.02518211118876934, 0.014725914224982262, 0.01032966561615467, 0.049992889165878296, 0.016665738075971603, 0.01588607393205166, 0.012387718074023724, -0.04823564738035202, -0.0035731568932533264, 2.5982224087783834e-06, -0.00677624624222517, -0.02261585369706154, 0.022054355591535568, -0.0523788258433342, -0.011346442624926567, -0.00029741303296759725, 0.02999020740389824, -0.027939964085817337, 0.029527120292186737, -0.02435998059809208, 0.02912273071706295, 0.047451507300138474, 0.00448168208822608, -0.008120959624648094, 0.05680643767118454, 0.013642504811286926, 0.0654907375574112, 0.014299375005066395, -0.014097243547439575, 0.07672342658042908, 0.0036660381592810154, -0.017940396443009377, 0.0547044612467289, 0.09052731096744537, 0.020611397922039032, 0.029567262157797813, -0.0106889046728611, -0.029704859480261803, -0.0030504241585731506, 0.1380145102739334, 0.0754876360297203, 0.021503349766135216, -0.07673368602991104, -0.0034418199211359024, -0.006037806626409292, 0.10823529958724976, -0.0051465947180986404, 0.014215231873095036, 0.05123138427734375, -0.014985800720751286, 0.016906043514609337, 0.011038475669920444, 0.009147990494966507, -0.0025000176392495632, -0.005114962812513113, 0.0004590679600369185, -0.014773808419704437, -0.04154687374830246, 0.020673401653766632, 0.05437154322862625, 0.060472190380096436, -0.00018413474026601762, -0.03204963356256485, 0.007481541018933058, -0.03102060966193676, 0.08489961177110672, 0.007025669328868389, 0.003363668452948332, 0.029127605259418488, -0.011256879195570946, -0.038522377610206604, 0.031586285680532455, 0.022909553721547127, 0.042344167828559875, 0.057291608303785324, -0.03624030202627182, 0.014443129301071167, 0.011189409531652927, 0.0387498177587986, -0.0026203100569546223, 0.004125162027776241, 0.02691459096968174, -0.015423677861690521, 0.0049721733666956425, 0.0463598370552063, -0.04402688145637512, 0.01644446887075901, -0.04982152208685875, 0.03183498606085777, 0.03126458451151848, -0.03562013804912567, -0.030310917645692825, 0.05418824777007103, -0.0009205834940075874, 0.027687260881066322, 0.0517936535179615, -0.0034470143727958202, -0.02332581952214241, 0.020222458988428116, -0.0762396827340126, -0.09642797708511353, -0.0006644852692261338, 0.00014360575005412102, -0.019008975476026535, -0.048345476388931274, -0.009755458682775497, -0.01096943486481905, 0.008215914480388165, -0.019401248544454575, 0.013721873052418232, 0.03426762670278549, 0.032186564058065414, -0.008252114057540894, 0.008536836132407188, 0.002856216626241803, -0.003002435201779008, 0.018819324672222137, 0.001847051433287561, 0.006506675388664007, 0.003004207508638501, -0.03918854892253876, 0.021782290190458298, -0.0030380524694919586, 0.004314274061471224, 0.014310375787317753, -0.008601168170571327, 0.02968962863087654, -0.06287802755832672, -0.013368566520512104, 0.037766050547361374, 0.020705804228782654, 0.03662228584289551, 0.001580060925334692, -0.006183072458952665, -0.01089526992291212, -0.009560945443809032, 0.0318475142121315, 0.03332187607884407, 0.01391898188740015, -0.0022420568857342005, -0.04603566974401474, 0.08357011526823044, 0.018661709502339363, 0.02307838201522827, 0.05901344120502472, -0.03537286818027496, 0.0355076938867569, -0.021040648221969604, 0.07670917361974716, -0.030839260667562485, 0.004251658450812101, 0.01900285854935646, -0.005964605137705803, -0.01328831072896719, 0.015947330743074417, -0.05325114354491234, -0.10875702649354935, -0.008408468216657639, 0.05107558146119118, -0.0311221145093441, -0.01668921671807766, 0.010578233748674393, 0.0453883558511734, -0.02624751441180706, 0.007361698430031538, 0.017832007259130478, -0.01503039337694645, 0.0058692507445812225, -0.043467193841934204, 0.01323049794882536, 0.0032021605875343084, -0.03142061084508896, -0.06656774133443832, 0.006344739813357592, -0.03429212048649788, -0.03641876205801964, -0.045809898525476456, 0.0029252783861011267, 0.05387065187096596, 0.024677708745002747, -0.045233696699142456, -0.035367485135793686, 0.0020852971356362104, 0.016946163028478622, 0.05212623253464699, 0.08685772866010666, -0.016617102548480034, -0.0595175139605999, -0.021560141816735268, -0.012362237088382244, 0.021369846537709236, 0.007312505505979061, -0.013315229676663876, 0.05750882625579834, 0.03305397182703018, -0.031125826761126518, -0.05679240822792053, -0.05550169199705124, 0.00573184248059988, 0.004059364087879658, -0.004415194503962994, 0.01587720960378647, 0.013637199066579342, 0.04307320713996887, 0.032174091786146164, -0.012110481038689613, 0.021140532568097115, 0.017379391938447952, 0.014115620404481888, -0.010204672813415527, 0.0012294802581891418, 0.013577806763350964, 0.02032848820090294, 0.01606413535773754, -0.07713832706212997, -0.022883722558617592, 0.05737164244055748, 0.028670502826571465, 0.017424272373318672, 0.02828693948686123, 0.017246372997760773, 0.011079752817749977, 0.04004271700978279, -0.01322629302740097, 0.02258014678955078, 0.03445332869887352, 0.002998021198436618, 0.014204676263034344, 0.05010944604873657, -0.017078625038266182, 0.022568458691239357, -0.13922786712646484, -0.00016803642211016268, -0.08973485976457596, 0.005549696274101734, 0.0027641430497169495, -0.019906003028154373, -0.013455059379339218, 0.0036365713458508253, 0.026683425530791283, -0.04422494396567345, 0.010808408260345459, -0.045713577419519424, -0.01850881800055504, 0.014429701492190361, 0.029295798391103745, -0.00545459846034646, 0.011174730025231838, -0.017500076442956924, -0.00267833867110312, 0.0016786778578534722, 0.007499014493077993, 0.011188666336238384, -0.04955316707491875, 0.012674970552325249, 0.03353975713253021, -0.03767669200897217, 0.018266672268509865, -0.012786325998604298, -0.035640135407447815, -0.0017125725280493498, 0.03688689321279526, -0.07880980521440506, -0.0232145544141531, -0.03591500595211983, 0.018498685210943222, -0.012566575780510902, 0.022359076887369156, -0.014532084576785564, -0.027427466586232185, 0.014596200548112392, 0.007622044999152422, -0.004204041790217161, 0.002543311333283782, 0.04818525165319443, -0.0032118663657456636, 0.015857381746172905, -0.011374788358807564, -0.013635299168527126, 0.03441118076443672, 0.05083675682544708, 0.039698515087366104, -0.05505283176898956, 0.0061868601478636265, -0.05465260148048401, -0.0307165440171957, 0.02174369804561138, -0.023839758709073067, 0.019563401117920876, 0.015555747784674168, 0.031946390867233276, -0.008488007821142673, -0.05599711090326309, 0.020723925903439522, 0.03675387427210808, -0.003276364877820015, -0.010505313985049725, -0.006170863285660744, -0.03749162331223488, -0.017077455297112465, -0.10806603729724884, -0.07573243230581284, -0.021232547238469124, 0.017850225791335106, -0.028466248884797096, 0.028528213500976562, 0.05630069598555565, -0.024654872715473175, 0.02079649455845356, -0.04859282448887825, -0.023070747032761574, -0.0119225038215518, -0.06797688454389572, -0.012248250655829906, 0.0015546599170193076, -0.017900388687849045, 0.06382326781749725, -0.07569246739149094, 0.04890194907784462, -0.03203184902667999, -0.016498001292347908, -0.03108721785247326, 0.0016126440605148673, -0.05851709842681885, 0.007544490974396467, 0.007797332480549812, 0.034261420369148254, 0.013671459630131721, -0.030686400830745697, 0.016025077551603317, -0.01853889971971512, -0.005082123447209597, 0.010051874443888664, 0.01794734224677086, 0.011225588619709015, 0.005554777570068836, -0.003089738544076681, -0.006427318323403597, 0.0005255764699541032, -0.020023636519908905, -0.07141809165477753, 0.049034640192985535, -0.051390472799539566, 0.057269878685474396, 0.03283951058983803, -0.03422627970576286, 0.02767353504896164, -0.05761761590838432, 0.03173365443944931, 0.021729255095124245, -0.06236585974693298, 0.011828656308352947, 0.020493820309638977, 0.027650857344269753, -0.030089644715189934, 0.01891707256436348, -0.10798528790473938, 0.05438610538840294, -0.03049454279243946, 0.03310388699173927, -0.03621673583984375, 0.0010418461170047522, -0.02299371361732483, 0.012704168446362019, 0.014315529726445675, 0.0101039232686162, -0.07299733906984329, -0.05934794247150421, 0.0002399614459136501, -0.03800775110721588, -0.0035871448926627636, 0.01224191952496767, -0.020434195175766945, -0.01924300193786621, 0.017252227291464806, 0.010738703422248363, -0.07415373623371124, -0.0288710817694664, 0.0450308620929718, 0.01970832236111164, 0.08408533781766891, 0.07234445959329605, 0.005095694679766893, -0.01463131420314312, -0.03855704888701439, 0.07438170909881592, 0.04185078665614128, 0.0013547753915190697, -0.01846279762685299, 0.011404524557292461, -0.0820225179195404, 0.012799592688679695, 0.022440815344452858, 0.059046462178230286, -0.0711294561624527, -0.03715366870164871, 0.035760547965765, 0.048628177493810654, -0.03348677605390549, 0.01908605918288231, -0.03892435133457184, 0.08913981169462204, 0.028214097023010254, 0.05073601007461548, -0.048711903393268585, 0.012937918305397034, 0.05236373469233513, 0.001789563917554915, 0.05934857949614525, -0.008580378256738186, -0.038529425859451294, -0.006610898766666651, -0.006296747829765081, -0.017824508249759674, -0.027805177494883537, -0.012397889979183674, 0.04985909163951874, 0.011295691132545471, -0.007945048622786999, -0.0348086804151535, 0.017483539879322052, 0.04330736771225929, 0.0007683655130676925, 0.015052590519189835, -0.08424770087003708, 0.00889531522989273, -0.06993214786052704, -0.08588831126689911, -0.0753706619143486, -0.03541431948542595, -0.03150387853384018, -0.05205637216567993, 0.013979189097881317, 0.010600092820823193, 0.006440955679863691, 0.010418816469609737, 0.05262399837374687, 0.011818833649158478, -0.025046294555068016, 0.06161413714289665, -0.016142738983035088, 0.002587409457191825, -0.04590925946831703, 0.02101758122444153, -0.04357873275876045, 0.005087802652269602, -0.014850868843495846, -0.025979625061154366, -0.015455035492777824, 0.0202229842543602, -0.05742456391453743, -0.0187331922352314, 0.005512084811925888, -0.016223112121224403, 0.0007768378127366304, 0.02797362022101879, -0.02586658112704754, 0.026658713817596436, -0.020083986222743988, -0.015218939632177353, 0.02311713621020317, 0.04540140926837921, 0.012061549350619316, -0.013475826941430569, -0.0551389679312706, 0.012994353659451008, -0.03153301030397415, 0.0017696944996714592, -0.010073810815811157, -0.0730576291680336, 0.04776650667190552, -0.027018966153264046, 0.03139358013868332, 0.01057489961385727, 0.021283619105815887, 0.01026641670614481, -0.05613451078534126, -0.01748681627213955, 0.015163873322308064, -0.035556647926568985, -0.018063124269247055, -0.026370227336883545, 0.03336462005972862, -0.013364562764763832, -0.013786128722131252, -0.008596657775342464, -0.008512291125953197, -0.043202731758356094, -0.0885336697101593, 0.009690712206065655, 0.004864336457103491, -0.04302240163087845, 0.06014765053987503, 0.004071673844009638, -0.052313271909952164, 0.04056724160909653, -0.012119706720113754, 0.03740017116069794, -0.023579932749271393, -0.0030869238544255495, 0.046754006296396255, 0.004718036390841007, 0.02232830971479416, -0.026590494439005852, 0.04737504571676254, -0.0652816891670227, -0.006904197856783867, 0.05536263436079025, 0.013036238960921764, -0.05353095009922981, -0.023925455287098885, -0.0158686563372612, 0.022710520774126053, -0.006498462520539761, -0.024630336090922356, 0.0026150220073759556, -0.00023716605210211128, 0.018199538812041283, 0.02030024491250515, -0.02115303836762905, -0.027689699083566666, 0.04519078880548477, 0.01799018494784832, -0.007085268851369619, 0.0033287678379565477, 0.03070293366909027, -0.05440005660057068, -0.019408026710152626, 0.02170320600271225, 0.03275272622704506, -6.684055570027382e-33, -0.01925579644739628, -0.024276932701468468, 0.02285490371286869, 0.034185633063316345, 0.00786159373819828, -0.02730540744960308, 0.011699559167027473, 0.0040014320984482765, -0.04251646250486374, -0.03725175932049751, 0.013462676666676998, 0.03587169200181961, 0.025473013520240784, -0.006451085675507784, -0.0021669992711395025, 0.00509831216186285, 0.027971964329481125, 0.005115702282637358, -0.0016151353484019637, 0.006263793911784887, -0.12074998021125793, -0.01383969746530056, -0.019473304972052574, 0.039480697363615036, 0.02182692661881447, 0.0090499771758914, -0.028828362002968788, -0.023207958787679672, 0.03560194373130798, 0.005887796636670828, -0.03062392584979534, 0.0003442693268880248, -0.015037901699543, 0.005732405930757523, 0.01742495968937874, 0.04250415042042732, -0.07813148200511932, 0.02513108029961586, -0.025754470378160477, -0.007639845833182335, 0.03471742197871208, -0.04292909801006317, -0.03495277464389801, -0.02245156280696392, 0.021625610068440437, 0.016447916626930237, 0.05301325023174286, 0.020400013774633408, 0.016373880207538605, 0.047621116042137146, -0.055209629237651825, 0.012771730311214924, -0.04393557086586952, 0.04992012307047844, -0.03082086145877838, -0.0003131304692942649, 0.02334420569241047, -0.08125276118516922, -0.03799121826887131, 0.043060291558504105, 0.02353992871940136, -0.02041255310177803, 0.03849053755402565, -0.0687604770064354, -0.03193742409348488, 0.0012088889488950372, -0.02559932880103588, 0.0986013263463974, 0.05344231054186821, 0.013995320536196232, -0.006560480687767267, 0.018083671107888222, -0.041824597865343094, -0.036769360303878784, -0.02871009334921837, 0.0313381627202034, -0.03380490839481354, 0.03915880247950554, 0.09321408718824387, 0.018863696604967117, 0.027921566739678383, -0.0022357304114848375, -0.036208394914865494, -0.0022707106545567513, 0.025393176823854446, 0.03151552006602287, -0.024424945935606956, -0.00532308267429471, -0.027572890743613243, 0.029407715424895287, -0.02672758884727955, -0.025651834905147552, -0.05328796058893204, 0.018404167145490646, 0.023694364354014397, 0.016624778509140015, 0.04804350808262825, -0.04286101460456848, -0.019993619993329048, -0.028045162558555603, -0.06825001537799835, -0.03985357657074928, 0.014898671768605709, 0.06686045974493027, 0.04177733510732651, 0.018520602956414223, -0.0030123537871986628, -0.009625876322388649, -0.06232917308807373, 0.024646250531077385, -0.002519698580726981, 0.011998025700449944, 0.0029992072377353907, -0.03790455684065819, 0.006226554047316313, 0.016863493248820305, 0.021592726930975914, 0.02382718026638031, -0.05517886206507683, -0.027487382292747498, 0.0022607711143791676, 0.017590655013918877, -0.006121670361608267, -0.02752176858484745, -0.05425675958395004, -0.000848422001581639, 0.0032737855799496174, 0.008245023898780346, 0.07777809351682663, -0.004502052441239357, 0.015530752018094063, -0.022642750293016434, 3.2593362675470416e-07, -0.01138442661613226, 0.048202842473983765, -0.008808411657810211, 0.020531540736556053, -0.019090969115495682, -0.0751667246222496, 0.0053619323298335075, 0.010913304053246975, -1.523804348835256e-05, 0.03469333052635193, 0.009725484065711498, 0.02427508868277073, -0.024417774751782417, -0.0042153759859502316, -0.01004145946353674, -0.17662760615348816, -0.032661013305187225, 0.004999499302357435, -0.02678772807121277, 0.005372957792133093, 0.0343819297850132, 0.02317236363887787, 0.03120666742324829, 0.026700440794229507, -0.02126471884548664, 0.007103914860635996, -0.024682732298970222, -0.04267377033829689, 0.026749728247523308, 0.035807155072689056, 0.0013665619771927595, -0.011635594069957733, -0.0069333347491919994, 0.04919491335749626, 0.005443580448627472, -0.053943708539009094, -0.027062516659498215, 0.015937669202685356, 0.021178796887397766, 0.0654413104057312, 0.02167411521077156, -0.024288225919008255, -0.024579770863056183, 0.030708227306604385, 0.0438128225505352, -0.015350672416388988, -0.0004354622506070882, 0.015895968303084373, -0.0803619995713234, -0.03498223051428795, -0.00367906061001122, 0.032559607177972794, 0.041151922196149826, -0.011500165797770023, 0.026177935302257538, -0.016469130292534828, -0.028686415404081345, -0.02900030091404915, 0.036596447229385376, 0.016501782462000847, -0.04586199298501015, -0.10276439040899277, 0.0028278992976993322, -0.037254516035318375, 0.06000768765807152, -0.037489596754312515, -0.01574624516069889, 3.6272311835269868e-34, -0.00019268585310783237, 0.02438444085419178, -0.0032878846395760775, 0.03397255763411522, 0.019720306620001793, -0.04549288749694824, 0.0785251334309578, -0.02423214353621006, 0.0020945060532540083, -0.03440671041607857, -0.03379261866211891], "a84349e5-52b8-4073-9487-497ca07f95ee": [0.045164890587329865, -0.009795069694519043, -0.041705336421728134, 0.010835634544491768, 0.011916215531527996, 0.05502748489379883, 0.03184783086180687, 0.04507184401154518, 0.03919588029384613, -0.012226802296936512, 0.005162421613931656, -0.053398799151182175, 0.022430872544646263, 0.038832586258649826, -0.032809387892484665, -0.009760945104062557, 0.05477573350071907, -0.006986181251704693, -0.012241926975548267, -0.010137434117496014, -0.006236894987523556, 0.028505472466349602, -0.021857360377907753, 0.002073512179777026, 0.053192876279354095, -0.04534602910280228, 0.0034869161900132895, 0.033783748745918274, 0.009450559504330158, -0.07051324099302292, 0.04415563493967056, 0.05311261862516403, -0.00651409849524498, 0.022306591272354126, 2.5715623905853136e-06, -0.0022523512598127127, -0.0380818136036396, 0.0008772610453888774, -0.054478712379932404, 0.0046167923137545586, 0.01650913991034031, 0.03752625733613968, -0.0009474785183556378, 0.018210776150226593, -0.02221592515707016, -9.684216638561338e-05, -0.023226451128721237, 0.020566586405038834, -0.040148865431547165, 0.035835061222314835, 0.023716505616903305, -0.04415742680430412, -0.06430647522211075, -0.019631095230579376, 0.10697218775749207, -0.038501862436532974, -0.04304630681872368, 0.0492793433368206, 0.03820890560746193, -0.016546674072742462, -0.03218220919370651, -0.009147724136710167, -0.03162344917654991, 0.022088175639510155, 0.0964464396238327, 0.06377748399972916, 0.055715758353471756, -0.11805197596549988, 0.00039943610318005085, 0.02330970950424671, 0.06951326876878738, -0.008296126499772072, 0.04829661548137665, 0.044708989560604095, -0.02902469038963318, 0.012158559635281563, 0.015223479829728603, 0.02059822529554367, -0.023767970502376556, -0.01046930905431509, -0.010768266394734383, -0.04821491986513138, -0.021066460758447647, 0.00015788382734172046, 0.041007596999406815, 0.03445058315992355, -0.021342433989048004, -0.03620906546711922, 0.03628617525100708, -0.020352600142359734, 0.051978837698698044, 0.024692120030522346, -0.0457526333630085, 0.025315679609775543, 0.017503736540675163, -0.04371815174818039, 0.02451738342642784, -0.0010858929017558694, 0.040743038058280945, 0.02447625622153282, -0.041181061416864395, 0.011275789700448513, 0.008895710110664368, 0.024365564808249474, -0.024614587426185608, 0.036775339394807816, 0.04854617267847061, -0.03197920694947243, -0.025604721158742905, 0.07102779299020767, -0.008400795049965382, 0.02080022357404232, -0.024005476385354996, -0.015622731298208237, 0.02485356666147709, -0.0233592726290226, -0.025868531316518784, 0.038615450263023376, 0.0457431860268116, 0.04980027303099632, 0.022879499942064285, 0.008292954415082932, -0.051971521228551865, 0.00741665530949831, -0.04724138602614403, -0.10345026850700378, 0.015246907249093056, -0.03144557401537895, -0.020344123244285583, -0.020708823576569557, -0.007204245310276747, 0.003142037196084857, -0.008606781251728535, 0.036289066076278687, -0.022182635962963104, 0.02753998339176178, -0.021211864426732063, -0.022357916459441185, 0.012985269539058208, -0.025382371619343758, 0.03454398363828659, 0.010185601189732552, 0.00959763117134571, -0.0071428269147872925, 0.027346620336174965, 1.522772254247684e-05, 0.04870803654193878, 0.002920099999755621, 0.009212220087647438, 0.029722971841692924, -0.0032154342625290155, 0.03671668842434883, 0.0012653260491788387, 0.012908725067973137, 0.014738938771188259, 0.04142582789063454, -0.019828341901302338, 0.006285530515015125, -0.03637523204088211, 0.024763258174061775, 0.0006965602515265346, 0.04417410120368004, 0.026064381003379822, -0.023171868175268173, -0.0008888414013199508, -0.01315793115645647, 0.04453716054558754, -0.015097909606993198, 0.010191746987402439, -0.01682519167661667, -0.01556476391851902, 0.016084769740700722, -0.033205047249794006, 0.06214302033185959, -0.044578924775123596, 0.0298744048923254, 0.010000636801123619, 0.07470928132534027, 0.011884993873536587, 0.011925477534532547, -0.03210107237100601, -0.07223053276538849, -0.036408741027116776, 0.013492496684193611, -0.0761106014251709, -0.0047747548669576645, -0.05328739807009697, 0.04133567586541176, -0.009844266809523106, 0.012138019315898418, -0.026060890406370163, 0.009182216599583626, 0.012943441979587078, -0.050945132970809937, -0.006515400484204292, 0.010260957293212414, -0.0557771772146225, -0.09197074174880981, -0.012334064580500126, -0.01257262285798788, -0.015603048726916313, -0.00686532212421298, 0.05772361531853676, 0.06688790768384933, 0.047137465327978134, -0.010289312340319157, -0.0018586134538054466, -0.01901264674961567, 0.011928809806704521, 0.005280980374664068, 0.10869676619768143, -0.0021649973932653666, -0.03840325027704239, -0.025732597336173058, -0.0568389892578125, 0.04986081272363663, -0.02260451950132847, -0.002893298864364624, 0.00971019547432661, -0.006726578343659639, 0.0008888939628377557, -0.023079393431544304, -0.04686283320188522, 0.02083973027765751, -0.011215604841709137, -0.04511032626032829, -0.007250951137393713, 0.029457174241542816, 0.02704177424311638, 0.0059964763931930065, 0.0020805445965379477, -0.021125640720129013, 0.010749442502856255, 0.03436625003814697, 0.0036432945635169744, -0.011003357358276844, -0.00036637773155234754, -0.016291212290525436, 0.0005372414016164839, -0.07326921820640564, -0.02948792651295662, 0.05266782268881798, 0.0032730719540268183, 0.02477198652923107, -0.010632562451064587, 0.034077875316143036, 9.672281885286793e-05, 0.014594371430575848, 0.0021831055637449026, 0.046102747321128845, 0.016890086233615875, -0.014179353602230549, 0.0408935546875, 0.00860917940735817, -0.0024634937290102243, 0.04043873772025108, -0.13210779428482056, 0.0006934591801837087, -0.048635512590408325, 0.016860254108905792, -0.04105450585484505, -0.018598364666104317, -0.032231636345386505, 0.009459083899855614, 0.029534650966525078, -0.013412614353001118, 0.006412940099835396, -0.023796871304512024, -0.003353071166202426, 0.004641788545995951, 0.028398241847753525, 0.018701521679759026, 0.01063920371234417, -0.03102821856737137, 0.0003858431591652334, -0.022946586832404137, 0.014832098968327045, -0.0050373682752251625, -0.05159948021173477, -0.003295192727819085, 0.01584954932332039, -0.0413256399333477, -0.020787497982382774, -0.001849887310527265, -0.009919860400259495, -0.031465381383895874, 0.052649155259132385, -0.0855589359998703, -0.01895946078002453, -0.05524521693587303, 0.02594616264104843, -0.000766843615565449, 0.01459503173828125, -0.05693627893924713, -0.03883301094174385, 0.008421646431088448, -0.0017254744889214635, 0.01645541936159134, -0.009082471020519733, 0.08920107781887054, 0.004100579768419266, 0.02314809523522854, -0.011741535738110542, 0.018398072570562363, -0.0069230482913553715, 0.038105886429548264, 0.011050710454583168, -0.049171894788742065, -0.03340529277920723, -0.03245636075735092, 0.005690945312380791, 0.037142615765333176, 0.004687049891799688, 0.0006012444500811398, -0.006834628060460091, -0.007967202924191952, -0.028305314481258392, -0.029756441712379456, -0.0009544823551550508, 0.06235148012638092, 0.001142764464020729, -0.010005272924900055, -0.006412074901163578, 0.0011375834001228213, -0.009500183165073395, -0.11094627529382706, 0.004432451445609331, 0.011274727061390877, 0.00415966147556901, 0.005373420659452677, 0.041209954768419266, 0.06319040060043335, -0.013231812976300716, 0.0045606945641338825, -0.011930757202208042, 0.0072135645896196365, -0.010994937270879745, -0.0011262723710387945, 0.00836468581110239, 0.0030553846154361963, -0.030329855158925056, 0.06016925349831581, -0.06262319535017014, -0.04260718822479248, -0.020760394632816315, -0.005547095090150833, -0.028241856023669243, -0.01683194749057293, -0.08005321770906448, -0.0041532921604812145, 0.06224789842963219, 0.014375831931829453, 0.03105999156832695, -0.028517866507172585, 0.013624761253595352, -0.058842360973358154, -0.026230748742818832, 0.005041215568780899, 0.011354690417647362, -0.0776173546910286, 0.044942181557416916, -0.005822925362735987, 0.012982113286852837, 0.025331001728773117, 0.03559090197086334, -0.06032922491431236, 0.009869422763586044, -0.003023837460204959, 0.02369857020676136, 0.051894381642341614, -0.07251977920532227, 0.04985346645116806, -0.014079362154006958, 0.07382794469594955, 0.01583949103951454, -0.07032544910907745, 0.006022609304636717, 0.03485395014286041, 0.05440301448106766, -0.018152866512537003, -0.010323639959096909, -0.09380469471216202, 0.0572798065841198, -0.015754124149680138, 0.06404107809066772, -0.010355950333178043, 0.015181186608970165, 0.014849123544991016, 0.06209258735179901, -0.023286407813429832, 0.0186395812779665, -0.1336473822593689, -0.022953689098358154, 0.018676675856113434, -0.06298383325338364, -0.01342043187469244, -0.01993774063885212, -0.01327573787420988, -0.05137430876493454, 0.010454928502440453, -0.003667036071419716, -0.016617901623249054, 0.0026821265928447247, 0.02672157622873783, 0.004893897566944361, 0.0817975252866745, 0.053681880235672, 0.014032652601599693, -0.013245496898889542, 0.007662694435566664, 0.079365074634552, 0.01789584569633007, 0.032597605139017105, -0.023179087787866592, 0.03502608463168144, -0.04725973680615425, 0.01987253502011299, -0.003141527995467186, -0.02725871279835701, -0.053395409137010574, -0.01902814954519272, 0.03096575289964676, -0.006215506233274937, -0.01740063913166523, 0.004448855295777321, -0.018862394616007805, 0.07907577604055405, 0.012228179723024368, 0.03856110945343971, -0.012841470539569855, 0.03640364110469818, 0.021341705694794655, -0.022158930078148842, 0.07039759308099747, 0.021483007818460464, -0.032846733927726746, 0.003868313506245613, -0.06488480418920517, -0.029029125347733498, -0.02761034294962883, -0.0026927022263407707, 0.012744286097586155, 0.026328817009925842, 0.001704716356471181, -0.02678779512643814, 0.03043571673333645, 0.06464091688394547, 0.01743878237903118, 0.003012680448591709, -0.0868966206908226, -0.005516976583749056, -0.09911395609378815, -0.07809575647115707, -0.04229721054434776, -0.010272215120494366, -0.013281119987368584, -0.023283418267965317, 0.07529889047145844, 0.014229698106646538, 0.04433278366923332, -0.01615474745631218, 0.05142860859632492, 0.004645628854632378, -0.013756606727838516, 0.008838711306452751, -0.018305713310837746, -0.03661956638097763, -0.03391185775399208, 0.05846706032752991, -0.024035168811678886, 0.04693005234003067, -0.028569063171744347, -0.01715470291674137, -0.0286010280251503, 0.044969502836465836, -0.07002172619104385, -0.04218406230211258, -0.013080915436148643, -0.04336471110582352, -0.020672105252742767, 0.032164596021175385, -0.002438670489937067, 0.017853520810604095, 0.027407731860876083, -0.021192092448472977, 0.05060124024748802, 0.024734817445278168, 0.006519164890050888, 0.015293237753212452, -0.013515015132725239, 0.04340691864490509, -0.03153426945209503, -0.000696710660122335, -0.004501796793192625, -0.02859732322394848, 0.06761915981769562, -0.04062521085143089, -0.0008492487831972539, 0.014477459713816643, 0.024066796526312828, 0.01216272171586752, -0.02382652834057808, -0.01408387627452612, 0.07102930545806885, -0.023307643830776215, -0.026750044897198677, 0.0005895590875297785, 0.06275444477796555, -0.01042859349399805, -0.017016209661960602, -0.0522235631942749, -0.006042634602636099, -0.02395484782755375, -0.08949944376945496, 0.050166547298431396, 0.00358203100040555, -0.05469871684908867, 0.020522939041256905, 0.027748392894864082, -0.015894953161478043, 0.03745555877685547, -0.00017137377290055156, 0.02731182985007763, -0.04320315644145012, 0.0051550352945923805, 0.04645364731550217, 0.0172722190618515, 0.03005286678671837, -0.0126766012981534, 0.07918133586645126, -0.019476603716611862, -0.016208447515964508, 0.041966699063777924, -0.011313826777040958, -0.05348384007811546, 0.01688457280397415, 0.06269706785678864, 0.025256140157580376, -0.013591723516583443, -0.001725177513435483, -0.029755916446447372, 0.011214698664844036, 0.017468631267547607, 0.04153335839509964, 0.019459379836916924, -0.040629152208566666, 0.0658581331372261, 0.014569719322025776, -0.0379243828356266, -0.07507801055908203, 0.01151452586054802, 0.0017031833995133638, -0.033777885138988495, 0.03306698799133301, 0.015009752474725246, -6.792287743011405e-33, -0.03952052444219589, -0.031264372169971466, -0.006354843731969595, 0.0643225908279419, 0.03375718742609024, -0.06824614852666855, -0.0005671714898198843, -0.0038664427120238543, -0.046722155064344406, -0.044377025216817856, 0.00235759443603456, 0.014778807759284973, 0.015562597662210464, -0.022116566076874733, -0.017124420031905174, -0.0181402787566185, 0.03246207535266876, 0.0010096363257616758, -0.011379116214811802, 0.02955608256161213, -0.053928617388010025, 0.0009672478772699833, -0.03485169634222984, 0.0013237411621958017, -0.027225688099861145, -0.06662429869174957, -0.04294640198349953, -0.01278410293161869, -0.00283185881562531, 0.018626628443598747, -0.049735456705093384, -0.054260190576314926, 0.010940861888229847, 0.034181177616119385, 0.027480026707053185, 0.06264561414718628, -0.058754801750183105, -0.02984090894460678, -0.012359377928078175, 0.0029045671690255404, 0.042103830724954605, -0.03338921442627907, -0.03554496541619301, -0.004447958432137966, 0.015835320577025414, 0.027782311663031578, 0.04915592074394226, 0.03847154229879379, -0.02204153500497341, 0.028296664357185364, -0.09492861479520798, 0.015758870169520378, -0.0021870203781872988, 0.034888990223407745, 0.02086825668811798, 0.025995885953307152, 0.03356654942035675, -0.0897187665104866, -0.051981206983327866, -0.008254925720393658, 0.030708301812410355, -0.0016553545137867332, 0.02065616101026535, 0.026873821392655373, -0.041624702513217926, 0.021446291357278824, -0.018691230565309525, 0.12252717465162277, 0.04326830059289932, 0.022862832993268967, 0.0017331377603113651, -0.016566650941967964, -0.06282511353492737, -0.031997717916965485, 0.008390096016228199, -0.007881534285843372, -0.0462510883808136, 0.060023751109838486, 0.06955825537443161, 0.04354868084192276, -0.006692499853670597, -0.015665525570511818, -0.05534955859184265, 0.013510051183402538, 0.029749004170298576, -0.000746061559766531, -0.022898856550455093, -0.015237754210829735, -0.0076178391464054585, 0.033669717609882355, -0.05153832957148552, -0.09054280817508698, -0.05174606293439865, 0.031153693795204163, 0.017690742388367653, 0.027868790552020073, 0.07014545798301697, -0.026288030669093132, -0.021724946796894073, -0.04385825991630554, -0.09390922635793686, -0.04423385113477707, 0.003986995201557875, 0.020027965307235718, 0.004685595165938139, 0.00012917252024635673, -0.025113902986049652, 0.011885341256856918, -0.03336998447775841, 0.009783021174371243, 0.014893237501382828, -0.04316840320825577, 0.023127267137169838, -0.011501527391374111, -0.02352791093289852, -0.004206606652587652, 0.013370363041758537, 0.024906661361455917, -0.040267083793878555, -0.0457107275724411, -0.00501939607784152, -0.009195216931402683, 0.028582727536559105, -0.0472794733941555, -0.038454826921224594, -0.0008363716187886894, 0.00023793404398020357, 0.014796665869653225, 0.10330914705991745, -0.0030806942377239466, -7.613778143422678e-05, -0.019749736413359642, 3.289564176611748e-07, 0.01992194540798664, 0.044242147356271744, 0.03092043660581112, -0.03415490314364433, -0.009248788468539715, -0.04882223904132843, 0.019869942218065262, 0.028584972023963928, -0.0192165058106184, -0.01185689214617014, 0.04124804213643074, 0.029626887291669846, -0.042923182249069214, 0.005046625155955553, -0.017041834071278572, -0.08481946587562561, 0.009862560778856277, -0.02152555249631405, -0.03589031100273132, -0.003427768126130104, 0.08303415775299072, 0.01742742396891117, 0.004142970312386751, 0.003034499939531088, -0.033185381442308426, 0.03391966596245766, -0.009035410359501839, -0.033303964883089066, 0.0032029724679887295, 0.015111641027033329, 0.06342508643865585, 0.028135986998677254, -0.013657042756676674, -0.023826438933610916, 0.02385772205889225, -0.011758072301745415, -0.009843011386692524, 0.021846940740942955, 0.03464987128973007, 0.04724813625216484, 0.037898436188697815, -0.015002960339188576, -0.020889462903141975, -0.02303026057779789, 0.03042406402528286, -0.017804738134145737, 0.029390571638941765, 0.06303294748067856, -0.04189884290099144, -0.014049949124455452, 0.03349526226520538, 0.03851384297013283, 0.030882500112056732, 0.014468997716903687, 0.02705361135303974, -0.020644886419177055, -0.03374280035495758, -0.013397139497101307, 0.04925438389182091, 0.023799410089850426, -0.05153954401612282, -0.04434867948293686, 0.015466932207345963, 0.0007293341332115233, 0.005589544307440519, -0.013478685170412064, -0.034589678049087524, 3.558734989951328e-34, -0.0020551655907183886, -0.04531044885516167, -0.013021217659115791, -0.010161248967051506, 0.02107682079076767, -0.01655544526875019, 0.03484368324279785, 0.014433872886002064, 0.017385751008987427, -0.07791069895029068, -0.0278478916734457], "59036fe2-a102-4943-b9bf-17e525a18467": [0.029708903282880783, -0.024951152503490448, -0.007265313528478146, -0.03122340887784958, 0.02437371388077736, 0.04571742191910744, -0.015435142442584038, 0.011365886777639389, 0.011170982383191586, -0.016015462577342987, 0.015927547588944435, -0.04795713350176811, 0.012212415225803852, 0.04037906229496002, -0.03904390335083008, -0.0013079228810966015, 0.038989219814538956, -0.003740788670256734, -0.0129999415948987, -0.024951661005616188, 0.033758267760276794, 0.006644403096288443, -0.030792715027928352, 0.017664747312664986, -0.015234602615237236, -0.03752925992012024, -0.008114192634820938, 0.07175762951374054, 0.05083846300840378, -0.0023610389325767756, 0.014331403188407421, 0.01606750674545765, -0.0015493419487029314, 0.042199354618787766, 2.512221499273437e-06, 0.0025208003353327513, -0.0009344972786493599, 0.016863321885466576, -0.0338657945394516, -0.03228859603404999, 0.012240845710039139, -0.007102206349372864, -0.005458316300064325, 0.028721051290631294, -0.010835573077201843, -0.003973405808210373, 0.044174570590257645, -0.025976061820983887, 0.009837621822953224, 0.026662614196538925, -0.01378725003451109, 0.0034495878499001265, -0.058828577399253845, -0.006684269290417433, 0.048820845782756805, -0.07779669761657715, -0.006691592279821634, 0.03388221561908722, 0.07255052030086517, -0.030431857332587242, -0.006035413593053818, -0.038856957107782364, -0.011157521046698093, 0.022442447021603584, 0.0833267942070961, 0.060297176241874695, 0.04685317352414131, -0.06379765272140503, -0.026155812665820122, 0.003983810544013977, 0.06930559128522873, 0.006538048852235079, 0.03253309428691864, 0.05049252137541771, 0.004209952428936958, -0.019171640276908875, 0.02699265442788601, 0.022937646135687828, -0.012809480540454388, 0.012892886064946651, -0.0239102765917778, -0.04763070121407509, -0.04358196258544922, 0.015259926207363605, 0.03332338109612465, 0.015550375916063786, 0.003538965480402112, -0.03675011172890663, 0.013196989893913269, 0.03167365491390228, 0.05249708890914917, 0.0005617098067887127, -0.029141487553715706, 0.04951382800936699, -0.016132934018969536, -0.02792976424098015, -0.0025067550595849752, 0.004159966018050909, 0.025447027757763863, 0.052807215601205826, -0.06486189365386963, 0.02240120619535446, 0.004022197797894478, 0.045411158353090286, -0.0008266203221864998, 0.05992539972066879, 0.018381888046860695, -0.0185806006193161, -0.006289275828748941, -0.02429661713540554, -0.03952307626605034, -0.008303745649755001, -0.034929923713207245, 0.023183563724160194, 0.03337911516427994, -0.01623592898249626, -0.007388404570519924, 0.0557778999209404, 0.04989928379654884, 0.03960035741329193, 0.03291959688067436, -0.010833529755473137, -0.04312887042760849, -0.020957428961992264, -0.07063695788383484, -0.12374798208475113, -0.005485542584210634, 0.023128021508455276, -0.029307616874575615, -0.04392002522945404, -0.017766132950782776, -0.021771879866719246, 0.0006023281603120267, 0.019589021801948547, -0.012705441564321518, -0.004237425047904253, -0.009027483873069286, 0.01813596300780773, 0.003153356723487377, 0.02090444043278694, 0.010695366188883781, 0.0006054834229871631, -0.0017923970008268952, -0.003296049078926444, -0.00961991399526596, 0.008920200169086456, 0.004821946378797293, -0.012093289755284786, 0.0030457365792244673, 0.03213280811905861, 1.452330980100669e-05, 0.002955655101686716, -0.052557434886693954, 0.003975965548306704, -0.024699212983250618, 0.0382145419716835, -0.0058870394714176655, 0.022417988628149033, -0.017600534483790398, 0.05720055103302002, -0.053862474858760834, 0.050213657319545746, 0.070677250623703, 0.005144687835127115, -0.002574266167357564, -0.015238465741276741, 0.04995015263557434, 0.005400314461439848, 0.021118879318237305, 0.014590274542570114, 0.005598931573331356, 0.048000071197748184, -0.028963206335902214, 0.08320990204811096, -0.02384418621659279, 0.0019777915440499783, 0.02003110758960247, 0.0647004097700119, 0.034258801490068436, 0.011956668458878994, -0.02728496864438057, -0.10380300134420395, -0.045504722744226456, 0.04389452561736107, -0.0173711646348238, -0.005047167651355267, -0.09100937098264694, 0.09274861961603165, -0.0318831130862236, 0.02460503950715065, -0.025271452963352203, 0.0024427541065961123, -0.05784947797656059, -0.06710909307003021, 0.005139659624546766, -0.0013871736591681838, -0.04634365811944008, -0.08637703955173492, -0.03967524319887161, -0.021920153871178627, -0.03492496907711029, -0.027889981865882874, 0.012589595280587673, 0.0673699602484703, 0.021176399663090706, -0.04031281918287277, 0.01350450050085783, -0.04434654861688614, 0.010704931803047657, 0.0415692999958992, 0.09311145544052124, -0.01186587754637003, -0.035178959369659424, -0.03103751316666603, -0.019738759845495224, 0.0772637352347374, -0.014881662093102932, 0.006755647715181112, 0.0024805592838674784, 0.025347711518406868, -0.03833840787410736, -0.024709895253181458, -0.03545091673731804, 0.00943523459136486, -0.009612161666154861, -0.04910004884004593, 0.006484679412096739, 0.024504797533154488, 0.004976698663085699, 0.01045163907110691, -0.019592538475990295, 0.02004399336874485, -0.003315890673547983, 0.033829811960458755, 0.011851250194013119, 0.0044800881296396255, -0.0048269229009747505, 0.039810165762901306, 0.0322430394589901, -0.043227627873420715, -0.02376146987080574, 0.03535666689276695, 0.020324431359767914, 0.002930611837655306, 0.023921851068735123, -0.010112795047461987, -0.014447669498622417, 0.019054144620895386, -0.02098943665623665, 0.0319172739982605, 0.020694691687822342, -0.026137331500649452, 0.006271477323025465, 0.03967214375734329, 0.0017853911267593503, 0.04259603098034859, -0.16813626885414124, 0.013027934357523918, -0.032112814486026764, -0.023589035496115685, -0.04011084884405136, -0.0313510000705719, -0.009491963312029839, -0.004099770449101925, 0.01564125530421734, -0.024516841396689415, 0.005917134694755077, -0.02343003824353218, -0.028509296476840973, 0.014857111498713493, 0.02542080171406269, -0.01032270211726427, 0.014550908468663692, -0.03457755967974663, -0.05478975921869278, -0.0032499374356120825, 0.0024173930287361145, 0.0007707234472036362, -0.04561012238264084, 0.024500370025634766, 0.05666621774435043, -0.028055325150489807, -0.016579674556851387, -0.011756331659853458, -0.0013615473872050643, -0.007331002037972212, 0.057645220309495926, -0.04109964147210121, -0.018103957176208496, -0.051966387778520584, 0.06343994289636612, -0.010504629462957382, 0.02126484364271164, -0.05208331719040871, -0.02670498937368393, 0.015942301601171494, 0.05839022248983383, -0.01590685173869133, -0.01452662330120802, 0.05307181179523468, -0.006433876231312752, 0.013556918129324913, -0.013414351269602776, -0.0004542287497315556, 0.0465194433927536, 0.06654412299394608, 0.02603280358016491, -0.021013610064983368, -0.015037933364510536, 0.01899067312479019, -0.03243451192975044, 0.03037949837744236, 0.01978447288274765, 0.06905487179756165, -0.002837545471265912, 0.02594676986336708, -0.031728699803352356, -0.022751150652766228, -0.012087836861610413, 0.04418382793664932, -0.011101639829576015, -0.00844514649361372, -0.025393178686499596, -0.018057379871606827, -0.031629350036382675, -0.13003267347812653, -0.005560670979321003, 0.009462102316319942, 0.016900690272450447, -0.004675265401601791, 0.01627749390900135, 0.013075180351734161, -0.014350326731801033, 0.0002544166927691549, -0.04788389056921005, 0.014396298676729202, 0.013532940298318863, -0.028584539890289307, -0.005210991483181715, 0.034799620509147644, -0.07706593722105026, 0.028332024812698364, -0.07998006045818329, -0.01675400137901306, -0.032553430646657944, 0.017429044470191002, -0.02112375944852829, 0.010181047022342682, -0.04069481045007706, -0.007629062049090862, 0.07355687022209167, 0.01609211415052414, 0.03943663835525513, -0.014947101473808289, 0.029216215014457703, -0.048795297741889954, -0.04410777613520622, 0.011425073258578777, 0.02598705142736435, -0.01746266521513462, 0.0254246536642313, -0.033157091587781906, 0.012537248432636261, -0.0033624921925365925, -0.02621937356889248, -0.10597246885299683, 0.024147814139723778, -0.022986581549048424, 0.03054012730717659, 0.041991252452135086, -0.06022126227617264, 0.04120543226599693, -0.02260599657893181, 0.021439244970679283, 0.019526774063706398, -0.04543934017419815, -0.013005847111344337, 0.03905542567372322, 0.019001798704266548, 0.020339669659733772, 0.014991565607488155, -0.11080281436443329, 0.06835043430328369, -0.007451061625033617, 0.02357863448560238, -0.03711403161287308, -0.0026487349532544613, 0.027702495455741882, 0.04650437831878662, 0.0008889840100891888, -0.011070173233747482, -0.10743099451065063, -0.07186374068260193, 0.03224334493279457, -0.009446974843740463, -0.006552620325237513, -0.02402590960264206, -0.009467004798352718, -0.06114108860492706, 0.00670793280005455, 0.02738947607576847, -0.0680961087346077, 0.015432346612215042, -0.020442180335521698, -0.03152148798108101, 0.07244658470153809, 0.09732191264629364, 0.0025993597228080034, -0.039210788905620575, -0.028742896392941475, 0.0878482311964035, 0.04750903695821762, 0.0027709980495274067, -0.01689625158905983, 0.024831125512719154, -0.025686198845505714, -0.010166454128921032, 0.013057944364845753, -0.01935717463493347, -0.07262716442346573, -0.008740467950701714, 0.020549317821860313, -0.001908517791889608, -0.020639285445213318, 0.0055777239613235, -0.01461985893547535, 0.046204160898923874, 0.06351825594902039, 0.04165712371468544, -0.005279764533042908, 0.009641813114285469, -0.007222134154289961, -0.006090008653700352, 0.06100337579846382, -0.05868377164006233, -0.0226365327835083, -0.017314033582806587, -0.01340004988014698, 0.01316087692975998, -0.032987963408231735, -0.008534218184649944, 0.07763731479644775, -0.006134829483926296, -0.01936080865561962, -0.0728406310081482, -0.015373516827821732, 0.05784491449594498, -0.008959125727415085, 0.009536156430840492, -0.058912940323352814, 0.01723909005522728, -0.05264800041913986, -0.0718674585223198, -0.06163942441344261, -0.04195784032344818, -0.024951154366135597, -0.07269185781478882, 0.06275701522827148, 0.06264133751392365, 0.07016878575086594, -0.000114706956082955, 0.031125079840421677, -0.013368165120482445, -0.01496684830635786, 0.05517462641000748, -0.037247415632009506, -0.05124559625983238, -0.0472380667924881, 0.016039304435253143, -0.004221028182655573, 0.0722818374633789, -0.0264581385999918, -0.008737272582948208, -0.0355728417634964, 0.02168593741953373, -0.03689127042889595, -0.014671904034912586, 0.029951799660921097, -0.03942641615867615, 0.0069389003328979015, 0.04747748002409935, -0.018642712384462357, 0.014419457875192165, 0.05620993301272392, -0.022527826949954033, 0.0011590758804231882, 0.04372477903962135, 0.023081425577402115, -0.03841890022158623, -0.0253407284617424, 0.03295904025435448, -0.006580380257219076, 0.006964919622987509, 0.008161663077771664, -0.05111537501215935, 0.038199182599782944, -0.02225377969443798, 0.013504440896213055, 0.019690770655870438, 0.0643685907125473, 0.00859801471233368, -0.020884333178400993, -0.011625746265053749, 0.028602538630366325, -0.01185374055057764, 0.004816682077944279, 0.01076224073767662, 0.04494888335466385, -0.017588667571544647, -0.01817544363439083, 0.010538685135543346, 0.001021111849695444, 0.0390796884894371, -0.052734147757291794, -0.0020342571660876274, 0.004839438945055008, -0.05705763399600983, 0.06441371142864227, 0.011579648591578007, -0.04135848954319954, 0.05287696421146393, 0.003880012547597289, 0.003406976815313101, -0.026531247422099113, 0.05540609732270241, 0.06565331667661667, -0.0026919045485556126, -0.012267050333321095, -0.021895114332437515, 0.07074759155511856, -0.01498073898255825, 0.008465302176773548, 0.011561586521565914, 0.0016169410664588213, -0.014041770249605179, 0.013866426423192024, 0.021778279915452003, -0.0020414581522345543, -0.03079589270055294, 0.004029673989862204, -0.03324988856911659, 0.017996011301875114, -0.010952302254736423, 0.00525765772908926, -0.05517112836241722, -0.02796483412384987, 0.07500915229320526, 0.007054656744003296, -0.003131968667730689, 0.017750538885593414, -0.00019537602202035487, -0.02193494141101837, -0.007292851805686951, -0.006824691779911518, 0.05364476144313812, -6.401588685628602e-33, -0.026761403307318687, -0.00730696227401495, 0.045498378574848175, 0.03109402395784855, 0.011061340570449829, -0.03817551210522652, 0.01054622232913971, 0.018921326845884323, -0.053423237055540085, -0.018981756642460823, 0.025003042072057724, 0.048598431050777435, 0.011422104202210903, -0.0020796197932213545, -0.019423024728894234, -0.008633790537714958, 0.04386536404490471, 0.006152587477117777, 0.012498065829277039, -0.019500544294714928, -0.10259999334812164, -0.0037727919407188892, 0.0007090375875122845, 0.004164482466876507, -0.010100107640028, 0.008816746063530445, -0.04314305633306503, -0.0056066024117171764, 0.0032081156969070435, 0.0005277728196233511, -0.009504438377916813, -0.03776872158050537, -0.0011790443677455187, 0.0045801689848303795, 0.01420894917100668, 0.09385685622692108, -0.0847080871462822, 0.0036769139114767313, 0.0009519004379399121, -0.006553083658218384, 0.01899574138224125, -0.05575300753116608, -0.012147814966738224, -0.004995081573724747, 0.030472271144390106, 0.019750326871871948, 0.039691656827926636, 0.021306892856955528, 0.01987486332654953, 0.015058472752571106, -0.07805971056222916, 0.014682397246360779, -0.018650248646736145, 0.004087986424565315, 0.01965503953397274, -0.017273372039198875, 0.021266404539346695, -0.07961864024400711, -0.04751238226890564, 0.014802590943872929, -0.02864859625697136, -0.014572413638234138, 0.007536970544606447, 0.006027836352586746, -0.017932981252670288, -0.023062003776431084, -0.037591464817523956, 0.08302022516727448, 0.005822491366416216, 0.017489369958639145, -0.015330136753618717, -0.015072496607899666, -0.09397538006305695, -0.03462472930550575, -0.010382364504039288, 0.04212933033704758, -0.02988397516310215, 0.03976969048380852, 0.08420180529356003, 0.0371597521007061, -0.03709834814071655, 0.012649578973650932, -0.048280082643032074, 0.034556739032268524, 0.04150548204779625, 0.025735722854733467, -0.019620364531874657, 0.0013927085092291236, -0.0321776308119297, 0.050212424248456955, -0.04023200646042824, -0.04045439139008522, -0.035634931176900864, 0.006355130113661289, 0.06775810569524765, -0.011765294708311558, 0.018108023330569267, -0.03659563884139061, -0.003974698018282652, -0.01094252709299326, -0.07717414200305939, 0.004449354484677315, 0.021059898659586906, 0.06017694249749184, 0.007468164898455143, 0.027983766049146652, -0.036829836666584015, 0.018449431285262108, -0.02064737118780613, 0.027759026736021042, 0.03140264004468918, 0.03322576731443405, 0.007851938717067242, 0.004110804293304682, -0.03822840377688408, -0.014531055465340614, 0.024160532280802727, 0.018265414983034134, -0.0491679422557354, -0.06973061710596085, -0.00249351910315454, 0.022218437865376472, 0.011968451552093029, -0.05270172655582428, -0.04614899307489395, -0.02734874188899994, 0.01317691896110773, 0.040297944098711014, 0.09872250258922577, 0.013193032704293728, 0.013737012632191181, -0.022267460823059082, 3.176740221988439e-07, 0.024461302906274796, 0.04897448420524597, 0.04082634299993515, -0.0037867084611207247, -0.014852428808808327, -0.061728864908218384, 0.013211062178015709, 0.013267002999782562, -0.022388219833374023, 0.036772873252630234, 0.01696578785777092, 0.02934061735868454, -0.03800458088517189, -0.01774763874709606, -0.038474876433610916, -0.1610800176858902, -0.04003334790468216, -0.022596117109060287, -0.01153435930609703, 0.015191263519227505, 0.03070034645497799, 0.04215097427368164, -0.015796465799212456, -0.002407485619187355, -0.014893859624862671, 0.016266364604234695, -0.007434448227286339, 0.021351048722863197, 0.021438730880618095, 0.04577578976750374, 0.05844644457101822, -0.008653686381876469, -0.007044988684356213, 0.028993843123316765, 0.024569055065512657, -0.01799793913960457, 0.012636598199605942, 0.03659886121749878, 0.012741059064865112, 0.06400729715824127, 0.027410343289375305, -0.029167253524065018, 0.019828230142593384, 0.027314314618706703, 0.02047085389494896, -0.030222753062844276, -0.0068075694143772125, 0.016443854197859764, -0.041825223714113235, -0.029132865369319916, -0.0006333711789920926, 0.036566413938999176, 0.051356516778469086, -0.017045525833964348, 0.042055703699588776, -0.007400321774184704, -0.03992199897766113, 0.009956080466508865, 0.04585529863834381, 0.018540695309638977, -0.03873986005783081, -0.07534412294626236, 0.013393879868090153, -0.027260957285761833, 0.013061481527984142, -0.03430132940411568, -0.016968142241239548, 2.8548967271369442e-34, -0.014020489528775215, -0.035269226878881454, -0.05582877993583679, 0.020770329982042313, -0.004717396572232246, -0.02655760571360588, 0.0172334723174572, -0.01540694572031498, -0.004601944703608751, -0.007651591673493385, 0.012230812571942806], "f3d35cee-3ccb-41d8-ad38-ff273e598cb5": [0.00010565578122623265, -0.01749337837100029, -0.017317915335297585, -0.0014585438184440136, -0.008976796641945839, 0.02830289863049984, 0.039114810526371, 0.031240640208125114, 0.054875753819942474, 0.016289670020341873, -0.0073477053083479404, -0.05454001575708389, 0.010461311787366867, 0.054660212248563766, 0.007734122220426798, 0.002089056884869933, 0.04477543756365776, -0.00429143663495779, -0.028258653357625008, -0.023232342675328255, 0.016757089644670486, 0.00969631690531969, -0.07575157284736633, -0.009422102011740208, 0.008965360932052135, -0.019276496022939682, -0.005808030255138874, 0.026784315705299377, 0.08657626807689667, 0.04688584432005882, 0.03153349459171295, 0.02067532390356064, -0.01869007758796215, 0.040314171463251114, 2.335725639568409e-06, 0.03751211240887642, 0.006769598927348852, -0.0011146245524287224, -0.010076059959828854, -0.05918114259839058, 0.039740659296512604, -0.0046371472999453545, -0.02920682542026043, 0.0042616259306669235, -0.023775553330779076, 0.01158161461353302, 0.05090227723121643, -0.06978803128004074, -0.00415933458134532, 0.036603767424821854, -0.013475747779011726, 0.023080792278051376, -0.04490587115287781, -0.012746423482894897, 0.05008062347769737, -0.061589960008859634, -0.013999707996845245, 0.035445522516965866, 0.06151590496301651, 0.025974275544285774, 0.0159258134663105, -0.019559066742658615, -0.00780821917578578, 0.02338496781885624, 0.08630025386810303, 0.07993834465742111, 0.023231282830238342, -0.08517017215490341, -0.020348170772194862, -0.0023893252946436405, 0.06309054046869278, 0.03598321974277496, -0.0035709242802113295, 0.0628509521484375, 0.001984518254175782, 0.022644948214292526, 0.02804255299270153, 0.023533156141638756, -0.016059327870607376, 0.01401587575674057, -0.0715731605887413, -0.04422784969210625, -0.05633651092648506, 0.043800827115774155, 0.02489144541323185, 0.01491059921681881, 0.018618064001202583, -0.009553460404276848, -0.0033180424943566322, 0.012690386734902859, 0.020968185737729073, 0.049108728766441345, -0.024331821128726006, 0.046362102031707764, 0.024713236838579178, -0.0062204385176301, 0.026081744581460953, 0.03935586288571358, 0.015827741473913193, 0.04757017642259598, -0.03043241798877716, 0.007748785894364119, -0.0015035977121442556, 0.03886537253856659, 0.009968121536076069, 0.03196727856993675, 0.0008979320991784334, 0.0019227603916078806, 0.017389480024576187, 0.00326007348485291, -0.012364237569272518, 0.018087971955537796, -0.03184928745031357, -0.01370061282068491, -0.02576809749007225, -0.04716544598340988, 0.0043709962628781796, 0.034890513867139816, 0.06078822910785675, 0.024968905374407768, 0.02831847220659256, 0.005703149829059839, -0.058757226914167404, -0.021955855190753937, -0.05349660664796829, -0.09837669879198074, 0.01586288958787918, -0.004553338047116995, -0.04651589319109917, -0.06380553543567657, -0.023406708613038063, -0.02164965495467186, -0.006642593536525965, -0.0019189458107575774, -0.010550091043114662, -0.03365612030029297, -0.01154458150267601, -0.01819700002670288, 0.04455319419503212, 0.01958821341395378, 0.019646767526865005, 0.01128865871578455, 0.012324648909270763, 0.035144515335559845, 0.02211029827594757, -0.025925474241375923, 0.014899942092597485, 0.004237963818013668, 0.017073899507522583, 0.035090841352939606, 0.03027856908738613, 0.019513379782438278, -0.06667238473892212, -0.018706491217017174, -0.00465965224429965, 0.05444512143731117, -0.014055979438126087, -0.01815567910671234, -0.05700613930821419, 0.02961002290248871, -0.04991563409566879, 0.05033055692911148, 0.06393913924694061, 0.028303612023591995, 0.004757054150104523, -0.03144300729036331, 0.06927727162837982, -0.015332464128732681, -0.021796617656946182, 0.01369375642389059, -0.008624750189483166, 0.043775953352451324, -0.03936128690838814, 0.07634815573692322, -0.03566762059926987, 0.0003184871457051486, 0.031669024378061295, -0.0012837349204346538, -0.003584666410461068, 0.011329298838973045, -0.0529099740087986, -0.13668662309646606, -0.033780455589294434, 0.026225518435239792, -0.019786996766924858, 0.017460737377405167, -0.019570980221033096, 0.084311343729496, -0.0064340997487306595, 0.051353976130485535, 0.014965622685849667, 0.007309691980481148, -0.054456330835819244, -0.05087323486804962, 0.015710243955254555, -0.016913680359721184, 0.0011051095789298415, -0.07331125438213348, 0.0063865226693451405, -0.008202463388442993, -0.03899943456053734, -0.035873766988515854, 0.014932708814740181, 0.015360496006906033, 0.031599510461091995, 0.004871799144893885, 0.02132708579301834, -0.02357598952949047, 0.007405690383166075, 0.07253856956958771, 0.06692446768283844, -0.011180932633578777, -0.020267752930521965, -0.007447726558893919, -0.022129960358142853, 0.0500779002904892, -0.052030112594366074, 0.025502249598503113, 0.04093904048204422, 0.02094789408147335, -0.02100810967385769, -0.06110336631536484, -0.023169390857219696, 0.003695018822327256, -0.017254535108804703, -0.01883808523416519, 0.011174422688782215, 0.006183426361531019, 0.019885903224349022, 0.030073631554841995, -0.05069692060351372, -0.00035363732604309916, -0.006460877135396004, -0.002672045025974512, 0.03321449086070061, 0.014749670401215553, -0.014820494689047337, 0.009589646942913532, 0.02724342793226242, -0.06336311250925064, -0.003849266329780221, 0.03235597908496857, 0.0043108356185257435, 0.044287990778684616, 0.0025293773505836725, 0.026558147743344307, 0.015050014480948448, 0.00397498719394207, -0.025097321718931198, -0.0025873584672808647, 0.03159879148006439, -0.010525524616241455, 0.014453982003033161, 0.017222415655851364, 0.021179335191845894, -0.00030790813616476953, -0.1317959576845169, 0.0011071236804127693, -0.04489152505993843, 0.0006687218556180596, -0.026433879509568214, 0.007487582042813301, -0.03387681022286415, -0.010555638931691647, 0.006553616374731064, -0.032955352216959, 0.027369149029254913, -0.007781281601637602, -0.027639541774988174, 0.023586973547935486, 0.02278324030339718, 0.021456118673086166, -0.007078635971993208, -0.026089617982506752, -0.03495560213923454, -0.03189808875322342, -0.018802683800458908, -0.021811438724398613, -0.03967878594994545, 0.007942394353449345, 0.02698248252272606, -0.018112799152731895, 0.011708521284162998, -0.03344300761818886, 0.012141887098550797, -0.021341610699892044, 0.0634586438536644, -0.06619437783956528, -0.020845895633101463, -0.048533808439970016, 0.045868147164583206, -0.001141069340519607, -0.003750893520191312, -0.05097857117652893, -0.005978184286504984, -0.009689975529909134, 0.04234955459833145, -0.01405005156993866, -0.0017453867476433516, 0.02529890090227127, -0.015498325228691101, 0.033076006919145584, -0.00833074189722538, -0.003285511862486601, 0.01609116978943348, 0.06060029938817024, 0.045809365808963776, -0.03755917400121689, -0.016313575208187103, -0.048871155828237534, -0.05286277085542679, 0.040295664221048355, 0.007280079647898674, 0.07407726347446442, -0.004248554352670908, 0.012231127358973026, -0.020795544609427452, -0.0153356296941638, 0.004583105910569429, 0.026459403336048126, -0.006259147077798843, -0.046852342784404755, -0.03892314434051514, -0.04829978942871094, -0.03950946778059006, -0.1423395872116089, -0.009152162820100784, 0.038764145225286484, 0.03492828831076622, -0.018074732273817062, 0.037070367485284805, 0.01637539640069008, -0.01962387189269066, 0.04711177572607994, -0.056593943387269974, -0.02626698836684227, 0.0010543949902057648, -0.0813564658164978, 0.005382659379392862, 0.030104536563158035, -0.054542671889066696, 0.02583610638976097, -0.051016319543123245, 0.034695710986852646, -0.01078859530389309, -0.000983275705948472, -0.02570730820298195, -0.04483963921666145, -0.026337789371609688, 0.037420980632305145, 0.07464875280857086, 0.054489340633153915, -0.0064086392521858215, -0.011058428324759007, 0.03341072425246239, -0.05104201287031174, -0.02521822415292263, 0.01789606362581253, 0.035404931753873825, -0.01852373592555523, 0.020939776673913002, -0.02640460431575775, 0.0036533658858388662, -0.012916718609631062, -0.017098544165492058, -0.09656020998954773, -0.010438572615385056, -0.011425288394093513, 0.028363317251205444, 0.02799593098461628, -0.01896463893353939, 0.03780869394540787, -0.04745316132903099, 0.013067999854683876, 0.005333960987627506, -0.0975516140460968, -0.026588330045342445, 0.004724866710603237, -0.011590514332056046, -0.008863109163939953, -0.012504716403782368, -0.0837688073515892, 0.074200838804245, -0.0027853974606841803, 0.037648044526576996, -0.032176993787288666, -0.01824846863746643, 0.0066076647490262985, 0.009237372316420078, 0.03429358825087547, 0.014334656298160553, -0.07141925394535065, -0.07788608968257904, 0.05213366076350212, 0.020358780398964882, 0.009047513827681541, 0.00421527773141861, 0.00041742532630451024, -0.03576008602976799, 0.027322325855493546, 0.0033647739328444004, -0.04646514728665352, 0.02081523835659027, 0.015494664199650288, -0.03784334287047386, 0.04816552251577377, 0.04534315690398216, -0.00820044707506895, 0.006026329938322306, -0.0413019172847271, 0.08066333085298538, 0.020665405318140984, 0.03174128755927086, -0.01825999841094017, 0.013333451002836227, -0.050100404769182205, 0.0062676407396793365, 0.021355366334319115, 0.037396591156721115, -0.061436478048563004, -0.018682673573493958, 0.015887293964624405, -0.0020313032437115908, -0.007696297485381365, 0.040516506880521774, 0.004867047071456909, 0.08452222496271133, 0.06455773115158081, 0.026766518130898476, -0.02370613068342209, 0.012631876394152641, 0.0050944555550813675, 0.0041694678366184235, 0.09913034737110138, -0.0180292259901762, -0.05406898632645607, 0.004644290078431368, 0.018397556617856026, 0.018479568883776665, -0.009203732945024967, -0.0020271185785531998, 0.06191137433052063, 0.02415941283106804, -0.0245821513235569, -0.08182209730148315, -0.015557319857180119, 0.008919008076190948, 0.009617594070732594, 0.03432207927107811, -0.049930620938539505, 0.04847966507077217, -0.051477011293172836, -0.05016329884529114, -0.05519435182213783, -0.02374347485601902, -0.025349875912070274, -0.05269213765859604, 0.0839487686753273, 0.02045254595577717, 0.06283043324947357, -0.004357089288532734, 0.036042097955942154, 0.015752414241433144, -0.005274891387671232, 0.04572027176618576, -0.004771500360220671, -0.047078050673007965, -0.06801199167966843, 0.037479713559150696, -0.026354534551501274, 0.07311078161001205, -0.030912723392248154, -0.01701049506664276, 0.020067395642399788, 0.03295566886663437, -0.004772648680955172, 0.009598013013601303, 0.009316603653132915, -0.037040337920188904, 0.004644360393285751, 0.019337043166160583, -0.018030397593975067, 0.026291245594620705, 0.0274912491440773, -0.01857697032392025, 0.005957623012363911, 0.08687468618154526, 0.03427531197667122, -0.005624266341328621, -0.06862649321556091, 0.01645646244287491, -0.061945591121912, 0.010290100239217281, -0.010217146947979927, -0.0742155984044075, 0.032521944493055344, 0.002254817634820938, 0.03653160482645035, 0.037997931241989136, 0.02656392939388752, 0.023261316120624542, -0.02983856573700905, 0.002210176084190607, 0.017476439476013184, -0.07889595627784729, 0.01056069415062666, 0.007300522178411484, 0.027198253199458122, -0.01376563310623169, -0.040909819304943085, 0.0011984623270109296, -0.016996750608086586, -0.006386438850313425, -0.06311515718698502, 0.03544970229268074, -0.003071063430979848, -0.053809795528650284, 0.09623781591653824, -0.008952515199780464, -0.03911919146776199, 0.03127098083496094, 0.00011944266589125618, 0.0004698550619650632, -0.04126055911183357, 0.030758315697312355, 0.049603141844272614, 0.0016495694871991873, 0.01531247328966856, 0.011634505353868008, 0.030249815434217453, -0.037474557757377625, -0.015700604766607285, 0.05029682070016861, 0.02015351876616478, -0.0266770850867033, -0.010304874740540981, 0.01961897499859333, -0.015277090482413769, -0.0042201075702905655, 0.02198953740298748, 0.011136953718960285, 0.019510071724653244, -0.013311353512108326, 0.01218276098370552, -0.057229794561862946, -0.04797997698187828, 0.0518597848713398, 0.01833692006766796, -0.01815829798579216, -0.027995526790618896, 0.014598237350583076, 0.015275088138878345, -0.003115873783826828, 0.02792529948055744, 0.03502877056598663, -6.439605642302133e-33, -0.009810029529035091, 0.0011996414978057146, 0.015389448031783104, 0.013398713432252407, 0.007764082867652178, -0.025239914655685425, 0.009536607190966606, -0.0019787296187132597, -0.06174907088279724, -0.03578287735581398, 0.006802044343203306, 0.057442933320999146, 0.020143622532486916, 0.010937638580799103, -0.04406007006764412, 0.02012769505381584, 0.0254437867552042, 0.014124119654297829, 0.02215202897787094, 0.013796549290418625, -0.06476041674613953, 0.034665968269109726, -0.010913224890828133, 0.009236002340912819, -0.002668644767254591, -0.00501200370490551, -0.03657069057226181, 0.013158699497580528, 0.02095842733979225, 0.0021158417221158743, -0.01351514644920826, -0.052509114146232605, -0.02233397588133812, -0.02288166806101799, 0.007799090351909399, 0.10091093927621841, -0.06705907732248306, 0.032783448696136475, -0.04799632728099823, 0.01412014476954937, 0.01321420632302761, -0.027449775487184525, -0.03655479475855827, -0.023995155468583107, 0.006104766856878996, 0.014640704728662968, 0.011546707712113857, 0.03263306990265846, -0.005297806113958359, 0.03159017115831375, -0.07330414652824402, 0.015064040198922157, -0.046204857528209686, 0.02834438718855381, 0.01762254349887371, -0.04894709214568138, 0.010454264469444752, -0.11083640903234482, -0.05738171190023422, 0.024141211062669754, 0.01388783473521471, -0.03330085799098015, 0.02761630155146122, -1.8396582163404673e-05, -0.02739891968667507, -0.01752755232155323, -0.007494875695556402, 0.06705016642808914, 0.005633031018078327, 0.0006015885155647993, -0.02121911756694317, -0.013665329664945602, -0.05336416885256767, -0.04331318289041519, -0.006316490937024355, 0.05464810132980347, -0.03503508120775223, 0.03453114256262779, 0.0754515528678894, 0.061586830765008926, 0.003442401997745037, -0.0045226579532027245, 0.0007839855970814824, 0.0277976356446743, 0.036020271480083466, -0.02582511305809021, -0.023056454956531525, -0.04172879830002785, -0.013186409138143063, 0.0345732606947422, -0.0316048264503479, -0.05840368568897247, -0.03159765154123306, 0.022906046360731125, 0.0672958567738533, -0.014599574729800224, 0.034458838403224945, -0.00675295852124691, -0.034014780074357986, -0.016590308398008347, -0.08213771879673004, -0.03190943971276283, -0.0008441880927421153, 0.07564111053943634, 0.02682698704302311, 0.0015258749481290579, -0.03521982207894325, 0.013395382091403008, -0.016848115250468254, 0.022931188344955444, 0.01569155976176262, 0.024378569796681404, 0.008124452084302902, 0.001320585492067039, -0.01253801304847002, -0.015879694372415543, 0.020959798246622086, 0.040833763778209686, -0.016703877598047256, -0.02237357199192047, 0.022049587219953537, 0.022731997072696686, -0.020847395062446594, -0.04734763875603676, -0.06040942296385765, -0.0015833263751119375, 0.0035454966127872467, 0.010962742380797863, 0.09756414592266083, 0.027139835059642792, 0.02065443806350231, -0.058510150760412216, 2.9690110636693134e-07, 0.019574373960494995, 0.03533712401986122, 0.02987392246723175, 0.023054949939250946, -0.04088156297802925, -0.10277821868658066, 0.05519866943359375, 0.03944016247987747, -0.016624419018626213, 0.0182329248636961, 0.013839168474078178, 0.016915805637836456, -0.03139997646212578, -0.01648789457976818, -0.020023828372359276, -0.14437000453472137, -0.053566545248031616, 0.022075427696108818, -0.01128595694899559, -0.004685268271714449, -0.006972926668822765, 0.022963006049394608, -0.003310602391138673, -0.0039247083477675915, -0.008239849470555782, -0.020553022623062134, -0.013276522979140282, -0.0008489307365380228, 0.02963792160153389, 0.027917442843317986, 0.03285317122936249, -0.01698005013167858, 0.001122569083236158, 0.016965890303254128, 0.025898894295096397, -0.0016603241674602032, -0.028058404102921486, -0.0007047249819152057, -0.009370015934109688, 0.08121094852685928, 0.02529367245733738, -0.015315871685743332, 0.024144602939486504, 0.011189623735845089, 0.05229710415005684, -0.02741449512541294, -0.006980318110436201, 0.040189895778894424, -0.02000218816101551, -0.0586942657828331, -0.006774571258574724, 0.00841414462774992, 0.04636617749929428, -0.03082803636789322, 0.03757369518280029, -0.023704567924141884, -0.038287509232759476, -0.007554365321993828, 0.05671520531177521, -0.022506937384605408, -0.02015393227338791, -0.0702492892742157, -0.01388876885175705, -0.02761397324502468, -0.007048072759062052, -0.007838482968509197, -0.024778131395578384, 2.8205711441492315e-34, -0.01108237449079752, -0.010038497857749462, -0.054656773805618286, 0.050085294991731644, 0.010909345000982285, -0.03819378837943077, 0.06716600805521011, -0.002567360643297434, 0.006162720266729593, -0.06055980920791626, -0.012573652900755405], "b6473046-4e60-4cac-89fb-ccb09390f1ec": [-0.004981177393347025, -0.00477868365123868, -0.006448864936828613, -0.01693924330174923, -0.011560237966477871, 0.010896040126681328, 0.04567227140069008, 0.04456041008234024, 0.09106004238128662, -0.004344545304775238, 0.0020548412576317787, 0.006766804028302431, 0.018208764493465424, 0.026726484298706055, -0.00132762361317873, 0.04852369800209999, 0.03523440659046173, -0.014715430326759815, -0.04067771136760712, -0.008616141974925995, -0.008526084944605827, 0.025498516857624054, -0.0620586983859539, -0.02734282612800598, 0.04900198429822922, -0.0008386928238905966, 0.009210755117237568, 0.03337949514389038, 0.1022370383143425, 0.029841799288988113, 0.009972735308110714, 0.007713718339800835, 0.002723134821280837, 0.025718122720718384, 2.123154899891233e-06, 0.04023590683937073, 0.00849460531026125, -0.0066968114115297794, -0.04735812172293663, -0.0757744312286377, 0.02473200112581253, 0.02651233971118927, -0.025214750319719315, -0.0024400295224040747, -0.01855626329779625, 0.01710214838385582, 0.03767935186624527, -0.05907156318426132, -0.017972432076931, 0.03337635099887848, 0.008033277466893196, -0.005296588875353336, -0.013840503059327602, -0.00963524542748928, 0.01847606711089611, -0.09068197011947632, 0.003179617691785097, -0.020878830924630165, 0.05870356783270836, 0.04398597031831741, 0.019800681620836258, 0.006923316977918148, 0.011502396315336227, 0.00694264005869627, 0.08326002210378647, 0.07885385304689407, 0.024727221578359604, -0.025538241490721703, -0.02117645926773548, -0.015388499945402145, 0.03195453807711601, -0.01161618996411562, -0.022510072216391563, 0.0728195458650589, -0.004963664337992668, 0.02030106820166111, 0.033696770668029785, 0.002500442322343588, -0.017726808786392212, -0.0018671477446332574, -0.03663529083132744, -0.06072870269417763, -0.024058319628238678, 0.04152107238769531, 0.01655396819114685, -0.02178976498544216, 0.054604776203632355, -0.02390483021736145, 0.04731699824333191, 0.0031592489685863256, 0.061839114874601364, 0.036582786589860916, 0.007289885077625513, 0.030618300661444664, 0.036581747233867645, -0.0032991229090839624, 0.014370989054441452, 0.05360511317849159, -0.006519808433949947, 0.0322345495223999, 0.0035474123433232307, -0.002410415094345808, -0.017535537481307983, 0.039936840534210205, 0.007662581745535135, -0.018662065267562866, -0.035255178809165955, -0.027966532856225967, -0.008747409097850323, 0.023367686197161674, -0.008519748225808144, -0.005698970053344965, 0.0016370415687561035, 0.0008952660136856139, 0.014895935542881489, -0.028785228729248047, -0.02158893644809723, -0.0032764337956905365, 0.057149410247802734, 0.006593183148652315, 0.01742931641638279, -0.035361114889383316, -0.031405750662088394, -0.02576749213039875, -0.04177851602435112, -0.09078491479158401, 0.05435698851943016, -0.03680684044957161, -0.05354895442724228, -0.08338001370429993, -0.04436247795820236, -0.024330008774995804, 0.02579747512936592, -0.003744893241673708, -0.007726801559329033, -0.011209788732230663, 0.000373473041690886, -0.008834704756736755, -0.0024270464200526476, 0.007280091289430857, 0.036897558718919754, 0.013675716705620289, 0.06423240900039673, 0.03956044465303421, 0.0008189770160242915, -0.01484066341072321, 0.011401251889765263, 0.012741412036120892, 0.026078961789608, 0.033949241042137146, 0.022686023265123367, 0.0011539299739524722, -0.07010218501091003, -0.03376922383904457, 0.02311897836625576, 0.03848334029316902, 0.03172263130545616, -0.04621677100658417, -0.04916127026081085, 0.017362946644425392, -0.057555291801691055, 0.03827350586652756, 0.07996093481779099, 0.04609600082039833, 0.01299881748855114, -0.077414870262146, 0.02626338042318821, -0.01312759704887867, 0.0033589366357773542, 0.006007218733429909, 0.010486734099686146, 0.04304703697562218, -0.03575511649250984, 0.054159436374902725, -0.029658017680048943, -0.013192781247198582, 0.046184126287698746, -0.022869165986776352, -0.022686650976538658, 0.014593477360904217, -0.030370449647307396, -0.08885300904512405, 0.006615237798541784, 0.04688581824302673, -0.04797717556357384, -0.002701892051845789, 0.02505880780518055, 0.05958462506532669, -0.0013167229481041431, 0.02006411738693714, 0.0217672660946846, -0.03385826200246811, -0.005508206319063902, -0.03930777311325073, 0.015980930998921394, -0.036558493971824646, 0.017650878056883812, -0.04998132213950157, 0.008234668523073196, 0.0004285180475562811, -0.05469284951686859, -0.06869779527187347, -0.035642143338918686, 0.07780501246452332, 0.0010649098549038172, 0.013721948489546776, 0.05740935355424881, -0.030665744096040726, 0.019232016056776047, 0.09937739372253418, 0.03347446024417877, -0.012961526401340961, -0.0034915930591523647, -0.03905652463436127, 0.019191047176718712, 0.049341753125190735, -0.03202373906970024, 0.03283068537712097, 0.007544209249317646, 0.03163129836320877, -0.006048321258276701, -0.04893038049340248, -0.026284586638212204, -0.012692762538790703, -0.02024814859032631, -0.04145873337984085, 0.03342327103018761, 0.020729446783661842, -0.0032440510112792253, 0.032950740307569504, -0.06009720638394356, 0.004686464089900255, -0.016369644552469254, -0.01682218722999096, 0.024046508595347404, -0.009470355696976185, -0.027331124991178513, 0.03580751642584801, 0.005917631089687347, -0.05607027933001518, -0.021115398034453392, 0.053153399378061295, 0.020846709609031677, 0.04191061854362488, -0.020846372470259666, -0.005493704695254564, 0.03989426791667938, 0.0012137501034885645, 0.0014641034649685025, -0.005469060968607664, 0.011831912212073803, -0.012433280237019062, 0.013254320248961449, 0.012312574312090874, 0.029003575444221497, 0.009477665647864342, -0.13740767538547516, 0.022807765752077103, -0.05969630926847458, -0.018160874024033546, -0.030816996470093727, 0.008563322015106678, 0.010923735797405243, -0.009181293658912182, 0.02216135896742344, -0.04017248749732971, 0.015968073159456253, 0.005886958912014961, -0.04571649804711342, 0.023992761969566345, 0.04319792613387108, 0.01766919158399105, -0.043142735958099365, -0.01628125086426735, -0.021870974451303482, -0.05985923483967781, -0.02268465980887413, -0.06075331196188927, -0.03469773754477501, 0.0015511098317801952, -0.0014301302144303918, -0.040728554129600525, -0.008523515425622463, -0.04926210641860962, 0.001362599665299058, -0.02988673932850361, 0.017654899507761, -0.04682007431983948, 0.0393495112657547, -0.04400178790092468, 0.08118508011102676, -0.007534506730735302, -0.019678615033626556, -0.025567742064595222, 0.02632596530020237, -0.007497377693653107, 0.01715773344039917, 0.017741570249199867, -0.004336193203926086, -0.013098130002617836, 0.014348817989230156, 0.02479732036590576, -0.024293310940265656, -0.00046225328696891665, 0.054174333810806274, 0.07295838743448257, 0.018833568319678307, -0.05246888846158981, -0.011642368510365486, -0.07673191279172897, -0.05185004323720932, 0.038891248404979706, -0.012952600605785847, 0.08021405339241028, 0.0028988951817154884, -0.016241878271102905, -0.04338414967060089, -0.012446374632418156, -0.010496864095330238, 0.03217630088329315, 0.04398288577795029, -0.027561916038393974, -0.024050842970609665, -0.05870024859905243, 0.011873740702867508, -0.1210281252861023, -0.003403784241527319, 0.05305546894669533, 0.06600768864154816, -0.03329267352819443, 0.026623371988534927, 0.006109294947236776, -0.022386804223060608, 0.049999963492155075, -0.025306876748800278, -0.01687845028936863, -0.023120496422052383, -0.10864067077636719, -0.009503914043307304, 0.014080497436225414, -0.030115803703665733, 0.01935148984193802, -0.037056270986795425, 0.07109766453504562, -0.023896653205156326, -0.021204836666584015, -0.04314104840159416, -0.027050478383898735, -0.005984973162412643, 0.0034441747702658176, 0.06359174102544785, 0.05881098657846451, 0.0027157568838447332, 0.01465552020817995, 0.04831744730472565, -0.036321643739938736, 0.002890715841203928, 0.032327037304639816, 0.06246659532189369, 0.022179223597049713, 0.011729066260159016, -0.02641204744577408, -0.006319649051874876, 0.012491099536418915, -0.007798445876687765, -0.08930955827236176, 0.020936496555805206, -0.026069561019539833, 0.0049549899995327, 0.02138594724237919, -0.02856363169848919, -0.03935273364186287, -0.028407946228981018, 0.009413475170731544, -0.003981786780059338, -0.09400638192892075, -0.05064484477043152, -0.008668212220072746, -0.06406322866678238, -0.007223372347652912, -0.008104781620204449, -0.058050911873579025, 0.04332843795418739, 0.014015224762260914, 0.023677868768572807, -0.01211114227771759, -0.0038752208929508924, 0.020938517525792122, 0.02414962276816368, 0.014564448967576027, 0.03157367557287216, 0.011082308366894722, -0.06947293132543564, 0.0379454642534256, -0.0004851144622080028, 0.04190899804234505, 0.005142277106642723, -0.0063059027306735516, -0.01952301152050495, 0.035993341356515884, -0.01321149431169033, -0.037797123193740845, 0.027875926345586777, 0.043217696249485016, 0.0009759924723766744, 0.032703571021556854, 0.04105544462800026, 0.011431671679019928, -0.03477004915475845, -0.06882128119468689, 0.08403433114290237, -0.029469985514879227, -0.020448744297027588, -0.0042481874115765095, -0.023755205795168877, -0.04386289417743683, 0.008928455412387848, -0.0014323309296742082, 0.07544583827257156, -0.06119352951645851, -0.029445167630910873, 0.03826943039894104, 0.01983719691634178, 0.00031857629073783755, 0.011103793047368526, -0.018333643674850464, 0.06177679821848869, 0.023889269679784775, 0.027367698028683662, -0.03847045823931694, -0.01367434486746788, 0.01925470307469368, 0.008760413154959679, 0.07228629291057587, -0.013646206818521023, -0.07128607481718063, 0.030085114762187004, 0.016773732379078865, -0.016561809927225113, -0.011769742704927921, -0.01490358542650938, 0.018673615530133247, 0.02239806205034256, 0.01554366759955883, -0.0407804511487484, -0.00029603918665088713, -0.008757681585848331, 0.01306505873799324, 0.032221656292676926, -0.05841688811779022, 0.05995994433760643, -0.03845485672354698, -0.015002541244029999, -0.05823071673512459, -0.03030736744403839, -0.017215630039572716, -0.028148572891950607, 0.11009540408849716, -0.015612532384693623, 0.04145384579896927, 0.00974256917834282, 0.0313427597284317, -0.005516527686268091, 0.007173821330070496, 0.022525770589709282, 0.028241639956831932, 0.01512603648006916, -0.1064898818731308, 0.02233671396970749, 0.011217992752790451, 0.015359601005911827, -0.03821795806288719, 0.009077330119907856, -0.019362185150384903, -0.004517314489930868, -0.02886137180030346, 0.014121479354798794, 0.039903488010168076, -0.05857662856578827, 0.009430035017430782, 0.015068471431732178, -0.07832470536231995, 0.011614184826612473, -0.002090097637847066, -0.007228832226246595, 0.03161531686782837, 0.03471231833100319, 0.021372154355049133, 0.03791886195540428, -0.07756990939378738, 0.018135160207748413, -0.02162294276058674, 0.014042342081665993, -0.05631374195218086, -0.04091835767030716, 0.06307965517044067, 0.03628327324986458, 0.02340208739042282, 0.01895241253077984, 0.05591471493244171, -0.0011630826629698277, -0.05466641113162041, -0.020873209461569786, 0.0017562368884682655, -0.06261510401964188, 0.035446226596832275, -0.006527813151478767, 0.03658045455813408, -0.025003621354699135, 0.0077036842703819275, -0.017148779705166817, -0.007983755320310593, -0.024639666080474854, -0.037066750228405, 0.040764037519693375, -0.006034839898347855, -0.05018436163663864, 0.08281648904085159, -0.019895073026418686, -0.02083434723317623, 0.015301251783967018, 0.005678030662238598, 0.004903228487819433, -0.014513425529003143, 0.04040953889489174, 0.06734311580657959, 0.0017061647959053516, 0.014897978864610195, 0.010460441932082176, 0.004376602359116077, -0.03488829731941223, -0.004285609815269709, 0.04770463705062866, 0.022185886278748512, -0.014090548269450665, -0.057805996388196945, -0.016576478257775307, 0.025850387290120125, -0.007088099140673876, -0.003473158460110426, -0.003314399626106024, 0.001587775768712163, 0.005272737704217434, 0.01659960299730301, -0.04461044445633888, -0.06954710185527802, 0.02577502653002739, 0.04832956939935684, 0.013460461050271988, -0.0422058179974556, 0.039760228246450424, 0.032678574323654175, -0.007955369539558887, 0.010366811417043209, 0.022717371582984924, -5.689663389022545e-33, -0.02275787852704525, 0.01312144473195076, 0.013969932682812214, 0.0011904867133125663, 0.04267792031168938, -0.03660156950354576, 0.034642789512872696, -0.011861075647175312, -0.07283850759267807, -0.04217209294438362, -0.03210115432739258, 0.0432247631251812, 0.02479895018041134, 0.0006431761430576444, -0.04519118741154671, 0.00251217489130795, 0.04514123126864433, 0.028544718399643898, 0.04212622344493866, -0.010471249930560589, -0.038711003959178925, 0.023329876363277435, -0.0046266051940619946, 0.02305149845778942, 0.019297664985060692, -0.02282773144543171, -0.01960829459130764, -0.006251623388379812, -0.0030325744301080704, 0.006947188172489405, -0.027622289955615997, -0.012927223928272724, -0.0007055322639644146, 0.014508016407489777, 0.021681923419237137, 0.11522040516138077, -0.0390285924077034, 0.042356714606285095, 0.007841695100069046, 0.034080177545547485, 0.052173517644405365, -0.10076504945755005, -0.020766792818903923, -0.013011173345148563, -0.023431571200489998, 0.011559013277292252, 0.013046666979789734, 0.02650073915719986, 0.006156131625175476, -0.014511346817016602, -0.051582373678684235, -0.005471710115671158, -0.045128144323825836, 0.013809990137815475, -0.03196849301457405, -0.07562366127967834, -0.004115693736821413, -0.12048237770795822, -0.06936164945363998, 0.026774533092975616, 0.024619238451123238, -0.014053493738174438, 0.016690189018845558, -0.046957194805145264, -0.01956472545862198, 0.01205598283559084, 0.004680267069488764, 0.01844078116118908, 0.041866857558488846, -0.011577565222978592, 0.0017125228187069297, -0.054000355303287506, -0.05480920523405075, -0.04528927430510521, 0.022256433963775635, 0.0316222682595253, -0.05951192229986191, 0.029407279565930367, 0.09260319918394089, 0.05346366763114929, -0.015256961807608604, -0.009588265791535378, 0.023849839344620705, 0.03976163640618324, 0.019074952229857445, 0.005048212129622698, -0.027668064460158348, -0.047257911413908005, 0.0047088065184652805, 0.010116573423147202, -0.01076488196849823, -0.08207757771015167, -0.019267644733190536, 0.033415671437978745, 0.03476140275597572, -0.036613497883081436, -0.006581589113920927, 0.0001865644007921219, -0.035759542137384415, 0.02020779624581337, -0.06950441747903824, -0.05053933709859848, 0.03937413915991783, 0.04019000753760338, 0.0058326078578829765, 0.03996394947171211, -0.03726448863744736, 0.03407004475593567, -0.032656341791152954, 0.012782261706888676, 0.0007314679678529501, 0.007675303611904383, 0.01584259606897831, 0.016042619943618774, 0.027661675587296486, -0.005256349220871925, 0.037092916667461395, 0.016987258568406105, -0.009518468752503395, 0.013318466953933239, 0.017994297668337822, 0.028416329994797707, -0.005553805269300938, -0.00910426490008831, -0.013112162239849567, 0.019410548731684685, -0.02801544778048992, 0.011281579732894897, 0.06307155638933182, -0.01255058404058218, 0.03154337406158447, -0.0021458081901073456, 2.7264169943919114e-07, 0.007409525569528341, 0.0015442492440342903, 0.025618866086006165, 0.03816685825586319, -0.06706693768501282, -0.09706541150808334, 0.025471530854701996, 0.012295227497816086, 0.002665239153429866, 0.004327583126723766, -0.025496305897831917, 0.027653636410832405, -0.04492541402578354, -0.016733461990952492, -0.015090448781847954, -0.09184759855270386, -0.02592785656452179, 0.025888537988066673, -0.031979117542505264, -0.027955811470746994, 0.019937552511692047, 0.031116347759962082, -0.006982468534260988, -0.0009582385537214577, 0.007315904833376408, -0.00994301587343216, -0.024503283202648163, -0.006001097150146961, -0.014302716590464115, -0.023556549102067947, 0.0627569854259491, -0.01032126136124134, -0.01966726779937744, 0.013791877776384354, 0.013483220711350441, 0.028606491163372993, -0.010813123546540737, 0.02330675907433033, 0.00026610129862092435, 0.06266230344772339, 0.01117675006389618, -0.03559199720621109, 0.012714685872197151, 0.07585669308900833, 0.07310080528259277, 0.034695059061050415, -0.004123948980122805, 0.032359980046749115, -0.02264389395713806, -0.07843871414661407, -0.013153620064258575, -0.006488226819783449, 0.04852968826889992, -0.010498376563191414, 0.017321906983852386, -0.0013729676138609648, -0.000665391213260591, -0.020396074280142784, 0.023915190249681473, -0.0320994034409523, -0.01344711147248745, -0.10195787250995636, -0.029759051278233528, -0.014881954528391361, 0.02324501983821392, -0.027042461559176445, -0.009742816910147667, 2.6285674580893537e-34, 0.007463458925485611, 0.018735643476247787, -0.05116613954305649, 0.060546111315488815, 0.005986408796161413, -0.027188410982489586, 0.045470014214515686, 0.016125673428177834, 0.021880455315113068, -0.060534171760082245, 0.0048083034344017506], "3abae02f-f871-4edb-b3f1-81da237825da": [0.06347772479057312, -0.004957723431289196, -0.01620812714099884, -0.01892915554344654, -0.030074866488575935, 0.030042754486203194, 0.00627991184592247, -0.029986318200826645, -0.03039673902094364, -0.03783983364701271, 0.02678512968122959, -0.07033826410770416, 0.007634227629750967, 0.041614554822444916, -0.04240145534276962, 0.005339676048606634, 0.030307229608297348, -0.034101974219083786, -0.02002906985580921, -0.019533371552824974, 0.03445467725396156, 0.007167787291109562, -0.034180786460638046, 0.027560079470276833, -0.049669619649648666, -0.03490440547466278, 0.03522072732448578, 0.043105561286211014, 0.02474144659936428, 0.0020520442631095648, 0.017951644957065582, 0.02279212512075901, 0.008892936632037163, 0.04598616808652878, 2.4307516923727235e-06, 0.008607829920947552, -0.010777521878480911, 0.025570521131157875, 0.0012423752341419458, -0.004323306959122419, -0.011689550243318081, 0.017447464168071747, -0.009291572496294975, 0.052331481128931046, -0.021296348422765732, 0.01794459857046604, 0.033226605504751205, -0.026823507621884346, 0.008443325757980347, 0.015214742161333561, -0.010497684590518475, 0.0014285192592069507, -0.07227412611246109, -0.026218503713607788, 0.0744326263666153, -0.08314942568540573, -0.010828260332345963, 0.01717722974717617, 0.02914092317223549, -0.01962422952055931, -0.03539098799228668, -0.032919228076934814, -0.021451056003570557, 0.017309065908193588, 0.08271346241235733, 0.0606091246008873, 0.03175414726138115, -0.06357339024543762, -0.030299438163638115, -0.011194155551493168, 0.07052867114543915, 0.043227601796388626, 0.02896887995302677, 0.0605805329978466, -0.02249830588698387, 0.005560323130339384, 0.025749150663614273, 0.03829308971762657, -0.012876152992248535, 0.01550363376736641, 0.001106184790842235, -0.003312482265755534, -0.04088367894291878, -0.03857068344950676, -0.012356200255453587, 0.017664263024926186, -0.008175027556717396, -0.011490031145513058, 0.008959213271737099, 0.044823866337537766, 0.00652416842058301, 0.000133320179884322, -0.0478721521794796, 0.02830987237393856, -0.02589523233473301, -0.007310916669666767, -0.01799827627837658, -0.018741853535175323, 0.0022642475087195635, 0.10078698396682739, -0.0318138524889946, 0.015383978374302387, -0.02571045234799385, 0.05396155267953873, 0.005434492602944374, 0.0722385123372078, 0.01035340316593647, -0.016046401113271713, -0.020005950704216957, -0.03523297980427742, -0.0658109188079834, -0.0016648706514388323, -0.028055528178811073, 0.01995556242763996, 0.002054093172773719, -0.03554182127118111, -0.023318514227867126, 0.020984075963497162, 0.019261019304394722, 0.048854582011699677, 0.07036306709051132, 0.0016567670973017812, -0.051667358726263046, -0.004830481950193644, -0.08804689347743988, -0.09936255216598511, -0.01960640586912632, 0.006227998062968254, -0.017714736983180046, -0.026232486590743065, -0.0033471432980149984, -0.010732223279774189, -0.011767150834202766, -0.021450545638799667, -0.024277640506625175, -0.01657732203602791, -0.006478153169155121, 0.01862575300037861, 0.01669795624911785, -0.005045411642640829, 0.0022191882599145174, -0.02160322107374668, -0.008812205865979195, -0.016600588336586952, -0.03712714836001396, -0.005214299075305462, 0.008077416568994522, -0.018629994243383408, 0.004695647396147251, 0.01672794111073017, 0.020800365135073662, 0.02828330360352993, -0.017645781859755516, 0.02419472672045231, -0.03873346000909805, 0.023043593391776085, -0.0032801798079162836, 0.018075596541166306, -0.013970318250358105, 0.0399058498442173, -0.04203501716256142, 0.05528537184000015, 0.05606192722916603, -0.00777849555015564, -0.013767514377832413, -0.01990417204797268, 0.058107890188694, 0.009664425626397133, 0.02926577255129814, 0.0052618724294006824, 0.0144193721935153, 0.04070749133825302, -0.009548613801598549, 0.07604718208312988, -0.023960264399647713, 0.03920559585094452, 0.03326338529586792, 0.06788433343172073, 0.02588593401014805, 0.017899997532367706, -0.01984667032957077, -0.10115369409322739, -0.026289884001016617, 0.03665619716048241, 0.02128610387444496, -0.009627604857087135, -0.10111422836780548, 0.08698172122240067, -0.012154778465628624, 0.03309471532702446, -0.016307318583130836, 0.015879828482866287, -0.03362660855054855, -0.0629904493689537, 0.031585272401571274, -0.005232952535152435, -0.03531472384929657, -0.06881805509328842, -0.042649686336517334, 0.013468658551573753, -0.020889481529593468, -0.04378657042980194, 0.02631576918065548, 0.02279472164809704, 0.04860416799783707, -0.056602269411087036, -0.013408969156444073, -0.043611764907836914, 0.006160945165902376, 0.03875221312046051, 0.11728323251008987, 0.010804049670696259, -0.03144432231783867, -0.0007633454515598714, -0.049687761813402176, 0.03460973501205444, -0.03341947868466377, 0.014072516933083534, 0.002021142980083823, 0.001931216917000711, -0.054523076862096786, -0.013624008744955063, -0.01245378702878952, 0.027729198336601257, -0.03902643918991089, -0.011210532858967781, 0.021199997514486313, 0.019261077046394348, 0.009146814234554768, -0.01087100338190794, -0.015979429706931114, 0.012844039127230644, 0.013950941152870655, 0.002546134637668729, 0.04386253282427788, 0.010020755231380463, 0.02673061564564705, 0.03262324631214142, 0.019408516585826874, -0.010799188166856766, -0.006434909999370575, 0.039077676832675934, 0.012558232061564922, -0.005983118433505297, 0.013115549460053444, 0.015381017699837685, 0.008387964218854904, 0.030504554510116577, -0.024633508175611496, 0.016692597419023514, 0.01700524054467678, -0.023157062008976936, -0.0030666678212583065, 0.048167336732149124, -0.0021331869065761566, 0.03976627066731453, -0.14716237783432007, 0.029563991352915764, -0.021288074553012848, -0.005548954010009766, -0.06078292801976204, -0.03649209439754486, -0.045217838138341904, -0.0038434891030192375, -0.010272637940943241, -0.01670948602259159, -0.018724694848060608, 0.030188685283064842, -0.013816946186125278, 0.014980916865170002, 0.04649381339550018, -0.029171478003263474, -0.002181992633268237, -0.01369771733880043, -0.03361072018742561, -0.0203577671200037, -0.02311934344470501, -0.002348350826650858, -0.0407421849668026, 0.013268429785966873, 0.05935309827327728, -0.01920415088534355, -0.008959393948316574, 0.03598775714635849, 0.02053057961165905, -0.023424651473760605, 0.05813690647482872, -0.04821661859750748, -0.03196737542748451, -0.0768311619758606, 0.051377568393945694, -0.027668161317706108, 0.02057730220258236, -0.07249494642019272, -0.03476081043481827, 0.04768054187297821, 0.05976651981472969, -0.02417697012424469, -0.039330191910266876, 0.0770898163318634, 0.004761403426527977, 0.004736271221190691, -0.006031544413417578, 0.007915918715298176, 0.022452227771282196, 0.024063264951109886, 0.021404480561614037, 0.0036889384500682354, -0.029551589861512184, 0.015537298284471035, -0.015156890265643597, 0.029664436355233192, 0.006604914087802172, 0.0507638081908226, 0.01617187075316906, 0.01540851779282093, -0.026119235903024673, -0.024671446532011032, -0.011189847253262997, 0.03786659240722656, -0.028167972341179848, -0.022091571241617203, -0.015644336119294167, 0.0009873037924990058, -0.03578009456396103, -0.12104563415050507, 0.010407252237200737, 0.013457153923809528, 0.05410484969615936, -0.005934929475188255, 0.022450460121035576, -0.0025343154557049274, -0.014566007070243359, 0.024753006175160408, -0.023339299485087395, 0.0038824807852506638, -0.005250260699540377, -0.0234046820551157, 0.016812879592180252, 0.018223602324724197, -0.06542099267244339, 0.021394511684775352, -0.07133658975362778, 0.01596342958509922, -0.03115425631403923, 0.03408883139491081, -0.016610577702522278, -0.02011491358280182, -0.015696963295340538, 0.0026555436197668314, 0.04160328581929207, 0.008158971555531025, 0.006042972672730684, -0.029241476207971573, 0.013189912773668766, -0.053520139306783676, -0.022792847827076912, 0.027054427191615105, -0.0026134259533137083, 0.005625647492706776, 0.0058201211504638195, -0.02626890130341053, -0.00801339652389288, 0.01791749708354473, -0.023297948762774467, -0.08663301914930344, 0.032559722661972046, -0.01801014319062233, 0.02580488659441471, 0.08049961924552917, -0.03182629123330116, 0.03908909112215042, -0.05122487619519234, 0.009226299822330475, 0.020486980676651, -0.05500213801860809, 0.00320960721001029, 0.009814233519136906, 0.021200641989707947, 0.031219853088259697, 0.015659833326935768, -0.06465712189674377, 0.05294741317629814, -0.0014464501291513443, 0.011840506456792355, -0.03081434592604637, -0.01000642403960228, 0.003304593963548541, 0.04525424912571907, 0.04057576507329941, -0.016043646261096, -0.11770196259021759, -0.05315733700990677, 0.04406466335058212, -0.002215174026787281, -0.0050094095058739185, -0.065801702439785, -0.009693339467048645, -0.041563816368579865, 0.009201663546264172, 0.014658600091934204, -0.08083005249500275, 0.024943474680185318, -0.002300783060491085, -0.03086669370532036, 0.07145565003156662, 0.08845895528793335, 0.0006486871861852705, -0.02854948863387108, -0.029579738155007362, 0.1085350513458252, 0.05634719505906105, 0.023962879553437233, -0.020922070369124413, 0.054744817316532135, 0.010734240524470806, -0.02118854597210884, 0.022975172847509384, -0.03162233158946037, -0.08520608395338058, 0.017119793221354485, 0.03926939144730568, 0.04406432434916496, -0.023137817159295082, 0.017513209953904152, -0.027850845828652382, 0.03686898946762085, 0.050736963748931885, 0.06398767232894897, -0.018442213535308838, 0.010606520809233189, -0.023885950446128845, -0.012228954583406448, 0.06231784075498581, -0.07191116362810135, -0.017924129962921143, -0.023303696885704994, -0.006622788030654192, 0.021435173228383064, -0.0008626601193100214, 0.02261011116206646, 0.06300467252731323, 0.023628992959856987, -0.020962560549378395, -0.025312989950180054, 0.01359055656939745, 0.052470993250608444, -0.00019688518659677356, 0.01383165456354618, -0.050925206393003464, 0.04833623394370079, -0.05152259021997452, -0.08726341277360916, -0.06276197731494904, -0.03857655078172684, -0.03197244927287102, -0.1006927415728569, -0.005177229177206755, 0.05792386829853058, 0.05446295812726021, -0.005332633387297392, 0.035251859575510025, -0.002393870148807764, -0.016986602917313576, 0.047209952026605606, -0.05545671656727791, -0.07094842940568924, -0.04743266478180885, 0.014031694270670414, -0.03292803093791008, 0.0423455685377121, -0.04101288318634033, -0.029210859909653664, -0.016261015087366104, 0.03618420660495758, -0.0087350532412529, -0.027125274762511253, 0.04853840917348862, -0.010451575741171837, -0.01616925187408924, 0.04320053383708, 0.020879507064819336, 0.0422871969640255, 0.05566168576478958, -0.012349617667496204, -0.00041337040602229536, 0.04105854406952858, 0.044474128633737564, -0.050768736749887466, -0.04197973385453224, 0.05055375397205353, -0.04948747530579567, 0.001685148337855935, 0.02907014824450016, -0.022021202370524406, 0.026973651722073555, -0.05010557174682617, -0.021119466051459312, 0.03159143030643463, 0.04028252139687538, 0.0009355745860375464, -0.0014271846739575267, 0.015576787292957306, 0.00898781232535839, -0.013641450554132462, -0.018343670293688774, 0.012254543602466583, 0.010439789853990078, -0.023315226659178734, 0.011916524730622768, 0.015537241473793983, -0.028219526633620262, 0.016360687091946602, -0.05596795305609703, 0.04453768581151962, -0.012095659971237183, -0.03335447236895561, 0.0698327124118805, 0.00869884341955185, -0.05493168905377388, 0.05085277557373047, -0.01308573316782713, 0.021297484636306763, -0.029912155121564865, 0.05441740155220032, 0.04172712191939354, -0.025059238076210022, -0.01597297564148903, -0.02795831859111786, 0.09500885009765625, 0.01743757538497448, -0.010220005176961422, 0.0019677518866956234, -0.020770343020558357, -0.03274242579936981, 0.009655582718551159, 0.042109351605176926, 0.01053461991250515, -0.009059712290763855, 0.028211884200572968, -0.012623999267816544, 0.020985113456845284, 0.02427884191274643, -0.019635159522294998, -0.0425984188914299, -0.0427757203578949, 0.038920238614082336, 0.02248706854879856, -0.003713571932166815, -0.0003643109812401235, 0.001052833627909422, -0.016188429668545723, -0.005998339504003525, 0.022001726552844048, 0.07628660649061203, -6.314575655044859e-33, -0.009438611567020416, -0.047592878341674805, 0.04121454805135727, 0.030517702922225, -0.023038266226649284, -0.0121310381218791, 0.05078547075390816, -0.01474701426923275, -0.01373347733169794, -0.018023716285824776, 0.026377985253930092, 0.02275850810110569, 0.005709389690309763, -0.00480922544375062, -0.0033618465531617403, -0.005424886010587215, 0.04765927046537399, 0.013061825186014175, 0.009554353542625904, -0.013809435069561005, -0.09758182615041733, 0.007735587656497955, -0.026950504630804062, -0.01072021760046482, -0.041654981672763824, 0.017640801146626472, -0.03720640391111374, 0.006880139000713825, -0.025744929909706116, 0.05607574060559273, 0.005595460068434477, -0.00886987242847681, -0.003789811162278056, -0.015764465555548668, 0.006162087433040142, 0.06618054211139679, -0.12170062214136124, -0.014019947499036789, -0.005078814458101988, -0.03134670481085777, -0.01577957719564438, -0.02041541412472725, 0.0044975257478654385, 0.030593395233154297, 0.005439406260848045, 0.01169098075479269, 0.018485208973288536, 0.013372344896197319, -0.013183662667870522, -0.0006099768215790391, -0.08214472979307175, 0.0011358505580574274, -0.004277593921869993, 0.011097113601863384, 0.04022335261106491, -0.03416602313518524, 0.005833779461681843, -0.012329007498919964, -0.060002733021974564, -0.014856684021651745, -0.07426361739635468, 0.01537001971155405, -0.010601604357361794, 0.03525155782699585, -0.01447050180286169, -0.034327857196331024, -0.09645714610815048, 0.07020781934261322, -0.0010287126060575247, -0.0034941313788294792, -0.018656523898243904, 0.021532850340008736, -0.0770358070731163, -0.04994262382388115, 0.04104701429605484, 0.005417023319751024, -0.04447583109140396, 0.040302909910678864, 0.11838340014219284, 0.044589824974536896, -0.006563956383615732, -0.004221506882458925, -0.004419643431901932, 0.029727600514888763, 0.022058142349123955, 0.018647322431206703, -0.035940129309892654, 0.021814219653606415, -0.009944876655936241, 0.040802549570798874, -0.01929550990462303, -0.00952077005058527, -0.03296603262424469, -0.01112433336675167, 0.07714024931192398, 0.0025108137633651495, 0.022883573547005653, -0.012343005277216434, 0.0032267409842461348, -0.009079566225409508, -0.06600531935691833, 0.009014924988150597, 0.016209006309509277, 0.035480864346027374, 0.01891629956662655, 0.021957283839583397, 0.007096532266587019, -0.0036286660470068455, -0.037646256387233734, 0.014487196691334248, 0.020020710304379463, 0.04081364721059799, 0.007291768211871386, 0.024340035393834114, -0.02456117980182171, -0.017622437328100204, 0.014087987132370472, -0.006767126731574535, -0.04259535297751427, -0.06253097206354141, 0.004151472356170416, 0.019553551450371742, -0.004947200883179903, -0.05643900856375694, -0.046049851924180984, -0.023900164291262627, -0.005752997472882271, 0.02858377806842327, 0.07602818310260773, 0.014930477365851402, -0.010090017691254616, -0.02077856846153736, 3.0777960091654677e-07, 0.025111952796578407, 0.030858995392918587, 9.498907456872985e-05, 0.019339758902788162, 0.01686403527855873, -0.07006609439849854, 0.003618014045059681, 0.030966440215706825, -0.014839809387922287, 0.03306541219353676, 0.004762955475598574, 0.011520935222506523, -0.01421505119651556, -0.020097587257623672, 0.01271374337375164, -0.11788392812013626, -0.07399913668632507, 0.03710580989718437, -0.028919171541929245, 0.06016448140144348, 0.03708779811859131, 0.04323049262166023, 0.007272216957062483, 0.004697400610893965, -0.020871922373771667, 0.03121807985007763, 0.005490586627274752, 0.02344333566725254, 0.022223487496376038, 0.03807181864976883, 0.07882506400346756, 0.004598830360919237, 0.0035966525319963694, -0.0030583771876990795, 0.038309842348098755, -0.00576771842315793, 0.0010895377490669489, 0.03321497514843941, 0.006967061664909124, 0.05280496925115585, 0.0034123295918107033, -0.008542305789887905, 0.026605602353811264, 0.0449407696723938, 0.005423542112112045, -0.03153461962938309, 0.01123963575810194, -0.012122133746743202, 0.01879175379872322, -0.055587999522686005, 0.017133833840489388, 0.04418448731303215, 0.04766964539885521, -0.024337181821465492, 0.052484817802906036, -0.01753021962940693, -0.05134620517492294, 0.014586452394723892, 0.046839743852615356, -0.015470363199710846, -0.0496993213891983, -0.03177984058856964, -0.0005055608926340938, -0.013802575878798962, 0.0203264057636261, -0.04963897168636322, -0.017328929156064987, 3.0157709350641477e-34, -0.0019000981701537967, -0.03384789451956749, -0.06558920443058014, 0.0246734619140625, -0.010809631086885929, -0.039285723119974136, -0.022577006369829178, -0.012623935006558895, -0.02806132659316063, -0.027260418981313705, -0.0019696857780218124], "decbaa19-7313-463e-babe-625487666fb0": [0.0379081554710865, -0.010558480396866798, -0.02813570387661457, 0.013649259693920612, 0.016123982146382332, 0.024869615212082863, 0.021860182285308838, -0.030097762122750282, -0.003180774161592126, 0.009249149821698666, 0.016121558845043182, -0.059863921254873276, 0.0027306450065225363, 0.05593273416161537, -0.032796069979667664, -0.029853055253624916, 0.00982596818357706, -0.01574058271944523, -0.01239766925573349, -0.002695439150556922, 0.04955987259745598, 0.015227043069899082, -0.016573496162891388, 0.011322341859340668, -0.047517385333776474, -0.02712920308113098, 0.0053353076800704, 0.0644402801990509, 0.03452227637171745, 0.0002454440400470048, 0.009879793040454388, 0.024891186505556107, -0.01577162742614746, 0.003637302201241255, 2.5460806227783905e-06, 0.026986414566636086, -0.011165088973939419, -0.00889887660741806, 0.021884644404053688, -0.03650325536727905, 0.017967434599995613, -0.056785330176353455, 0.004362087231129408, 0.023170869797468185, -0.010610481724143028, 0.016608651727437973, 0.003724672831594944, -0.0021500003058463335, 0.006651314906775951, 0.008859368041157722, 0.014662884175777435, 0.0068771718069911, -0.0702308639883995, -0.0290065985172987, 0.07888922840356827, -0.10370635986328125, -0.02035130374133587, 0.053843118250370026, 0.007156588602811098, -0.014260370284318924, -0.01763042062520981, -0.04253262281417847, -4.283275120542385e-05, -0.0071488856337964535, 0.11482562124729156, 0.056679241359233856, 0.06668461114168167, -0.04474387317895889, -0.005346083082258701, 0.014031071215867996, 0.06262408196926117, 0.011479479260742664, 0.03880450129508972, 0.027141207829117775, 0.023103784769773483, -0.02893991954624653, 0.02290523052215576, 0.05840917304158211, -0.014757844619452953, -0.00986032746732235, 0.002117930678650737, -0.005761866923421621, -0.05646820738911629, -0.005517504643648863, 0.008885111659765244, 0.028641361743211746, -0.03502282500267029, -0.03227304667234421, 0.004493632819503546, 0.05351812392473221, 0.004970531444996595, 0.017995420843362808, -0.03925227001309395, 0.0551857091486454, -0.02639179863035679, -0.00815518293529749, -0.01441274955868721, -0.03583940118551254, -0.013360985554754734, 0.05055328086018562, -0.03482477739453316, 0.02605552040040493, 0.014708706177771091, 0.035007964819669724, 0.0016902891220524907, 0.053206462413072586, 0.0230241846293211, 0.010173901915550232, -0.010975620709359646, -0.027566589415073395, -0.027460869401693344, -0.0024825173895806074, -0.02306537888944149, -0.007349839899688959, 0.010808232240378857, -0.00849948637187481, -0.015470162965357304, 0.057627685368061066, 0.039602749049663544, 0.02163875475525856, 0.08038636296987534, 0.006468271370977163, -0.04331670328974724, -0.000832883408293128, -0.06127190217375755, -0.0957733541727066, 0.005590417422354221, 0.024370931088924408, -0.017025945708155632, 0.012254318222403526, 0.0072353193536400795, -0.0024367906153202057, -0.02974238432943821, 0.031178101897239685, -0.009281209670007229, -0.02005819045007229, -0.012031253427267075, 0.03228781372308731, 0.005345992278307676, 3.8135072827572e-05, 0.015618768520653248, 0.011863332241773605, -0.0014947587624192238, 0.00255674053914845, -0.016026843339204788, 0.0017165063181892037, -0.020336752757430077, 0.01283810380846262, 0.008513813838362694, 0.019073346629738808, 0.009250539354979992, -0.020979411900043488, -0.007115325890481472, 0.05070539191365242, -0.02569151297211647, 0.03633427619934082, -0.006399979814887047, 0.00994457583874464, 0.014178439974784851, 0.058308739215135574, -0.03510559722781181, 0.09341534227132797, 0.03218463808298111, 0.012494537979364395, -0.00708173168823123, -0.01673651486635208, 0.023856833577156067, -0.015045867301523685, -0.015956176444888115, -0.0009347722516395152, 0.0237377118319273, 0.02906818687915802, -0.00630768109112978, 0.09695622324943542, -0.035921916365623474, -0.042520295828580856, 0.05498437583446503, 0.03620981425046921, 0.03900745138525963, 0.012015065178275108, -0.05326496809720993, -0.10702445358037949, -0.031593453139066696, 0.07434618473052979, 0.04256283491849899, 0.0072196656838059425, -0.06814294308423996, 0.09764567017555237, -0.019179601222276688, 0.05040903389453888, 0.011157851666212082, 0.007303484249860048, -0.06867734342813492, -0.03957230597734451, -0.00377867603674531, 0.005236237775534391, -0.050125788897275925, -0.058600760996341705, -0.053071483969688416, -0.0012482727179303765, -0.0066843219101428986, 0.00308226072229445, 0.04907400161027908, 0.021253231912851334, 0.018604807555675507, -0.04372068867087364, -0.0055636754259467125, -0.020207975059747696, 0.020409608259797096, 0.020040111616253853, 0.08255995810031891, 0.0058470177464187145, -0.05330909416079521, 0.01579790934920311, -0.050431989133358, 0.05203350633382797, -0.03671729564666748, 0.005295516923069954, -0.02256179042160511, 0.004586825147271156, -0.060679130256175995, -0.010838051326572895, -0.030484186485409737, 0.03732673451304436, -0.007086160592734814, 0.0027362005785107613, 0.024778876453638077, 0.002204613294452429, 0.013439269736409187, 0.018173327669501305, -0.03552490100264549, 0.03576330095529556, -0.0018070089863613248, -0.01313827745616436, 0.02708492986857891, 0.022225094959139824, -0.0361478254199028, 0.0008701197803020477, 0.009192423895001411, -0.014700029045343399, -0.03291657567024231, 0.013633782044053078, -0.017409712076187134, 0.0038691239897161722, 0.030180074274539948, 0.030452387407422066, -0.011112848296761513, 0.009739819914102554, -0.006987159606069326, 0.02385522797703743, -0.01892378367483616, -0.011768539436161518, 0.007480420637875795, 0.003930190112441778, 0.004332530777901411, 0.017385128885507584, -0.09250280261039734, 0.014605351723730564, -0.021501213312149048, 0.02114863321185112, -0.007350784260779619, -0.0005095650558359921, -0.031754933297634125, 0.0030685286037623882, 0.03894418478012085, -0.01274128258228302, -0.019559703767299652, 0.01095297746360302, -0.029214870184659958, 0.02000449411571026, 0.026661336421966553, 1.265822629648028e-05, 0.029241105541586876, -0.01923229917883873, -0.049463097006082535, -0.018438240513205528, -0.002810828620567918, 0.05520321801304817, -0.032632555812597275, 0.03415994346141815, 0.07251506298780441, -0.002629706170409918, 0.006067093927413225, 0.03385518863797188, -0.0006581886555068195, -0.024744711816310883, 0.034709248691797256, -0.06129045411944389, -0.031257372349500656, -0.06899050623178482, 0.06238872930407524, -0.022512471303343773, 0.017326919361948967, -0.046562910079956055, -0.03044244833290577, 0.0013340525329113007, 0.06322275847196579, 0.0002630326780490577, -0.03705049306154251, 0.0413651317358017, 0.02241687849164009, 0.01255305390805006, 0.0034783596638590097, -0.0019267614698037505, 0.03957308456301689, 0.03195660561323166, 0.048209935426712036, 0.004768395330756903, -0.030169127508997917, 0.03760874643921852, -0.004405258689075708, 0.02685769461095333, 0.020877066999673843, 0.045532237738370895, 0.017158549278974533, 0.04980511963367462, 0.013816448859870434, -0.05795782059431076, -0.010941346175968647, 0.04185520112514496, -0.039363887161016464, -0.007007030304521322, -0.03960786014795303, 0.00171776267234236, -0.05644533410668373, -0.1086825430393219, -0.0179523304104805, -0.02721979096531868, 0.014817357063293457, -0.028421197086572647, 0.017344612628221512, 0.0029932809993624687, -0.02870018593966961, -0.017946574836969376, -0.04560539126396179, -0.005258871242403984, 0.02924124151468277, -0.041265469044446945, -0.009654631838202477, -0.014525357633829117, -0.07877042144536972, 0.039040230214595795, -0.0707176998257637, 0.02119462564587593, -0.04057972505688667, 0.037448637187480927, -0.0017175865359604359, -0.00746655510738492, -0.015936268493533134, 0.01614217460155487, 0.05040430277585983, -0.014824519865214825, -0.004026548005640507, -0.007862900383770466, 0.01795966364443302, -0.04561689868569374, -0.054163333028554916, -0.003119944827631116, -0.03200017288327217, -0.011192770674824715, 0.01629936508834362, -0.024372048676013947, 0.018696174025535583, 0.019607899710536003, -0.009584927000105381, -0.07993029057979584, 0.004712244961410761, 0.005857178010046482, 0.057668332010507584, 0.06736639887094498, -0.047969475388526917, 0.041905105113983154, -0.023683743551373482, 0.026936208829283714, 0.02747633308172226, -0.0606904998421669, -0.02488400600850582, 0.009771023876965046, -0.01207579206675291, 0.008476884104311466, 0.02695401757955551, -0.03965570405125618, 0.06970825046300888, -0.03991321474313736, 0.013190432451665401, -0.017246026545763016, -0.008175099268555641, -0.01674504764378071, 0.06331020593643188, -0.02045324631035328, 0.001022309996187687, -0.0897439643740654, -0.06090522184967995, 0.02059866674244404, -0.007026727311313152, -0.03208121284842491, -0.08102134615182877, -0.01131928525865078, -0.014299379661679268, -0.001206643762998283, 0.031101221218705177, -0.04530826956033707, 0.012302017770707607, -0.02552015334367752, -0.05892755463719368, 0.03484541177749634, 0.09352117776870728, 0.005761199630796909, -0.00794521439820528, -0.013926452957093716, 0.0799674317240715, 0.05336963012814522, 0.014704140834510326, -0.013770406134426594, 0.011194257996976376, -0.033591628074645996, 0.002939703408628702, 0.0045550111681222916, -0.02304629608988762, -0.043431274592876434, 0.040270186960697174, 0.03991921991109848, -0.006505691446363926, -0.026342660188674927, 0.0050170947797596455, -0.019210271537303925, 0.0851610004901886, 0.055212680250406265, 0.03586730733513832, -0.019818812608718872, 0.012952662073075771, 0.023155005648732185, -0.014522982761263847, 0.07190839946269989, -0.06603818386793137, -0.019390180706977844, 0.006517430301755667, -0.008418342098593712, 0.04492409527301788, -0.0007368343649432063, -0.000431763066444546, 0.0792926698923111, 0.0032306478824466467, -0.014541133306920528, -0.04457221180200577, -0.02090410515666008, 0.004983994644135237, 0.013222170993685722, -0.0220448337495327, -0.046134550124406815, 0.019524505361914635, -0.04854702576994896, -0.1119452565908432, -0.05803188681602478, -0.04005108401179314, 0.00023772656277287751, -0.07868313044309616, 0.0012140925973653793, 0.05341867357492447, 0.019075017422437668, -0.007983344607055187, 0.024626517668366432, -0.015607635490596294, -0.002038358710706234, 0.02607075124979019, -0.055190958082675934, -0.036937274038791656, -0.031206689774990082, -0.0047098188661038876, -0.03584617003798485, 0.0840638279914856, -0.032560333609580994, -0.004510416649281979, -0.031061016023159027, 0.053065184503793716, -0.016232864931225777, -0.020876910537481308, -0.005827928427606821, -0.05321001634001732, -0.00855334848165512, 0.005434420425444841, -0.021120576187968254, 0.020744943991303444, -0.0005519294645637274, -0.03184167295694351, 0.0016960127977654338, 0.025906236842274666, 0.011222343891859055, -0.04094701260328293, -0.020289268344640732, 0.04944905266165733, -0.029901571571826935, 0.015612659975886345, -0.0038900391664355993, -0.06457637995481491, 0.028014395385980606, -0.029510414227843285, 0.010099795646965504, 0.028027571737766266, 0.03434640169143677, -0.013218206353485584, 0.021875949576497078, -0.008094553835690022, -0.03259551152586937, 0.016818739473819733, -0.004746004473417997, 0.007481263019144535, 0.018557505682110786, -0.03234222158789635, -0.009973376989364624, 0.015500702895224094, -0.008031170815229416, 0.02727307192981243, -0.05235246196389198, 0.026396775618195534, -0.027514537796378136, -0.036870431154966354, 0.04201266169548035, -0.006729488726705313, -0.05416889488697052, 0.055857155472040176, -0.00031807925552129745, 0.025825871154665947, -0.0650944858789444, 0.037541814148426056, 0.04508674889802933, -0.026345856487751007, -0.0021012567449361086, -0.04025409370660782, 0.07871506363153458, 0.02532389387488365, -0.04069264605641365, 0.005709083750844002, -0.011540010571479797, -0.037048716098070145, 0.05174756422638893, 0.08125994354486465, -0.008350159041583538, -0.03275297209620476, 0.02127999998629093, -0.016758685931563377, 0.05372990295290947, 0.040702417492866516, -0.03397039324045181, -0.03877409175038338, -0.04355734586715698, 0.01288700383156538, 0.015520707704126835, -0.02257196232676506, -0.0002867536386474967, -0.022661427035927773, -0.017950961366295815, 0.011626847088336945, -0.009428201243281364, 0.03430556133389473, -6.357030102892744e-33, -0.023251712322235107, -0.053074225783348083, 0.04535985738039017, 0.03363947942852974, -0.00604229373857379, -0.002320174826309085, 0.048346903175115585, -0.0016759808640927076, -0.04804060980677605, -0.03458133339881897, 0.01351416390389204, 0.030598144978284836, -0.005465971305966377, -0.0067867133766412735, 0.029575487598776817, 0.012612701393663883, 0.04432026296854019, -0.027835043147206306, 0.020090756937861443, 0.0215647853910923, -0.07875096052885056, 0.018944213166832924, -0.00991525873541832, -0.01424485258758068, -0.017192067578434944, -0.012893060222268105, -0.013605241663753986, 0.03401254862546921, 0.0031565865501761436, 0.002339575905352831, 0.0023868305142968893, -0.06676662713289261, 0.005640605464577675, 0.016926538199186325, 0.010912769474089146, 0.10065808147192001, -0.09126462042331696, -0.019879184663295746, -0.01966174878180027, -0.023957615718245506, 0.00179561588447541, -0.011037050746381283, -0.01952383667230606, 0.012552665546536446, 0.0221592728048563, -0.005355797708034515, 0.008592809550464153, 0.036316003650426865, 0.006445347797125578, 0.010546881705522537, -0.057182107120752335, 0.011510556563735008, 0.0026454664766788483, -0.004009166266769171, 0.0552804134786129, -0.019302358850836754, 0.0019487247336655855, -0.058674704283475876, -0.01788480579853058, 0.011824391782283783, -0.05732789263129234, -0.01946234330534935, 0.000669079483486712, 0.03051106259226799, -0.03261122480034828, -0.017353473231196404, -0.06697739660739899, 0.13474544882774353, 0.006118257064372301, 0.024288535118103027, -0.027827579528093338, 0.03219841793179512, -0.09420374035835266, -0.054534219205379486, -0.027600759640336037, 0.04814854636788368, -0.009907188825309277, 0.039810288697481155, 0.12972332537174225, 0.05939709395170212, -0.0376482717692852, 0.022248348221182823, -0.03972378000617027, 0.005595035385340452, 0.060971058905124664, -0.013499479740858078, -0.015799032524228096, -0.0022804338950663805, -0.026792926713824272, 0.03518238663673401, -0.046062275767326355, -0.03261987492442131, -0.027376221492886543, 0.016860220581293106, 0.08534727245569229, 0.0032305256463587284, 0.030567850917577744, -0.03951191157102585, -0.002352312905713916, -0.023430747911334038, -0.09898272901773453, 0.00768634770065546, 0.05118217691779137, 0.022046195343136787, -0.0073598045855760574, 0.029258012771606445, 0.02161792293190956, -0.026982203125953674, -0.020913921296596527, 0.009874047711491585, 0.030286839231848717, 0.026884468272328377, 0.00038164155557751656, 0.0013491753488779068, -0.05023204907774925, -0.011130930855870247, -0.007116188295185566, 0.019168710336089134, -0.02489662729203701, -0.08015433698892593, -0.0016205465653911233, 0.0192156620323658, -0.015438087284564972, -0.054030679166316986, -0.05019376054406166, -0.03484072908759117, -0.005614451598376036, 0.012906234711408615, 0.09464965015649796, 0.012601370923221111, -0.017970101907849312, -0.044905707240104675, 3.266120245370985e-07, 0.028687868267297745, 0.01705298386514187, 0.001743378583341837, 0.05427684262394905, 0.025928858667612076, -0.06618863344192505, 0.000985276885330677, 0.029346536844968796, -0.012339352630078793, 0.03336289897561073, 0.03183223307132721, 0.0024615107104182243, -0.025686178356409073, -0.03610162064433098, 0.00977430958300829, -0.15173743665218353, -0.04501257464289665, -0.013561415486037731, -0.015817683190107346, 0.020794184878468513, 0.01931125670671463, 0.0178050734102726, 0.018046680837869644, 0.001580512966029346, -0.03868430480360985, -0.01749645173549652, -0.018781695514917374, 0.0497073158621788, 0.014200251549482346, 0.059673793613910675, 0.07454732060432434, -0.030174000188708305, -0.01862015202641487, 0.05325927212834358, 0.04996757209300995, -0.04253426566720009, 0.005914534442126751, 0.005580443888902664, 0.02130061574280262, 0.06768857687711716, 0.021724870428442955, 0.016009479761123657, 0.011781284585595131, 0.008283702656626701, 0.0010271656792610884, -0.01765372045338154, 0.005090695805847645, 0.02531774900853634, 0.03506366163492203, -0.05165804550051689, 0.0021247481927275658, 0.05598023533821106, 0.07861442863941193, -0.02034095861017704, 0.038815777748823166, -0.02591664530336857, -0.04906826466321945, 0.030845869332551956, 0.03006095439195633, 0.014665151946246624, -0.0334792286157608, -0.053653959184885025, 0.014502686448395252, 0.013859144411981106, 0.03143932297825813, -0.009175518527626991, -0.024813292548060417, 3.220474551887714e-34, -0.024239571765065193, -0.009164221584796906, -0.0770261362195015, -0.006392722018063068, 0.01242421381175518, -0.026761293411254883, 0.0026458536740392447, 8.142971637425944e-05, 0.0014704233035445213, -0.020377162843942642, -0.008162908256053925], "e8cd1844-095b-484b-9dad-c95abf3c4373": [0.006405731197446585, 0.0176867488771677, -0.03448832035064697, -0.02857339382171631, -0.00010475230374140665, 0.026913844048976898, -0.003157257102429867, 0.013460135087370872, 0.02983976900577545, 0.00843122974038124, 0.020405225455760956, -0.012142680585384369, -0.00023004881222732365, 0.08391150087118149, -0.04431023821234703, 0.02775615267455578, 0.03940553218126297, -0.008200549520552158, -0.015283557586371899, -0.010162091813981533, 0.027222638949751854, 0.016621727496385574, -0.048008669167757034, 0.0011517377570271492, -0.001931958831846714, -0.03169430047273636, -0.0067674885503947735, 0.005036766640841961, 0.02244143933057785, -0.00700825359672308, 0.012818489223718643, 0.03645271062850952, -0.0073687052354216576, 0.01214600633829832, 2.5709068722790107e-06, 0.011078261770308018, 0.004089553840458393, 0.014356622472405434, -0.02673996426165104, -0.030394036322832108, 0.029835300520062447, -0.0070932041853666306, 0.004705406259745359, 0.029469579458236694, -0.02472109906375408, 0.04185716062784195, 0.03895898908376694, 0.003807797096669674, -0.015377162024378777, 0.028698857873678207, 0.002334992168471217, 0.008462918922305107, -0.024655617773532867, -0.009327844716608524, 0.08237891644239426, -0.04201117530465126, -0.024907974526286125, 0.04268808662891388, 0.07548234611749649, 0.008991969749331474, 0.009923425503075123, 0.005719965789467096, 0.005445707589387894, 0.041151128709316254, 0.13380680978298187, 0.11551682651042938, 0.05513906478881836, -0.1104113832116127, -0.01756877824664116, -0.02103937231004238, 0.0656466856598854, 0.007972925901412964, 0.02557796612381935, 0.031115181744098663, -0.025125132873654366, -0.04386577755212784, 0.0025565638206899166, -0.0010216936934739351, 0.0150142265483737, 0.011474532075226307, -0.018997952342033386, -0.048715196549892426, -0.05413676053285599, 0.022919826209545135, 0.04535657539963722, 0.035250451415777206, -0.0009469453361816704, -0.0010346134658902884, 0.007418649271130562, 0.001607698854058981, 0.08184543997049332, 0.0173259936273098, -0.0166738573461771, 0.03660424053668976, 0.0075806728564202785, -0.03174261748790741, 0.021929778158664703, 0.03215906769037247, 0.03361471742391586, 0.030241359025239944, -0.08205536007881165, 0.025753378868103027, -0.009737780317664146, 0.04628877341747284, -0.015667561441659927, 0.05168816074728966, 0.02154446765780449, -0.029323000460863113, 0.021180808544158936, 0.04662594944238663, -0.05775409936904907, 0.017442425712943077, -0.06148860976099968, 0.004188586957752705, 0.021076660603284836, -0.020384276285767555, 0.01639695279300213, 0.06317704170942307, 0.07088246196508408, 0.01678754948079586, 0.06917517632246017, -0.0004542710375972092, -0.05187976732850075, -0.014878050424158573, -0.0771494060754776, -0.12216339260339737, 0.002494756132364273, 0.005101215559989214, -0.042651575058698654, -0.021808167919516563, -0.02158847451210022, -0.01835080236196518, -0.02452748268842697, -0.011514910496771336, -0.007956613786518574, 0.012247438542544842, -0.006168589927256107, -0.016533520072698593, 0.0036262141074985266, 0.014459503814578056, 0.017735686153173447, 0.011901021003723145, -0.026764435693621635, -0.0003815637610387057, -0.037060316652059555, 0.013766082935035229, 0.023159028962254524, 0.003514067269861698, -0.0048888367600739, 0.02424369566142559, 0.011336078867316246, 0.014488927088677883, -0.04341690242290497, 0.0016164497938007116, -0.007664946373552084, 0.02811068296432495, -0.0024729883298277855, 0.035706959664821625, -0.033823829144239426, 0.03725479543209076, -0.05604510009288788, 0.020492753013968468, 0.0628502145409584, 0.025571605190634727, 0.019010066986083984, -0.02872896008193493, 0.07858521491289139, 0.0011673170374706388, -0.007342474535107613, 0.01621738262474537, -0.005661210510879755, 0.010136325843632221, -0.00973568670451641, 0.099574513733387, -0.024856440722942352, 0.0006456516566686332, 0.010170917958021164, 0.003013466252014041, -0.003061379073187709, 0.010304835624992847, -0.05909438803792, -0.14619414508342743, -0.014165222644805908, 0.05922161787748337, -0.02643725648522377, -0.0049443370662629604, -0.03759106621146202, 0.0757395550608635, -0.025997677817940712, 0.04158542677760124, -0.009272676892578602, -0.020925121381878853, -0.035520654171705246, -0.05321493744850159, 0.020029563456773758, -0.015335402451455593, -0.018634775653481483, -0.08048121631145477, -0.010211178101599216, -0.00895222369581461, -0.043197810649871826, -0.029939822852611542, 0.019028810784220695, 0.043181344866752625, 0.020331470295786858, -0.042151905596256256, -0.006131457164883614, -0.0191380362957716, 0.01458016037940979, 0.026683518663048744, 0.03980273753404617, -0.006816464941948652, -0.02542816288769245, -0.014296069741249084, -0.02723114751279354, 0.020683271810412407, -0.02740611881017685, -0.015371286310255527, 0.027879774570465088, 0.004571984056383371, -0.036925967782735825, -0.056166380643844604, -0.037755705416202545, 0.009687578305602074, -0.016354991123080254, -0.0132048474624753, 0.03236917406320572, -0.006198480725288391, 0.05117039754986763, 0.0050241583958268166, -0.027279522269964218, 0.004691132344305515, 0.019844217225909233, -0.017636392265558243, -0.0005145678878761828, 0.01091170683503151, 0.030820809304714203, 0.004405766259878874, 0.01074470579624176, -0.06519133597612381, -0.03453851491212845, 0.01793145388364792, 0.012873821891844273, 0.03201241418719292, 0.04693368822336197, 0.00983318593353033, -0.01946342922747135, 0.025661354884505272, -0.024334367364645004, -0.022754283621907234, 0.040903110057115555, -0.019506825134158134, 0.028824320062994957, 0.04074324294924736, -0.0014661225723102689, 0.006300314795225859, -0.13282212615013123, 0.005281414836645126, -0.06175929307937622, -0.004562816582620144, 0.005825201980769634, -0.040402449667453766, -0.01794978231191635, -0.008569310419261456, 0.030958620831370354, -0.027472825720906258, -0.0016856788424775004, -0.032188937067985535, -0.023328058421611786, 0.00687265582382679, 0.01610511727631092, -0.027149707078933716, -0.0038579523097723722, -0.02078605815768242, -0.033813610672950745, 0.019624438136816025, 0.0022805945482105017, -0.018659010529518127, -0.04731832817196846, 0.023435261100530624, 0.03272281587123871, -0.013502144254744053, -0.004510950762778521, -0.006330440752208233, -0.018147986382246017, -0.016803350299596786, 0.026354165747761726, -0.062130823731422424, 0.004177378490567207, -0.06388683617115021, 0.053231045603752136, -0.024004634469747543, 0.021870383992791176, -0.0296099241822958, -0.011678471229970455, 0.010414734482765198, 0.050547219812870026, -0.05384012311697006, -0.009633569978177547, 0.07268691807985306, -0.029152657836675644, 0.025733964517712593, -0.012048971839249134, -0.012675926089286804, 0.022930122911930084, 0.06324490904808044, 0.04059944301843643, -0.038657136261463165, -0.02044045738875866, -0.016706109046936035, -0.020782852545380592, 0.02510920539498329, -0.03229856863617897, 0.05224080756306648, -0.011601991020143032, 0.028449999168515205, 0.021900417283177376, -0.01671229675412178, 0.014342468231916428, 0.019448334351181984, -0.010689148679375648, -0.03623369336128235, -0.021900977939367294, -0.029837049543857574, -0.03504813835024834, -0.1303483247756958, -0.029142972081899643, -0.014760958962142467, 0.014021334238350391, -0.0006491956301033497, 0.005775188095867634, 0.0082947863265872, -0.0327829010784626, 0.05424938350915909, -0.029737748205661774, -0.042775992304086685, 0.013818955048918724, -0.039684150367975235, 0.0368935689330101, 0.013892682269215584, -0.04307202994823456, 0.048757199198007584, -0.07595362514257431, 0.004352096002548933, -0.07536318153142929, 0.004233118612319231, -0.011270558461546898, 0.0035691799130290747, -0.02548716962337494, 0.017752883955836296, 0.027798540890216827, 0.038678791373968124, 0.024835001677274704, -0.024774815887212753, 0.009399162605404854, -0.06274806708097458, -0.048449352383613586, 0.015337898395955563, 0.015456454828381538, 0.010205893777310848, 0.017717551440000534, -0.05353621765971184, 0.06952819228172302, 0.017677655443549156, -0.040371447801589966, -0.07811005413532257, 0.026855461299419403, -0.03873750567436218, 0.03590377792716026, 0.05331854522228241, -0.053437940776348114, 0.05862806737422943, -0.030285881832242012, 0.044275540858507156, 0.03545031696557999, -0.05974889546632767, -0.008803551085293293, 0.055483587086200714, 0.014941290952265263, -0.001126398565247655, -0.00720483623445034, -0.10831496119499207, 0.0375002846121788, -0.01900969073176384, 0.007862253114581108, -0.022641709074378014, 0.0027792088221758604, 0.003631771309301257, 0.052200861275196075, -0.0059153251349925995, 0.0022010095417499542, -0.09361748397350311, -0.060099583119153976, 0.00034195324406027794, -0.010555463843047619, -0.013373341411352158, -0.04109979793429375, -0.020696504041552544, -0.01121201179921627, 0.02874433435499668, -0.007388211786746979, -0.051106806844472885, 0.007247244939208031, 0.03542231023311615, 0.006132788956165314, 0.09036796540021896, 0.059906188398599625, 0.003830924164503813, -0.030679259449243546, 0.0051044803112745285, 0.05841996148228645, 0.04494569078087807, 0.025061344727873802, -0.029095817357301712, 0.012571723200380802, -0.04831824079155922, 0.0020657533314079046, 0.03226691111922264, 0.023128502070903778, -0.07185061275959015, -0.03749993070960045, -0.0019082039361819625, 0.020794663578271866, -0.021653512492775917, 0.003790514310821891, -0.019673101603984833, 0.07815838605165482, 0.039946120232343674, 0.028141511604189873, -0.03177836537361145, -0.009524213150143623, 0.0468951091170311, -0.004521786235272884, 0.09655633568763733, -0.035145506262779236, -0.03925125300884247, -0.01756221242249012, 0.02137380838394165, 0.0020024096593260765, -0.006555359344929457, 0.027524003759026527, 0.04022294655442238, 0.018520936369895935, -0.01145466323941946, -0.04132207855582237, 0.0011692231055349112, 0.0527719110250473, 0.0009089171071536839, 0.03779855743050575, -0.020012129098176956, 0.0219681765884161, -0.09383686631917953, -0.08125105500221252, -0.0584716871380806, -0.09310231357812881, -0.03791242092847824, 0.0011660580057650805, 0.016503620892763138, 0.031024737283587456, 0.03604956716299057, -0.025538861751556396, 0.03380431979894638, -0.022672617807984352, -0.042825762182474136, 0.033668503165245056, -0.020317744463682175, -0.009469038806855679, -0.03419046103954315, 0.025358736515045166, -0.00796967651695013, 0.05254007503390312, -0.006126007996499538, -0.021644840016961098, -0.009310632012784481, 0.013993337750434875, -0.05851517990231514, 0.009000525809824467, 0.011370266787707806, -0.02868570387363434, -0.014290977269411087, 0.024275904521346092, 0.036542858928442, 0.025346403941512108, 0.016081171110272408, -0.03588150814175606, 0.011447242461144924, 0.1055731400847435, 0.023119524121284485, -0.020499998703598976, -0.040313445031642914, 0.04524793475866318, -0.030787818133831024, -0.015115810558199883, -0.02553550899028778, -0.06567505747079849, 0.05039878189563751, 0.005751797929406166, -0.004193490371108055, 0.05194330960512161, 0.06505319476127625, 0.015613079071044922, -0.03072844259440899, 0.017324209213256836, 0.041801005601882935, -0.07259344309568405, -0.03435767814517021, -0.008328884840011597, 0.027729665860533714, -0.03584418073296547, -0.02418220415711403, -0.006235196255147457, -0.01799696870148182, 0.0076010883785784245, -0.04386519268155098, 0.005701241549104452, 0.03283918648958206, -0.027103466913104057, 0.06524650007486343, 0.01867653988301754, -0.04965230077505112, 0.038427870720624924, 0.0008803869131952524, 0.017402473837137222, -0.015979638323187828, 0.00805097445845604, 0.03512061759829521, -0.005093960557132959, 0.01365014910697937, -0.011905358172953129, 0.05588117986917496, -0.032372549176216125, 0.01596176251769066, 0.04314973205327988, 0.017182886600494385, -0.016330912709236145, 0.017733588814735413, 0.022867830470204353, 0.011838051490485668, -0.02878088690340519, 0.029824303463101387, 0.0025961901992559433, 0.037554845213890076, 0.03685532137751579, -0.004723306279629469, -0.07291703671216965, -0.03503318503499031, 0.07373809814453125, 0.023070840165019035, -0.032499656081199646, -0.010646035894751549, 0.03317125141620636, -0.03283114731311798, 0.01704050973057747, 0.02846517600119114, 0.04868220165371895, -6.422873949586116e-33, -0.016090981662273407, -0.014548046514391899, 0.03536112233996391, 0.05169283226132393, 0.005776043515652418, -0.008600005879998207, 0.021025480702519417, 0.019648810848593712, -0.048426151275634766, -0.03211751580238342, 0.035463254898786545, 0.04605291038751602, 0.015907231718301773, -0.025487827137112617, 0.02006436139345169, 0.026573412120342255, 0.03640122339129448, 0.017242854461073875, 0.008148453198373318, 0.008980066515505314, -0.10525698214769363, 0.007296673022210598, -0.009359833784401417, 0.03400149196386337, -0.02699328027665615, 0.013952119275927544, -0.020335713401436806, -0.018397146835923195, 0.02396317757666111, 0.012510064989328384, -0.039452411234378815, -0.02690793015062809, -0.01970912516117096, -0.0031196449417620897, 0.007296236697584391, 0.034407857805490494, -0.02533920668065548, 0.005642401520162821, -0.029287394136190414, 0.015125187113881111, 0.021404234692454338, -0.05235953629016876, -0.05875517800450325, -0.00894007459282875, 0.005589379463344812, 0.02976040169596672, 0.03491794317960739, 0.046103622764348984, 0.014259647578001022, 0.04678298160433769, -0.08189763128757477, 0.041707053780555725, -0.02066095732152462, 0.008738735690712929, 0.025684475898742676, -0.033569253981113434, 0.025984473526477814, -0.05242571979761124, -0.023560408502817154, 0.021741239354014397, -0.027414973825216293, -0.029445266351103783, 0.012566519901156425, -0.04433207958936691, -0.03178645297884941, -0.01124835480004549, -0.03607947379350662, 0.08417109400033951, 0.019858798012137413, 0.005600778851658106, 0.0062883165664970875, -0.020966583862900734, -0.04333144798874855, -0.04545571282505989, -0.031048452481627464, 0.020725568756461143, -0.013979627750813961, 0.0039452314376831055, 0.09679913520812988, 0.05076668784022331, 0.0017044214764609933, 0.006685605272650719, -0.02485724166035652, 0.025784360244870186, 0.01178123988211155, -0.016550948843359947, -0.022696087136864662, 0.000584831868764013, -0.02943514660000801, 0.04899468645453453, -0.032385628670454025, -0.03734115883708, -0.018187059089541435, 0.0015288955764845014, 0.06424734741449356, 0.01892208494246006, 0.022003112360835075, 0.009212277829647064, 0.008821042254567146, 0.022681940346956253, -0.09185487776994705, -0.03269854187965393, 0.029477525502443314, 0.050937920808792114, 0.031982846558094025, -0.002475535264238715, -0.024878256022930145, -0.002659678691998124, -0.008206157945096493, 0.013043232262134552, 0.01862392947077751, -0.016867628321051598, 0.005202348344027996, -0.0102114612236619, -0.030061841011047363, -0.0049529168754816055, 0.004543657414615154, 0.023426325991749763, -0.046227216720581055, -0.03911135718226433, -0.02506670355796814, 0.007546493783593178, -0.028676902875304222, -0.041197530925273895, -0.03672421723604202, 0.0005006796563975513, -0.03432103618979454, 0.012399940751492977, 0.05574902519583702, -0.01797621324658394, 0.0010847790399566293, 0.007000322453677654, 3.209167687145964e-07, -0.028580423444509506, 0.0757695883512497, -0.015122389420866966, 0.01705654338002205, -0.01970098726451397, -0.08013708889484406, -0.019849833101034164, 0.021959928795695305, -0.014213353395462036, 0.028745237737894058, -0.0015640354249626398, 0.027365291491150856, -0.03233649954199791, -0.0068686227314174175, -0.02995581552386284, -0.16613511741161346, -0.04344901815056801, 0.016869936138391495, -0.04535491392016411, 0.014069308526813984, 0.013057760894298553, 0.059142712503671646, 0.00898193009197712, 0.027363678440451622, -0.006501874886453152, 0.007648578844964504, -0.013096481561660767, 0.03127274289727211, 0.017956703901290894, 0.04716114327311516, -0.014957202598452568, 0.016455747187137604, 8.505052392138168e-05, 0.008340730331838131, 0.00617322837933898, -0.026107821613550186, -0.0014751654816791415, -0.024722950533032417, 0.025993091985583305, 0.07854724675416946, 0.021710513159632683, 0.03398829326033592, -0.020572714507579803, 0.004284816328436136, 0.04674427583813667, -0.04427004233002663, -0.005159866996109486, 0.02540643885731697, -0.020090026780962944, -0.0313979834318161, -0.004073031712323427, 0.057389035820961, 0.05108228325843811, -0.020147331058979034, 0.04388052225112915, -0.019001053646206856, -0.0538199245929718, -0.011371584609150887, 0.041980352252721786, -0.006741771474480629, -0.047151464968919754, -0.05456219241023064, -0.010260403156280518, -0.023264003917574883, 0.03582116216421127, -0.021196523681282997, 0.011972421780228615, 3.111910760927064e-34, 0.0006751009495928884, -0.028687050566077232, -0.02647717110812664, 0.03788803517818451, -0.009250471368432045, -0.033796776086091995, 0.07158729434013367, -0.02591000869870186, 0.0007915591704659164, -0.041780535131692886, -0.016240045428276062], "470778ec-4e10-4cb1-9924-88d00b6c258c": [0.027536407113075256, 0.0016668095486238599, -0.02723177708685398, -0.040927622467279434, 0.0002589760988485068, 0.026972677558660507, -0.010859140194952488, 0.01694897562265396, 0.027444278821349144, 0.030029455199837685, 0.022815126925706863, -0.0029986733570694923, 0.009907285682857037, 0.06569018959999084, -0.04379944130778313, -0.009317693300545216, 0.0318036712706089, -0.03412053361535072, -0.00727113476023078, -0.03157208859920502, 0.021901721134781837, -0.0053724306635558605, -0.04777537286281586, -0.003883151803165674, -0.005591855850070715, -0.04754437506198883, 0.004533671773970127, 0.014778198674321175, 0.056642815470695496, -0.003646805416792631, 0.03238852322101593, 0.0002201229945058003, -0.008290678262710571, 0.010442237369716167, 2.326661160623189e-06, 0.03190348669886589, -0.004943118896335363, -0.004930897615849972, -0.010450968518853188, -0.05581751838326454, 0.04678726941347122, 0.009648074395954609, 0.016852550208568573, 0.05386903136968613, -0.018483219668269157, 0.037091709673404694, 0.04126648232340813, -0.0009407230536453426, -0.023479728028178215, 0.022430822253227234, -0.011151361279189587, -0.0018642019713297486, -0.04533082991838455, -0.008760835975408554, 0.0891307070851326, -0.05073750391602516, -0.024615053087472916, 0.03346770256757736, 0.08826387673616409, -0.00440986966714263, 0.011175036430358887, -0.016176069155335426, 0.0041662254370749, 0.034328073263168335, 0.14572380483150482, 0.10226839035749435, 0.050055842846632004, -0.0724307969212532, -0.0039075869135558605, -0.02525813691318035, 0.029450511559844017, 0.017173774540424347, 0.029077444225549698, 0.012304182164371014, -0.0046234168112277985, 0.002490516984835267, 0.015691403299570084, -0.0008724647923372686, 0.005127754062414169, 0.021987812593579292, -0.00021589953394141048, -0.012215862050652504, -0.05502907186746597, 0.02108275704085827, 0.04531213641166687, 0.030989963561296463, 0.002626893576234579, -0.010867097415030003, 0.03950526565313339, 0.03425538167357445, 0.04419943317770958, 0.030416317284107208, -0.050433237105607986, 0.04452111944556236, -0.011398333124816418, -0.012112095020711422, 0.013171160593628883, -0.01086600311100483, 0.021481847390532494, 0.043881405144929886, -0.05764136463403702, 0.028755268082022667, -0.0019733908120542765, 0.04825625941157341, -0.029604559764266014, 0.009209299460053444, 0.018921440467238426, -0.029899008572101593, -0.002865227870643139, -0.0007672638748772442, -0.0769694522023201, -0.0032975138165056705, -0.07346322387456894, 0.03433051332831383, 0.046327266842126846, -0.007820431143045425, 0.015098455362021923, 0.0662727952003479, 0.07852582633495331, -0.005126983392983675, 0.03554043546319008, 0.0023463668767362833, -0.06678032130002975, 0.0009487819042988122, -0.06070813909173012, -0.11072103679180145, -0.0033990726806223392, -0.00698286946862936, -0.0459771528840065, -0.053643159568309784, -0.003385246032848954, -0.004467792343348265, -0.008409321308135986, -0.02423286810517311, -0.006100057624280453, -0.012401004321873188, -0.023274235427379608, -0.007007508538663387, -0.020904915407299995, 0.021203771233558655, 0.036395784467458725, 0.004054929129779339, 0.018929587677121162, -0.014834067784249783, -0.050898682326078415, -0.010400167666375637, 0.012938883155584335, -0.004242921248078346, 0.0024529353249818087, 0.03313698247075081, 0.02738034725189209, 0.01615358144044876, -0.03718716278672218, 0.006267760414630175, -0.020259441807866096, 0.02712971717119217, 0.0050190528854727745, 0.041614461690187454, -0.021291257813572884, 0.04193989932537079, -0.05255945771932602, 0.04123271256685257, 0.05565626174211502, 0.03906998038291931, 0.00458744028583169, -0.023482298478484154, 0.059994857758283615, -0.01627238839864731, 0.018025321885943413, 0.0316905602812767, 0.004664011299610138, -0.005177857354283333, 0.0010618149535730481, 0.10395370423793793, -0.008092494681477547, 0.0008023600094020367, -0.010014621540904045, 0.005235140211880207, 0.010826709680259228, -0.003381504910066724, -0.04415663331747055, -0.14117947220802307, -0.015461250208318233, 0.08553919941186905, 0.03305794298648834, 0.02033390663564205, -0.048529643565416336, 0.10259366780519485, -0.033692602068185806, 0.030525023117661476, -0.02545277774333954, -0.020050901919603348, -0.0066985818557441235, -0.020521923899650574, 0.014714023098349571, -0.009023543447256088, -0.03789829835295677, -0.09377529472112656, -0.03502805158495903, -0.00879786815494299, -0.006072232965379953, -0.03159967437386513, 0.023531509563326836, 0.04618411883711815, 0.020401351153850555, -0.04896116629242897, -0.02120720036327839, -0.048653196543455124, 0.036874521523714066, 0.027028558775782585, 0.060875166207551956, -0.007433128543198109, -0.04395981878042221, -0.011923063546419144, -0.01543747540563345, 0.04527334123849869, -0.04674925282597542, -0.033418674021959305, 0.03881916403770447, 0.029931943863630295, -0.05524841696023941, -0.045010726898908615, -0.020223554223775864, 0.005688418634235859, -0.012870249338448048, -0.0011140473652631044, 0.05077613145112991, 0.0039003021083772182, 0.028899742290377617, 0.020975496619939804, -0.014053757302463055, 0.0018453479278832674, -9.16790813789703e-05, -0.005266311578452587, -0.0007024136721156538, 0.02757524698972702, 0.009254354052245617, 0.013276357203722, 0.006853495258837938, -0.0646367073059082, -0.0544343926012516, 0.040235232561826706, 0.02464177832007408, 0.041646502912044525, 0.0026108138263225555, 0.02009142003953457, 0.002935471711680293, 0.03239908814430237, -0.04339616373181343, -0.016543295234441757, 0.025615377351641655, -0.021331947296857834, 0.014761008322238922, 0.04236043617129326, 0.020039856433868408, 0.002034801756963134, -0.12234726548194885, 0.016051992774009705, -0.05717559531331062, -0.004059880971908569, -0.03415460139513016, -0.021453840658068657, -0.02302241325378418, 0.0051557524129748344, 0.018775029107928276, -0.03867136314511299, -0.012392104603350163, -0.027185343205928802, -0.046477947384119034, 0.025413619354367256, 0.027840206399559975, -0.009731775149703026, 0.030949469655752182, -0.022514306008815765, -0.058200735598802567, 0.005203146953135729, 0.0006277795764617622, -0.004560390487313271, -0.02811194583773613, 0.03879370540380478, 0.05136702582240105, 0.012048325501382351, 0.027297621592879295, 0.010648777708411217, -0.01757410727441311, -0.005917328875511885, 0.035366181284189224, -0.0389290489256382, 0.0176689513027668, -0.060722049325704575, 0.06567877531051636, -0.023764336481690407, 0.016689905896782875, -0.05251374468207359, -0.025221973657608032, 0.010734626092016697, 0.07822690904140472, -0.04244529455900192, 0.004491704981774092, 0.019964832812547684, -0.0286331195384264, 0.015501555055379868, 0.013594657182693481, 0.005004413891583681, 0.034557927399873734, 0.03775213658809662, 0.022105680778622627, -0.027699138969182968, -0.031820908188819885, -0.025984451174736023, -0.024470703676342964, 0.025523904711008072, -0.009058193303644657, 0.07396115362644196, 0.0033431192860007286, 0.01972448080778122, -0.0043597035109996796, -0.02832891047000885, 0.010774136520922184, -0.016175994649529457, -0.012616956606507301, -0.00733090890571475, -0.01305185817182064, -0.0022117961198091507, -0.03048461116850376, -0.13028280436992645, -0.01908116042613983, -0.01999562606215477, 0.03903356194496155, -0.03394758701324463, 0.020142605528235435, 0.03906286135315895, -0.018188435584306717, 0.04639909043908119, -0.02100173942744732, -0.024520961567759514, 0.02495117112994194, -0.04369501769542694, 0.018016884103417397, 0.004630685783922672, -0.029151713475584984, 0.033299949020147324, -0.0833023190498352, -0.03330957517027855, -0.053959425538778305, -0.0032875442411750555, -0.022228969261050224, 0.01337534748017788, -0.011799191124737263, -0.02530352585017681, 0.027289140969514847, -0.00030066262115724385, 0.030106840655207634, -0.008343367837369442, 0.0318085215985775, -0.059174805879592896, -0.04452020302414894, 0.02080983854830265, -0.00722183333709836, 0.004642901010811329, 0.02789524756371975, -0.03401417285203934, 0.05689762532711029, -0.024874554947018623, -0.024356616660952568, -0.07985926419496536, 0.02922125719487667, -0.03907119110226631, 0.007318710908293724, 0.0602710135281086, -0.01753605715930462, 0.061275068670511246, -0.04734358936548233, 0.024426423013210297, 0.02215886116027832, -0.050049085170030594, -0.002008812502026558, -0.011115985922515392, 0.031060904264450073, 0.025030121207237244, 0.013636958785355091, -0.09754517674446106, 0.060593221336603165, -0.010290269739925861, -0.00849064439535141, -0.0472383052110672, -0.0038868070114403963, -0.0013087366241961718, 0.013830774463713169, 0.023723725229501724, -2.3017424609861337e-05, -0.10158690065145493, -0.04646826162934303, 0.0015543135814368725, 0.0018725499976426363, 0.0014276416040956974, -0.06276607513427734, -0.020748896524310112, -0.027863796800374985, 0.042382922023534775, 0.014934919774532318, -0.04489479959011078, -0.010938126593828201, 0.024817761033773422, -0.009174616076052189, 0.0774754136800766, 0.03642285242676735, -0.006929419469088316, -0.024698451161384583, -0.0075514656491577625, 0.0500258207321167, 0.053148411214351654, 0.036087069660425186, -0.021495945751667023, 0.02993045002222061, -0.0361957922577858, -0.016299191862344742, 0.04468740150332451, 0.018734240904450417, -0.07712923735380173, -0.03215848281979561, -0.0017551904311403632, 0.017193233594298363, -0.029511520639061928, 0.015943655744194984, -0.029435694217681885, 0.040574945509433746, 0.09186059236526489, 0.037466179579496384, -0.04157266393303871, -0.026683377102017403, 0.03593709319829941, 0.052986990660429, 0.07000064849853516, -0.051167454570531845, -0.028277771547436714, -0.05714338645339012, 0.043651752173900604, 0.03203580528497696, -0.022358154878020287, -0.010243219323456287, 0.05254899710416794, 0.0227531548589468, -0.012547537684440613, -0.0067337253130972385, -0.007645750883966684, 0.07564476877450943, -0.010597825050354004, 0.03600078076124191, -0.03516126424074173, 0.03778419643640518, -0.06550966203212738, -0.10700593888759613, -0.05952877178788185, -0.09244441986083984, -0.023139717057347298, -0.05905232951045036, 0.0027617313899099827, 0.051447831094264984, 0.04459332674741745, 0.005615161266177893, 0.029908135533332825, 0.015299203805625439, -0.03221979737281799, 0.01482074148952961, -0.028109915554523468, -0.039339322596788406, -0.04801883548498154, 0.025686565786600113, -0.023206409066915512, 0.07595624029636383, -0.000952728558331728, -0.018621915951371193, -0.014268006198108196, -0.015043724328279495, -0.015547560527920723, -0.0018108956282958388, 0.031868960708379745, -0.011307677254080772, -0.009164957329630852, 0.01775415614247322, 0.007933443412184715, 0.006660604849457741, 0.016269264742732048, -0.029979301616549492, 0.0223250612616539, 0.09178000688552856, 0.005480076186358929, -0.0250410046428442, -0.00840943492949009, 0.029578739777207375, -0.026939012110233307, -0.008966311812400818, 0.0007853395654819906, -0.07649657875299454, 0.0449458584189415, -0.02682420052587986, 0.008600225672125816, 0.013631059788167477, 0.07903970032930374, 0.007599124684929848, -0.006436806172132492, -0.00768743921071291, 0.013030657544732094, 0.006580502726137638, -0.012703176587820053, -0.01263559702783823, 0.047980066388845444, -0.02514037676155567, -0.006128785666078329, -0.0020347856916487217, -0.021379126235842705, 0.025713758543133736, -0.05938677489757538, -0.010438180528581142, 0.044669460505247116, -0.037044916301965714, 0.07574933022260666, -0.018655868247151375, -0.04654965177178383, 0.0315672792494297, 0.016307974234223366, 0.002056630328297615, -0.032126180827617645, -0.0034859580919146538, 0.04496227949857712, -0.02549828588962555, 0.004795219283550978, -0.020907558500766754, 0.04847712442278862, -0.027394449338316917, 0.005159152206033468, 0.044358957558870316, 0.027459627017378807, -0.02359970100224018, 0.037180084735155106, 0.031172260642051697, 0.0031576750334352255, -0.012287035584449768, 0.03689173609018326, -0.00840834155678749, 0.0032097245566546917, 0.026224106550216675, -0.011921749450266361, -0.07046860456466675, -0.040697284042835236, 0.06899186223745346, 0.018268512561917305, -0.024478543549776077, 0.010935153812170029, 0.002853645710274577, -0.01856260932981968, 0.027671681717038155, -0.00731172040104866, 0.03415545076131821, -6.0366384646585755e-33, 0.01957312598824501, -0.03466181084513664, 0.04575841873884201, 0.02264503762125969, 0.012053053826093674, -0.03438665345311165, 0.01320542674511671, 0.013376408256590366, -0.013317014090716839, -0.009870216250419617, 0.004007205832749605, 0.028665367513895035, 0.01525603886693716, -0.02287554368376732, 0.005663707386702299, 0.037226248532533646, 0.047628093510866165, -0.007414918392896652, -0.0028498570900410414, 0.00376234482973814, -0.1264810711145401, 0.01371806114912033, -0.01640693098306656, 0.02413620613515377, -0.009989646263420582, 0.008944358676671982, -0.016303597018122673, 0.013656157068908215, 0.021085260435938835, 0.008838287554681301, -0.019113989546895027, -0.03348606452345848, 0.007765945978462696, 0.008496901020407677, 0.016683317720890045, 0.06377024203538895, -0.07213585078716278, -0.005096155684441328, 0.008026611059904099, 0.01598900370299816, 0.010079086758196354, -0.06386615335941315, -0.04676667973399162, -0.018842054530978203, 0.040596093982458115, 0.03920665383338928, 0.038442179560661316, 0.03552648425102234, 0.01721256412565708, 0.03711322322487831, -0.08546952903270721, 0.023256678134202957, -0.027357541024684906, -0.004194794222712517, 0.017265701666474342, -0.0196071770042181, 0.018244270235300064, -0.06014648824930191, -0.017239896580576897, 0.03359273821115494, -0.031026963144540787, -0.011355649679899216, 0.014296192675828934, -0.036074165254831314, -0.03282174840569496, -0.011931754648685455, -0.06021399423480034, 0.08123210817575455, 0.024176545441150665, 0.01731044054031372, -0.008793658576905727, -0.026821894571185112, -0.056627292186021805, -0.015147576108574867, 0.005306101869791746, 0.007771007716655731, -0.0005438385996967554, 0.0053842030465602875, 0.10022736340761185, 0.02924671396613121, -0.016648342832922935, 0.011786539107561111, -0.02037680707871914, 0.038184989243745804, 0.012577799148857594, 0.0019857725128531456, -0.03128594160079956, -0.026214998215436935, -0.019230633974075317, 0.06430932134389877, -0.05083167552947998, -0.052915796637535095, -0.02102828398346901, 0.004961047321557999, 0.06986306607723236, 0.014544238336384296, 0.04197584092617035, 0.002586868591606617, 0.005556019954383373, -0.006430865731090307, -0.0618937611579895, -0.005009827204048634, 0.015889713540673256, 0.038596056401729584, 0.028164833784103394, 0.017208728939294815, -0.02368970960378647, 0.019605545327067375, -0.037176329642534256, 0.013731436803936958, 0.0060427323915064335, 0.013266987167298794, -0.013257840648293495, -0.00030045717721804976, -0.023736657574772835, -0.003472784301266074, 0.0005077710375189781, 0.03565482422709465, -0.0728057473897934, -0.05014031380414963, -0.01620134897530079, 0.008496721275150776, -0.009663661010563374, -0.0567358024418354, -0.020134253427386284, -0.006920109037309885, 0.02234508842229843, 0.029624002054333687, 0.05311476066708565, -0.001608035760000348, 0.008328745141625404, 0.025145860388875008, 2.9967318937451637e-07, -0.0321512445807457, 0.04578853026032448, -0.028024781495332718, 3.929460217477754e-05, -0.011434867046773434, -0.08098965883255005, -0.006177572999149561, 0.012431244365870953, -0.03554210811853409, 0.033834848552942276, -0.005481864791363478, 0.0087646609172225, -0.03573007881641388, -0.03116425685584545, -0.03501855209469795, -0.15044361352920532, -0.0440579429268837, 0.0052765291184186935, -0.013592202216386795, 0.021861599758267403, 0.029240787029266357, 0.03389502689242363, 0.0008672013645991683, 0.005279127508401871, -0.015211536549031734, 0.03417797014117241, -0.020290836691856384, 0.03929591178894043, -0.002148853614926338, 0.057038564234972, 0.005054496228694916, 0.025100402534008026, 0.00587233854457736, 0.011763344518840313, 0.01155882142484188, -0.044548388570547104, -0.006151344161480665, -0.02501370571553707, 0.0374249666929245, 0.053030550479888916, -0.012692385353147984, 0.0337778702378273, -0.015984388068318367, -0.009451409801840782, 0.011215114034712315, -0.07021240144968033, -0.018064254894852638, 0.030522402375936508, -0.017154565081000328, -0.031972721219062805, -0.010211619548499584, 0.05816234275698662, 0.026586033403873444, -0.024508051574230194, 0.03726578131318092, -0.03807362914085388, -0.06551987677812576, -0.004064199514687061, 0.03330725058913231, 0.005125596188008785, -0.06398368626832962, -0.05248392000794411, 0.006499358918517828, -0.008148697204887867, 0.025405168533325195, -0.02274247072637081, 0.002254432998597622, 2.732283023619083e-34, -0.005039085168391466, -0.03285982832312584, -0.05117107182741165, 0.03894488885998726, -0.005532339680939913, -0.04009617120027542, 0.04381371662020683, -0.024962205439805984, 0.007936539128422737, 0.0036011203192174435, -0.012959236279129982], "f6d6b5c8-11e1-49ba-9933-781cd71025df": [-0.0017502179834991693, -0.02273550257086754, -0.010519273579120636, -0.018858207389712334, 0.02070172317326069, 0.04866616055369377, 0.021202528849244118, 0.038283828645944595, -0.010435715317726135, -0.036269690841436386, -0.0007957430207170546, -0.020878935232758522, 0.006789823062717915, 0.0646723061800003, -0.037728048861026764, 0.0049900515004992485, 0.040469586849212646, 0.01678926683962345, -0.03399857506155968, -0.014452946372330189, -0.002334574470296502, 0.007177199702709913, -0.02473321370780468, -0.011441764421761036, 0.029834842309355736, -0.05111260339617729, -0.009485004469752312, 0.08393096923828125, 0.0049069589003920555, -0.05102277174592018, 0.02728469856083393, 0.039396416395902634, -0.009167913347482681, 0.032943516969680786, 2.372109520365484e-06, -0.013540197163820267, -0.01728971302509308, -0.008539530448615551, -0.04966499283909798, 0.03875354304909706, 0.007620813325047493, -0.022302739322185516, 0.021994318813085556, 0.01166496705263853, -0.011153485625982285, -0.0004181362164672464, -0.03503018990159035, 0.0369076281785965, 0.007000768557190895, 0.03656113147735596, 0.01640045829117298, -0.01798156090080738, -0.04901360347867012, -0.013176348060369492, 0.028365882113575935, -0.06619630008935928, -0.02323942445218563, 0.09149764478206635, 0.08943023532629013, -0.011438597925007343, 0.010431881994009018, -0.003169942880049348, -0.023457970470190048, 0.029112040996551514, 0.08950720727443695, 0.06424129009246826, 0.0626002699136734, -0.10865713655948639, 0.011909215711057186, -0.004709677770733833, 0.046461381018161774, -0.003162483684718609, 0.043392591178417206, 0.007005822844803333, -0.037350088357925415, -0.004165394697338343, -0.005516661796718836, 0.028679393231868744, -0.015850313007831573, -0.012368929572403431, -0.04596627876162529, -0.10048624128103256, -0.04692752659320831, 0.007550050970166922, 0.07968472689390182, 0.030546117573976517, -0.020622029900550842, -0.04505239427089691, 0.014957151375710964, 0.017917370423674583, 0.03969741240143776, -0.012671282514929771, -0.017356442287564278, 0.03981524705886841, 0.004471489228308201, -0.03738681226968765, 0.01712026633322239, 0.023966388776898384, 0.02833542972803116, 0.0038757564034312963, -0.042425546795129776, 0.0036321028601378202, 0.04139591008424759, 0.03608325496315956, -0.0135904960334301, 0.009767306968569756, 0.011335319839417934, 0.016253896057605743, -0.03521271049976349, 0.0779644027352333, 0.011904007755219936, 0.024195048958063126, -0.05812367796897888, -0.009430580772459507, -0.016857478767633438, -0.01527913473546505, 0.012824470177292824, 0.029952730983495712, 0.08406253904104233, 0.04464944452047348, 0.07138460129499435, 0.0129544110968709, -0.018753761425614357, -0.03908345848321915, -0.0658838152885437, -0.12633436918258667, 0.005818287841975689, 0.017397690564393997, -0.047315578907728195, 0.018870759755373, 0.0069891223683953285, -0.007535778917372227, -0.004542075097560883, 0.048314448446035385, -0.006119865924119949, 0.023526644334197044, 0.006174224428832531, 0.020126696676015854, -0.03302696347236633, 0.0030764034017920494, 0.04809625446796417, 0.0060099768452346325, -0.03015263006091118, 0.001703427406027913, 0.0028971510473638773, 0.03313766419887543, 0.01140043418854475, 0.0465090237557888, 0.00011727584933396429, 0.0411544144153595, -0.010552172549068928, -0.0315791554749012, 0.004017459228634834, 0.013164185918867588, 0.016956591978669167, 0.0494341142475605, -0.04913224279880524, -0.0045489841140806675, -0.030645769089460373, 0.07644274085760117, -0.014322108589112759, 0.03658221662044525, 0.04668145999312401, 0.0009027711348608136, -0.026462852954864502, -0.005641547963023186, 0.03553091734647751, -0.00026346894446760416, 0.011880563572049141, -0.042422275990247726, 0.007838177494704723, 0.006410385016351938, -0.00885440781712532, 0.06806442886590958, -0.04720846191048622, -0.012382683344185352, 0.011838478036224842, 0.028991438448429108, 0.0012539839372038841, 0.04950427636504173, -0.023787545040249825, -0.1042344942688942, -0.02898426353931427, 0.028529567644000053, -0.03704557195305824, 0.001211638329550624, -0.08637534826993942, 0.0783376544713974, -0.004022467881441116, 0.03353950008749962, -0.06746645271778107, -0.027293238788843155, -0.0351790226995945, -0.05552530288696289, 0.001860698452219367, -0.017131991684436798, -0.05217009782791138, -0.07579459995031357, -0.002637506928294897, -0.009918584488332272, -0.0136747220531106, 0.013492533005774021, 0.03958868607878685, 0.06465653330087662, 0.007124201860278845, 0.0015515738632529974, 0.013726119883358479, -0.004667626228183508, 0.043293338268995285, -0.035707682371139526, 0.054962947964668274, -0.005833679344505072, -0.005430969875305891, -0.04651488736271858, -0.06522835791110992, 0.0678112804889679, -0.02463809959590435, -0.017835352569818497, 0.03647618740797043, -0.026994433254003525, -0.005008293781429529, 0.0024607961531728506, -0.04476543515920639, 0.03951027989387512, -0.003299376927316189, -0.04007861018180847, -0.03525158762931824, 0.0075897821225225925, 0.02853500284254551, -9.896971459966153e-05, -0.023298904299736023, -0.020466838032007217, 0.000893107324372977, 0.031109558418393135, -0.004530672449618578, -0.03728526458144188, 0.007211253512650728, 0.015655748546123505, -0.002248772419989109, -0.03883304446935654, -0.028775030747056007, 0.030216043815016747, 0.0026088948361575603, 0.010216807015240192, 0.027767939493060112, -0.00886443443596363, -0.08217620104551315, 0.03443729877471924, -0.011838923208415508, 0.02649843879044056, 0.0074154105968773365, -0.02050505392253399, 0.04769217595458031, 0.009207585826516151, -0.010293914936482906, 0.022622734308242798, -0.09423498809337616, 0.022459590807557106, -0.046590037643909454, -0.014982743188738823, -0.034424860030412674, -0.023637572303414345, -0.02077755518257618, -0.023393789306282997, 0.0599614717066288, -0.020268313586711884, 0.0303351990878582, -0.03204922005534172, -0.018594058230519295, -0.0011307458626106381, -0.004149131942540407, 0.047709159553050995, -0.0176377072930336, -0.03005710430443287, -0.029027050361037254, 0.01276689674705267, 0.06509975343942642, -0.010523980483412743, -0.045474905520677567, -0.017297061160206795, 0.035819970071315765, -0.03698276728391647, -0.013004771433770657, -0.008245413191616535, -0.023208823055028915, -0.03493281081318855, 0.026027662679553032, -0.0543099045753479, -0.02133150026202202, -0.025060370564460754, 0.04477247595787048, 0.004926223307847977, 0.02995257079601288, -0.040877941995859146, -0.03795762360095978, 0.016494257375597954, 0.01611674390733242, 0.001535858609713614, -0.03131725639104843, 0.049392689019441605, 0.018059562891721725, 0.026593124493956566, -0.009818595834076405, 0.0054161143489181995, 0.04259607940912247, 0.04303969442844391, 0.02230197563767433, -0.031510140746831894, -0.041238751262426376, -0.0045898002572357655, 0.013753162696957588, 0.03838400915265083, -0.012338812462985516, 0.0031220056116580963, -0.03501807153224945, 0.012179171666502953, -0.005536559969186783, -0.019603263586759567, -0.009715655818581581, 0.06027916073799133, -0.013984965160489082, -0.017926987260580063, -0.013932240195572376, -0.03220849484205246, -0.016503913328051567, -0.0988333523273468, -0.020473312586545944, 0.0016634067287668586, -0.01820201240479946, 0.017373869195580482, 0.02779855579137802, 0.012524456717073917, -0.004617883823812008, -0.007239137310534716, -0.01627608947455883, -0.013459112495183945, 0.01391113456338644, -0.03568171337246895, 0.006584640592336655, -0.010737855918705463, -0.05267026647925377, 0.05083346739411354, -0.03351816162467003, -0.000766650540754199, -0.04773954674601555, -0.001644309377297759, -0.01685364916920662, -7.751446537440643e-05, -0.012459502555429935, -0.003599621122702956, 0.09956608712673187, 0.014520597644150257, 0.031470540910959244, 0.009432582184672356, 0.01917596533894539, -0.025859864428639412, -0.025946246460080147, 0.008711309172213078, -0.01103377528488636, -0.05426285043358803, 0.003384132869541645, -0.029385767877101898, 0.07110825926065445, 0.03939367085695267, 0.018161626532673836, -0.07050616294145584, 0.028529830276966095, 0.0031820391304790974, 0.02194518968462944, 0.0018901679432019591, -0.0549653023481369, 0.06206522136926651, 0.011758802458643913, 0.04403183236718178, 0.012741145677864552, -0.05980685353279114, -0.0033251631539314985, 0.004568161442875862, -0.008771426975727081, -0.01164969801902771, -0.002096109325066209, -0.08120828121900558, 0.04836519807577133, -0.008898336440324783, 0.029200904071331024, -0.00012991443509235978, 0.0034398201387375593, 0.014935355633497238, 0.09739748388528824, -0.06355587393045425, 0.013115614652633667, -0.10925673693418503, -0.030913587659597397, 0.007175137754529715, -0.035489071160554886, -0.04723956435918808, -0.03976934403181076, -0.013203389942646027, -0.026679497212171555, 0.007382230833172798, -0.005790890194475651, 0.0009076702408492565, -0.013545015826821327, 0.009395170956850052, 0.0018335261847823858, 0.06264413148164749, 0.07606028020381927, -0.00471678888425231, -0.015007097274065018, 0.0029472585301846266, 0.10527815669775009, 0.00048393270117230713, 0.016473164781928062, 0.0011102685239166021, 0.02255147136747837, -0.04475792497396469, 0.042333152145147324, 0.0366208590567112, -0.017424432560801506, -0.03970879316329956, -0.031843237578868866, 0.012138665653765202, -0.013344677165150642, -0.01196675281971693, -0.006794573739171028, -0.003782724030315876, 0.07862915843725204, 0.04024353250861168, 0.040398456156253815, -0.020667267963290215, -0.0044572800397872925, 0.02590475231409073, 0.00447853421792388, 0.038200151175260544, 0.02804132178425789, 0.0002487340825609863, 0.013441493734717369, -0.06246361881494522, 0.027633855119347572, -0.024238336831331253, -0.051963187754154205, 0.05476948991417885, 0.005796637386083603, 0.0012926380150020123, -0.06311536580324173, 0.007667612750083208, 0.06193482130765915, 0.017844879999756813, 0.0020189618226140738, -0.05813755467534065, 0.00027330161537975073, -0.09951350837945938, -0.09274691343307495, -0.037567153573036194, -0.020261602476239204, -0.008586240001022816, -0.006236495915800333, 0.08889483660459518, 0.019322644919157028, 0.06477844715118408, -0.0326317623257637, 0.04245792701840401, -0.04344745725393295, -0.0007809991366229951, -0.001820908160880208, -0.02123178355395794, -0.027480926364660263, -0.04445255920290947, 0.029083311557769775, -0.006134558469057083, 0.06505818665027618, -0.021735575050115585, -0.003186902031302452, -0.026493975892663002, 0.03830283135175705, -0.0787925273180008, -0.009793110191822052, 0.0041618309915065765, -0.08402645587921143, -0.00942649319767952, 0.04280742257833481, -0.0019126819679513574, 0.012180518358945847, -0.03291155397891998, 0.007378284819424152, 0.042427074164152145, 0.024261530488729477, 0.0034184185788035393, 0.006841220892965794, -0.04201188310980797, 0.06954346597194672, -0.02152418904006481, 0.0064775776118040085, -0.00496520334854722, -0.007773199584335089, 0.03179728984832764, 0.0016495990566909313, -0.001031992956995964, 0.0034301693085581064, 0.05308052897453308, 0.028581494465470314, -0.006143399514257908, -0.034086521714925766, 0.04912228882312775, -0.03908161446452141, -0.028578657656908035, 7.720242865616456e-05, 0.050706855952739716, -0.04189567640423775, -0.03927299752831459, -0.04993550851941109, -0.003285280428826809, 0.016560865566134453, -0.04654186964035034, 0.03003750555217266, -0.0016550696454942226, -0.06329323351383209, 0.005158374086022377, 0.04984042048454285, 0.0027213136199861765, 0.029086513444781303, -0.03354945406317711, 0.024715278297662735, -0.04633940011262894, 0.022585246711969376, -0.0002638158039189875, 0.0346095897257328, 0.007567650638520718, 0.016312425956130028, 0.06951457262039185, -0.01111098937690258, -0.022210760042071342, 0.021923255175352097, 0.004650172311812639, -0.026885874569416046, 0.0385417677462101, 0.009728423319756985, 0.02698679082095623, -0.04810832813382149, 0.007048334926366806, -0.016142647713422775, 0.02510030008852482, -0.020102210342884064, 0.02174128033220768, -0.009183288551867008, -0.01777615025639534, 0.07821338623762131, 0.0072581772692501545, -0.029119201004505157, -0.007094164844602346, 0.01206265389919281, -0.014692854136228561, -0.014520328491926193, 0.02572472020983696, 0.03552981838583946, -6.000140834433482e-33, -0.023719623684883118, -0.024416062980890274, 0.03674785792827606, 0.07169239223003387, 0.04614439606666565, -0.03250499442219734, -0.001325601595453918, 0.018993625417351723, -0.0730288177728653, -0.02136622555553913, 0.008768160827457905, 0.017194796353578568, 0.027485080063343048, -0.01666172593832016, -0.011233309283852577, 0.03582242131233215, 0.03618239983916283, -0.022903550416231155, 0.004626175854355097, 0.006214770022779703, -0.05644150823354721, 0.020249487832188606, -0.007950061932206154, 0.0061528002843260765, -0.049193061888217926, -0.04995167627930641, -0.012439042329788208, -0.01881188526749611, 0.008774940855801105, -0.009480047971010208, -0.05107954517006874, -0.05719171464443207, -0.0013881062623113394, 0.038354262709617615, 0.025940123945474625, 0.06375246495008469, -0.031025728210806847, -0.0028068742249161005, -0.013133193366229534, 0.03119652159512043, 0.04421676695346832, -0.04338138923048973, 0.008799135684967041, -0.013026255182921886, 0.01616888865828514, 0.028535256162285805, 0.035617854446172714, 0.05910862609744072, -0.015917569398880005, 0.08358913660049438, -0.09496971219778061, 0.014688250608742237, 0.007104834076017141, 0.030749879777431488, 0.02173680067062378, 0.03380215913057327, 0.017085133120417595, -0.07703354209661484, 0.005062554497271776, 0.019409624859690666, -0.009221047163009644, -0.0019802830647677183, 0.03487300127744675, -0.03517787903547287, -0.03683875501155853, 0.004461037926375866, -0.023037660866975784, 0.058343835175037384, -0.0026116403751075268, 0.008529959246516228, -0.0005486822337843478, -0.01657954603433609, -0.08547580242156982, -0.03729653358459473, -0.038262780755758286, 0.007834174670279026, -0.030174769461154938, 0.019314946606755257, 0.06706839799880981, 0.03493538871407509, -0.034351009875535965, 0.030010871589183807, -0.046393200755119324, 0.02309214510023594, 0.03938259184360504, -0.030204225331544876, -0.019142458215355873, -0.031137868762016296, -0.023545796051621437, 0.053924333304166794, -0.08119145780801773, -0.04173058643937111, -0.024345971643924713, 0.038077376782894135, 0.04628869146108627, 0.05145243555307388, 0.06952565163373947, -0.03581807762384415, -0.011621227487921715, -0.01917434111237526, -0.09669557958841324, -0.018673237413167953, 0.02264222502708435, 0.028744103386998177, 0.014267141930758953, -0.010763820260763168, -0.04282576963305473, 0.015511030331254005, 0.01753799244761467, 0.029056910425424576, 0.007690046448260546, -0.03824259340763092, 0.016770027577877045, -0.008910237811505795, -0.026738431304693222, -0.023825233802199364, 0.011903512291610241, 0.009991704486310482, -0.036650680005550385, -0.06593063473701477, -0.0036503688897937536, -0.03093678504228592, 0.020491287112236023, -0.06792003661394119, -0.016159649938344955, 0.008035171777009964, -0.04582880809903145, 0.03753049299120903, 0.09128448367118835, -0.003102591959759593, 0.010267327539622784, -0.005506352987140417, 3.1919873322294734e-07, 0.01979438215494156, 0.08073746412992477, 0.011011398397386074, -0.027192112058401108, -0.02996961958706379, -0.05828947573900223, -0.007737554609775543, -0.002101453021168709, -0.009931672364473343, -0.013182827271521091, 0.01847594417631626, 0.026464104652404785, -0.04437251016497612, 0.02610201947391033, -0.003068611491471529, -0.10627303272485733, 0.017634399235248566, -0.0009944167686626315, -0.034547850489616394, 0.0014742754865437746, 0.06701193749904633, 0.017747540026903152, -0.0009112095576710999, 0.013856567442417145, -0.01939498633146286, 0.00922432355582714, -0.029582399874925613, 0.0069996509701013565, 0.007214914076030254, 0.019543485715985298, 0.0624425895512104, -0.006152517162263393, -0.023019129410386086, 0.020510196685791016, 0.0018498549470677972, -0.04186200723052025, 0.0005478435778059065, 0.026265621185302734, 0.024877583608031273, 0.045684248208999634, 0.04274187609553337, -0.03468834236264229, -0.02743474207818508, -0.028033031150698662, 0.021225960925221443, -0.05046004429459572, -0.0064835576340556145, 0.06812582165002823, -0.03803402930498123, -0.019417347386479378, 0.030263863503932953, 0.06145709380507469, 0.06909826397895813, -0.0030941825825721025, 0.029221080243587494, -0.01622919552028179, -0.05881284922361374, -0.01920071803033352, 0.021852537989616394, 0.0826868861913681, -0.04987724497914314, -0.07105368375778198, 0.03739258646965027, -0.014533194713294506, 0.028440775349736214, -0.01548455748707056, -0.021072089672088623, 2.973198983698928e-34, -0.02965628169476986, -0.04633083567023277, -0.010008441284298897, -0.016388410702347755, 0.009239321574568748, -0.007193878758698702, 0.015335610136389732, -0.004940683953464031, 0.0011182978050783277, -0.052737124264240265, -0.01796545274555683], "93ec1759-4667-466e-8bea-d4739b5b8f0b": [-0.01278504729270935, 0.022784648463129997, 0.020876532420516014, -0.015076505951583385, -0.0065360479056835175, 0.0052266535349190235, 0.03781173378229141, -0.015352382324635983, 0.02800452709197998, 0.004046159330755472, -0.002711399458348751, -0.00865273829549551, -0.0024437345564365387, 0.03622933104634285, -0.01701514609158039, 0.03713146969676018, 0.004827889613807201, -0.0325251966714859, -0.06243368983268738, -0.03588594123721123, 0.02358078770339489, 0.032601550221443176, -0.016579894348978996, -0.001882760669104755, 0.033162541687488556, -0.009460530243813992, 0.01868341490626335, 0.036161091178655624, 0.04446856677532196, -0.009432435035705566, -0.012140180915594101, 0.03736541420221329, -0.03778529539704323, 0.0810260996222496, 2.0952099930582335e-06, -0.007854086346924305, -0.04592504724860191, 0.0208902508020401, -0.0013982903910800815, -0.03792127966880798, 0.008713264018297195, 0.0034171021543443203, -0.00836500059813261, 0.016968950629234314, -0.017540257424116135, 0.023567894473671913, -0.0019030686235055327, 0.03630524501204491, 0.07539619505405426, 0.039739929139614105, 0.019514473155140877, -0.02167542278766632, 0.026698321104049683, -0.022292528301477432, 0.0272800512611866, -0.07790148258209229, 0.012164369225502014, 0.03819087892770767, 0.02729152701795101, -0.012643732130527496, 0.010908560827374458, -0.04199470952153206, 0.000761812727432698, -0.0013495070161297917, 0.10598807781934738, 0.08256372064352036, 0.026936965063214302, -0.07888423651456833, -0.0023555471561849117, -0.0057771047577261925, 0.0338733084499836, -0.010915849357843399, 0.006146644242107868, 0.05986259505152702, -0.02145828865468502, 0.01932445354759693, 0.049617309123277664, -0.004959126003086567, -0.0183482114225626, -0.004292073659598827, -0.04703609645366669, -0.06183712184429169, -0.0716041848063469, -0.007022346369922161, 0.015253362245857716, -0.017583899199962616, 0.033557403832674026, -0.031247291713953018, 0.040261298418045044, -0.03997012972831726, 0.060104936361312866, 0.0221856702119112, -0.041653066873550415, 0.028876056894659996, -0.006003241520375013, -0.03232954069972038, 0.029265418648719788, 0.03256450966000557, -0.008671548217535019, -0.021106980741024017, 0.005619668867439032, -0.016093812882900238, 0.02504761889576912, 0.03407664597034454, -0.03519351780414581, 0.014653980731964111, -0.000229594690608792, -0.025938618928194046, 0.008666257373988628, 0.03487339988350868, -0.045783404260873795, 0.01887340284883976, -0.015529192052781582, -0.04016556590795517, 0.02656923234462738, 0.002030104398727417, 0.013977746479213238, 0.05424873158335686, 0.06113608926534653, -0.015680210664868355, 0.0678069069981575, -0.02411689981818199, 0.003240923397243023, -0.008840518072247505, -0.07127135992050171, -0.10855603963136673, 0.02700553648173809, -0.012208937667310238, -0.06138591840863228, -0.037385765463113785, 0.0016505421372130513, 0.037400856614112854, -0.01614507846534252, 0.004751173313707113, 0.02372829243540764, 0.02023261785507202, -0.004885166417807341, 0.036579735577106476, -0.005760813597589731, 0.021679503843188286, 0.028571229428052902, -0.021825503557920456, 0.023552924394607544, -0.01172657124698162, 0.00044279530993662775, -0.02776726335287094, 0.05334753543138504, 0.012031235732138157, -0.0014551454223692417, -0.001345732482150197, 0.0011361684883013368, -0.013089006766676903, -0.0492677241563797, -0.03153478354215622, -0.011748068034648895, 0.007125600706785917, -0.03663759306073189, -0.02789556421339512, -0.05520646274089813, 0.0604122132062912, -0.05475557968020439, 0.0169985368847847, 0.07548576593399048, -0.04547829180955887, -0.03513780236244202, -0.05273502692580223, -0.001224337611347437, 0.04913574829697609, 0.03117520362138748, -0.038856975734233856, 0.03354557603597641, 0.04419917240738869, 0.024627773091197014, 0.05330822244286537, -0.00847544614225626, 0.0075111472979187965, 0.01809639297425747, -0.0015628129476681352, 0.0017393706366419792, -0.036285288631916046, -0.017450038343667984, -0.10806068778038025, 0.000958832330070436, -0.013211601413786411, -0.06724417954683304, -0.0011692297412082553, 0.013622780330479145, 0.07410536706447601, 0.026086606085300446, 0.007261158898472786, 0.00021837459644302726, -0.02950010448694229, -0.045408278703689575, -0.03976360335946083, 0.01704307086765766, -0.008175107650458813, 0.036516010761260986, -0.05870678648352623, -0.0019877005834132433, -0.007768726907670498, -0.07308755069971085, -0.09889186918735504, 0.022994494065642357, 0.06378745287656784, -0.003177330596372485, 0.04044036567211151, 0.09568969905376434, -0.00037140448694117367, 0.03348274901509285, -0.004272461403161287, 0.021047528833150864, 0.02586650662124157, -0.0030356524512171745, -0.03743286058306694, 0.0018638629699125886, 0.07904034852981567, -0.0033245214726775885, 0.03139809891581535, -0.01094244047999382, -0.030748756602406502, -0.009788540191948414, -0.03687169775366783, 0.015364216640591621, 0.026770852506160736, -0.0166942048817873, -0.08900012075901031, -0.008112162351608276, -0.020507581532001495, -0.016832323744893074, -0.00408079894259572, -0.02829262986779213, 0.014999019913375378, -0.018507152795791626, 0.019202856346964836, 0.00018467997142579406, -0.021555820479989052, -0.04057687148451805, 0.03367597982287407, 0.0019081860082224011, -0.04844542592763901, -0.044038206338882446, 0.022688444703817368, -0.0070467605255544186, 0.03308132290840149, 0.021800825372338295, -0.05334268882870674, -0.018606770783662796, -0.021313369274139404, 0.0014618602581322193, -0.010436305776238441, 0.025988297536969185, -0.055415745824575424, 0.041447803378105164, 0.022983279079198837, -0.021146338433027267, -0.038142960518598557, -0.1650029867887497, -0.04357562214136124, -0.054543230682611465, -0.025397995486855507, -0.06257275491952896, 0.019179807975888252, -0.005304061342030764, -0.020673947408795357, 0.056289367377758026, -0.010700381360948086, 0.0019350125221535563, -0.012022068724036217, 0.0004954296164214611, -0.001269213855266571, 0.011459346860647202, 0.0504034161567688, -0.008550015278160572, -0.03746167570352554, -0.019263355061411858, -0.05430963262915611, -0.0003103512863162905, -0.06532007455825806, -0.02681170403957367, -0.012968062423169613, -0.0009200028143823147, -0.04364154860377312, 0.026513343676924706, 0.0036748757120221853, -0.0022259769029915333, -0.022195810452103615, -0.0064387936145067215, -0.022785160690546036, 0.0020569590851664543, -0.017294464632868767, 0.045803580433130264, -0.017514899373054504, -0.0004904295783489943, 0.011548296548426151, -0.004413943737745285, 0.001882320735603571, 0.07773096114397049, 0.015574805438518524, -0.0022517589386552572, 0.03907174617052078, 0.01901751011610031, 0.0553303062915802, -0.002986020175740123, -0.0066797626204788685, 0.05969402939081192, 0.026967233046889305, 0.030445421114563942, -0.04373021423816681, -0.006117811426520348, -0.03045826219022274, -0.04596235975623131, 0.014402328059077263, -0.00567467650398612, 0.05165988206863403, 0.04004339128732681, 0.02339094690978527, -0.027577364817261696, -0.016763729974627495, -0.029254859313368797, 0.009413523599505424, 0.0024065892212092876, -0.05373696610331535, -0.0002456086513120681, -0.04128982499241829, -0.02771788276731968, -0.09774259477853775, -0.04621213674545288, 0.03567620739340782, 0.03861314803361893, 0.03442733362317085, 0.025752030313014984, 0.02895001508295536, -0.020031968131661415, 0.03882112354040146, -0.045546237379312515, -0.014216847717761993, -0.013028531335294247, -0.08844903111457825, -0.0037357963155955076, -0.02013358473777771, -0.03291574493050575, 0.06637194752693176, -0.03262869641184807, 0.054322488605976105, -0.04334596171975136, -0.0553753525018692, -0.06005638837814331, -0.03387782350182533, 0.038048066198825836, -0.031627003103494644, 0.051038872450590134, 0.03325340524315834, -0.008870063349604607, -0.0007968922145664692, 0.05036661773920059, -0.005204069893807173, 0.02144467458128929, 0.011132718995213509, 0.008013087324798107, -0.015234474092721939, 0.05925602838397026, -0.023546626791357994, 0.06614867597818375, 0.0014858536887913942, -0.030748875811696053, -0.07869769632816315, -0.020965665578842163, -0.03221829608082771, 0.05657235160470009, 0.02324805036187172, -0.023991867899894714, 0.08461404591798782, 0.0035243905149400234, 0.02559419721364975, -0.0077857146970927715, -0.02769608050584793, -0.01783779263496399, 0.024300765246152878, -0.01846674270927906, -0.03930902108550072, 0.001024381024762988, -0.059408556669950485, 0.02527404949069023, 0.03178565576672554, 0.023517193272709846, 0.03149716928601265, 0.025705615058541298, 0.004922191146761179, 0.02817610837519169, -0.08667483180761337, 0.035973746329545975, -0.037720076739788055, -0.06408462673425674, 0.00035742612089961767, 0.00850941427052021, -0.05550239607691765, 0.034622326493263245, -0.00678270822390914, -0.03709692507982254, 0.030983325093984604, -0.024815959855914116, 0.007715801242738962, 0.04266243427991867, 0.031045785173773766, -0.008701981045305729, 0.08243810385465622, 0.05359324440360069, -0.003946118988096714, 0.03054008074104786, -0.06999877840280533, 0.12104529142379761, 0.006669986993074417, 0.005627915728837252, 0.03991977125406265, -0.03921114280819893, -0.027129564434289932, 0.02669544145464897, 0.006119950674474239, 0.029813745990395546, -0.02029629796743393, -0.03224150836467743, 0.00044664705637842417, -0.009552759118378162, 0.016935819759964943, 0.018627673387527466, -0.013178427703678608, 0.04169078543782234, -0.005249365232884884, 0.05725404992699623, 0.006013429258018732, -0.03201712295413017, 0.016288895159959793, -0.013493414968252182, 0.03432147204875946, -0.010898641310632229, -0.0498826839029789, -0.005910530686378479, 0.016552647575736046, 0.0018320773961022496, -0.021092280745506287, -0.018848728388547897, 0.016998346894979477, -0.0029844774398952723, -0.01949974149465561, -0.05600666627287865, -0.03030233271420002, 0.04100722819566727, 0.003378851804882288, 0.031135467812418938, -0.11602046340703964, 0.016242800280451775, -0.06566076725721359, -0.01777169480919838, -0.07031947374343872, 0.0017555970698595047, -0.04494870454072952, -0.04829707741737366, 0.09395402669906616, -0.018215734511613846, 0.08262667059898376, 0.005752043332904577, 0.035810984671115875, -0.05871397629380226, -0.017517274245619774, 0.024618500843644142, 0.08248390257358551, 0.013930252753198147, -0.07655920833349228, 0.02054952271282673, 0.002876460086554289, 0.0019817547872662544, -0.016908133402466774, -0.027853431180119514, -0.010864758864045143, 0.008205232210457325, -0.031574804335832596, 0.023009272292256355, 0.026993893086910248, -0.07982774823904037, 0.0008851665770635009, 0.025934120640158653, -0.026985779404640198, -0.0002241924375994131, 0.03169494494795799, -0.009298961609601974, 0.047237541526556015, 0.021359985694289207, 0.01899927854537964, 0.010074787773191929, -0.040161069482564926, 0.02155003510415554, -0.011144924908876419, 0.0005512416828423738, -0.09388779103755951, -0.015490388497710228, 0.04745824635028839, 0.031699202954769135, 0.011179267428815365, 0.036521121859550476, 0.1174277737736702, 0.036902304738759995, -0.024523399770259857, -0.014503155834972858, 0.036896973848342896, -0.046953704208135605, 0.007322180550545454, -0.007136956788599491, 0.034061022102832794, -0.04486774653196335, -0.024921977892518044, -0.04297110065817833, 0.0390077643096447, -0.03789135813713074, -0.03982721269130707, 0.025026867166161537, 0.011063081212341785, -0.02036006934940815, 0.04349246248602867, -0.045619260519742966, -0.020159220322966576, -0.0030327029526233673, -0.05166139453649521, 0.011489585041999817, -0.03589619696140289, 0.046430423855781555, -0.03564859926700592, 0.00913949590176344, 0.013180186040699482, 0.008158695884048939, 0.024045603349804878, -0.03172038123011589, 0.01820802316069603, 0.03731180354952812, 0.024071495980024338, -0.04151361063122749, -0.016756653785705566, -0.007745405193418264, 0.014980769716203213, -0.017238669097423553, -0.008840502239763737, 0.02298227697610855, 0.05097753927111626, 0.017832256853580475, -0.0017213409300893545, 0.006306072231382132, -0.003671050537377596, 0.044933684170246124, -0.008899207226932049, -0.03178366273641586, 0.017846519127488136, 0.02948346547782421, -0.0031706972513347864, 0.04995515197515488, -0.005549562629312277, 0.026689430698752403, -4.6444354854484605e-33, 0.013367576524615288, 0.024176353588700294, -0.03452136740088463, 0.03972424939274788, 0.009143722243607044, -0.04373877868056297, 0.00986725278198719, 0.03869503363966942, -0.07659841328859329, 0.016700951382517815, 0.036440178751945496, -0.0019849110394716263, 0.04099597781896591, -0.003499889513477683, -0.04690900072455406, -0.005853104405105114, 0.01529163308441639, 0.018870629370212555, 0.05654000863432884, 0.016410905867815018, -0.02383776381611824, 0.03416125103831291, -0.05244893208146095, 0.040383078157901764, 0.023551713675260544, -0.016896741464734077, -0.037141669541597366, -0.01491603348404169, -0.020816905423998833, -0.005359264090657234, -0.01838567666709423, -0.021488377824425697, -0.007752555422484875, -0.004765158053487539, 0.03697432950139046, 0.094736747443676, -0.025046665221452713, -0.003606233512982726, 0.013455748558044434, 0.011342729441821575, 0.0704280212521553, -0.09204431623220444, -0.012727023102343082, -0.04660980775952339, -0.03097708895802498, 0.028483474627137184, 0.0284720528870821, 0.03788139671087265, 0.019986288622021675, -0.03354037553071976, -0.02300388552248478, 0.0010486486135050654, 0.003305101301521063, 0.004127983469516039, -0.039594560861587524, -0.03547881171107292, 0.014201384037733078, -0.12404053658246994, -0.010174272581934929, 0.033921610563993454, 0.006687283515930176, -0.05035855248570442, -0.02471335045993328, -0.021535106003284454, -0.016823960468173027, 0.019144318997859955, 0.004378489218652248, -0.0592743456363678, 0.02623985894024372, 0.004662001971155405, -0.02911028452217579, -0.047282371670007706, -0.03941044956445694, -0.039529766887426376, 0.007077245973050594, 0.003823966486379504, -0.04540678486227989, -0.006105998996645212, 0.03654569014906883, 0.009820000268518925, 0.02265290729701519, -0.011771648190915585, -0.016715368255972862, 0.032603293657302856, 0.03748470917344093, 0.004364459775388241, -0.026449579745531082, -0.0023909294977784157, -0.04477790743112564, 0.02448885329067707, -0.054649800062179565, -0.05409625917673111, -0.00565365282818675, 0.044492606073617935, 0.05608946084976196, -0.019163932651281357, 0.05054738372564316, -0.05065471678972244, 0.004887871444225311, -0.02112685516476631, -0.03365045413374901, 0.0217572171241045, 0.05873030424118042, 0.03521392494440079, 0.02751781977713108, -0.006009317934513092, 0.006180949974805117, 0.016906695440411568, -0.052650902420282364, 0.018928295001387596, -0.018365267664194107, -0.02233540080487728, 0.02908739447593689, 0.029136095196008682, -0.008238952606916428, -0.007335548754781485, 0.03033391758799553, 0.011665294878184795, -0.012082643806934357, -0.047960758209228516, -0.010760962963104248, 0.04603235796093941, 0.018405761569738388, 0.0016340261790901423, 0.004334792494773865, 0.04572361707687378, -0.022587543353438377, -0.006703867111355066, 0.044005103409290314, 0.030461058020591736, 0.034628964960575104, -0.04049865901470184, 2.8787081873815623e-07, -0.03700514882802963, 0.02775469236075878, 0.042362045496702194, -0.040066637098789215, -0.04217807576060295, -0.04870615899562836, -0.003117563435807824, 0.02510877698659897, 0.006642398424446583, -0.035226013511419296, -0.021171273663640022, 0.053227610886096954, -0.0036086023319512606, -0.015090495347976685, -0.034319497644901276, -0.06394470483064651, -0.014904851093888283, 0.024856530129909515, -0.022674502804875374, 0.024509884417057037, 0.06282582134008408, 0.04378176108002663, -0.008921217173337936, 0.03444457799196243, 0.03629358857870102, -0.020901428535580635, -0.019886016845703125, 0.0052668144926428795, 0.010314933955669403, -0.018256494775414467, 0.041225939989089966, -0.009036066941916943, 0.008521197363734245, 0.023072976619005203, 0.0022141544613987207, 0.04249821975827217, -0.019544871523976326, -0.013644490391016006, -0.011058674193918705, 0.020629175007343292, 0.04893999546766281, -0.03650900721549988, 0.0032377028837800026, 0.04643198475241661, 0.045938435941934586, 0.049995455890893936, -0.03180111199617386, -0.0004035464662592858, 0.0007079041679389775, -0.029615579172968864, 0.05509282276034355, 0.02369311824440956, 0.03612574189901352, 0.011645868420600891, 0.05578009784221649, 0.057730767875909805, -0.05572865530848503, -0.037792883813381195, -0.02239142172038555, -0.010675951838493347, -0.04443691298365593, -0.0770793929696083, 0.018823033198714256, -0.015097551047801971, 0.049479272216558456, -0.045893602073192596, 0.009503696113824844, 2.820065819331622e-34, 0.0024240766651928425, -0.03209110349416733, -0.03491748124361038, 0.02826465293765068, 0.03381333127617836, 0.00700862193480134, 0.049706172198057175, 0.00046257593203336, 0.030518097802996635, -0.05693935602903366, -0.0021459178533405066], "c1000392-16cf-421a-b25f-5c240de81979": [0.03037772886455059, -0.008157746866345406, -0.010529480874538422, -0.08331963419914246, 0.0072394441813230515, 0.04946735128760338, 0.017816592007875443, -0.00842392910271883, 0.02830873429775238, -0.020715758204460144, -0.029532114043831825, 0.06918198615312576, 0.017800653353333473, -0.022592686116695404, 0.02375003881752491, 0.08065255731344223, 0.0020035195630043745, -0.0037956899031996727, -0.020431142300367355, -0.009850560687482357, 0.028804590925574303, 0.026596440002322197, -2.9446653570630588e-05, 0.025615818798542023, 0.002729438478127122, -0.0024021826684474945, -0.001308433129452169, 0.02200235240161419, 0.029834551736712456, -0.010094311088323593, 0.03931652382016182, 0.012994032353162766, -0.015932796522974968, 0.08584801852703094, 2.308880993950879e-06, 0.0038299153093248606, 0.0034334310330450535, 0.029028937220573425, 0.020643949508666992, -0.1037040427327156, -0.005732354708015919, -0.04015727341175079, 0.009108918718993664, 0.018638134002685547, 0.001655043102800846, 0.04307856410741806, -0.026915177702903748, 0.045236676931381226, -0.028601273894309998, 0.045015837997198105, -0.0031133568845689297, 0.025893542915582657, 0.004907954018563032, -0.031100647523999214, 0.06525030732154846, -0.06278879195451736, -0.003532321425154805, 0.0791616216301918, 0.010073660872876644, 0.019612042233347893, 0.042333319783210754, 0.04941337928175926, -0.03763566538691521, 0.0037125826347619295, 0.025629423558712006, 0.0028895356226712465, 0.09301339834928513, -0.054463304579257965, 0.020901847630739212, 0.010107211768627167, 0.034513335675001144, 0.017930082976818085, -0.022357143461704254, -0.016228612512350082, 0.03553108870983124, 0.03744526952505112, 0.007045820355415344, 0.06815909594297409, -0.008340670727193356, 0.03143547475337982, -0.009329828433692455, -0.08173247426748276, -0.02153535559773445, 0.018903817981481552, 0.035339951515197754, 0.05841457471251488, -0.039433617144823074, -0.0014056038344278932, 0.014890836551785469, -0.04531813785433769, 0.025347210466861725, -0.0004660683625843376, -0.017268113791942596, -0.0275692418217659, 0.0027995973359793425, 0.009034004993736744, 0.030047934502363205, -0.06345638632774353, 0.0008276716689579189, 0.007325348909944296, -0.08171574771404266, -0.021141719073057175, 0.01596233621239662, 0.016667306423187256, -0.01533317007124424, 0.019912580028176308, -0.0010244237491860986, 0.008397940546274185, -0.007110961712896824, -0.0004551619931589812, -0.061508841812610626, -0.03830111026763916, -0.07174708694219589, -0.0077820345759391785, -0.11771326512098312, -0.02747296914458275, -0.053534552454948425, 0.036069415509700775, -0.009789066389203072, 0.025080088526010513, 0.047533031553030014, 0.01642817258834839, 0.0017213490791618824, 0.035664211958646774, -0.0760740339756012, 0.005776469130069017, -0.02406216599047184, 0.07458912581205368, -0.01966831088066101, 0.0754094049334526, 0.010178130120038986, 0.05344580113887787, -0.060380153357982635, -0.03140965849161148, -0.023149175569415092, -0.005188792943954468, 0.008842199109494686, 0.015402604825794697, 0.07263445109128952, -0.035211578011512756, -0.020384786650538445, -0.04204969108104706, -0.06473131477832794, 0.05131242051720619, 0.026378866285085678, 0.06674685329198837, 0.022794203832745552, 0.002843620255589485, -0.004293458070605993, 0.0017585521563887596, -0.03768092393875122, -0.03649308905005455, -0.043791308999061584, -0.00390837574377656, -0.013270856812596321, -0.021581606939435005, -0.05292076990008354, 0.0012446821201592684, 0.005976682994514704, 0.06728047877550125, -0.02662835083901882, -0.03158572316169739, 0.03568333387374878, -0.04680389538407326, 0.006127110216766596, -0.07536142319440842, 0.06997262686491013, 0.011550476774573326, -0.04230160638689995, 0.033681467175483704, 0.017952721565961838, 0.02289591357111931, 0.009783625602722168, 0.07320334762334824, 0.0019317500991746783, 0.059630297124385834, 0.02084662951529026, -0.03438679501414299, -0.04185885190963745, 0.02227812446653843, -0.01883065514266491, -0.0643908828496933, -0.03251763433218002, -0.04494037479162216, -0.09128826856613159, -0.015969499945640564, -0.014958326704800129, -0.004256047308444977, 0.03567781299352646, -0.020032498985528946, -0.007981917820870876, 0.0012634334852918983, -0.0017043773550540209, -0.02518633008003235, 0.05560280382633209, -0.055631231516599655, 0.0001614136854186654, 0.052417460829019547, -0.002453832421451807, -0.005113068502396345, -0.028426270931959152, -0.02507108263671398, 0.05548474192619324, 0.05314040556550026, -0.0052196872420609, 0.00477240514010191, 0.09974303841590881, 0.011914227157831192, 0.050104930996894836, -0.00737847201526165, 0.00044124069972895086, 0.008233770728111267, -0.010789943858981133, 0.01677020452916622, -0.026861608028411865, 0.0005453069461509585, -0.040659695863723755, -0.00903923250734806, -0.05439362674951553, -0.009468795731663704, -0.030228586867451668, -0.040134247392416, -0.05114145949482918, 0.03587937355041504, -0.02012522518634796, -0.009729968383908272, -0.0476485975086689, -0.004585318733006716, 0.041383326053619385, 0.04850756376981735, -0.023954788222908974, 0.01633702963590622, 0.016633646562695503, -0.03792956843972206, -0.022524874657392502, 0.042572226375341415, -0.0429941788315773, 0.0024660846684128046, -0.000626442430075258, -0.034477002918720245, -0.05574694648385048, -0.008944607339799404, -0.03346164897084236, 0.011024710722267628, 0.04509449005126953, -0.019620878621935844, -0.03044455498456955, -0.005622620694339275, 0.004615187179297209, 0.008908693678677082, 0.027427738532423973, -0.011845620349049568, 0.026692768558859825, 0.015783850103616714, 0.016898032277822495, -0.08474951237440109, -0.030390365049242973, -0.05266011506319046, 0.001921332674100995, 0.006934367585927248, 0.005295486655086279, 0.018937543034553528, -0.011817286722362041, -0.005545689724385738, 0.027386141940951347, 0.008474413305521011, -0.02499447390437126, -0.03495660424232483, -0.011179940775036812, 0.007147591095417738, -0.028927981853485107, 0.010206768289208412, 0.004534578882157803, 0.006023059133440256, 0.0048809959553182125, -0.00024981278693303466, 0.03542305901646614, -0.005081329494714737, 0.023315273225307465, 0.007987109012901783, 0.022352995350956917, 0.020820636302232742, 0.021741503849625587, 0.009582268074154854, -0.04278068616986275, 0.05552292242646217, -0.028219513595104218, -0.010317145846784115, -0.04733022302389145, 0.013224917463958263, 0.007231087889522314, 0.02758195623755455, -0.01810149848461151, -0.018738718703389168, -0.022099165245890617, 0.022540980949997902, 0.118458092212677, -0.0885341539978981, -0.005577005911618471, 0.02623772993683815, 0.026697147637605667, 0.060245513916015625, -0.016217973083257675, -0.01796046644449234, 0.03983072564005852, 0.012109520845115185, -0.012576434761285782, 0.022320646792650223, -0.03762688860297203, -0.07191416621208191, -0.033157143741846085, -0.0617302842438221, -0.01068434864282608, 0.050466325134038925, 0.07934529334306717, -0.009117555804550648, -0.025734247639775276, -0.07439389079809189, -0.015925273299217224, 0.006892239209264517, 0.023611199110746384, -0.021664369851350784, -0.04413295537233353, 0.01618208736181259, -0.013451611623167992, -0.09608598798513412, -0.014344673603773117, 0.01799769327044487, -0.01980697549879551, 0.016218645498156548, 0.012549800798296928, 0.003368898294866085, -0.029549989849328995, 0.012652073055505753, -0.038935571908950806, -0.01880759745836258, 0.017240285873413086, -0.013460843823850155, -0.0011232953984290361, 0.010456451214849949, 0.0010464013321325183, 0.020906448364257812, -0.028649529442191124, 0.08011174201965332, -0.06633395701646805, -0.014806178398430347, 0.013666532002389431, 0.025480087846517563, 0.056529462337493896, 0.0011778025655075908, 0.029904035851359367, -0.035825714468955994, 0.004180536605417728, -0.02611062303185463, -0.0073174540884792805, 0.03900441527366638, 0.026672102510929108, -0.014958405867218971, 0.08393724262714386, -0.005846639629453421, 0.014011546969413757, -0.01319191139191389, 0.052990496158599854, 0.02004639431834221, -0.01733754575252533, -0.05566735193133354, 0.0033909755293279886, 0.015636857599020004, 0.01753278449177742, 0.013837886042892933, 0.10243666917085648, 0.05011378228664398, 0.0229367446154356, 0.0615554004907608, 0.011778144165873528, 0.019868945702910423, -0.034317731857299805, -0.0008835147018544376, 0.0046045007184147835, -0.019901787862181664, 0.002730053849518299, -0.09667633473873138, 0.003988203592598438, 0.04079413786530495, -0.003405642928555608, 0.014035705476999283, -0.05356883257627487, 0.02189461514353752, 0.03496063873171806, -0.06499746441841125, 0.019021470099687576, -0.049534738063812256, -0.059510085731744766, -0.016718236729502678, -0.03956213593482971, -0.013938944786787033, 0.0502547025680542, -0.025990962982177734, 0.013374054804444313, 0.0202240739017725, -0.002274362137541175, -0.0026796276215463877, 0.006007028743624687, 0.004034804180264473, -0.051392681896686554, 0.03101574443280697, 0.005913734436035156, -0.04529164731502533, 0.05039585381746292, 0.006685498170554638, 0.10370306670665741, 0.03358879312872887, 0.03305378556251526, 0.014645461924374104, -0.00851991306990385, -0.021570026874542236, 0.06763920187950134, -0.03258337453007698, -0.032641395926475525, -0.029997996985912323, -0.005036818794906139, -0.06979923695325851, -0.043013446033000946, -0.028220437467098236, -0.03297145292162895, -0.016175366938114166, 0.06600575149059296, 0.0073378016240894794, 0.049042269587516785, -0.04401799663901329, 0.002393024042248726, -0.044556476175785065, 0.03857622295618057, 0.025120649486780167, -0.018647393211722374, 0.053210414946079254, 0.01640920341014862, -0.014901555143296719, -0.01604025438427925, 0.0014403692912310362, -0.01929696835577488, 0.03341793268918991, 0.0379195362329483, -0.05061839148402214, -0.004638290498405695, -0.016115939244627953, 0.020161082968115807, 0.01791243627667427, 0.06651327759027481, -0.00499569671228528, 0.018967950716614723, -0.02470025047659874, -0.04519709572196007, -0.021143455058336258, 0.01128384843468666, 0.012806191109120846, -0.009595703333616257, -0.025479130446910858, 0.04216674342751503, 0.001552039640955627, -0.021095341071486473, 0.014203921891748905, -0.04161284118890762, -0.05773785710334778, 0.028570903465151787, 0.05250341072678566, 0.06421488523483276, -0.11799022555351257, 0.02792517840862274, 0.014405201189219952, 0.10730718821287155, -0.004095874726772308, -0.0018582941265776753, 0.006107585970312357, -0.0003774595388676971, -0.05197498947381973, 0.002016123617067933, 0.001865410478785634, 0.018634235486388206, 0.002654475159943104, 0.021978599950671196, -0.018527474254369736, 0.0394560843706131, -0.031135734170675278, -0.001782981096766889, -0.007796257734298706, 0.10668313503265381, -0.03768804296851158, -0.004264586139470339, -0.07129475474357605, 0.022637279704213142, -0.05815090611577034, 0.010656552389264107, -0.021491117775440216, 0.021224740892648697, 0.02877497859299183, -0.00781798642128706, 0.0076272813603281975, 0.024808336049318314, 0.08453170955181122, 0.08895915746688843, 0.030334673821926117, 0.03199634328484535, 0.037200476974248886, -0.05261234939098358, -0.012675868347287178, 0.01927204802632332, -0.002924574539065361, -0.029302479699254036, -0.06902816891670227, -0.04865778237581253, 0.017853055149316788, -0.058293770998716354, 0.0183824822306633, 0.008830592036247253, 0.037373900413513184, 0.025600288063287735, 0.01245943084359169, -0.009789914824068546, 0.026528771966695786, -0.017576728016138077, 0.009326367639005184, 0.011463777162134647, -0.017691373825073242, 0.022699210792779922, 0.012994795106351376, -0.007415269501507282, 0.03757705166935921, -0.008858720771968365, 0.010516656562685966, -0.033598173409700394, 0.055759891867637634, 0.03260863199830055, -0.020430689677596092, -0.015203794464468956, -0.00980581808835268, 0.014078800566494465, -0.009307793341577053, 0.0013807385694235563, -0.02071676030755043, -0.006762348115444183, 0.03820250555872917, 0.02211574651300907, 0.013970336876809597, 0.02892637439072132, 0.03384358063340187, 0.004943028092384338, 0.01808721385896206, -0.03704579174518585, -0.08599413186311722, 0.019694386050105095, -0.005023345351219177, 0.05861148238182068, -0.005301834549754858, -0.01460625696927309, -4.292313581265752e-33, -0.0019959714263677597, -0.0690808966755867, -0.03996509686112404, -0.04731427878141403, -0.032891035079956055, -6.77767166052945e-05, -0.04690253362059593, 0.00513366237282753, -0.007863610051572323, -0.012138571590185165, 0.018350709229707718, 0.017160886898636818, 0.0012832875363528728, -0.023637862876057625, 0.04026472195982933, 0.011382645927369595, 0.003797403536736965, -0.03301236778497696, -0.010163300670683384, 0.018178071826696396, -0.0005191488307900727, 0.017598573118448257, -0.06751144677400589, -0.0041105495765805244, -0.019545815885066986, 0.0006196959875524044, -0.04408238083124161, 0.02231844887137413, 0.015591618604958057, -0.05037426948547363, -0.0031026231590658426, -0.005070208106189966, 0.012320536188781261, 0.007566684857010841, -0.00029896394698880613, 0.025779465213418007, -0.00883433222770691, -0.04510066658258438, -0.032855041325092316, 0.009355384856462479, 0.008841164410114288, 0.020081734284758568, 0.01287584938108921, 0.0008309417753480375, -0.050299789756536484, 0.056771378964185715, 0.013716843910515308, 0.02761131152510643, 0.02352624014019966, -0.024390552192926407, 0.014254282228648663, 0.0075746518559753895, 0.009578865952789783, 0.06772271543741226, -0.027466684579849243, -0.012273045256733894, 0.031718235462903976, -0.021419571712613106, -0.03966706991195679, 0.05757393687963486, 0.00237956247292459, -0.05855013057589531, 0.009789906442165375, -0.09630312025547028, -0.011393737979233265, -0.018306022509932518, 0.04004167020320892, -0.018445050343871117, 0.03519579395651817, 0.006957894656807184, -0.01703602448105812, -0.03349984809756279, -0.024314463138580322, -0.02964218147099018, -0.049186546355485916, 0.0038997409865260124, -0.06605009734630585, 0.0015466471668332815, 0.05767291411757469, 0.03791765123605728, -0.008097907528281212, 0.0388895720243454, 0.004547739867120981, -0.040785618126392365, 0.019515451043844223, 0.034925129264593124, -0.0023808663245290518, -0.013624131679534912, -0.06309272348880768, 0.031071098521351814, 0.016757994890213013, -0.11689627915620804, -0.020484324544668198, 0.0022781395819038153, -0.002513815416023135, 0.013710962608456612, 0.011516365222632885, -2.1274945538607426e-05, 0.007509439252316952, 0.0017594604287296534, -0.029623527079820633, -0.03962402418255806, 0.025658773258328438, 0.040119629353284836, 0.043356847018003464, 0.019273053854703903, 0.032202742993831635, -0.03442653268575668, -0.0003920530725736171, 0.010950564406812191, 0.026770789176225662, -0.009516902267932892, 0.007862000726163387, 0.005610572174191475, -0.02625979110598564, -0.0591915138065815, -0.007641589734703302, 0.060658883303403854, 0.0026370505802333355, 0.004950956907123327, 0.008143349550664425, -0.032965049147605896, -0.01661754585802555, -0.017735980451107025, -0.018801726400852203, 0.04312339052557945, -0.04517795518040657, 0.058185186237096786, 0.08001185953617096, 0.042061541229486465, -0.0032397978939116, -0.052306342869997025, 3.0159074526636687e-07, -0.012549670413136482, 0.06628993898630142, 0.006478398572653532, -0.0498688779771328, 0.010009265504777431, -0.05455230176448822, -0.011694837361574173, 0.03899255767464638, -0.01856287568807602, 0.03985673189163208, 0.00587396090850234, -0.0005115658277645707, -0.027063218876719475, -0.02974030002951622, 0.03299151360988617, -0.08355697989463806, -0.035270657390356064, -0.017857417464256287, -0.004862823989242315, 0.055279508233070374, -0.018647711724042892, -0.029597094282507896, 0.01744840107858181, 0.048370156437158585, -0.003606474958360195, -0.016060223802924156, -0.051500994712114334, -0.00296378112398088, 0.02849004976451397, 0.019326917827129364, -0.026343446224927902, -0.009662319906055927, -0.0023966755252331495, -0.051293790340423584, 0.012138704769313335, -0.036880843341350555, -0.06380194425582886, -0.07070934027433395, -0.001579439383931458, -0.0067228213883936405, -0.010499098338186741, 0.056200332939624786, 0.03694570064544678, 0.013660016469657421, -0.008408285677433014, -0.06287550926208496, -0.009911395609378815, -0.009320949204266071, -0.012258602306246758, -0.021093595772981644, -0.008023824542760849, 0.08891680091619492, 0.00013750170182902366, 0.0075765335932374, 0.025427186861634254, 0.0607934296131134, -0.023168371990323067, -0.06817401200532913, 0.045954108238220215, 0.02223675698041916, -0.01971299760043621, -0.024472089484333992, -0.0199936181306839, -0.005107988137751818, 0.0581398643553257, -0.08874163031578064, -0.0032520629465579987, 2.596766432891024e-34, 0.014088290743529797, -0.003506093518808484, -0.015216411091387272, -0.024454398080706596, 0.03705298528075218, 0.0033750503789633512, -0.03494619205594063, -0.0493943877518177, 0.047865938395261765, -0.03185074031352997, -0.05035870894789696], "91a3f525-e557-44a9-8cff-fffa910a2207": [-0.0010319106513634324, 0.00818416103720665, -0.02547142282128334, -0.026027020066976547, 0.0036083192098885775, 0.03127889707684517, 0.017549751326441765, -0.02113249897956848, 0.011137855239212513, 0.018412606790661812, 0.008333873003721237, -0.0005341351497918367, 0.015368039719760418, 0.062048740684986115, -0.027418678626418114, 0.02360258437693119, 0.013779080472886562, -0.018367893993854523, -0.03276148810982704, -0.0038152625784277916, 0.015372303314507008, 0.04051044583320618, -0.029262904077768326, -0.008697719313204288, 0.018013766035437584, -0.0030329462606459856, 0.003684531431645155, 0.005777051672339439, 0.0635378435254097, 0.021908773109316826, -0.007130291312932968, 0.03785603120923042, -0.016872737556695938, 0.057909999042749405, 2.329102471776423e-06, 0.008803003467619419, -0.025743277743458748, 0.004828170873224735, -0.013022547587752342, -0.008425919339060783, -0.018198097124695778, -0.012870963662862778, -0.033052653074264526, 0.020056607201695442, -0.03621559590101242, 0.07137996703386307, 0.06404364854097366, -0.04795532673597336, 0.027791181579232216, 0.04150007665157318, 0.014089681208133698, 0.04883325472474098, 0.010332566685974598, -0.010386193171143532, 0.08319580554962158, -0.095240019261837, -0.005406045820564032, 0.07531696557998657, 0.05819951370358467, 0.05284911021590233, 0.03793872520327568, 0.023120518773794174, 0.011675307527184486, -0.006277327425777912, 0.09836944937705994, 0.03899923712015152, 0.05542515963315964, -0.09019611775875092, 0.00012049447832396254, 0.006756305694580078, 0.09599477052688599, -0.011596337892115116, 0.01272462960332632, 0.04550401121377945, -0.02642945758998394, 0.004404421430081129, -0.00900796614587307, 0.004803924355655909, -0.0038702567107975483, 0.024700943380594254, -0.05973831191658974, -0.06237385421991348, -0.05442842096090317, 0.002133375033736229, 0.0076264976523816586, 0.01936856284737587, 0.014442888088524342, -0.006268706638365984, -0.003986917436122894, -0.009495168924331665, 0.021950481459498405, 0.013383522629737854, -0.023881811648607254, 0.026025675237178802, -0.020528053864836693, -0.03615916892886162, 0.02043825015425682, -0.03128071501851082, 0.03554509952664375, 0.018153272569179535, -0.03781765699386597, 0.04010653495788574, 0.0063119991682469845, 0.03558351844549179, -0.006199998315423727, 0.06544873118400574, -0.004659818019717932, -0.0035014257300645113, 0.018149590119719505, 0.018622510135173798, -0.04274507611989975, 0.014220514334738255, -0.047679439187049866, -0.020716287195682526, -0.02266635186970234, -0.009366924874484539, -0.028643149882555008, 0.06438519805669785, 0.045884329825639725, 0.029085705056786537, 0.05859719589352608, -0.005698279477655888, -0.04007789492607117, -0.019420109689235687, -0.07062302529811859, -0.1136164590716362, 0.010893690399825573, -0.008987696841359138, -0.032254934310913086, -0.02149324119091034, -0.01532877516001463, -0.014799363911151886, -0.014370743185281754, -0.025279130786657333, 0.0049526928924024105, -0.00912370253354311, 0.009927316568791866, -0.00963649246841669, 0.06215621531009674, 0.0324585847556591, 0.004983894526958466, 0.0003518520388752222, -0.03474763408303261, 0.007196691818535328, -0.01594983972609043, 0.0029352845158427954, 0.023653734475374222, -0.024567048996686935, -0.008585626259446144, 0.030357886105775833, 0.021384388208389282, -0.008602735586464405, -0.07654976844787598, -0.012247731909155846, -0.028191395103931427, 0.013105608522891998, -0.034582529217004776, 0.01197797991335392, -0.01753939315676689, 0.05050224810838699, -0.015200144611299038, 0.027421239763498306, 0.05935429409146309, 0.0062104142270982265, -0.0039337011985480785, -0.03228752687573433, 0.04736298695206642, 0.011559318751096725, 0.009526659734547138, 0.002222334733232856, 0.012814790941774845, 0.03989841043949127, 0.005110580939799547, 0.048532161861658096, -0.024921510368585587, -0.03219575807452202, 0.08557681739330292, 0.0024654886219650507, 0.005335737019777298, 0.013194174505770206, -0.009127774275839329, -0.1286478489637375, -0.02988378517329693, 0.055571503937244415, -0.018791306763887405, 0.013910877518355846, -0.02071239799261093, 0.09187865257263184, -0.012427814304828644, 0.04638100042939186, -0.0023250177036970854, -0.017645327374339104, -0.053439684212207794, -0.03148645535111427, 0.04579129070043564, -0.01687660627067089, -0.003907279577106237, -0.08704455941915512, 0.006434731651097536, -0.00639677420258522, -0.031878601759672165, -0.07153020054101944, 0.007167684845626354, 0.07250996679067612, 0.01640694960951805, -0.07078013569116592, 0.01187572255730629, -0.02539847046136856, 0.017761671915650368, 0.044407013803720474, 0.047639645636081696, -0.01128428801894188, -0.035232335329055786, -0.03531605377793312, -0.044407110661268234, 0.033758439123630524, -0.030049258843064308, -0.002491735154762864, 0.020003104582428932, 0.0006586173549294472, -0.03509506583213806, -0.06237758323550224, 0.012714401818811893, 0.0242011696100235, -0.015326695516705513, -0.006369322072714567, -0.011488392017781734, -0.006044564303010702, 0.042736273258924484, 0.041154101490974426, -0.03751734271645546, 0.012819228693842888, 0.011324944905936718, 0.0005324098165147007, -0.0334358848631382, -0.01594107784330845, -0.00013612715702038258, 0.031278371810913086, 0.03826843202114105, -0.06540748476982117, -0.04740549996495247, 0.06607082486152649, -0.008530993945896626, 0.0473533533513546, 0.023205945268273354, 0.0006175554008223116, 0.005887326318770647, -0.009087341837584972, -0.005615721456706524, -0.014182057231664658, 0.01972944475710392, -0.008477309718728065, 0.02244807779788971, 0.024797959253191948, -0.014548844657838345, 0.021268529817461967, -0.15982086956501007, -0.024322204291820526, -0.048507947474718094, 0.012358447536826134, 0.00017659245349932462, -0.003941527102142572, -0.02180456556379795, -0.009175474755465984, 0.02282797172665596, 0.01031456608325243, -0.009346486069262028, -0.01730349287390709, -0.015682371333241463, -0.0017388075357303023, -0.010145379230380058, -0.01150333322584629, 0.004002771805971861, -0.009418684989213943, -0.021230535581707954, 0.015540126711130142, 0.008648346178233624, -0.014614698477089405, -0.02764596790075302, -0.011607183143496513, 0.015958528965711594, -0.031178709119558334, -0.011486852541565895, 0.006832356099039316, -0.008503804914653301, -0.028213048353791237, 0.017775090411305428, -0.09241793304681778, -0.04758162051439285, -0.028298335149884224, 0.026722028851509094, -0.007907450199127197, 0.017439642921090126, -0.039058420807123184, -0.017052190378308296, 0.01670612022280693, 0.07217459380626678, -0.03713211789727211, -0.02870967611670494, 0.03657751902937889, 0.005318577867001295, 0.045265596359968185, -0.010402457788586617, 0.007555400487035513, 0.017526399344205856, -0.0033375818748027086, 0.041902683675289154, -0.025282535701990128, -0.02118680067360401, -0.048850588500499725, -0.012669066898524761, 0.017322201281785965, -0.02866346761584282, 0.031407807022333145, 0.025512296706438065, 0.02729782462120056, -0.007000884506851435, -0.01599188707768917, 0.019778268411755562, 0.05303492769598961, -0.005438545253127813, -0.05749299004673958, 0.0014459177618846297, -0.049784425646066666, -0.03116551786661148, -0.10449262708425522, -0.03401191532611847, -0.02647968754172325, 0.04166769981384277, -0.005814441945403814, 0.007535180542618036, -0.008444065228104591, 0.010561882518231869, 0.05556323379278183, -0.014852439984679222, -0.029385065659880638, 0.027680015191435814, -0.04259380325675011, 0.019457178190350533, 0.01778697595000267, -0.04702984169125557, 0.05697043612599373, -0.04049559310078621, 0.0205417200922966, -0.07502222806215286, 0.021481456235051155, 0.0033812972251325846, -0.024202724918723106, 0.028354106470942497, 0.04400734230875969, 0.06831223517656326, 0.0348561592400074, 0.03279772028326988, -0.007327819708734751, 0.01444224826991558, -0.08798298239707947, -0.0038798910100013018, -0.004601223394274712, 0.00990730058401823, -0.011145815253257751, 0.034381017088890076, -0.04346336051821709, 0.05034318193793297, 0.0216817744076252, -0.029493805021047592, -0.0898149311542511, -0.0002812261809594929, -0.012844196520745754, 0.04274852201342583, 0.030785221606492996, -0.0323355607688427, 0.047005098313093185, -0.012594128958880901, 0.036282751709222794, 0.028161197900772095, -0.04739787057042122, -0.02331443317234516, 0.024993347004055977, 0.051650434732437134, -0.01875162683427334, -0.022613080218434334, -0.09667212516069412, 0.057255279272794724, -0.008921241387724876, -0.022061791270971298, 0.003954438958317041, -0.01199388038367033, 0.0036640691105276346, 0.08330271393060684, -0.02435092255473137, 0.017759686335921288, -0.09203767776489258, -0.06958439201116562, -0.0033673227299004793, 0.012142886407673359, -0.011511710472404957, -0.030817750841379166, -0.011479475535452366, -0.018899569287896156, 0.02876444160938263, -0.02494451217353344, -0.04166984558105469, 0.016622064635157585, -0.0011339804623275995, -0.02378203719854355, 0.10565849393606186, 0.07477741688489914, 0.014809582382440567, 0.00481847720220685, -0.03314303606748581, 0.11223559826612473, 0.020109748467803, 0.011322465725243092, -0.008294573053717613, 0.008218104019761086, -0.027672823518514633, -0.005783793516457081, 0.021415632218122482, 0.02541496977210045, -0.05775609239935875, -0.012574524618685246, -0.0028075024019926786, 0.04882756248116493, -0.0002399752993369475, 0.032674640417099, -0.013881674036383629, 0.08509253710508347, 0.029399454593658447, 0.04131832718849182, -0.01881759613752365, -0.014502431266009808, 0.04635415971279144, -0.016223672777414322, 0.06453510373830795, -0.03023347444832325, -0.051140978932380676, -0.017346471548080444, 0.00015378983516711742, -0.021533068269491196, -0.028609197586774826, 0.020940497517585754, 0.06615156680345535, 0.021150056272745132, -0.0014851175947114825, -0.030220303684473038, 0.006905810907483101, 0.032340481877326965, 0.008931655436754227, -0.009106469340622425, -0.0317934975028038, 0.02386000193655491, -0.06349325180053711, -0.10330154746770859, -0.043694838881492615, -0.05691787227988243, -0.03491177409887314, -0.06423020362854004, 0.07905321568250656, 0.00016629474703222513, 0.05008349195122719, 0.004011275712400675, 0.037721145898103714, -0.023585915565490723, -0.03129727765917778, 0.025995509698987007, -0.005261846352368593, -0.002201993949711323, -0.04832499846816063, 0.02653435245156288, -0.026035914197564125, 0.06421845406293869, -0.031466711312532425, -0.01584479957818985, -0.02395363338291645, 0.00897387508302927, -0.057760972529649734, 0.006779161281883717, 0.050265081226825714, -0.027327708899974823, 0.006978124845772982, -0.013818828389048576, -0.002225074917078018, 0.01632271707057953, -0.009143744595348835, -0.014159354381263256, 0.03417034447193146, 0.05704738572239876, 0.035669341683387756, -0.016710136085748672, -0.04927939176559448, 0.046332813799381256, -0.08303312212228775, -0.008725399151444435, -0.03148697689175606, -0.0457153245806694, 0.045647989958524704, 0.042307086288928986, 0.01858779601752758, 0.014167014509439468, 0.08861685544252396, 0.030645253136754036, -0.023059595376253128, -0.006902948021888733, 0.052566975355148315, -0.08200675249099731, -0.01759199984371662, -0.0012351091718301177, 0.0006480718730017543, -0.03391480818390846, -0.06362046301364899, 0.022591449320316315, 0.011660260148346424, -0.03528659790754318, -0.04396628588438034, 0.03644591569900513, -0.007798126433044672, 0.027352334931492805, 0.09023711830377579, 0.0386512316763401, -0.008013145998120308, 0.015169577673077583, -0.021159783005714417, 0.023437095806002617, -0.011263655498623848, 0.01416864525526762, -0.004407119937241077, 0.011622055433690548, 0.006951391231268644, -0.023734508082270622, 0.0289397444576025, -0.009971615858376026, -0.0051516033709049225, 0.025507941842079163, 0.00907239317893982, -0.029756847769021988, -0.014846830628812313, -0.032763782888650894, 0.015422423370182514, -0.019904645159840584, -0.000716155394911766, 0.020755039528012276, 0.018561098724603653, 0.030428189784288406, 0.032239966094493866, -0.038557760417461395, -0.007558110170066357, 0.06107868626713753, 0.013021665625274181, -0.026903485879302025, -0.03327389433979988, 0.04130549356341362, -0.042131248861551285, 0.015604930929839611, 0.020850764587521553, 0.018575476482510567, -6.155347231044303e-33, -0.024597132578492165, -0.0037175395991653204, -0.0036433469504117966, 0.06684646010398865, 0.0014486388536170125, -0.03013533726334572, -0.0019288371549919248, -0.0005812392337247729, -0.059259675443172455, -0.021537622436881065, 0.01860617659986019, 0.029319249093532562, 0.027429871261119843, -0.02316235564649105, -0.0028148796409368515, 0.02267417497932911, 0.05303684249520302, 0.0007900817436166108, 0.022341793403029442, 0.04058736190199852, -0.06214339658617973, 0.0010792851680889726, -0.010063408873975277, 0.011254914104938507, -0.007683562580496073, -0.01468079723417759, -0.020881181582808495, 0.03939181938767433, 0.00796680711209774, 0.03301016613841057, -0.01843365840613842, -0.028862204402685165, -0.01859024539589882, 0.015899404883384705, 0.008030890487134457, 0.08529019355773926, -0.033794861286878586, 0.0024428279139101505, -0.03223370760679245, -0.011094247922301292, 0.051365140825510025, -0.06096050143241882, -0.016812527552247047, -0.030122574418783188, 0.004285953938961029, 0.01857081428170204, 0.030229266732931137, 0.04183011129498482, 0.030979907140135765, 0.017688192427158356, -0.09510812908411026, 0.02484830841422081, -0.01050153374671936, 0.021936271339654922, 0.016463525593280792, -0.013370858505368233, 0.04280838370323181, -0.08201658725738525, -0.0304771289229393, -0.0039839595556259155, -0.037148457020521164, -0.02471746876835823, 0.015673380345106125, -0.04996345564723015, -0.05532541498541832, -0.001954117324203253, -0.04473079741001129, 0.062496986240148544, -0.006380907259881496, 0.03093087300658226, -0.025810761377215385, 0.013256510719656944, -0.010946248658001423, -0.04713686555624008, -0.05668523535132408, 0.009697391651570797, -0.03163759410381317, 0.03386019542813301, 0.08930528163909912, 0.05824124813079834, -0.008672153577208519, -0.0012679074425250292, -0.031229279935359955, 0.032073892652988434, 0.017253460362553596, -0.019107667729258537, -0.04232999309897423, -0.03892175480723381, -0.03171234205365181, 0.022106235846877098, -0.01072399690747261, -0.051453597843647, -0.018731363117694855, 0.0210564024746418, 0.0792505145072937, -0.014696478843688965, 0.030349647626280785, 0.006046715658158064, 0.020952656865119934, -0.018188601359725, -0.06017104536294937, -0.010231228545308113, 0.04467222839593887, 0.06187494099140167, 0.03812657296657562, -0.02909262105822563, 0.002881700173020363, 0.0019071486312896013, -0.04931643605232239, 0.03873399272561073, -0.010378449223935604, 0.015973810106515884, -0.004946468397974968, -0.038740724325180054, -0.02395426668226719, 0.002390760462731123, 0.011793157085776329, 0.015031655319035053, -0.03693544864654541, -0.05643301457166672, -0.03422633185982704, 0.04962833598256111, -0.025804102420806885, -0.02971305139362812, -0.018643636256456375, 0.007831732742488384, -0.014711779542267323, 0.043183583766222, 0.08424105495214462, -0.00583982327952981, 0.0037726890295743942, -0.032175395637750626, 3.049579504477151e-07, -0.004978775046765804, 0.07916438579559326, -0.002289938973262906, 0.004858181346207857, -0.012455401942133904, -0.06962334364652634, -0.02106756530702114, 0.013762710615992546, 0.008795312605798244, 0.0006115639116615057, -0.02036789059638977, 0.015057539567351341, -0.014725830405950546, -0.0012646394316107035, -0.021260149776935577, -0.16033527255058289, -0.01907907985150814, 0.0324317142367363, -0.024302275851368904, 0.009623333811759949, 0.046958792954683304, 0.024896156042814255, 0.03572515398263931, 0.015448837541043758, -0.01603665202856064, 0.001352498191408813, -0.0018519399454817176, 0.00032299172016792, 0.03276917338371277, 0.053702253848314285, -0.019922567531466484, -0.030078282579779625, -0.009603511542081833, -0.009481319226324558, 0.02684605121612549, -0.012575495056807995, -0.03362114354968071, -0.0021882595028728247, 0.0012543386546894908, 0.04408854991197586, 0.03634284809231758, 0.002352121751755476, 0.0023715991992503405, 0.025501560419797897, 0.03696015477180481, -0.006917932536453009, 0.0064927963539958, -0.008779261261224747, -0.008031622506678104, -0.04414299502968788, 0.017600679770112038, 0.051027584820985794, 0.047152694314718246, -0.02952568605542183, 0.03406596556305885, -0.0100377406924963, -0.04426740109920502, -0.030383752658963203, 0.02408432774245739, -0.02070925198495388, -0.04436477646231651, -0.07054821401834488, -0.008064753375947475, -0.00513760419562459, 0.022298317402601242, -0.02308369055390358, 0.01707785576581955, 3.1121318548840643e-34, 0.02530021220445633, -0.04429217427968979, -0.014900417067110538, 0.017024418339133263, 0.01313337218016386, -0.02588593028485775, 0.06142754480242729, -0.019737962633371353, -0.010135567747056484, -0.06919915974140167, -0.008929824456572533], "ea6366c9-d607-441d-b084-f601bb402466": [0.012826232239603996, -0.03626122698187828, -0.023713236674666405, -0.01482785027474165, 0.020036611706018448, 0.02399817295372486, 0.02986024133861065, -0.0004786732606589794, 0.02251581661403179, 0.018843159079551697, -0.007731352001428604, 0.005603353027254343, 0.03236779570579529, 0.0922141745686531, -0.015656210482120514, 0.01671704277396202, 0.003043479286134243, -0.009158533066511154, -0.04574897512793541, -0.016316164284944534, 0.006569964345544577, 0.04437534883618355, -0.03157055005431175, 0.013258893974125385, 0.03786168619990349, -0.00522649148479104, 0.0115428501740098, 0.02342606894671917, 0.058867767453193665, 0.0410134419798851, -0.018876956775784492, 0.026610255241394043, -0.025377148762345314, 0.05286393314599991, 2.5206163627444766e-06, 1.737612547003664e-05, -0.010359163396060467, -0.006834340747445822, -0.038448501378297806, -0.03938901796936989, 0.014975245110690594, -0.033855706453323364, -0.005252952221781015, 0.028960013762116432, -0.025475485250353813, 0.02887507900595665, 0.062381476163864136, -0.052087392657995224, 0.014190230518579483, 0.04140419885516167, -0.010298063978552818, 0.07196411490440369, 0.0008283511851914227, -0.00298079801723361, 0.06468077003955841, -0.09001120924949646, -0.0029792869463562965, 0.04750889167189598, 0.06106238067150116, 0.04053032025694847, 0.04461638629436493, 0.0017155114328488708, 0.014011016115546227, -0.00012941649765707552, 0.08624135702848434, 0.047432415187358856, 0.06258358806371689, -0.10793284326791763, -0.002402366604655981, 0.011178253218531609, 0.07678069919347763, 0.016232777386903763, 0.004304062109440565, 0.043055761605501175, -0.0012930853990837932, -0.004890620242804289, 0.008816850371658802, 0.03668709099292755, -0.020646817982196808, 0.006774991285055876, -0.04520562291145325, -0.02512763813138008, -0.05094458535313606, 0.025997908785939217, 0.009014742448925972, 0.024858590215444565, -0.003284128848463297, 0.014284140430390835, 0.007933302782475948, -0.0118961026892066, 0.0801282599568367, -0.00020816123287659138, 0.0009631728171370924, 0.009262362495064735, -0.011341212317347527, -0.038330841809511185, 0.027316590771079063, -0.0044741155579686165, 0.02810068614780903, 0.008750995621085167, -0.008771379478275776, 0.02401968650519848, 0.008178411051630974, 0.02625158429145813, 0.033749353140592575, 0.04935593158006668, 0.0017200246220454574, -0.022144146263599396, 0.008340714499354362, 0.02078430913388729, -0.018448438495397568, -0.0068785748444497585, -0.013995129615068436, 0.018435925245285034, -0.00515581201761961, -0.008893593214452267, -0.013692356646060944, 0.07206284999847412, 0.03344068303704262, 0.037785112857818604, 0.04575096815824509, -0.02009928598999977, -0.02120523527264595, -0.026655886322259903, -0.05833661928772926, -0.10253763198852539, -0.016400586813688278, 0.017386317253112793, -0.028267357498407364, -0.02685389295220375, -0.0035465543624013662, -0.0347532257437706, -0.008925176225602627, -0.018802015110850334, 0.021601662039756775, -0.006416535936295986, 0.039903268218040466, 0.0032645228784531355, 0.0806354358792305, 0.014529921114444733, 0.018878834322094917, -0.006886111572384834, -0.0262448750436306, 0.016895877197384834, 0.0045025222934782505, 0.021855944767594337, 0.013895096257328987, 0.0438942052423954, -0.00979694351553917, 0.03143196925520897, 0.0011551297502592206, -0.028335029259324074, -0.051165249198675156, -0.011950913816690445, -0.013325713574886322, 0.0261774230748415, 0.016463741660118103, 0.012588722631335258, -0.022930288687348366, 0.059289418160915375, -0.015505367890000343, 0.014733418822288513, 0.04519174247980118, 0.004924157168716192, -0.021875273436307907, -0.053034912794828415, 0.07813897728919983, -0.0039054290391504765, -0.008685071021318436, -0.01054330077022314, -0.015974460169672966, 0.05628201365470886, -0.027418896555900574, 0.06589449942111969, -0.0060003758408129215, -0.031276311725378036, 0.05562114343047142, 0.008359349332749844, -0.007012991234660149, -0.002039949409663677, 0.0033727094996720552, -0.1299871802330017, -0.032215218991041183, 0.05421804264187813, -0.022759268060326576, 0.019122295081615448, -0.023048438131809235, 0.07276389747858047, -0.03306768834590912, 0.029472321271896362, -0.016264725476503372, 0.0020443114917725325, -0.05452900379896164, -0.028457745909690857, 0.03877915441989899, -0.00145547348074615, -0.017588471993803978, -0.08398353308439255, -0.03939669951796532, -0.009424886666238308, -0.0318034403026104, -0.06987999379634857, -0.012169008143246174, 0.09686657041311264, 0.01307430025190115, -0.04052985459566116, 0.0022510981652885675, -0.03363841027021408, 0.0016216193325817585, 0.05024533346295357, 0.06678569316864014, 0.009428066201508045, -0.018726956099271774, -0.0242784321308136, -0.027694400399923325, 0.02550431340932846, -0.03156294673681259, -0.003039403585717082, -0.009518503211438656, 0.021764962002635002, -0.05301646143198013, -0.06918226927518845, -0.016076713800430298, 0.012347124516963959, 0.012190289795398712, 0.002053110161796212, -0.016673391684889793, -0.003493123920634389, 0.01658698543906212, 0.06280781328678131, -0.019268890842795372, 0.013360237702727318, 0.0167759507894516, 0.002026373753324151, -0.020025087520480156, -0.021354569122195244, -0.04146676883101463, 0.06569252908229828, 0.037322770804166794, -0.06346012651920319, -0.016046790406107903, 0.07740209996700287, -0.004490968771278858, 0.02840116061270237, 0.02967209555208683, -0.009885665029287338, 0.008263204246759415, 0.004113309551030397, -0.01811647042632103, 0.0042122709564864635, 0.024668604135513306, 0.003932968247681856, 0.01150260865688324, 0.013127167709171772, -0.004211836028844118, 0.007278605829924345, -0.14409323036670685, -0.025080272927880287, -0.03223128616809845, 0.022988302633166313, -0.0007976831984706223, -0.03712286800146103, -0.008584976196289062, 0.004626303445547819, 0.004941185470670462, -0.029033713042736053, -3.474266122793779e-05, -0.05541149154305458, -0.007071817293763161, -0.0037732066120952368, 0.0010686892783269286, 0.008822299540042877, 0.013979270122945309, -0.02005857042968273, -0.018488377332687378, 0.03135049343109131, 0.002922236919403076, -0.0022554961033165455, -0.02761809527873993, 0.029137413948774338, 0.002986820414662361, -0.003169382456690073, -0.0014067025622352958, -0.010942340828478336, -0.0168843325227499, -0.01942872814834118, 0.033096812665462494, -0.11908971518278122, -0.020206840708851814, -0.008960224688053131, 0.022245552390813828, -0.03921964764595032, 0.010383721441030502, -0.03750298172235489, -0.018849074840545654, 0.010270461440086365, 0.09313103556632996, -0.002532093320041895, -0.004736689385026693, 0.0845106765627861, -0.00887711439281702, 0.039426498115062714, 0.008587086573243141, -0.02034369297325611, 0.026317069306969643, 0.003502865554764867, 0.02594742551445961, -0.043728988617658615, -0.02256636507809162, -0.06863319873809814, -0.008907085284590721, 0.02223062701523304, -0.02415614202618599, 0.06436513364315033, 0.01172415167093277, 0.013894415460526943, -0.022649720311164856, -0.006584099493920803, -0.010954678058624268, 0.029633009806275368, -0.008116920478641987, -0.03912542015314102, -0.007880237884819508, -0.017870737239718437, -0.02798409014940262, -0.10610542446374893, -0.03729940950870514, 0.006230351515114307, 0.05679682642221451, -0.02450445108115673, 0.01945706270635128, 0.004208358470350504, -0.019999630749225616, 0.05506238713860512, -0.04918672889471054, -0.008932431228458881, -0.0049245464615523815, -0.07045796513557434, 0.016777537763118744, 0.011196829378604889, -0.06287198513746262, 0.06413435190916061, -0.033247772604227066, 0.023073352873325348, -0.050751905888319016, 0.03194486349821091, -0.0477859191596508, -0.019825119525194168, -0.019003523513674736, 0.01020878553390503, 0.08084389567375183, 0.060606516897678375, 0.013462510891258717, -0.0015928918728604913, 0.02912474237382412, -0.100812166929245, -0.011903205886483192, -0.001906225923448801, -0.005692192353308201, -0.03936678543686867, 0.029824435710906982, -0.043401993811130524, 0.03284682333469391, -0.010196482762694359, 0.004228552803397179, -0.08620063960552216, 0.01186087355017662, -0.015678800642490387, 0.03797487914562225, 0.02186434343457222, -0.0077157230116426945, 0.030740557238459587, -0.005517891142517328, 0.03809361159801483, 0.02575187012553215, -0.04806177690625191, -0.021748678758740425, 0.024354692548513412, -0.009303787723183632, -0.006507946643978357, -0.019498849287629128, -0.11159558594226837, 0.08119671791791916, 0.002365371910855174, -0.009252956137061119, -0.009615438990294933, -0.007316625211387873, -0.002329618902876973, 0.0756412148475647, -0.014751637354493141, 0.003919530659914017, -0.10705774277448654, -0.10241272300481796, 0.00896807387471199, 0.004562106449157, -0.01522557158023119, -0.021931340917944908, -0.017638595774769783, -0.02561083994805813, 0.0213591530919075, 0.010053516365587711, -0.03859762102365494, 0.016830159351229668, -0.0019265402806922793, -0.03895547613501549, 0.08306174725294113, 0.06860682368278503, 0.014127233065664768, -0.04333514720201492, -0.034900374710559845, 0.07049430161714554, 0.012867096811532974, -0.0008836207562126219, -0.01119142770767212, 0.022175107151269913, -0.04190179333090782, 0.013828287832438946, -0.00222194567322731, 0.044581010937690735, -0.07347725331783295, -0.013654856011271477, -0.006975398864597082, 0.030123714357614517, -0.017857376486063004, -0.007231409661471844, -0.01597326062619686, 0.07740969955921173, 0.029796916991472244, 0.03156689926981926, -0.0180978961288929, -0.030849285423755646, 0.022790441289544106, -0.011405779980123043, 0.06788565963506699, -0.02154216542840004, -0.02793954312801361, -0.03725140541791916, -0.0007247551693581045, -0.03262452036142349, -0.023282047361135483, -0.0015431115170940757, 0.06766504049301147, 0.025319142267107964, -0.019145973026752472, -0.045809853821992874, -0.03819333389401436, 0.026288356631994247, 0.015115025453269482, 0.00972739513963461, -0.023122046142816544, 0.04192088171839714, -0.03250633180141449, -0.07108751684427261, -0.06508663296699524, -0.04471171274781227, -0.027843981981277466, -0.09276385605335236, 0.05539805069565773, 0.025483157485723495, 0.06295351684093475, 0.013511247001588345, 0.042746204882860184, -0.05092809721827507, -0.0014653835678473115, 0.03848681598901749, 0.01051760371774435, 0.01831134222447872, -0.042397622019052505, 0.013580669648945332, 0.0032641051802784204, 0.0695144534111023, -0.0224673580378294, -0.013638358563184738, -0.012028110213577747, 0.006719903089106083, -0.04121225327253342, 0.011128924787044525, 0.04195758327841759, -0.017876295372843742, 0.00880204327404499, -0.007660790346562862, -0.015247419476509094, 0.008767683058977127, -0.016189327463507652, -0.030219918116927147, 0.02465590089559555, 0.04755260422825813, 0.03128134086728096, -0.0008096462697722018, -0.044669054448604584, 0.029927853494882584, -0.049168117344379425, -0.019377678632736206, -0.03716675937175751, -0.0572553314268589, 0.026188891381025314, 0.03967560455203056, 0.021522443741559982, 0.008196734823286533, 0.1002587303519249, 0.012604806572198868, -0.023584390059113503, -0.021671606227755547, 0.04425786808133125, -0.0682750791311264, 0.00414244644343853, -0.011962995864450932, 0.01145488116890192, -0.050211578607559204, -0.04054154083132744, 0.0008777339244261384, 0.044106170535087585, -0.020344406366348267, -0.07775188982486725, 0.05777981877326965, -0.0012961617903783917, -0.0036878178361803293, 0.06182156875729561, 0.022027354687452316, -0.0317055806517601, 0.0262937992811203, -0.01810261607170105, 0.01657254435122013, -0.020228596404194832, 0.03975870832800865, -0.02609451301395893, 0.014119728468358517, -0.0014988199109211564, -0.01646249182522297, 0.024889439344406128, -0.03674155846238136, -0.0061136214062571526, 0.012972641736268997, 0.0196359995752573, -0.0253861453384161, -0.002356048207730055, -0.03674663230776787, 0.026113543659448624, -0.013587716966867447, -0.017951058223843575, 0.004881623201072216, -0.0015838583931326866, 0.039240434765815735, 0.0036240292247384787, -0.02038109116256237, -0.009008669294416904, 0.0528118833899498, 0.03111404925584793, -0.026225637644529343, -0.02674994431436062, 0.018906058743596077, -0.021812858060002327, 0.006365763023495674, 0.03308234363794327, 0.03130309283733368, -6.697235800435977e-33, -0.0065341792069375515, -0.011803057044744492, 0.009251759387552738, 0.04475958272814751, -0.016561344265937805, -0.010489867068827152, -0.0013402707409113646, -0.006471406668424606, -0.08507422357797623, -0.02433457225561142, -0.003124687820672989, 0.049866341054439545, 0.02326389029622078, -0.01893877051770687, -0.0300237238407135, 0.012331558391451836, 0.03784686326980591, 0.00023340269399341196, 0.03287477791309357, 0.00020736530132126063, -0.04069913551211357, -0.0012609086697921157, 0.010968274436891079, 0.018606513738632202, 0.030459055677056313, -0.01104701217263937, -0.017592772841453552, -0.0012452544178813696, 0.013360701501369476, 0.00020044129632879049, -0.020443972200155258, -0.04081158712506294, -0.013363765552639961, 0.008782469667494297, 0.019622430205345154, 0.11000686883926392, -0.04093316197395325, -0.016858670860528946, 0.0011395049514248967, -0.012673473916947842, 0.034428421407938004, -0.06663348525762558, -0.011159458197653294, -0.03451542556285858, -0.0007398598245345056, -0.009640578180551529, 0.021258078515529633, 0.028971441090106964, 0.02411068044602871, 0.02346046268939972, -0.08285395056009293, 0.032313618808984756, -0.017397403717041016, 0.057633176445961, 0.015086635015904903, 0.00032515806378796697, 0.016576012596488, -0.09699026495218277, -0.025312846526503563, 0.02246757410466671, -0.027376577258110046, -0.02856600098311901, 0.01584499329328537, -0.023739805445075035, -0.04117647930979729, 0.005466850474476814, -0.03591536730527878, 0.081031933426857, 0.008986959233880043, 0.02307819202542305, -0.019461702555418015, 0.025475433096289635, -0.015011044219136238, -0.07445020228624344, -0.10873498022556305, 0.0047748880460858345, -0.026390092447400093, 0.023188771679997444, 0.08988577872514725, 0.0299309603869915, 0.01958850771188736, -0.004324963316321373, -0.034512728452682495, 0.040390003472566605, 0.01575077511370182, -0.014731152914464474, -0.03742821514606476, -0.018871217966079712, -0.03631235286593437, 0.020770570263266563, -0.02228115126490593, -0.053051359951496124, -0.02406744472682476, 0.011262527666985989, 0.09027335047721863, -0.02672443352639675, 0.04269023984670639, -0.015195748768746853, 0.019659005105495453, -0.012130905874073505, -0.08350322395563126, -0.0045202141627669334, 0.027865808457136154, 0.08911849558353424, 0.014297828078269958, -0.02120024897158146, -0.013541246764361858, 0.012258718721568584, -0.04626309871673584, 0.02445955201983452, 0.0034092057030647993, 0.02789970673620701, -0.009035535156726837, -0.018354330211877823, -0.00557274604216218, -0.005202054046094418, 0.008333024568855762, 0.03561518341302872, -0.031686652451753616, -0.03125752881169319, -0.016158344224095345, 0.02531399019062519, -0.03624613955616951, -0.03668510168790817, -0.030905116349458694, 0.011891095899045467, -0.0326414555311203, 0.04998070001602173, 0.07982029020786285, 0.008379563689231873, -0.0002845232666004449, -0.03874962404370308, 3.2124054882842756e-07, -0.0003433734236750752, 0.07237634062767029, -0.00032774003921076655, 0.012979695573449135, -0.010211380198597908, -0.06289635598659515, 0.010949207469820976, 0.01900179497897625, 0.002927395049482584, 0.03279493749141693, -0.008246435783803463, 0.015158039517700672, -0.015862397849559784, -0.008122406899929047, -0.025215940549969673, -0.15213897824287415, -0.02270999178290367, -0.010394081473350525, -0.024444924667477608, 0.0023323034401983023, 0.02571920119225979, 0.039605848491191864, 0.029189325869083405, 0.028736766427755356, -0.00041845900705084205, -0.01192391850054264, -0.01586233265697956, -0.008702649734914303, 0.03531726822257042, 0.021324055269360542, 0.006617696024477482, -0.020261315628886223, 0.006985106971114874, -0.008591677993535995, 0.033560220152139664, 0.006708502769470215, -0.023389926180243492, 0.01126752607524395, 0.009003043174743652, 0.05039253458380699, 0.032074663788080215, -0.05012281984090805, 0.03144427761435509, 0.0011517790844663978, 0.04409633204340935, 0.012172325514256954, -0.021854836493730545, -0.019055482000112534, -0.0028952686116099358, -0.027067171409726143, 0.025485381484031677, 0.026938872411847115, 0.03347549960017204, -0.0158639345318079, 0.03437783569097519, -0.02557811513543129, -0.042394500225782394, -0.023669686168432236, 0.05788544937968254, 0.0003767319140024483, -0.02819773554801941, -0.08875623345375061, 0.0003185733512509614, -0.01756151020526886, 0.02438620664179325, -0.010434619151055813, -0.009176177904009819, 3.3293198186440884e-34, 0.002275483449921012, -0.04084797948598862, -0.03677698224782944, 0.011068562977015972, -0.0034148376435041428, -0.02205178700387478, 0.06114014610648155, 0.01637459732592106, 0.0045749652199447155, -0.0478389710187912, -0.007599887903779745], "a45cd662-89ef-4e64-9475-caae4a08d1f7": [0.03607645258307457, -0.04895296320319176, 0.0030398292001336813, -0.02003372646868229, -0.0015102612087503076, 0.03563115745782852, 0.0047566210851073265, -0.014707486145198345, 0.026299387216567993, -0.002502174349501729, 0.01941167563199997, 0.008478132076561451, -0.019298294559121132, 0.08516747504472733, -0.052861057221889496, -0.0009493453544564545, 0.0023841846268624067, -0.017551584169268608, -0.00455063208937645, 0.003277490148320794, 0.043039772659540176, 0.022644199430942535, -0.05913630127906799, 0.003300877520814538, -0.0603758841753006, -0.03423663228750229, 0.017510458827018738, 0.028127087280154228, 0.03741424158215523, -0.015571849420666695, 0.010829090140759945, 0.017141344025731087, 0.022303294390439987, 0.004457130096852779, 2.4086484700092115e-06, -0.03667439892888069, -0.023655377328395844, 0.007877808064222336, -0.042923931032419205, 0.016963547095656395, -0.026746071875095367, -0.005847633816301823, 0.0005471565527841449, 0.0011249086819589138, -0.039732638746500015, 0.05452466383576393, 0.00047541799722239375, -0.00527906185016036, 0.04329400882124901, 0.06929399073123932, -0.003511557588353753, 0.05460954084992409, -0.028715988621115685, -0.02441338635981083, 0.04811196029186249, -0.07264731824398041, -0.01720653474330902, 0.048486970365047455, 0.065598264336586, 0.018188178539276123, 0.00519486702978611, -0.03529748320579529, 0.008916783146560192, -0.011958001181483269, 0.06702975183725357, 0.035098470747470856, 0.033232565969228745, -0.06341984868049622, 0.009387891739606857, -0.0001461827923776582, 0.09273017197847366, -0.01826886273920536, 0.021918272599577904, 0.03547827526926994, 0.05429334193468094, 0.003147816052660346, -0.022267062216997147, -0.02821395918726921, -0.012162181548774242, -0.01961326226592064, -0.004849642049521208, -0.03488472104072571, -0.06685801595449448, -0.03604154288768768, 0.02800413966178894, 0.05363744869828224, 0.0035680136643350124, -0.01108724158257246, -0.039236463606357574, 0.005262632854282856, 0.07699234783649445, 0.014016554690897465, 0.003311864798888564, 0.04311881586909294, -0.052093006670475006, -0.04878288879990578, 0.018727213144302368, -0.006133057177066803, -0.016154471784830093, 0.05262366309762001, -0.0955856665968895, 0.045820511877536774, 0.02473406307399273, 0.020713748410344124, 0.05070628225803375, 0.01716751977801323, 0.07572858780622482, 0.01748048886656761, -0.03777682036161423, 0.007257438264787197, -0.015294722281396389, -0.00523354159668088, -0.06939983367919922, 0.006415211595594883, 0.029446041211485863, -0.02441513165831566, -0.037334054708480835, 0.08005445450544357, 0.032320331782102585, 0.015162567608058453, 0.02871493622660637, 0.029572011902928352, -0.013221248984336853, -0.024395516142249107, -0.05229318141937256, -0.10131242126226425, -0.06266184896230698, -0.012411540374159813, -0.003082537790760398, -0.040578633546829224, -0.015530497767031193, 0.027140332385897636, 0.0044322083704173565, 0.012185168452560902, 0.006066101137548685, 0.0006663143285550177, -0.03223540261387825, -0.0421781912446022, 0.02341257408261299, -0.007143340073525906, 0.0006477527786046267, -0.026592280715703964, -0.02481728605926037, 0.00457426905632019, -0.009942221455276012, -0.0047089774161577225, -0.00036221768823452294, 0.05257759243249893, -0.013278349302709103, 0.01344999298453331, 0.013072635978460312, 0.005443415604531765, -0.04248310998082161, 0.007336213253438473, -0.005547628737986088, -0.003910988103598356, -0.0055511933751404285, 0.0004759865114465356, -0.040558911859989166, 0.020011957734823227, 0.026520587503910065, 0.033193014562129974, 0.02166207879781723, 0.04048735648393631, -0.009342973120510578, -0.024920059368014336, 0.02192416973412037, 0.015198636800050735, -0.04348951578140259, 0.014122147113084793, 0.002805667696520686, -0.0011715547880157828, 0.011510365642607212, 0.06307905912399292, -0.05913638323545456, 0.04131556302309036, 0.020092664286494255, -0.027330808341503143, 0.045235976576805115, -0.006926203146576881, -0.045776549726724625, -0.044436778873205185, -0.025572732090950012, 0.018438754603266716, -0.05978158861398697, 0.001634563086554408, -0.009403116069734097, 0.044520627707242966, -0.0390809141099453, 0.031041326001286507, -0.0035212687216699123, -0.034406013786792755, -0.006766676437109709, 0.02832738868892193, 0.03982166945934296, -0.02128605544567108, 0.003711023600772023, -0.007468212395906448, -0.009053457528352737, 0.023033253848552704, -0.027475710958242416, -0.05722475424408913, 0.022497525438666344, 0.042516063898801804, 0.027877893298864365, -0.025735080242156982, -0.0021502987947314978, -0.0008112541981972754, -0.002139018615707755, 0.005094157997518778, 0.07568246126174927, 0.031831223517656326, -0.07301703095436096, 0.011890357360243797, 0.003850797191262245, 0.029421133920550346, -0.0032489250879734755, 0.005655067041516304, 0.016618946567177773, 0.01803348958492279, -0.03645019605755806, 0.03635453060269356, -0.029091881588101387, 0.008676832541823387, -0.033462923020124435, -0.04289689287543297, -0.009478773921728134, -0.002433166140690446, 0.049764495342969894, 0.0344776026904583, 0.01784081570804119, 0.01906772516667843, -0.007989034056663513, 0.00590931810438633, 0.031259242445230484, 0.0050612036138772964, 0.0022389288060367107, -0.02010154165327549, 0.054120395332574844, -0.02443741075694561, -0.0471980981528759, 0.10014662146568298, 0.015573745593428612, 0.027371272444725037, 0.003224650165066123, 3.0648778192698956e-05, 0.008130541071295738, 0.006302619818598032, -0.03546706587076187, 0.02122819982469082, -0.006030974444001913, 0.011949422769248486, -0.0012286050477996469, 0.038526784628629684, -0.02702360972762108, -0.00224432279355824, -0.0668419748544693, 0.012710558250546455, -0.054401811212301254, 0.02479943446815014, -0.048075031489133835, -0.03221456706523895, -0.046643488109111786, 0.0036983201280236244, -0.0004333202086854726, -0.035043131560087204, 0.04046782851219177, -0.025932472199201584, -0.022636419162154198, -0.023152971640229225, -0.04082872346043587, 0.013109082356095314, -0.004581504501402378, -0.01785448007285595, -0.03666160628199577, -0.04607187956571579, -0.005724982358515263, 0.011847668327391148, 0.002260820707306266, 0.013630857691168785, 0.025779204443097115, -0.032185133546590805, -0.004436576273292303, 0.0050486302934587, -0.015189357101917267, -0.021160850301384926, 0.03683143109083176, -0.05708286538720131, -0.049321189522743225, -0.0010360820451751351, 0.0016991401789709926, -0.03658854588866234, 0.012288960628211498, -0.029564188793301582, -0.014452621340751648, 0.003726441180333495, 0.011461872607469559, 0.06000274419784546, 0.05603453889489174, 0.04205089062452316, -0.03116449899971485, 0.03648727014660835, 0.00154761818703264, -0.0028348604682832956, -0.008800205774605274, 0.030043238773941994, 0.057644251734018326, -0.0372215174138546, 0.02536109834909439, -0.04923030361533165, -0.0046510156244039536, 0.011305266991257668, 0.007231228984892368, 0.075452521443367, -0.007863934151828289, 0.015962449833750725, -0.003498367266729474, -0.04400678351521492, -0.01027747057378292, 0.020319970324635506, 0.01874431036412716, -0.02552265301346779, 0.012299342080950737, -0.009438734501600266, -0.0052382382564246655, -0.08314330130815506, -0.07264035195112228, -0.03320734202861786, 0.0006303458358161151, -0.015521416440606117, 0.02134457416832447, 0.036149900406599045, -0.04052887111902237, 0.03661583364009857, -0.058692704886198044, 0.003549861488863826, 0.009821724146604538, -0.04166467487812042, 0.0337604358792305, 0.015434782020747662, -0.014168448746204376, 0.042122840881347656, -0.055971771478652954, -0.01978492923080921, -0.08619644492864609, 0.004543726798146963, 0.019781459122896194, -0.04076720029115677, -0.014135811477899551, 0.018999464809894562, 0.03976229578256607, -0.022126629948616028, -0.016893524676561356, 0.0057698884047567844, 0.030587680637836456, -0.044277701526880264, -0.017922990024089813, 0.08891169726848602, -0.0025157362688332796, 0.01850239373743534, -0.036712586879730225, -0.008945134468376637, 0.06365478038787842, -0.0010961086954921484, -0.0035740749444812536, -0.09227854758501053, 0.015001264400780201, 0.008483296260237694, 0.07210571318864822, -0.0003133227291982621, 0.010429971851408482, 0.07539601624011993, -0.014611582271754742, 0.04384602978825569, 0.01844704896211624, -0.012368427589535713, 0.04491673782467842, 0.010225992649793625, 0.038945358246564865, -0.038653772324323654, 0.00641852430999279, -0.09753531962633133, -0.0012020155554637313, -0.019420335069298744, 0.05582264065742493, -0.019222045317292213, -0.04247981309890747, -0.006184370722621679, 0.008557126857340336, -0.058442991226911545, 0.036857880651950836, -0.1143021434545517, -0.09216483682394028, 0.008380204439163208, -0.037348873913288116, -0.02661113813519478, -0.0001322396710747853, -0.03547237813472748, -0.01514583919197321, 0.0034805797040462494, -0.0017373678274452686, -0.07641679793596268, -0.038815937936306, 0.04354025796055794, -0.00198712688870728, 0.047618914395570755, 0.035082075744867325, 0.005472563207149506, 0.01056490559130907, -0.03624894469976425, 0.004998184274882078, 0.04823344200849533, 0.05175793170928955, -0.009820221923291683, -0.007025500293821096, -0.03454148396849632, 0.0163099505007267, 0.006342664826661348, 0.09000980854034424, -0.00033246524981223047, 0.03942595049738884, 0.019624775275588036, -0.0005222343606874347, 0.009157936088740826, 0.041416753083467484, -0.022802408784627914, 0.08054517209529877, 0.056346870958805084, 0.045577272772789, -0.028911897912621498, -0.02487347461283207, 0.028306258842349052, -0.02688915655016899, 0.06036079674959183, -0.048750363290309906, -0.06576942652463913, -0.05093159154057503, 0.004394838120788336, -0.029487188905477524, -0.027347641065716743, -0.0033232613932341337, 0.024003954604268074, 0.025514010339975357, -0.013068032450973988, -0.01369748916476965, -0.03905979171395302, 0.09976640343666077, 0.023113613948225975, 0.048364054411649704, -0.02156991697847843, 0.007584185339510441, -0.05077476426959038, -0.11283184587955475, -0.02714158035814762, 0.005613051354885101, -0.012805999256670475, 0.02680535614490509, 0.026998532935976982, 0.01814749278128147, 0.011620696634054184, -0.002697994001209736, 0.03096906468272209, 0.006640119478106499, -0.019400808960199356, 0.0656120553612709, -0.022474324330687523, 0.022635599598288536, -0.08263698220252991, 0.022797273471951485, -0.017326734960079193, 0.0749644935131073, -0.022257031872868538, 0.010858997702598572, -0.038657594472169876, 0.018829310312867165, -0.03525719791650772, 0.008538523688912392, 0.010077807120978832, -0.05734226852655411, 0.014994019642472267, 0.0605274960398674, -0.06214359775185585, -0.006297812797129154, -0.03311773017048836, 0.03790947049856186, 0.023918328806757927, 0.02485177479684353, 0.009423022158443928, -0.014382423833012581, 0.0003999693435616791, 0.014616336673498154, -0.09207326918840408, 0.022492291405797005, 0.013003446161746979, -0.06257861852645874, 0.07612204551696777, -0.019096534699201584, -0.05317382514476776, 0.004582634195685387, 0.029707247391343117, 0.00933643989264965, -0.02595372311770916, -0.0016202968545258045, 0.01953575387597084, 0.004776611924171448, -0.04091901704668999, -0.02196395955979824, 0.027393482625484467, -0.011172796599566936, 0.0036232885904610157, -0.036858003586530685, 0.024095747619867325, -0.049433935433626175, -0.03680659830570221, 0.05691833049058914, -0.019034037366509438, -0.00600914191454649, 0.05527306720614433, -0.021895477548241615, -0.02069043181836605, 0.007007870357483625, -0.03997686877846718, 0.04608721286058426, -0.03592308983206749, 0.06547874957323074, 0.007721464149653912, 0.013384569436311722, -0.019867464900016785, 0.015876097604632378, 0.05521821975708008, -0.02982451021671295, -0.019222065806388855, 0.04351478070020676, -0.013093782588839531, -0.06890028715133667, 0.05513595789670944, -0.005571356974542141, 0.05170948803424835, -0.002466866746544838, 0.0006498267757706344, -0.04832873493432999, -0.002838953398168087, -0.01608588546514511, -0.004240748006850481, -0.05730463191866875, -0.007666938006877899, 0.03868094086647034, 0.028692666441202164, -0.04113588109612465, 0.007542190607637167, 0.022811859846115112, 0.014760715886950493, -0.0530724935233593, 0.011259625665843487, 0.030841030180454254, -6.064260745192976e-33, -0.025661194697022438, -0.05962737277150154, 0.00930817611515522, 0.06617041677236557, -0.02486667037010193, -0.05848352983593941, 0.04852087050676346, 0.035164687782526016, -0.04602576047182083, -0.01843266189098358, 0.025478187948465347, -0.012777897529304028, 0.016159499064087868, -0.029534487053751945, -0.010629129596054554, -0.016089973971247673, 0.026745911687612534, -0.017084332183003426, 0.00010072505392599851, 0.06015832722187042, -0.008058547973632812, 0.027149297297000885, -0.043638814240694046, -0.027714567258954048, -0.021993011236190796, 0.012238455936312675, 0.019624637439846992, 0.0308501198887825, 0.007238700985908508, -0.016365233808755875, 0.0006965018692426383, 0.007523959502577782, -0.007323443423956633, 0.06122155115008354, 0.03527575731277466, 0.11504080146551132, -0.04368123412132263, -0.029903220012784004, -0.010169747285544872, -0.008793868124485016, 0.0339384451508522, -0.029983291402459145, -0.036365609616041183, -0.021344127133488655, -0.00533780362457037, 0.061604633927345276, 0.04839064180850983, 0.03355397284030914, -0.0005483224522322416, 0.06828702241182327, -0.06426256895065308, -0.014425263740122318, -0.02077401988208294, -0.03424420952796936, -0.02439931407570839, 0.08287563174962997, 0.016223600134253502, -0.028877295553684235, -0.026017293334007263, 0.02999725192785263, -0.021000530570745468, -0.026793841272592545, -0.024982240051031113, -0.009680431336164474, -0.03877096623182297, -0.0014085514703765512, -0.03636026382446289, 0.034972064197063446, 0.0075950613245368, 0.007776621729135513, -0.0108894482254982, 0.016197102144360542, -0.015814492478966713, -0.03173600137233734, 0.00952882505953312, -0.021037928760051727, -0.02771960012614727, 0.02760499157011509, 0.1168583482503891, -0.014554637484252453, -0.0044904653914272785, -0.03932898864150047, -0.027632717043161392, 0.025268862023949623, 0.05305269733071327, 0.03623292222619057, 0.014780900441110134, -0.06664671003818512, -0.04090077057480812, 0.050284840166568756, -0.08003140985965729, -0.030657924711704254, -0.0010206743609160185, 0.00911006797105074, 0.039643269032239914, 0.021954946219921112, 0.04795245826244354, -0.045206502079963684, -0.003693328006193042, -0.03688725084066391, -0.07195229083299637, 0.030017200857400894, 0.02343853749334812, 0.03101714886724949, 0.0379989854991436, -0.007607819978147745, -0.01307824905961752, 0.025752529501914978, -0.004581928253173828, -0.012956048361957073, 0.01992618851363659, 0.007494380231946707, -0.039595361799001694, -0.030147409066557884, -0.00639171851798892, 0.04388875886797905, -0.008583021350204945, 0.04624885320663452, -0.02830228954553604, -0.04086386784911156, -0.01481535378843546, 0.0004477698530536145, 0.036922723054885864, -0.036348141729831696, -0.040640007704496384, -0.0032216294202953577, -0.024846423417329788, 0.010402935557067394, 0.07607617974281311, -0.003493459662422538, -0.0011692391708493233, -0.029267750680446625, 3.1248441700881813e-07, -0.06464230269193649, 0.04166025295853615, -0.01329895295202732, -0.009117080830037594, 0.023364892229437828, -0.021957600489258766, -0.009834065102040768, -0.00851439218968153, -0.009705076925456524, -0.044965676963329315, -0.035126350820064545, -0.002308892086148262, -0.025710904970765114, 0.010218186303973198, -0.04897947981953621, -0.1414736658334732, -0.021600782871246338, 0.03153888136148453, -0.029487421736121178, 0.030020873993635178, 0.0835200622677803, 0.0125786317512393, 0.02479126676917076, 0.008705154992640018, 0.005844889674335718, -0.028746552765369415, -0.03060227818787098, 0.04184788465499878, -0.06110402196645737, 0.03579283878207207, 0.007481043692678213, 0.011324015446007252, -0.017502153292298317, 0.03783772513270378, -0.01215937826782465, 0.015577751211822033, -0.034256353974342346, -0.012899360619485378, -0.006144861225038767, -0.026761559769511223, -0.019402820616960526, 0.046675074845552444, -0.013340591453015804, 0.010043585672974586, 0.04605349525809288, -0.0555904246866703, -0.01954386569559574, -0.01218340266495943, 0.031017035245895386, -0.03694247454404831, -0.010181238874793053, 0.05668019503355026, 0.025556545704603195, -0.0033919713459908962, 0.0492357462644577, 0.0395105816423893, -0.01030356902629137, -0.014219309203326702, 0.04625813663005829, 0.028577877208590508, -0.08881732821464539, -0.08941114693880081, 0.037832535803318024, -0.055315397679805756, 0.017875544726848602, 0.0534367635846138, 0.006172119174152613, 2.9170259657639696e-34, -0.011513695120811462, 0.05284854397177696, -0.04181675612926483, 0.07219783961772919, 0.00626528961583972, 0.001336863380856812, 0.051334209740161896, 0.017362849786877632, 0.04873203486204147, -0.05133724957704544, -0.002121716272085905], "65522fe5-fb80-43d0-8032-255f08e75db4": [-0.01492647547274828, 0.008359157480299473, -0.020900916308164597, -0.023716457188129425, 0.006347977090626955, 0.009933830238878727, 0.017198119312524796, -0.008083492517471313, 0.04554034397006035, 0.01503642089664936, -0.018563909456133842, 0.014331025071442127, -0.007930587977170944, 0.09177286922931671, -0.02495557814836502, 0.003325856290757656, 0.010739951394498348, -0.010716377757489681, -0.044188838452100754, -0.006902214139699936, 0.01938672736287117, 0.020986407995224, -0.03713322430849075, 0.004852195270359516, 0.019138576462864876, -0.014008411206305027, 0.015091242268681526, -0.010616878047585487, 0.056674979627132416, 0.021542800590395927, -0.012451127171516418, 0.04002688080072403, 0.024095583707094193, -0.005909367464482784, 2.4503772237949306e-06, 0.01228351891040802, -0.0299820639193058, -0.007831080816686153, -0.06955400854349136, -0.04075884073972702, -0.007817456498742104, 0.019452013075351715, -0.013380646705627441, -0.0005130455829203129, -0.02180430293083191, 0.04917266592383385, 0.046610936522483826, -0.033552687615156174, 0.0005937384557910264, 0.07013261318206787, 0.0022850586101412773, 0.059312667697668076, 0.020052805542945862, -0.03395625203847885, 0.005819486919790506, -0.026051053777337074, 0.0059167155995965, 0.019924873486161232, 0.06024732068181038, 0.01757260598242283, 0.022668171674013138, 0.0034696520306169987, -0.0060514784418046474, -0.011078627780079842, 0.08810316771268845, 0.047215383499860764, 0.034008923918008804, -0.07350422441959381, 0.04739585518836975, -0.023828275501728058, 0.09820733964443207, -0.020145531743764877, -0.007107078097760677, 0.01705649122595787, 0.024222178384661674, 0.009854950942099094, -0.035966482013463974, -0.0007679004338569939, -0.0055184634402394295, -0.021148519590497017, -0.039237767457962036, -0.039157673716545105, -0.060991451144218445, -0.004396524745970964, 0.008420045487582684, -0.017715945839881897, 0.013878908008337021, 0.0013625719584524632, 0.006366414483636618, 0.009536621160805225, 0.10694622993469238, 0.008637526072561741, 0.04143981263041496, 0.032440584152936935, -0.02829096093773842, -0.04085695743560791, 0.06429006159305573, -0.009670602157711983, 0.006171706598252058, 0.007003785576671362, -0.021167680621147156, 0.018826952204108238, 0.022719064727425575, 0.011455879546701908, 0.03135249391198158, -0.004568048752844334, 0.020961018279194832, -0.01663990132510662, -0.03615451604127884, 0.042277742177248, -0.024821430444717407, -0.005789749789983034, -0.012825727462768555, 0.04836383834481239, -0.004407084081321955, -0.023015780374407768, -0.03399544581770897, 0.06126205995678902, 0.026355518028140068, 0.010753516107797623, 0.03487553820014, 0.036882832646369934, -0.06847734749317169, -0.005182236433029175, -0.04483111947774887, -0.07318156957626343, -0.036067645996809006, -0.015759475529193878, -0.01297109853476286, -0.05019081011414528, 0.002131219720467925, -0.018673008307814598, 0.01716403290629387, -0.014641012996435165, 0.015164063312113285, 0.0224334504455328, 0.0036606660578399897, -0.044413868337869644, 0.04994494095444679, 0.0046774824149906635, 0.0025912846904248, -0.006649166811257601, -0.02750830352306366, 0.020709307864308357, 0.050672344863414764, 0.005833657458424568, 0.006582105997949839, 0.006191139109432697, -0.014990361407399178, 0.018804794177412987, 0.007947001606225967, -0.012908807024359703, 0.00832602009177208, -0.021711189299821854, 0.03620266169309616, -0.027276290580630302, 0.006360238417983055, -0.015158403664827347, -0.05031682923436165, 0.05199427902698517, -0.02386852353811264, 0.004096908029168844, 0.045016683638095856, 0.027122361585497856, -0.017542639747262, -0.07541187852621078, -0.0020196817349642515, 0.013285991735756397, -0.03460616245865822, 0.0053505622781813145, -0.031427595764398575, 0.011709701269865036, -0.02911185845732689, 0.08659527450799942, -0.04770667105913162, -0.0032742780167609453, 0.06525639444589615, 0.015115581452846527, -0.031062180176377296, -0.0697382315993309, 0.008910550735890865, -0.06195208802819252, -0.0262881089001894, 0.05112288147211075, -0.050626397132873535, 0.001587837003171444, 0.00923142023384571, 0.015689760446548462, -0.028976570814847946, 0.041586488485336304, -0.006904189009219408, -0.010864798910915852, -0.03660820424556732, 0.0050463322550058365, 0.05980895087122917, -0.005069478414952755, -0.03132792189717293, -0.055647142231464386, -0.01714393123984337, -0.029104754328727722, -0.02515137754380703, -0.06282903254032135, 0.011466500349342823, 0.08305130153894424, -0.004930098075419664, -0.08073864132165909, -0.0004292204394005239, -0.027189381420612335, 0.018536675721406937, 0.04962726682424545, 0.04815824329853058, 0.0028643112163990736, -0.053640954196453094, 0.009602867998182774, 0.01348868664354086, -0.005734534002840519, -0.031194116920232773, 0.004565316252410412, 0.054697275161743164, 0.011345618404448032, -0.03945326805114746, -0.041566621512174606, 0.009609571658074856, -0.004036718979477882, -0.02221493236720562, -0.010147128254175186, 0.008619682863354683, -0.01089476328343153, 0.10593786090612411, 0.04279417544603348, -0.015372956171631813, 0.017324265092611313, 0.018418151885271072, -0.03140557184815407, 0.016093706712126732, 0.03031584434211254, -0.031010525301098824, 0.0015250099822878838, 0.014282148331403732, -0.04899127781391144, -0.037079598754644394, 0.10216175764799118, 0.0046531446278095245, 0.04214910790324211, 0.011039122007787228, 0.02475881390273571, 0.034492574632167816, 0.0059007746167480946, 0.007427158299833536, 0.0074540069326758385, -0.02088487334549427, -0.019244952127337456, 0.05267604812979698, 0.010605116374790668, -0.027842888608574867, -0.029912831261754036, -0.11782332509756088, -0.008642280474305153, -0.07762651145458221, 0.03801048547029495, -0.0008726580417715013, -0.03740421682596207, -0.03333568200469017, 0.016293445602059364, -0.02994174137711525, -0.021543480455875397, -0.018388494849205017, -0.045002639293670654, -0.0073699625208973885, -0.02199679985642433, 0.0017286916263401508, -3.671032754937187e-05, 0.016306040808558464, -0.011059803888201714, -0.007404518313705921, -0.014314045198261738, 0.010252231732010841, -0.0011600364232435822, 0.03464680165052414, 0.007836300879716873, 0.002897718222811818, 0.05021020770072937, -0.05659041926264763, -0.0022632810287177563, -0.014489798806607723, -0.004041652195155621, -0.0023412052541971207, -0.07481072843074799, -0.005208765622228384, 0.0028545395471155643, 0.03320575878024101, -0.011160234920680523, 0.018383430317044258, -0.01870589517056942, 0.0006084369961172342, -0.015927869826555252, 0.04952637851238251, 0.03317909687757492, 0.03467053547501564, 0.09210856258869171, -0.045772794634103775, 0.036996304988861084, -0.01709100790321827, 0.007072062697261572, -0.01714540272951126, 0.01741521619260311, 0.027283484116196632, -0.05077284201979637, 0.01029010210186243, -0.07480952888727188, 0.01903383620083332, 0.004854578524827957, -0.021088453009724617, 0.05348758026957512, 0.030063707381486893, 0.03412666171789169, 0.0159296914935112, -0.02503739297389984, -0.010007296688854694, -0.04087265580892563, 0.005940376315265894, -0.01584312692284584, 0.008044512011110783, 0.003026462160050869, -0.003383144037798047, -0.0756104588508606, -0.059148430824279785, -0.0024149667005985975, 0.05820868909358978, 0.005007599014788866, 0.032617539167404175, -0.04290439933538437, -0.03234533593058586, 0.040169112384319305, -0.049742329865694046, -0.03455615043640137, -0.004470971878618002, -0.058318063616752625, 0.02366735227406025, 0.007103108800947666, -0.03165096417069435, 0.0553530752658844, -0.037246476858854294, 0.005072789266705513, -0.07592983543872833, -0.016984006389975548, -0.015598418191075325, -0.02932438813149929, -0.017875317484140396, 0.01673395186662674, 0.032627277076244354, 0.021585198119282722, -0.0036593691911548376, 0.00673171691596508, 0.04824789986014366, -0.04318610206246376, -0.014319960959255695, 0.048467446118593216, -0.0032673508394509554, -0.01798754744231701, -0.05329878255724907, -0.007620200049132109, 0.08492077887058258, -0.0005960361449979246, -0.006720885634422302, -0.13643327355384827, 0.030540501698851585, -0.060231223702430725, 0.061306074261665344, -0.01801501214504242, -0.0022122433874756098, 0.030001871287822723, 0.005863351281732321, 0.006415043491870165, 0.007190251257270575, -0.01928083971142769, 0.01931346021592617, 0.052932608872652054, -0.02285481058061123, -0.045172709971666336, -0.009277503937482834, -0.040105730295181274, 0.05148667097091675, -0.015785876661539078, 0.0005616724374704063, -0.01872416026890278, -0.0325426422059536, -0.016162743791937828, 0.030975932255387306, -0.03350226208567619, 0.011203494854271412, -0.13768638670444489, -0.034576062113046646, 0.02233954519033432, -0.008554686792194843, -0.01436911802738905, -0.04512292146682739, -0.008604591712355614, -0.008457035757601261, 0.006998964119702578, 0.009882614947855473, -0.05267370492219925, -0.005622811149805784, -0.02347470633685589, 0.005715307779610157, 0.07217425107955933, 0.026738347485661507, 0.026358939707279205, -0.03802929446101189, -0.050519101321697235, 0.03775308281183243, 0.00985443964600563, 0.05167412757873535, -0.017830340191721916, -0.018032988533377647, -0.03955623507499695, 0.01034925039857626, 0.02470954693853855, 0.08379966020584106, -0.021223360672593117, -0.01960691250860691, 0.017995623871684074, -0.005692836828529835, -0.007938375696539879, -0.00011503637506393716, -0.02711256965994835, 0.05837419256567955, 0.005469041410833597, 0.023430148139595985, -0.03056998923420906, -0.006995670963078737, 0.022576887160539627, -0.04690856486558914, 0.05057379603385925, -0.037533387541770935, 0.0059154219925403595, -0.0878223329782486, 0.025205640122294426, -0.0073389820754528046, -0.02353883907198906, 0.06036074459552765, 0.05342818424105644, 0.03987153619527817, -0.024752158671617508, -0.01265038177371025, -0.03233012184500694, 0.051334213465452194, 0.004059222526848316, 0.03435215353965759, -0.023686517030000687, 0.022878553718328476, -0.023923542350530624, -0.1183236762881279, -0.037304773926734924, -0.042268771678209305, -0.03000582568347454, -0.06064769998192787, 0.04815737158060074, 0.005843262653797865, 0.011117497459053993, 0.01794712245464325, 0.029176417738199234, 0.015841417014598846, -0.01087712962180376, 0.05675489082932472, 0.051201507449150085, 0.04711643233895302, -0.03886799514293671, 0.03085576929152012, -0.011162038892507553, 0.05059973523020744, -0.026962367817759514, -0.025583935901522636, -0.005410830955952406, -0.024028753861784935, 0.0031277714297175407, 0.03157661855220795, 0.03957190737128258, -0.03707859665155411, -0.021854132413864136, 0.013190299272537231, -0.06703340262174606, 0.005924983415752649, -0.07324545085430145, -0.004844819661229849, 0.01736324653029442, 0.037123505026102066, 0.029823455959558487, 0.01046090479940176, -0.020929178223013878, 0.04060600325465202, -0.12010099738836288, -0.026389624923467636, 0.019220585003495216, -0.07749848067760468, 0.12875844538211823, -0.005997072905302048, -0.01930966228246689, 0.030072376132011414, 0.05310388281941414, 0.030979622155427933, -0.012466632761061192, -0.042685896158218384, -0.03569871559739113, 0.0002476448134984821, -0.006547007244080305, -0.010630232281982899, 0.004251168109476566, -0.017751239240169525, -0.03614611178636551, 0.0162213072180748, 0.05195656418800354, -0.03965918347239494, -0.04913586378097534, 0.016231108456850052, -0.004422612022608519, -0.01470968034118414, 0.04676037281751633, -0.014650462195277214, -0.005294624250382185, -0.004269781522452831, -0.051131561398506165, 0.03364575654268265, 0.007413623388856649, 0.034038979560136795, -0.035404983907938004, 0.009215852245688438, 0.012111518532037735, -0.016231918707489967, 0.027707980945706367, -0.07727928459644318, -0.025252005085349083, 0.05908791348338127, 0.034129124134778976, -0.041716236621141434, -0.005825635511428118, -0.08798538148403168, 0.06796254217624664, 0.01986139640212059, -0.013562382198870182, -0.0039265695959329605, -0.007646277546882629, 0.04174932464957237, 0.003583447076380253, -0.04645117372274399, -0.020459117367863655, 0.04561113938689232, 0.03689410910010338, -0.04180625453591347, 0.021889790892601013, 0.033994078636169434, 0.01733998768031597, 0.017440566793084145, 0.03111274354159832, 0.049728404730558395, -6.242957927037042e-33, -0.022420162335038185, -0.025101546198129654, 0.0021574588026851416, 0.05877777561545372, -0.022161761298775673, -0.06980573385953903, 0.01469163317233324, 0.0014938581734895706, -0.030636955052614212, -0.03503076732158661, 0.016186613589525223, -0.005474928300827742, 0.020202819257974625, -0.022941607981920242, -0.027677832171320915, 0.024140583351254463, 0.05358465760946274, 0.03179672732949257, -0.004530824720859528, 0.03584755212068558, -0.04108109697699547, -0.0010719411075115204, 0.009292096830904484, -0.031573619693517685, 0.00987948291003704, 0.0506742000579834, 0.011019584722816944, 0.025847356766462326, 0.009371927008032799, 0.009725930169224739, -0.04416101053357124, 0.018544446676969528, -0.0036547824274748564, 0.05016505718231201, 0.025716308504343033, 0.09207701683044434, -0.02248385362327099, 0.005091034807264805, 0.009040000848472118, -0.017862852662801743, 0.026423310860991478, -0.05910613387823105, -0.04711581766605377, -0.01845405250787735, 0.005788973532617092, 0.040400125086307526, 0.023415572941303253, 0.03119765967130661, 0.0020378176122903824, 0.07408832758665085, -0.056293290108442307, -0.000694145099259913, -0.007862752303481102, 0.008041677996516228, -0.05010681971907616, 0.04897422716021538, 0.032466791570186615, -0.06971379369497299, -0.02263970486819744, 0.013582561165094376, 0.01218339242041111, -0.04773711413145065, 0.022551769390702248, -0.05220530182123184, -0.016908511519432068, 0.02514543943107128, -0.02051152102649212, 0.0748291015625, 0.0254964679479599, -0.014663745649158955, -0.015580755658447742, 0.009252987802028656, -0.00783556792885065, -0.03991871699690819, -0.06604167819023132, -0.033917445689439774, 0.010227799415588379, 0.0015408757608383894, 0.05945789813995361, -0.005817546974867582, 0.028647761791944504, -0.027336934581398964, 0.013601744547486305, 0.027792396023869514, 0.019993038848042488, 0.045857109129428864, -0.010820388793945312, -0.039901770651340485, -0.03363265097141266, 0.033723872154951096, -0.07091745734214783, -0.054611533880233765, -0.00801446195691824, 0.03182635083794594, 0.01985042355954647, 0.0258290134370327, 0.05046762526035309, -0.022889811545610428, 0.033849719911813736, -0.020040877163410187, -0.06002989038825035, 0.010851613245904446, -0.02097567543387413, 0.05885978788137436, 0.018457898870110512, -0.007558502722531557, -0.018381569534540176, 0.020068293437361717, -0.023573406040668488, 0.01804906502366066, -0.013042914681136608, -0.023249614983797073, -0.03415226936340332, -0.026830529794096947, 0.02140841819345951, 0.04489003121852875, 0.00838017463684082, 0.06815271824598312, -0.05019800364971161, 0.0012218564515933394, -0.010289208963513374, 0.0018676642794162035, 0.05487224459648132, -0.04657888785004616, 0.011557893827557564, 0.003255884163081646, -0.005930852144956589, 0.03308975696563721, 0.07233850657939911, 0.014273028820753098, 0.01630927436053753, -0.027357332408428192, 3.110613420176378e-07, -0.018900591880083084, 0.04494277387857437, 0.003101432230323553, -0.0176682211458683, 0.022008007392287254, -0.07387222349643707, 0.00782515574246645, 0.005037787836045027, 0.020023319870233536, 0.03344307467341423, -0.06930655241012573, 0.011649161577224731, -0.00189865636639297, 0.03365113586187363, -0.06649677455425262, -0.14582064747810364, -0.021263426169753075, 0.02817031368613243, -0.04807082936167717, 0.03148844093084335, 0.027730287984013557, 0.010828681290149689, 0.024084117263555527, 0.04886062443256378, -0.016131576150655746, 0.020366746932268143, -0.0014622285962104797, 0.017160803079605103, -0.02128749154508114, 0.015597409568727016, -0.005950277205556631, -0.019137196242809296, 0.016940787434577942, -0.026612069457769394, -0.012626323848962784, 0.0011395838810130954, -0.03653719276189804, -0.02854435332119465, 0.005911847576498985, -0.011804888024926186, 0.02260023169219494, 0.016742710024118423, 0.005869609769433737, 0.03223618119955063, 0.02857864834368229, -0.038956169039011, 0.03516453877091408, -0.0111657390370965, -0.0025889596436172724, -0.04712609946727753, 0.0025736012030392885, 0.024825671687722206, 0.050329744815826416, 0.006072971969842911, 0.03202053904533386, 0.025048810988664627, -0.023484960198402405, -0.02162787690758705, 0.04121585190296173, 0.013672636821866035, -0.06982074677944183, -0.07325015217065811, 0.005014624912291765, -0.057862989604473114, 0.03214218467473984, 0.012998423539102077, -0.0070856972597539425, 3.0101974388023192e-34, -0.01343205664306879, 0.06581314653158188, -0.0013667444000020623, 0.050790105015039444, 0.01101663801819086, -0.002280132845044136, 0.0888388603925705, 0.03052668645977974, 0.029212601482868195, -0.04993956908583641, -0.02022712677717209], "201432b8-c6a7-4e53-9ae1-5e5e225aaca1": [-0.013600912876427174, 0.037148330360651016, -0.014852362684905529, -0.016525669023394585, -0.006115544121712446, 0.019680887460708618, 0.022402092814445496, -0.015249128453433514, -0.022591954097151756, 0.0205074492841959, 0.02688317932188511, -0.024087198078632355, -0.0009476362611167133, 0.05429507791996002, -0.03667806461453438, 0.014873240143060684, 0.02112356573343277, 0.00912794191390276, -0.05331159010529518, 0.040019441395998, 0.022337134927511215, -0.0075070615857839584, -0.034896258264780045, 0.036248136311769485, -0.022283166646957397, -0.02549043297767639, -0.009873048402369022, 0.014679157175123692, 0.06700199097394943, 0.010153780691325665, -0.012070611119270325, 0.0209615807980299, -0.03162142634391785, 0.03777628764510155, 2.2421766061597737e-06, 0.024498935788869858, -0.01457501295953989, 0.0018461683066561818, -0.04601564630866051, 0.013388503342866898, 0.05873620882630348, -0.02024117484688759, 0.0438368022441864, 0.03228980675339699, -0.021195467561483383, 0.023866476491093636, 0.018051963299512863, -0.07025652378797531, -0.030100395902991295, -0.018341178074479103, 0.0006245530094020069, 0.05747230723500252, -0.026214778423309326, -0.017919061705470085, 0.053292710334062576, -0.0578589104115963, -0.006044006906449795, 0.010957944206893444, 0.06984132528305054, -0.019824933260679245, 0.019194643944501877, -0.006369319278746843, 0.0195515938103199, -0.0015546017093583941, 0.14445994794368744, 0.06277558207511902, 0.014744053594768047, -0.05445422604680061, -0.0006896394770592451, -0.009968777187168598, 0.06994874030351639, -0.0037234085611999035, 0.024932390078902245, -0.0032714991830289364, -0.017501382157206535, -0.04362458735704422, 0.019677558913826942, 0.013472247868776321, -0.007053722161799669, -0.02144373394548893, 0.013675328344106674, 0.031900592148303986, -0.04263421520590782, 0.015755249187350273, 0.040515750646591187, -0.05440972000360489, 0.005398781504482031, 0.003010248066857457, 0.003697338979691267, 0.03514833748340607, 0.09552820026874542, 0.005939141847193241, -0.005920182913541794, 0.021992072463035583, -0.003189715323969722, -0.0328739769756794, 0.019299067556858063, 0.014752348884940147, 0.0003753960772883147, 0.07641948014497757, -0.04074683040380478, 0.02080586738884449, 0.005842661019414663, 0.03026280552148819, 0.02791544981300831, 0.09021060913801193, 0.010998730547726154, -0.05120788887143135, -0.02074727788567543, -0.03633619844913483, -0.03290434554219246, 0.0022152012679725885, -0.011206584051251411, -0.04224006086587906, 0.024151364341378212, -0.019187619909644127, -0.01699208654463291, 0.03407857567071915, 0.05252719670534134, 0.014911288395524025, 0.11471939831972122, 0.005132026970386505, -0.023938007652759552, -0.0008892116602510214, -0.057493697851896286, -0.09832675009965897, -0.014308071695268154, 0.03053530491888523, -0.03795119747519493, -0.01737843081355095, -0.016823984682559967, -0.014234168455004692, -0.015309726819396019, 0.0025615054182708263, -0.002777685644105077, -0.02575029991567135, 0.0007506240508519113, -0.0016680177068337798, -0.021668951958417892, -0.019684534519910812, 0.014225334860384464, 0.0048328279517591, -0.03022557683289051, 0.01133822463452816, -0.0039114514365792274, -0.013742075301706791, -0.028923915699124336, 0.04780120402574539, 0.0073962341994047165, 0.0014395401813089848, 0.0434814915060997, -0.013077536597847939, -0.0322662889957428, 0.02940359339118004, -0.023020708933472633, -0.004014097154140472, 0.016730863600969315, 0.009806640446186066, 0.019441839307546616, 0.041856799274683, -0.06076370179653168, 0.07292140275239944, 0.026474541053175926, 0.030386216938495636, 0.002531321020796895, -0.05889506638050079, -0.009396412409842014, -0.018899545073509216, -0.016578158363699913, -0.007484751753509045, -0.03762180730700493, -0.012379415333271027, -0.00041959600639529526, 0.09489547461271286, 0.00326151424087584, -0.0370030403137207, 0.06199609860777855, 0.01939353346824646, 0.04832782968878746, -0.043398115783929825, -0.03414861857891083, -0.15418818593025208, -0.024990806356072426, 0.09195905923843384, 0.03915905952453613, -0.002120516961440444, -0.05380148068070412, 0.06615014374256134, -0.01753445714712143, 0.04688207805156708, -0.015748100355267525, -0.0020996062085032463, -0.05264512449502945, -0.024226270616054535, 0.023327866569161415, -0.050548553466796875, 0.0007881378405727446, -0.016696425154805183, -0.03548247739672661, -0.0029660637956112623, 0.007665917742997408, -0.0001917335030157119, 0.034831173717975616, 0.07748008519411087, -0.005941061303019524, -0.042776525020599365, -0.0025640632957220078, -0.006258285604417324, 0.010384692810475826, 0.0036963908933103085, 0.023258812725543976, 0.006547894794493914, 0.0054565309546887875, -0.0026613634545356035, -0.03780253231525421, 0.01781294122338295, -0.02988610602915287, -0.007429871708154678, 0.028088487684726715, 0.03911229595541954, -0.037127722054719925, -0.05695271119475365, -0.022296221926808357, 0.023838458582758904, 0.007964708842337132, -0.025110825896263123, 0.00477161118760705, 0.01893337443470955, 0.013983560726046562, 0.029083847999572754, -0.019142501056194305, 0.041291333734989166, -0.01748407632112503, -0.009468358010053635, 0.021517368033528328, 0.036339566111564636, 0.06084558740258217, 0.022600458934903145, 0.01008366234600544, -0.0018401627894490957, -0.0020075999200344086, 0.027698485180735588, 0.013444329611957073, -0.02228149212896824, -0.02099311351776123, -0.006848424207419157, -0.018669551238417625, 0.020575644448399544, -0.005771378055214882, -0.020514195784926414, 0.002171240048483014, -0.03819121792912483, 0.03062829189002514, 0.014464174397289753, 0.0026187263429164886, 0.009059679694473743, -0.091496042907238, 0.0031470933463424444, -0.039848607033491135, 0.04550215229392052, 0.0059823282063007355, -0.0108454255387187, -0.011977053247392178, 0.014200355857610703, 0.00015734114276710898, -0.06924372166395187, -0.01203205157071352, -0.02147182822227478, -0.008880548179149628, 0.027169929817318916, 0.027976932004094124, -0.022954363375902176, -0.010230006650090218, 0.004670340102165937, -0.021255578845739365, -0.00021221568749751896, -0.021733080968260765, -0.013635450042784214, -0.02427217923104763, 0.009189889766275883, 0.03783818334341049, 0.00892013218253851, -0.02803029492497444, 0.027927547693252563, -0.017518101260066032, -0.0063364445231854916, 0.024803394451737404, -0.07109851390123367, -0.0044122375547885895, -0.069020576775074, 0.07100367546081543, -0.060477521270513535, 0.047709882259368896, 0.0065154023468494415, -0.018409213051199913, 0.005277428776025772, 0.08351682126522064, 0.0185557808727026, -0.03209378197789192, 0.0727444663643837, 0.02937726303935051, -0.010860009118914604, -0.0034989453852176666, -0.0203033909201622, 0.029094524681568146, 0.03828499838709831, 0.060221731662750244, -0.04446931183338165, -0.03975580260157585, 0.012412859126925468, -0.010684200562536716, 0.027916137129068375, -0.006740430369973183, 0.06408552080392838, -0.03455200046300888, 0.03267860785126686, 0.026637623086571693, 0.0071763163432478905, -0.0026566435117274523, -0.011805308982729912, -0.006998270750045776, 0.01620246097445488, -0.05140892416238785, 0.0006180795608088374, -0.024019265547394753, -0.05022961273789406, -0.06198922544717789, 0.010324402712285519, 0.03873417526483536, -0.010194526985287666, -0.002650297014042735, -0.02029026858508587, -0.011795716360211372, 0.01623811572790146, -0.055377256125211716, 0.018072718754410744, 0.012319568544626236, -0.034892674535512924, 0.007938889786601067, -0.015360793098807335, -0.07468058913946152, 0.049086473882198334, -0.03674626722931862, -0.027068739756941795, -0.07485315948724747, 0.04256199300289154, -0.036184463649988174, -0.006570769473910332, -0.019066622480750084, 0.011891416274011135, 0.06571605801582336, 0.026729056611657143, -0.01609792932868004, -0.024152075871825218, 0.044642701745033264, -0.04559125751256943, -0.03939326852560043, -0.008873604238033295, -0.024228248745203018, -0.0031317463144659996, 0.01644895412027836, -0.01765569858253002, 0.07333649694919586, 0.06623098254203796, -0.04865122213959694, -0.10187307000160217, -0.014498834498226643, -0.02544981613755226, 0.057734955102205276, 0.056911032646894455, -0.033651210367679596, 0.05117681995034218, -0.004875777289271355, 0.029984403401613235, 0.00764622213318944, -0.054276127368211746, -0.004832499660551548, 0.024633971974253654, -0.07380274683237076, 0.0056214360520243645, -0.01220792531967163, -0.002741539152339101, 0.03698722645640373, -0.028142672032117844, 0.01860443875193596, -0.031801555305719376, -0.04609327018260956, 0.009408711455762386, 0.07415357232093811, -0.06652139127254486, 0.010016153566539288, -0.04880094155669212, -0.026546377688646317, 0.0014607617631554604, 0.001006553997285664, -0.09869428724050522, -0.07931926101446152, -0.04326987639069557, 0.02182922139763832, 0.006390738766640425, 0.03792128339409828, -0.08656401187181473, 0.02637789584696293, 0.001378664979711175, -0.03304360806941986, 0.06723562628030777, 0.03643370047211647, 0.04675205796957016, -0.03336604684591293, -0.059613846242427826, 0.0043894024565815926, 0.027784010395407677, 0.020715653896331787, -0.028543084859848022, -0.02665080316364765, -0.03011692315340042, -0.008777176961302757, 0.04793025180697441, 0.03178557753562927, -0.045656949281692505, -0.0027375337667763233, 0.031665295362472534, 0.05318766459822655, -0.0128225302323699, 0.0381736233830452, -0.025931555777788162, 0.025773314759135246, 0.0667935386300087, 0.025140617042779922, -0.007914441637694836, -0.015176679007709026, 0.028633177280426025, 0.05165700614452362, 0.045319609344005585, -0.031900130212306976, -0.014078328385949135, -0.019079893827438354, 0.013880681246519089, 0.023498542606830597, 0.0033399141393601894, -0.0185997374355793, 0.03643283620476723, 0.00759859336540103, -0.02464328706264496, -0.019326336681842804, -1.8885442841565236e-05, 0.019736530259251595, -0.03379732370376587, 0.004225618671625853, -0.01142679899930954, 0.039689961820840836, -0.01921618916094303, -0.08857937902212143, -0.0380907878279686, -0.043148934841156006, -0.0055334968492388725, -0.021521765738725662, -0.01875854842364788, 0.07049226015806198, 0.0049588740803301334, -0.03057306632399559, 0.01681629754602909, -0.04757104441523552, 0.005925452336668968, 0.082554891705513, -0.05899996683001518, -0.04070758447051048, 0.002861565910279751, -0.01404372788965702, -0.027336696162819862, 0.06794236600399017, -0.026517285034060478, 0.0037825587205588818, -0.029788490384817123, 0.019164927303791046, -0.016099819913506508, 0.02869369648396969, -0.04744340851902962, -0.055726468563079834, -0.008631925098598003, -0.011775745078921318, 0.004441775847226381, -0.011041611433029175, -0.003743697190657258, -0.013361928053200245, -0.021626846864819527, 0.026809290051460266, 0.032448865473270416, -0.018129734322428703, -0.03464686870574951, 0.08761247992515564, -0.018528755754232407, -0.022255100309848785, 0.015676528215408325, -0.05028307065367699, -0.044706325978040695, -0.027589226141572, -0.028245382010936737, 0.012237809598445892, 0.07326455414295197, -0.029438206925988197, 0.04403470829129219, -0.0222511924803257, -0.037129539996385574, -0.0004344519693404436, -0.03978215157985687, 0.009112917818129063, -0.001603798009455204, -0.07622489333152771, 0.02484024316072464, 0.00374389486387372, -0.006431266199797392, 0.03673093765974045, -0.0009496120037510991, 0.029411833733320236, -0.048772696405649185, -0.038589343428611755, 0.05082883685827255, 0.02447068877518177, -0.02261161431670189, 0.0039744446985423565, -0.015358828008174896, 0.08074541389942169, -0.015800239518284798, 0.08504068851470947, -0.021408384665846825, -0.016419192776083946, -0.04387139156460762, -0.03279938921332359, 0.05528336390852928, 0.02070188708603382, -0.018717462196946144, 0.02889283001422882, -0.015044374391436577, -0.008647959679365158, 0.04256726801395416, -0.002221067901700735, -0.03172391653060913, -0.03338383138179779, 0.003380852285772562, -0.013455160893499851, 0.03201593831181526, 0.06270936876535416, -0.015090443193912506, -0.0719723328948021, -0.025971028953790665, 0.029591701924800873, -0.0056838057935237885, -0.017728986218571663, 0.02147473767399788, 0.009944439865648746, 0.007170567288994789, 0.005609467625617981, 0.015142126940190792, 0.016633454710245132, -6.059428728727127e-33, -0.038481954485177994, -0.0494065098464489, 0.04778505489230156, 0.016120415180921555, -0.014317799359560013, 0.04254009947180748, 0.03604794293642044, -0.018125232309103012, -0.043062832206487656, -0.03507930412888527, 0.02814379706978798, 0.03961292281746864, -0.0011903295526281, -0.06710360944271088, 0.05276162177324295, 0.030298102647066116, 0.048661988228559494, 0.0005556397372856736, 0.012016450054943562, -0.016109483316540718, -0.053848642855882645, -0.001182053703814745, 0.026912912726402283, 0.0001238166878465563, -0.0249940212816, 0.05559621378779411, -0.007666006218641996, 0.03386855125427246, 0.0012577748857438564, 0.019047163426876068, -0.024097712710499763, -0.05807386711239815, -0.02375134639441967, 0.002427422208711505, 0.03597111999988556, 0.07137551158666611, -0.07188788056373596, -0.045475564897060394, 0.019201789051294327, -0.0139946723356843, 0.018918467685580254, -0.03818320482969284, -0.03944675624370575, 0.017383186146616936, -0.010619910433888435, -0.0022170140873640776, 0.0025397988501936197, 0.0311946552246809, -0.006029253359884024, 0.0047355215065181255, -0.05761148780584335, 0.023229923099279404, -0.01546424813568592, -0.00484222499653697, 0.030752209946513176, 0.0043775117956101894, 0.0014058733358979225, -0.08041858673095703, -0.05601053684949875, -0.009673970751464367, -0.059037405997514725, -0.0482436828315258, -0.00903060007840395, 0.0053983768448233604, -0.00716316606849432, -0.00016982493980322033, -0.02255123294889927, 0.07686270028352737, 0.000814976985566318, -0.02668648585677147, 0.0002489530888851732, -0.009760838001966476, -0.03145168721675873, -0.06043610721826553, -0.03604758158326149, 0.017209956422448158, -0.027654506266117096, 0.026530016213655472, 0.10664240270853043, 0.004220815375447273, -0.00772081408649683, 0.027089165523648262, -0.010320744477212429, 0.044203393161296844, 0.03491617366671562, 0.006670517381280661, 0.0005454599158838391, 0.021532753482460976, -0.033699825406074524, 0.06021852046251297, -0.06317591667175293, -0.02398715727031231, -0.01978735812008381, 0.00647758087143302, 0.1092497780919075, 0.008908038958907127, 0.029810575768351555, -0.018519537523388863, 0.018502919003367424, 0.0045880964025855064, -0.08507321774959564, 0.021752789616584778, 0.014342655427753925, 0.03778965398669243, 0.016228951513767242, 0.008052035234868526, 0.024878326803445816, 0.01038973405957222, 0.021141894161701202, -0.012112122029066086, 0.0239565446972847, -0.014421682804822922, -0.030296627432107925, -0.028126709163188934, 0.023386148735880852, 0.0023755966685712337, 0.0010316481348127127, 0.003206915222108364, -0.02066861465573311, -0.026501476764678955, -0.0006093140691518784, 0.008796852082014084, 0.020810872316360474, -0.055287353694438934, 0.0014601912116631866, -0.014805584214627743, -0.03326696902513504, 0.018270617350935936, 0.07295508682727814, 0.02714838832616806, -0.0010594986379146576, -0.027004634961485863, 2.831041285844549e-07, 0.006922842934727669, 0.021297205239534378, -0.013137733563780785, 0.024914575740695, 0.020030442625284195, -0.07677838206291199, 0.015452546998858452, -0.013391152024269104, -0.02770795300602913, 0.036246780306100845, 0.024806858971714973, 0.0031733668874949217, 0.004040740896016359, 0.004237647168338299, 0.06103077903389931, -0.17248106002807617, -0.03802866116166115, 0.0003243566316086799, -0.03898543491959572, 0.02709837630391121, 0.006869272794574499, 0.03673482686281204, 0.06160349398851395, 0.03281388431787491, -0.010675251483917236, -0.02508191019296646, -0.01968759298324585, 0.04392591863870621, 0.0025106261018663645, 0.025248555466532707, 0.0181342251598835, 0.03339839726686478, -0.027575625106692314, 0.03311046585440636, 0.026302292943000793, -0.003191647818312049, 0.021461283788084984, 0.0025283582508563995, -0.015095951035618782, 0.04826847091317177, -0.00651552015915513, -0.002168345730751753, -0.034438930451869965, 0.03427635505795479, 0.016038130968809128, -0.0019048908725380898, -0.00040387085755355656, -0.008290115743875504, 0.08629226684570312, -0.045201949775218964, 0.020946146920323372, 0.07441916316747665, 0.08730633556842804, -0.027908550575375557, 0.04550142586231232, 0.0032572895288467407, -0.06294119358062744, 0.00014540314441546798, 0.03347185254096985, 0.040564969182014465, -0.03796519339084625, -0.07165458053350449, -0.010871061123907566, -0.025579232722520828, 0.02182799205183983, -0.011308950372040272, 0.008647453039884567, 2.668135699963986e-34, -0.0394909605383873, 0.023835279047489166, -0.05120816454291344, -0.001363881747238338, -0.013327280059456825, 0.0064316741190850735, 0.014172406867146492, -0.01042495109140873, 0.034589558839797974, -0.029198551550507545, -0.007352669257670641], "5c092d4a-1a6a-42fa-9c88-2c89a652a0c3": [0.0066330223344266415, 0.0254974327981472, -0.021753530949354172, -0.021171934902668, 0.037792228162288666, 0.0247398242354393, 0.019000343978405, 0.012439819984138012, 0.04515890032052994, 0.021984394639730453, 0.0016513876616954803, 0.001242146361619234, 0.010236105881631374, 0.05327097699046135, -0.008287053555250168, 0.04104910418391228, -0.001416585873812437, -0.01313435286283493, -0.0248853862285614, -0.002453296910971403, 0.016511162742972374, 0.05029338225722313, -0.021105699241161346, 0.0013019358739256859, -0.0026091798208653927, -0.022447319701313972, 0.032564371824264526, -0.006099594756960869, 0.07884740829467773, 0.016914237290620804, -0.017181774601340294, 0.012606559321284294, -0.01611918769776821, 0.009907937608659267, 2.3077627702150494e-06, 0.02247324213385582, 0.005475814454257488, 0.013712809421122074, -0.03710704669356346, -0.055959656834602356, 0.027380483224987984, 0.01031856331974268, -0.00023915876226965338, 0.021765053272247314, -0.005542892497032881, 0.03882995992898941, 0.05275125801563263, -0.058327049016952515, 0.01538922730833292, 0.030118320137262344, -0.0062440368346869946, 0.016649000346660614, -8.963793516159058e-05, -0.01718187890946865, 0.03013821505010128, -0.09064856916666031, 0.002920957747846842, -0.0016327690100297332, 0.022539081051945686, -0.013624675571918488, 0.022596823051571846, 0.008147410117089748, -0.015308918431401253, 0.01634877547621727, 0.05895436927676201, 0.0694936066865921, 0.06703893095254898, -0.07656862586736679, 0.05097368732094765, 0.010769226588308811, 0.11065498739480972, 0.003174568759277463, 0.0007797874859534204, 0.06219035014510155, 0.026299819350242615, 0.00043371677747927606, 0.03805597499012947, 0.030788909643888474, -0.015436735935509205, 0.009233138523995876, -0.02461526170372963, -0.02514803782105446, -0.03379843384027481, -0.025004034861922264, -0.018829355016350746, -0.016980759799480438, 0.025944210588932037, 0.010670775547623634, 0.0166564229875803, -0.01148378849029541, 0.07252558320760727, 0.043949298560619354, -0.007071192376315594, 0.020489053800702095, -0.04183066636323929, -0.04112153500318527, 0.036697566509246826, -0.002801082096993923, -0.009423545561730862, 0.05013411119580269, 0.004510132595896721, 0.020223474130034447, 0.0077465432696044445, 0.028132567182183266, -0.010098138824105263, 0.062172338366508484, -0.004986789543181658, -0.014579067938029766, 0.01001566369086504, 0.007838093675673008, -0.03235804662108421, -0.014571472071111202, -0.008441371843218803, -0.010979607701301575, 0.03568169102072716, 0.009263242594897747, -0.04133709520101547, 0.041786182671785355, 0.006100957747548819, 0.014930353499948978, 0.07763373106718063, 0.005426923278719187, -0.053409088402986526, 0.005832703784108162, -0.07412067800760269, -0.11534391343593597, 0.026301085948944092, -0.037376195192337036, -0.01595253311097622, -0.045082785189151764, -0.0082153445109725, -0.010441540740430355, 0.008087110705673695, -0.000458326016087085, 0.024490047246217728, 0.012240041978657246, 0.03285347297787666, -0.023109346628189087, 0.06718642264604568, 0.0021754964254796505, 0.0037017834838479757, -0.024769119918346405, -0.00043577590258792043, 0.0533885732293129, 0.02743852138519287, -0.01429723296314478, 0.024639097973704338, 0.010097349062561989, -0.0025592315942049026, 0.047487519681453705, 0.012295306660234928, 0.026924509555101395, -0.06332080811262131, -0.03050403669476509, -0.04235700145363808, -0.0010305095929652452, 0.023620299994945526, -0.02860800363123417, -0.022394901141524315, 0.03403015434741974, -0.046583615243434906, 0.031030232086777687, 0.04586278274655342, 0.011972486041486263, 0.005772316828370094, -0.09598974138498306, 0.030883293598890305, -0.002249598503112793, -0.020434780046343803, 0.008374538272619247, 0.030198194086551666, 0.04165073484182358, -0.022783959284424782, 0.06175534054636955, -0.0371721088886261, -0.028225405141711235, 0.03739512711763382, 0.018709179013967514, 0.00784993451088667, -0.03254769369959831, -0.04242757335305214, -0.12591271102428436, -0.020826907828450203, 0.017690574750304222, -0.03821611776947975, 0.009328970685601234, -0.006927429232746363, 0.0740896686911583, -0.03124847821891308, 0.03515452519059181, 0.012392563745379448, -0.016282539814710617, -0.023015836253762245, -0.02025565318763256, 0.047698020935058594, -0.0038868102710694075, -0.024322139099240303, -0.0881669744849205, -0.00041473377496004105, -0.0010067562106996775, -0.007843798957765102, -0.10567806661128998, -0.009639143012464046, 0.09865909069776535, 0.005890325177460909, -0.04911581054329872, 0.029818095266819, -0.021559560671448708, 0.00954811368137598, 0.08320091664791107, 0.02050846442580223, -0.028764881193637848, -0.05517348647117615, -0.034538645297288895, -0.028673620894551277, 0.022515015676617622, -0.04913457855582237, 0.007857461459934711, 0.01219911128282547, 0.0006307956646196544, -0.017341652885079384, -0.09845314919948578, 0.006694572977721691, 0.0037644074764102697, -0.012389806099236012, -0.01941029168665409, 0.0017065429128706455, -0.009537829086184502, 0.03456822782754898, 0.03680894523859024, -0.01779673621058464, 0.028632989153265953, 0.011832481250166893, 0.0014253463596105576, 0.008375621400773525, 0.015642128884792328, -0.03909485787153244, 0.015496625564992428, 0.017467869445681572, -0.06692323833703995, -0.021084623411297798, 0.09349248558282852, 0.005968410521745682, 0.0417947918176651, 0.01397286169230938, -0.009194638580083847, 0.034112703055143356, -0.017449257895350456, -0.00989485252648592, 0.026905950158834457, 0.027208730578422546, -0.019994394853711128, 0.02965305931866169, 0.02154826931655407, -0.00971048604696989, 0.003703705035150051, -0.16975988447666168, -0.053916413336992264, -0.0836791843175888, 0.03116706945002079, -0.03556852415204048, -0.0007818283629603684, -0.011750666424632072, -0.005473291967064142, 0.022321000695228577, -0.0031472009140998125, -0.018945740535855293, -0.039644017815589905, -0.007968856953084469, 0.012743597850203514, 0.004916112869977951, 0.0015885508619248867, -0.020523251965641975, -0.016459636390209198, -0.009235601872205734, -0.0013679292751476169, -0.005398364271968603, -0.006843204610049725, -0.004865692928433418, 0.02614767476916313, 0.009563841857016087, 0.002893703058362007, 0.012726913206279278, -0.0029300935566425323, -0.006720680743455887, -0.01917913742363453, 0.008907032199203968, -0.05887971445918083, -0.013732492923736572, 0.008474549278616905, -0.009401057846844196, -0.008287288248538971, -0.009384396485984325, -0.023119140416383743, -0.008708163164556026, 0.00645869504660368, 0.04564781114459038, 0.005586900748312473, -0.008000667206943035, 0.06037161499261856, -0.0015206887619569898, 0.05184331163764, -0.009387609548866749, -0.0054326169192790985, 0.0203799307346344, 0.011872303672134876, 0.03522365167737007, -0.04775239899754524, -0.028729677200317383, -0.09353981912136078, -0.022003471851348877, 0.013809416443109512, -0.02034381777048111, 0.05704181268811226, 0.011964078061282635, 0.029368212446570396, -0.0269604679197073, 0.024429401382803917, -0.009290617890655994, 0.0017599966377019882, -0.002887587295845151, -0.02895737625658512, -0.022621339187026024, 0.00772301759570837, -0.017345793545246124, -0.08396361023187637, -0.031016239896416664, 0.024938754737377167, 0.05425073206424713, -0.0044023157097399235, 0.019043564796447754, 0.03301314637064934, -0.009011383168399334, 0.04596424847841263, -0.03992212936282158, -0.027345506474375725, -0.01118265837430954, -0.09734547883272171, 0.017285846173763275, 0.013983773067593575, -0.03674875572323799, 0.044472742825746536, -0.05134494975209236, 0.022191882133483887, -0.023081734776496887, 0.013588855043053627, -0.03848198428750038, -0.01196365337818861, 0.0052421423606574535, -0.019803516566753387, 0.0371599905192852, 0.05114094540476799, 0.018060293048620224, -0.027233729138970375, 0.010138565674424171, -0.06421619653701782, 0.0006506110657937825, 0.008651652373373508, 0.03289629891514778, -0.049442846328020096, 0.03688356652855873, -0.0435832142829895, 0.00940707977861166, 0.014152975752949715, 0.010261286981403828, -0.09934201091527939, -0.0038980196695774794, -0.022502310574054718, 0.03248538821935654, 0.044817883521318436, -0.030564529821276665, -0.0007356785354204476, -0.035935625433921814, 0.043146003037691116, -0.004171543288975954, -0.025582492351531982, -0.02916354313492775, 0.050085194408893585, -0.010403716936707497, -0.016665957868099213, -0.013074491173028946, -0.03461088612675667, 0.08662204444408417, -0.0035663582384586334, 0.015040895901620388, -0.008943000808358192, -0.009068680927157402, 0.020908525213599205, 0.03841320425271988, -0.009763125330209732, 0.004149965476244688, -0.06399457901716232, -0.06577453017234802, 0.04375718906521797, -0.003997656516730785, -0.009405642747879028, -0.009372788481414318, -0.023962344974279404, -0.009932301938533783, 0.04173174872994423, 0.01466104481369257, -0.031072193756699562, -0.002461814321577549, 0.0190958920866251, -0.02081620693206787, 0.11237551271915436, 0.062027037143707275, 0.015367111191153526, -0.03230465203523636, -0.07211735844612122, 0.08393720537424088, 0.02675728127360344, 0.014863415621221066, 0.01265512965619564, -0.010481111705303192, -0.035605426877737045, -0.022306732833385468, -0.027799108996987343, 0.02977903187274933, -0.07385145127773285, -0.006099514663219452, 0.009827318601310253, 0.05360444262623787, 0.021656706929206848, 0.006525129545480013, -0.001982606016099453, 0.07017996907234192, 0.007362669799476862, 0.03759891167283058, -0.05512790381908417, -0.031827863305807114, 0.025966797024011612, 0.0033396140206605196, 0.07610190659761429, -0.028921227902173996, -0.02753330022096634, -0.019468480721116066, 0.0023348929826170206, -0.001624790602363646, -0.005108834244310856, 0.00543083343654871, 0.04681449756026268, 0.025203660130500793, -0.004307689145207405, -0.046849075704813004, -0.01916208118200302, 0.02225053310394287, -0.008986284956336021, 0.03606438636779785, -0.08428462594747543, 0.036882493644952774, -0.04777304828166962, -0.07130670547485352, -0.0693109929561615, -0.035613052546978, -0.02530667558312416, -0.08564288169145584, 0.09928879141807556, 0.012198037467896938, 0.046082206070423126, 0.028295814990997314, 0.027603110298514366, -0.020878709852695465, -0.00939034204930067, 0.042143337428569794, 0.06119361147284508, 0.0053311423398554325, -0.03005470708012581, 0.036771781742572784, 0.00196687295101583, 0.06924109160900116, -0.03756221756339073, -0.02136094868183136, 0.0020651111844927073, 0.004031751304864883, -0.02152922749519348, 0.03037087619304657, 0.06864524632692337, -0.020420799031853676, 0.0052091507241129875, 0.008920255117118359, -0.04927956685423851, 0.02230306714773178, -0.004957141354680061, -0.03594498336315155, -0.016831912100315094, 0.023277243599295616, 0.04756409674882889, 0.008143637329339981, -0.034617215394973755, 0.06726562976837158, -0.04977000877261162, -0.034232914447784424, -0.053308866918087006, -0.08049402385950089, 0.031188197433948517, -0.009191128425300121, 0.00772967841476202, -0.02110256440937519, 0.0754081979393959, 0.004159925039857626, -0.041321784257888794, 0.011792811565101147, 0.026440454646945, -0.043615248054265976, -0.010115737095475197, -0.004275952465832233, 0.016326921060681343, -0.028547778725624084, -0.022036882117390633, -0.003086026990786195, 0.0324319563806057, 0.0023459228686988354, -0.034995708614587784, 0.031198488548398018, -0.003925384487956762, 0.008026519790291786, 0.10161833465099335, -0.02128925919532776, 0.00014522040146403015, 0.011824987828731537, -0.0033924286253750324, 0.026780633255839348, 0.014396868646144867, 0.02141932211816311, 0.016224276274442673, 0.010856766253709793, 0.007525890599936247, 0.0018610631814226508, 0.0016638219822198153, -0.011829798109829426, 0.023904891684651375, 0.017003634944558144, 0.025547629222273827, -0.026302188634872437, -0.03657038137316704, -0.05920060724020004, 0.0063099307008087635, 0.011195487342774868, -0.013935262337327003, 0.00982986856251955, -0.010648551397025585, 0.01901288889348507, 0.03709985315799713, -0.0290412288159132, -0.030917134135961533, 0.046947628259658813, -0.0034862032625824213, -0.042861782014369965, -0.02976115234196186, 0.009401778690516949, -0.02886004000902176, 0.07344808429479599, 0.035060036927461624, 0.023025112226605415, -5.979427154604055e-33, -0.030332179740071297, 0.014126993715763092, 0.005758393090218306, 0.034273236989974976, -0.03958342969417572, -0.024835893884301186, 0.011863910593092442, -0.004274467471987009, -0.03445776551961899, -0.018479308113455772, 0.021139083430171013, 0.033995699137449265, 0.007163786329329014, -0.029229240491986275, -0.04651014506816864, 0.0007147021824494004, 0.04901043325662613, 0.006518596317619085, 0.014531543478369713, 0.0051643140614032745, -0.04433485493063927, -0.018614355474710464, -0.005810614675283432, 0.013465925119817257, 0.015698883682489395, -0.014997245743870735, -0.030828259885311127, 0.027585750445723534, -0.008745023049414158, 0.015257444232702255, -0.015685873106122017, -0.01498342677950859, -0.008022600784897804, 0.015423760749399662, 0.0198373943567276, 0.09529314935207367, -0.06199514865875244, 0.009237517602741718, -0.007062023505568504, -0.02372523583471775, 0.028305228799581528, -0.06069204956293106, -0.03528953343629837, -0.03556499630212784, -0.016032930463552475, 0.024704907089471817, 0.0373799204826355, 0.04407384991645813, 0.051166944205760956, -0.003751066280528903, -0.045718349516391754, 0.009329743683338165, -0.023988747969269753, 0.02559363842010498, -0.012583431787788868, -0.03091116063296795, 0.02854948677122593, -0.09797913581132889, -0.07384981215000153, 0.0002576690458226949, -0.028059158474206924, -0.0532197467982769, 0.008512159809470177, 0.0035883437376469374, -0.026478292420506477, 0.011634508147835732, 0.0022070056293159723, 0.0919010117650032, 0.03288526460528374, -0.006605951115489006, -0.03369826450943947, -0.02150978147983551, -0.04368354380130768, -0.07330339401960373, -0.07017314434051514, -0.00834954995661974, -0.062104590237140656, 0.017491329461336136, 0.07197680324316025, 0.0218056533485651, 0.04496050253510475, -0.04069993272423744, -0.022931698709726334, 0.0245553907006979, 0.014296462759375572, 0.004615207202732563, -0.03848995640873909, -0.008849120698869228, -0.017514804378151894, 0.017808297649025917, -0.03418140485882759, -0.10552173852920532, -0.04595816880464554, 0.0028611281886696815, 0.056507572531700134, -0.06655377149581909, 0.060243718326091766, -0.001386309857480228, 0.015982815995812416, -0.0423002652823925, -0.05346313863992691, -0.03901330754160881, 0.023511545732617378, 0.08938079327344894, 0.0394037701189518, -0.01870637573301792, 0.014543809927999973, -0.0003566413070075214, -0.047867488116025925, 0.007250335067510605, -0.021184725686907768, 0.02207016572356224, 0.019366739317774773, -0.021526025608181953, -0.00021878775442019105, 0.025134898722171783, 0.020844215527176857, 0.006414657924324274, -0.01982208900153637, 0.008127179928123951, -0.0326545275747776, 0.01683007925748825, 0.010296127758920193, -0.05168972909450531, -0.0008617169223725796, 0.02464805357158184, -0.0008295925217680633, 0.0546017587184906, 0.060649625957012177, 0.014965018257498741, 0.008037826046347618, -0.0406438373029232, 2.9449182648022543e-07, -0.026056112721562386, 0.03127487003803253, -0.01683024689555168, 0.00276840478181839, -0.0019433284178376198, -0.09250655025243759, 0.005086046177893877, 0.0046941679902374744, 0.012118405662477016, 0.02140074409544468, -0.0022629580926150084, 0.03137190639972687, -0.04844752326607704, -0.030931249260902405, -0.01793251745402813, -0.11475984752178192, 0.009475787170231342, 0.005721623543649912, -0.0066554127261042595, 0.029085857793688774, 0.04224909096956253, -0.00795767456293106, 0.0461266003549099, 0.014230312779545784, 0.006657084915786982, 0.03153257817029953, -0.007001684512943029, -0.0174403078854084, -0.027259673923254013, -0.020463919267058372, 0.05561533570289612, 0.000346173852449283, 0.03195572644472122, -0.0033972663804888725, 0.03657647222280502, 0.018106041476130486, -0.039301518350839615, 0.0034167536068707705, 0.0008852371829561889, 0.04243234917521477, 0.046375639736652374, -0.002403983613476157, 0.01587258093059063, 0.0483119823038578, 0.06349872797727585, 0.024802790954709053, -0.0007101804367266595, -0.015104549005627632, -0.03482798486948013, -0.04686649888753891, 0.021335704252123833, 0.03589193522930145, 0.004069758579134941, -0.006648697890341282, 0.03436165675520897, 0.0005224955384619534, -0.04980304092168808, -0.023752016946673393, 0.05460673198103905, -0.004156326409429312, -0.04511738568544388, -0.092162124812603, 0.025839097797870636, -0.0306242648512125, 0.05196914076805115, -0.044748518615961075, -0.007258081343024969, 3.1921270005224058e-34, 0.023507770150899887, 0.025769539177417755, -0.021746676415205002, -0.025802331045269966, 0.03961455821990967, -0.015115618705749512, 0.07143381983041763, 0.007813109084963799, 0.012132254429161549, -0.07000759989023209, -0.010071798227727413], "0670d79d-270b-40e6-8027-86d4c763781c": [0.048744603991508484, -0.003229493973776698, -0.0346820168197155, 0.01933022402226925, 0.012193411588668823, 0.05690620839595795, 0.009288683533668518, -0.006287315860390663, 0.004227554425597191, -0.025234896689653397, -0.04233192652463913, -0.0343988873064518, 0.038923393934965134, 0.07646221667528152, -0.03946898505091667, 0.01050115842372179, -0.007894101552665234, 0.006937981117516756, -0.021297762170433998, -0.003113323589786887, 0.016357792541384697, 0.0103662870824337, -0.017435012385249138, -0.03568153455853462, 0.052318450063467026, 0.0023175780661404133, 0.02347918599843979, -0.010585818439722061, 0.027246229350566864, 0.002997932257130742, -0.002949156565591693, 0.06885317713022232, 0.0036772333551198244, 0.03176020830869675, 2.3812153813196346e-06, -0.01918112486600876, -0.04559289291501045, -0.004793486557900906, -0.03339231014251709, -0.0016747587360441685, 0.002028734190389514, -0.004582463297992945, -0.051249824464321136, 0.01367899589240551, -0.01323719322681427, 0.020759372040629387, 0.041733063757419586, -0.013104405254125595, 0.0060079446993768215, 0.06800345331430435, -0.017687371000647545, 0.038613878190517426, 0.0038445726968348026, -0.02082114666700363, 0.021868886426091194, -0.06969023495912552, 0.024316662922501564, 0.03450971469283104, 0.02040109783411026, 0.03317723795771599, 0.007388434838503599, 0.014958198182284832, -0.025199513882398605, 0.010860253125429153, 0.07030089199542999, 0.014918899163603783, 0.05441179871559143, -0.08995537459850311, 0.03475749492645264, 0.017781605944037437, 0.092325359582901, 0.020604785531759262, 0.004093301948159933, 0.05920650437474251, 0.007147546391934156, 0.025699550285935402, 0.011697247624397278, 0.03364036977291107, 0.007018443662673235, 0.004822250921279192, -0.058496445417404175, -0.09671790897846222, -0.03898065164685249, 0.014296403154730797, 0.018303269520401955, 0.010460656136274338, 0.008857770822942257, -0.013763314113020897, -0.003744010115042329, -0.004472563974559307, 0.0908929854631424, 0.03419286012649536, -0.02448994293808937, 0.03689286485314369, -0.005313307978212833, -0.023442884907126427, 0.03340001031756401, 0.008177531883120537, 0.0014352176804095507, 0.03497481346130371, 0.04416109248995781, 0.025538887828588486, 0.023318542167544365, 0.012643258087337017, 0.0036880888510495424, 0.04102090001106262, -0.0009172135614790022, 0.015864960849285126, 0.03086320124566555, 0.06851855665445328, -0.0015045680338516831, 0.013792382553219795, -0.014504601247608662, -0.03915620967745781, -0.04287126287817955, 0.024273879826068878, -0.018363837152719498, 0.05968981236219406, 0.02839064784348011, 0.0777580589056015, 0.02323434129357338, -0.003720509819686413, -0.022964417934417725, -0.011074811220169067, -0.07780459523200989, -0.11294574290513992, 0.049698907881975174, -0.015276462770998478, -0.026350026950240135, -0.04286041855812073, 0.006716485600918531, -0.009435752406716347, 0.014729172922670841, 0.002109455643221736, -0.009378093294799328, 0.006108562927693129, 0.025348791852593422, -0.016417676582932472, 0.0460507795214653, 0.0016519837081432343, -0.014155896380543709, 0.025310823693871498, 0.004009329713881016, 0.023017283529043198, 0.029924802482128143, -0.029838889837265015, 0.019184164702892303, 0.018281646072864532, -0.01259994599968195, 0.038978587836027145, -0.01385194156318903, 0.008579736575484276, -0.06148586422204971, -0.010800720192492008, -0.0002541827270761132, -0.008880853652954102, 0.003763759508728981, -0.015821227803826332, -0.0075867087580263615, 0.0441414900124073, 0.005696175154298544, 0.0638943761587143, 0.027494607493281364, 0.0024584787897765636, -0.0021159981843084097, -0.03410555422306061, 0.05779065191745758, 0.0015676622278988361, -0.005725503899157047, 0.011621343903243542, -0.002487864112481475, 0.021012503653764725, -0.03824213892221451, 0.06465037912130356, -0.0008835154585540295, -0.06725212931632996, 0.019963813945651054, 0.037842556834220886, -0.018364695832133293, -0.039216816425323486, -0.020815864205360413, -0.1138770654797554, -0.04320433735847473, 0.01783391274511814, -0.06364648789167404, 0.025982065126299858, -0.014228454791009426, 0.06020588055253029, -0.00806402787566185, 0.03461211174726486, 0.001525980420410633, -0.0040808180347085, -0.02164718508720398, -0.01590292528271675, 0.03899509459733963, -0.0029577799141407013, -0.013895058073103428, -0.10842292755842209, -0.0150907002389431, 0.011358305811882019, -0.019131751731038094, -0.07520532608032227, -0.0340559184551239, 0.08512406051158905, 0.019537631422281265, -0.05804063752293587, 0.006203872617334127, -0.035291753709316254, -0.00620176550000906, 0.04891367256641388, 0.06348076462745667, -0.0025514247827231884, -0.08240574598312378, -0.03590724617242813, -0.07036609947681427, 0.011692993342876434, -0.03680052235722542, -0.0011974639492109418, 0.003846153151243925, 0.004607286769896746, 0.004114970099180937, -0.05109851434826851, -0.03157704323530197, -0.0004065601679030806, -0.01949201337993145, -0.036665819585323334, -0.04261678457260132, 0.005313629284501076, 0.04961080104112625, 0.0201615858823061, -0.023129219189286232, 0.022092316299676895, 0.002631190698593855, 0.03742137551307678, -0.01608489826321602, 9.46510408539325e-05, -0.018917083740234375, 0.02243531495332718, 0.048083171248435974, -0.062026552855968475, -0.0341772697865963, 0.09634236246347427, -0.029825100675225258, 0.036170195788145065, 0.03996669873595238, -0.027968158945441246, 0.02127654477953911, -0.02253180369734764, 0.0009060038719326258, 0.04580942913889885, 0.011891826055943966, -0.023730505257844925, -0.008323966525495052, 0.02073550783097744, -0.03230343759059906, 0.027776069939136505, -0.12843558192253113, -0.05838886275887489, -0.04694143682718277, 0.03626970201730728, -0.022723156958818436, -0.011197726242244244, -0.040178585797548294, -0.004955695476382971, 0.00021445326274260879, -0.023743867874145508, -0.019908688962459564, -0.018067119643092155, -0.01055889017879963, -0.007123663555830717, -0.006020786240696907, 0.022608347237110138, -0.004819805268198252, -0.017128219828009605, 0.006969987880438566, 0.032161831855773926, -0.004485824145376682, -0.04660912975668907, -0.02340926229953766, 0.003361776936799288, -0.0011317795142531395, -0.037914957851171494, -0.004600653890520334, -0.012045696377754211, 0.002664684085175395, -0.03828929737210274, 0.031903933733701706, -0.07919572293758392, -0.030979137867689133, -0.01690269634127617, -0.0042537241242825985, -0.025781959295272827, 0.011158522218465805, -0.05419553071260452, -0.05668019875884056, 0.005207445006817579, 0.07802082598209381, 0.02806483581662178, 0.015199685469269753, 0.08969071507453918, 0.014812278561294079, 0.03842267021536827, 0.019583100453019142, -0.010765980929136276, 0.012510680593550205, -0.01046451274305582, 0.02527840994298458, -0.030671976506710052, -0.008246521465480328, -0.05170242488384247, 1.483740834373748e-05, 0.00873832032084465, 0.011729919351637363, 0.04905826970934868, -0.003706313669681549, 0.00972581747919321, -0.016575084999203682, -0.009513850323855877, 0.007316486444324255, 0.0381506010890007, -0.008259514346718788, -0.02351386845111847, -0.020131271332502365, 0.005383017938584089, 0.016908392310142517, -0.11564061045646667, -0.017076648771762848, 0.017357999458909035, 0.006996041629463434, 0.001500809215940535, 0.02694760262966156, 0.026455838233232498, 0.016164693981409073, 0.015887396410107613, -0.05358380451798439, 0.021046312525868416, 0.00166419823653996, -0.0541696697473526, 0.02188427560031414, 0.012323984876275063, -0.053586456924676895, 0.042846716940402985, -0.019431062042713165, 0.05421656370162964, -0.027496349066495895, 0.035536132752895355, -0.00916383322328329, -0.02096034586429596, -0.023627663031220436, -0.02848607860505581, 0.0654599517583847, 0.05821027606725693, 0.027094641700387, -0.021258940920233727, 0.030598115175962448, -0.05743042379617691, 0.0051899561658501625, 0.038185965269804, 0.010322717018425465, -0.043444059789180756, -0.003888222621753812, -0.01782631129026413, 0.040074482560157776, 0.002031069714576006, -0.008321937173604965, -0.054879721254110336, -0.032388653606176376, -0.01032082736492157, 0.03777061030268669, -0.008999216370284557, -0.05117551237344742, 0.03901401907205582, -0.014806506223976612, 0.035647254437208176, 0.014992388896644115, -0.030945681035518646, -0.003753318917006254, 0.007265148684382439, -0.006330356001853943, -0.026440102607011795, -0.02659870684146881, -0.07072004675865173, 0.07588040828704834, 0.027522247284650803, 0.01526097021996975, -0.024129575118422508, -0.017531774938106537, 0.025137538090348244, 0.07380248606204987, -0.029321135953068733, 0.019367361441254616, -0.05322345346212387, -0.08213046193122864, 0.028187870979309082, -0.012835015542805195, -0.019408337771892548, -0.004554929211735725, -0.017147067934274673, -0.033902402967214584, 0.04850880056619644, 0.0043630097061395645, -0.05929815396666527, -0.02511061728000641, -0.0070810215547680855, -0.017930269241333008, 0.11191286891698837, 0.08345803618431091, 0.044032271951436996, -0.00926975253969431, -0.022823389619588852, 0.10657266527414322, 0.016678648069500923, 0.039098333567380905, -0.002944239182397723, 0.01384749822318554, -0.0383051373064518, 0.010371175594627857, -0.0007586237625218928, 0.03580508753657341, -0.046741560101509094, -0.029689893126487732, 0.013720246963202953, 0.08331453055143356, 0.008680351078510284, 0.03134966641664505, -0.005492143798619509, 0.05723687261343002, 0.02388431318104267, 0.047678254544734955, -0.015115208923816681, -0.019325194880366325, 0.03340483829379082, -0.033829208463430405, 0.06003325432538986, -0.04517577588558197, 0.011317051947116852, -0.014531945809721947, -0.008825292810797691, -0.02203848958015442, -0.05257635563611984, 0.017528418451547623, 0.06471847742795944, 0.004837625194340944, -0.015484168194234371, -0.07919546216726303, 0.00972928199917078, 0.0449431836605072, -0.01701330952346325, -0.004763496108353138, -0.06671757251024246, 0.03734841197729111, -0.05602807551622391, -0.087054543197155, -0.04703804478049278, -0.03651558980345726, -0.023322733119130135, -0.05543670430779457, 0.1331615298986435, 0.007974840700626373, 0.053420182317495346, 0.004946939181536436, 0.02820143848657608, -0.03916491940617561, 0.014909178018569946, 0.010845823213458061, 0.04738506302237511, -0.03042110614478588, -0.023949861526489258, 0.03666452318429947, 0.0016569530125707388, 0.05445641651749611, -0.03904113918542862, -0.013112244196236134, -0.022646261379122734, 0.025684859603643417, 0.006128382869064808, -0.01500593964010477, 0.054280538111925125, 0.010633284226059914, 0.01690167561173439, 0.02899298444390297, -0.04262601584196091, 0.015725405886769295, -0.016550196334719658, -0.03254437446594238, 0.020744554698467255, 0.05039697885513306, 0.056932929903268814, 0.005664789583534002, -0.05038274824619293, 0.04450894892215729, -0.06470387428998947, -0.029492834582924843, -0.015602502971887589, -0.07281521707773209, -0.01724916324019432, 0.01986093260347843, 0.01741393283009529, 0.01837046630680561, 0.028187735006213188, 0.02122800052165985, -0.04600675776600838, -0.007808635011315346, 0.037970393896102905, -0.08638347685337067, -0.007923072203993797, 0.009931402280926704, -0.006748375948518515, -0.004212468862533569, -0.04653319716453552, -0.03860452026128769, 0.03982741758227348, -0.023235904052853584, -0.051543835550546646, 0.03836977109313011, -0.017328837886452675, -0.015598304569721222, 0.07683390378952026, -0.02350429631769657, -0.03008205257356167, 0.01646806113421917, -0.026496514678001404, 0.0305260568857193, -0.008966779336333275, -0.017104607075452805, -0.005120582412928343, -8.965132292360067e-05, 0.017229855060577393, 0.019248884171247482, 0.017497913911938667, -0.016003351658582687, 0.03081340529024601, 0.008918357081711292, 0.02372470125555992, -0.06601770967245102, -0.021706154569983482, -0.034113090485334396, -0.0017885866109281778, -0.01976943202316761, -0.020037848502397537, 0.025242051109671593, -0.0046140281483531, 0.017815040424466133, 0.014738896861672401, -0.01063744816929102, -0.016850613057613373, 0.00725613022223115, 0.008623749949038029, -0.07830734550952911, -0.035961396992206573, 0.024573706090450287, 0.005521862301975489, 0.02542041428387165, 0.03116794303059578, 0.02433694340288639, -5.917979656782758e-33, -0.002027349080890417, 0.006274498533457518, -0.021574093028903008, 0.03391971439123154, -0.01733417809009552, -0.027293501421809196, -0.017089175060391426, 0.006135449279099703, -0.044221632182598114, -0.013782477006316185, 0.012503053992986679, 0.019674163311719894, 0.014223511330783367, 0.004121583886444569, -0.040956273674964905, -0.00014549212937708944, 0.04284350574016571, -0.006115332245826721, 0.021314062178134918, -0.001537945820018649, -0.026462459936738014, 0.02046920545399189, 0.01617276668548584, -0.011612188071012497, 0.00129135069437325, -0.006517771631479263, -0.02489340491592884, 0.0235726460814476, 0.0024992632679641247, 0.027690649032592773, -0.009106207638978958, -0.040299542248249054, 0.014739742502570152, -0.0018986115464940667, 0.0026370512787252665, 0.09852086752653122, -0.053742654621601105, 0.0018109356751665473, -0.012862199917435646, 0.013106678612530231, 0.053565189242362976, -0.0536210797727108, -0.0004134319897275418, -0.04560386762022972, -0.006400260608643293, -0.002402609447017312, 0.0044057029299438, 0.007312471978366375, 0.02397962100803852, 0.004430194851011038, -0.12309154868125916, 0.012744523584842682, -0.0032305342610925436, 0.05534004792571068, 0.030008552595973015, -0.009613986127078533, 0.021072039380669594, -0.09803783148527145, -0.045894864946603775, -0.005931810010224581, 0.013561248779296875, -0.028632059693336487, 0.005814758595079184, 0.016388380900025368, -0.039632994681596756, 0.018425337970256805, -0.04744914919137955, 0.06970449537038803, 0.008783574216067791, 0.017561646178364754, -0.01756502315402031, -0.0088084377348423, -0.06315506994724274, -0.04794800654053688, -0.08377513289451599, 0.030208706855773926, -0.014676425606012344, 0.013823773711919785, 0.04538311809301376, 0.04814770072698593, 0.052214764058589935, -0.03518214449286461, -0.022417856380343437, 0.035027675330638885, 0.027892576530575752, 0.013018408790230751, -0.05053864046931267, -0.038035791367292404, -0.011411391198635101, 0.02813720889389515, -0.04318028688430786, -0.05622369796037674, -0.06152714416384697, -0.010184993036091328, 0.03554851934313774, -0.011258741840720177, 0.06893723458051682, -0.01983366720378399, 0.005673817824572325, -0.06108170747756958, -0.08445975929498672, -0.04108600318431854, 0.025558754801750183, 0.07894705981016159, 0.01261684950441122, -0.040838465094566345, 0.004020851105451584, 0.017733044922351837, -0.04228512942790985, 0.027112433686852455, 0.002924419939517975, 0.016922814771533012, 0.01788143627345562, -0.021160410717129707, -0.03618292137980461, 0.012455280870199203, 0.004148497711867094, 0.0033121933229267597, -0.021466953679919243, -0.0046413796953856945, -0.01654563657939434, 0.018097050487995148, 0.0022066531237214804, -0.01935543864965439, -0.040381357073783875, -0.006334880832582712, 0.020224979147315025, 0.005369546357542276, 0.07295702397823334, 0.005310373846441507, 0.011024092324078083, -0.06486307829618454, 3.1005808409645397e-07, 0.004048651084303856, 0.06818746775388718, -0.0013776312116533518, -0.03579996898770332, 0.006468734238296747, -0.062304943799972534, 0.011402956210076809, 0.024446869269013405, -0.014897455461323261, -0.0018391947960481048, 0.0065131098963320255, 0.014988581649959087, -0.022946925833821297, -0.04537487030029297, 0.016309551894664764, -0.10482677817344666, -0.009304005652666092, 0.03821377456188202, 0.006989008281379938, 0.046781666576862335, 0.044526319950819016, 0.02517169527709484, 0.03317401185631752, 0.027076344937086105, -0.007952327840030193, 0.03380544111132622, -0.021470872685313225, -0.05398574098944664, 0.004062958061695099, 0.016388969495892525, 0.028953347355127335, -0.01150716282427311, 0.011114307679235935, -0.019533947110176086, -0.008357694372534752, -0.0024687228724360466, -0.07535155862569809, 0.01796703413128853, -0.018616538494825363, 0.08055379241704941, 0.06103629246354103, -0.02458873763680458, 0.014475436881184578, 0.00011366720718797296, 0.020009299740195274, 0.01595509611070156, 0.005405621137470007, -0.0022861945908516645, -0.03185084089636803, -0.016265936195850372, 0.03061433508992195, 0.03171740099787712, 0.03146786242723465, -0.025119757279753685, 0.029651541262865067, 9.958855116565246e-06, -0.027708040550351143, -0.00696180947124958, 0.09205036610364914, 0.004354219883680344, -0.035967081785202026, -0.0359288789331913, -0.010744086466729641, -0.012113692238926888, 0.040421802550554276, -0.036964718252420425, -0.0022433039266616106, 3.100971316624724e-34, 0.02057357132434845, -0.022603116929531097, -0.011821815744042397, -0.0008214860572479665, 0.036025986075401306, -0.024493921548128128, 0.08492719382047653, 0.024473924189805984, -0.009502576664090157, -0.06248883903026581, -0.009523425251245499], "9339280a-09ea-42e5-b8f0-5ae819759d6f": [-0.01215059868991375, 0.0024057021364569664, -0.017228806391358376, -0.009167290292680264, 0.010722888633608818, 0.009547951631247997, 0.07433345913887024, 0.03482247143983841, 0.04462352767586708, 0.017384521663188934, -0.01005081832408905, 0.04353175684809685, 0.01686692051589489, 0.05514337122440338, 0.013685413636267185, -0.02421782724559307, 0.009111487306654453, -0.0014703025808557868, 0.02071727067232132, 0.0019789196085184813, 0.014818298630416393, 0.03932563215494156, -0.05909784138202667, 0.018012292683124542, 0.039657045155763626, -0.03231692314147949, 0.013934425078332424, -0.029387760907411575, 0.09516264498233795, 0.06314904242753983, -0.012536801397800446, 0.018468806520104408, -0.022052837535738945, 0.04828440770506859, 2.2405795334634604e-06, 0.03517958149313927, -0.029129724949598312, 0.0025649811141192913, -0.0030542551539838314, -0.038604553788900375, 0.048706427216529846, 0.028614630922675133, -0.025203026831150055, 0.014919293113052845, -0.031798653304576874, 0.08483344316482544, 0.01738804578781128, -0.04991992935538292, 0.0549888052046299, 0.017423521727323532, 0.007226780988276005, 0.03704282268881798, 0.032101113349199295, -0.004560186993330717, 0.05050915479660034, -0.06603612750768661, -0.04492562636733055, 0.02459113299846649, 0.03972916677594185, 0.024044515565037727, 0.05642268806695938, 0.01892821677029133, 0.037440989166498184, -0.005792673677206039, 0.12583394348621368, 0.04015965014696121, 0.052538495510816574, -0.07646976411342621, 0.017760632559657097, 0.008703788742423058, 0.044297825545072556, -0.028816016390919685, -0.017209213227033615, 0.031668663024902344, -0.008920240215957165, -0.004674152005463839, 0.014357130974531174, 0.044071272015571594, 0.00562420254573226, 0.023709779605269432, -0.004997891373932362, -0.06432007998228073, -0.08011838793754578, 0.009487592615187168, 0.034599363803863525, -0.03689061105251312, 0.014751927927136421, 0.015103098005056381, 0.034185439348220825, -0.007595336064696312, 0.025954699143767357, -0.01198343001306057, -0.023802097886800766, 0.04571882635354996, 0.04902679845690727, -0.0233970545232296, -0.009560894221067429, -0.032809820026159286, 0.037106551229953766, 0.0269014835357666, -0.0631265640258789, 0.007286227308213711, -0.0069020893424749374, 0.03777800500392914, -0.032574478536844254, 0.05164037644863129, -0.01292180735617876, 0.050497375428676605, 0.03347278758883476, 0.05099233612418175, -0.03414486348628998, 0.024957850575447083, -0.03586067259311676, -0.004332132637500763, 0.011460734531283379, -0.0037316572852432728, -0.0203421451151371, 0.023246396332979202, 0.05148445442318916, 0.056692540645599365, 0.017035508528351784, -0.00029501161770895123, -0.051275867968797684, -0.022678159177303314, -0.03964432328939438, -0.0864042416214943, 0.013926402665674686, -0.003212685463950038, -0.03092140331864357, -0.025828396901488304, -0.035636693239212036, -0.010454697534441948, -0.012569336220622063, -0.033598076552152634, 0.0003713461337611079, -0.03397572040557861, 0.027877207845449448, 0.009909036569297314, 0.041525788605213165, 0.005915595218539238, 0.01691969856619835, -0.0020444171968847513, 0.0006261733360588551, 0.014541239477694035, -0.039351195096969604, 0.014484466053545475, -0.008007102645933628, -0.03147992491722107, 0.02375178597867489, 0.03649075701832771, 0.024923624470829964, -0.039944589138031006, -0.06523624807596207, -0.03790564090013504, -0.01821735128760338, 0.028653809800744057, -0.02172025851905346, -0.037383824586868286, -0.010649878531694412, 0.018104609102010727, -0.04767083004117012, -0.017886972054839134, 0.04678434133529663, -0.002159896306693554, 0.03992193192243576, -0.046699441969394684, 0.011838841252028942, 0.006438374985009432, 0.016227029263973236, -0.010597500018775463, 0.01710563525557518, 0.054575372487306595, -0.04169517382979393, 0.0521203875541687, -0.030548304319381714, -0.019897673279047012, 0.014457116834819317, -0.016408538445830345, -0.020839201286435127, 0.029478715732693672, 0.04603079333901405, -0.12552857398986816, -0.03600221127271652, 0.026979707181453705, -0.05880573391914368, 0.004433750174939632, -0.03409181162714958, 0.06078886240720749, 0.00019602126849349588, 0.029107462614774704, 0.018327349796891212, -0.021745430305600166, -0.0318135991692543, -0.04941398650407791, 0.06130822375416756, -0.03366363048553467, -0.0006302302936092019, -0.0529109388589859, -0.005728691350668669, -0.027254262939095497, -0.02103259414434433, -0.06695105880498886, -0.020222783088684082, 0.08983554691076279, -0.003169122850522399, -0.05377357825636864, 0.03671314939856529, -0.05586652457714081, 0.0077402484603226185, 0.07475595921278, -0.015108414925634861, -0.022924436256289482, -0.008030487224459648, -0.03838355839252472, -0.02685084566473961, -0.03378979116678238, -0.033390823751688004, -0.009304559789597988, 0.038606662303209305, 0.03390898555517197, -0.013980229385197163, -0.08262649923563004, 0.0379401370882988, 0.02075355127453804, -0.023339327424764633, -0.04225113242864609, -0.04811049625277519, 0.002032964024692774, 0.021418124437332153, 0.03561686351895332, -0.02095964178442955, 0.006225679535418749, 0.027489235624670982, 0.015002613887190819, -0.01622776873409748, -0.031336668878793716, -0.012381342239677906, 0.03845641762018204, 0.030963752418756485, -0.048832885921001434, -0.02936103194952011, 0.06323995441198349, 0.012124567292630672, 0.049860112369060516, 0.014433774165809155, 0.019163703545928, 0.04314924404025078, 0.014506543055176735, -0.014368586242198944, -0.056951854377985, 0.025689758360385895, 0.0013543643290176988, -0.006179424934089184, 0.044356025755405426, -0.008718905970454216, 0.03656301647424698, -0.13503268361091614, -0.014196745119988918, -0.07340603321790695, -0.017662404105067253, -0.00012983896885998547, -0.004929463844746351, 0.009901553392410278, -0.046121809631586075, 0.03511708229780197, 0.0032795986626297235, 0.007268780842423439, -0.03216078132390976, -0.023064950481057167, -0.020864371210336685, -0.017430756241083145, -0.0023821464274078608, -0.06125170364975929, -0.018877113237977028, -0.0113402483984828, -0.003739390056580305, 0.012461700476706028, -0.032852258533239365, -0.05597592890262604, -0.023068450391292572, -0.012654697522521019, 0.010280595161020756, -0.005471326876431704, -0.006046799011528492, -0.010503455996513367, 0.005251776892691851, 0.04726425185799599, -0.03168534114956856, -0.027522210031747818, 0.015283389948308468, 0.004855448845773935, 0.043320182710886, 0.008509858511388302, 0.0004522121453192085, 0.006590263918042183, -0.0049211811274290085, 0.0561000294983387, 0.008215305395424366, -0.026715219020843506, 0.020678948611021042, -0.005847771652042866, 0.02823041006922722, -0.056023940443992615, 0.021895337849855423, 0.052005916833877563, -0.030560923740267754, 0.02947276085615158, -0.021573413163423538, -0.05763201415538788, -0.06475092470645905, 0.0032271172385662794, 0.02836422435939312, -0.01708132214844227, 0.06301819533109665, 0.027038682252168655, 0.012763744220137596, 0.027582162991166115, 0.030293185263872147, 0.01626497134566307, -0.018271397799253464, 0.0061173709109425545, -0.057006578892469406, 0.0239506047219038, -0.055796001106500626, -0.026088032871484756, -0.07913731783628464, -0.008056702092289925, -7.86244563641958e-05, 0.06373859196901321, -0.014433142729103565, -0.019704032689332962, -0.0003599999472498894, 0.02350885234773159, 0.02639470435678959, 0.007568364962935448, 0.0013044605730101466, -0.02057124674320221, -0.06565145403146744, 0.012752262875437737, 0.00024996913271024823, -0.04450361058115959, 0.06237606331706047, -0.036889832466840744, 0.04408504441380501, -0.05140392854809761, -0.024398401379585266, 0.0066872574388980865, 0.004597105085849762, 0.04948398098349571, -0.0038557585794478655, 0.07327959686517715, 0.052550558000802994, 0.047206129878759384, 0.006325614172965288, 0.02826615981757641, -0.06333055347204208, 0.016210386529564857, -0.047637470066547394, -0.003698022337630391, -0.016763143241405487, 0.02630731649696827, -0.021228265017271042, 0.0818093866109848, 0.00047921593068167567, -0.03430026024580002, -0.0793323814868927, 0.013193381950259209, -0.028840230777859688, 0.025104885920882225, 0.02368083782494068, -0.023574084043502808, 0.020666664466261864, -0.00633247708901763, 0.018650075420737267, 0.008581338450312614, -0.057172905653715134, -0.049351766705513, 0.02499750256538391, 0.020918535068631172, -0.012952599674463272, 0.005715671926736832, -0.0920683816075325, 0.028203431516885757, 0.003086998127400875, -5.5913187679834664e-05, 0.02717088721692562, 0.0036034900695085526, 0.025203924626111984, 0.014045321382582188, -0.028326570987701416, 0.0031188055872917175, -0.0466512069106102, -0.03525589033961296, -0.006756196264177561, -0.013607639819383621, -0.02346661686897278, 0.003334912471473217, -0.01461759302765131, -0.001772018731571734, 0.06971561163663864, -0.006576816085726023, 0.016168108209967613, 0.007740325760096312, 0.035250671207904816, 0.008244622498750687, 0.08978013694286346, 0.035346247255802155, -0.02200595661997795, -0.03660346940159798, -0.03479669243097305, 0.05411860719323158, -0.03279835730791092, -0.017125049605965614, 0.004162915050983429, 0.01775674894452095, -0.043443795293569565, -0.010765296407043934, 0.023431718349456787, 0.05182764679193497, -0.06471122056245804, -0.03469906002283096, 0.011942124925553799, 0.05365601181983948, 0.02964782528579235, 0.01364794559776783, -0.015979284420609474, 0.040750179439783096, 0.008776716887950897, 0.015458940528333187, -0.0500742606818676, -0.03206915780901909, 0.045287832617759705, -0.00667621660977602, 0.017487581819295883, 0.0036538082640618086, -0.06393688172101974, -0.07137094438076019, 0.030103616416454315, -0.015069117769598961, -0.05136238411068916, -0.012484411709010601, 0.06132401525974274, 0.009725406765937805, -0.008213403634727001, -0.06606771051883698, -0.008386620320379734, -0.004744372330605984, -0.036827996373176575, 0.02057780511677265, -0.035134267061948776, 0.015069069340825081, -0.08154183626174927, -0.09403543174266815, -0.07515111565589905, -0.046965163201093674, -0.05038738623261452, -0.0337630957365036, 0.0563378743827343, 0.00282465317286551, 0.016787270084023476, 0.02436574548482895, 0.03152284026145935, -0.006374936550855637, -0.03524770587682724, 0.04574510082602501, 0.020270925015211105, 0.013606706634163857, -0.04802902042865753, 0.020935580134391785, 0.00629935460165143, 0.024463262408971786, -0.015631359070539474, -0.010284927673637867, -0.0329693928360939, -0.02732256054878235, 0.0016018227906897664, 0.028167463839054108, 0.06459680199623108, -0.033235881477594376, 0.02728905901312828, 0.000838105974253267, -0.0011481114197522402, 0.04195306822657585, 0.03579554334282875, -0.039035022258758545, 0.027560986578464508, 0.05739794299006462, 0.014672662131488323, -0.022557079792022705, -0.047973111271858215, 0.04776335880160332, -0.09368867427110672, -0.007367198821157217, -0.06908180564641953, -0.004468698054552078, -0.027984313666820526, 0.054328303784132004, 0.03339837118983269, -0.027764085680246353, 0.08054981380701065, 0.02434685453772545, -0.015773247927427292, -0.0027579038869589567, -0.0033789717126637697, -0.08950507640838623, -0.004421489778906107, 0.01713547855615616, 0.03598485514521599, -0.025608951225876808, -0.0440155528485775, 0.048599448055028915, 0.017861157655715942, -0.01832760125398636, -0.038182761520147324, 0.01994362100958824, 0.036729682236909866, 0.0073165809735655785, 0.07795241475105286, 0.03716995194554329, -0.00443877512589097, 0.027396248653531075, -0.007643591146916151, 0.017046498134732246, 0.012898488901555538, -0.02704480104148388, -0.02896093763411045, 0.0041213929653167725, 0.0047290148213505745, 0.03539666160941124, 0.019046597182750702, 0.0028805378824472427, 0.016999730840325356, 0.03626137226819992, 0.03284589573740959, -0.00915764644742012, -0.05982934683561325, -0.03203161805868149, -0.058406393975019455, 0.005012693349272013, -0.018645379692316055, 0.03308279812335968, -0.041333988308906555, 0.03143378347158432, 0.03332413360476494, -0.03865485265851021, 0.01616714708507061, 0.043381065130233765, 0.05036509037017822, -0.04320564121007919, -0.040402334183454514, 0.02954781986773014, 0.02310570701956749, 0.01838182657957077, -0.001371204387396574, 0.013012937270104885, -5.4832197650532735e-33, -0.01882614940404892, 0.048985786736011505, -0.0005914268549531698, 0.04789082333445549, 0.04686792567372322, -0.016717564314603806, -0.002692312467843294, 0.0012833195505663753, -0.059066805988550186, -0.00917376670986414, -0.014726251363754272, 0.03774718940258026, 0.036337994039058685, -0.03322623297572136, 0.026631679385900497, 0.018245622515678406, 0.03630959987640381, -0.011085722595453262, -0.004209098406136036, 0.062142059206962585, -0.07031623274087906, -0.02484813891351223, 0.02885407768189907, 0.05125626549124718, -0.0023095787037163973, -0.03233853727579117, -0.01168790739029646, -0.0013187474105507135, -0.02127649448812008, 0.022201228886842728, -0.026473872363567352, 0.027611849829554558, -0.02571331337094307, -0.011991641484200954, 0.0059824842028319836, 0.014936964027583599, -0.010985652916133404, 0.012393842451274395, -0.023017805069684982, -0.00547744007781148, 0.03993162140250206, -0.07415943592786789, 0.03804893046617508, -0.05164779722690582, 0.005638366099447012, 0.008873014710843563, 0.04136669635772705, 0.008948025293648243, 0.04675833135843277, -0.02160453051328659, -0.04549264535307884, 0.01812787726521492, -0.039769791066646576, 0.02403332106769085, -0.0032904627732932568, -0.021048782393336296, 0.012255431152880192, -0.10122241079807281, -0.0224352665245533, 0.04087699204683304, 0.04415300488471985, -0.024836745113134384, 0.024570384994149208, -0.08869466185569763, -0.01648097299039364, 0.018713433295488358, -0.0048025185242295265, 0.026878874748945236, 0.007473310921341181, 0.03510649502277374, 0.024882035329937935, -0.007243313826620579, 0.012913965620100498, -0.03258102014660835, -0.04690263047814369, 0.028255239129066467, -0.02529461681842804, 0.025278447195887566, 0.0791831687092781, 0.07430862635374069, -0.010635188780725002, -0.022332066670060158, -0.019504856318235397, 0.008396034128963947, -0.003378603607416153, -0.047388650476932526, -0.035300515592098236, -0.03419777750968933, 0.0022433409467339516, 0.027963992208242416, 0.0006444443133659661, -0.05679456144571304, -0.019725419580936432, 0.00855338852852583, 0.0389871783554554, -0.000664109131321311, 0.015102538280189037, 0.018516164273023605, 0.027544887736439705, 0.0073691015131771564, -0.07768691331148148, -0.021525226533412933, 0.036387089639902115, 0.026795923709869385, 0.07021185755729675, -0.021191898733377457, 0.003560769371688366, -0.019748510792851448, -0.04815017431974411, 0.013240835629403591, -0.027204787358641624, 0.012884937226772308, 0.018835777416825294, -0.021340208128094673, 0.008621065877377987, -0.010814524255692959, 0.029541917145252228, -0.025187529623508453, -0.03564193844795227, -0.030495496466755867, -0.06041529029607773, 0.0527297742664814, -0.034463632851839066, -0.05417422577738762, 0.005866819527000189, 0.00852924957871437, 0.00809845793992281, 0.04730444774031639, 0.020290300250053406, -0.022480832412838936, 0.01951909065246582, -0.054310623556375504, 2.8711690447380533e-07, -0.025493567809462547, 0.09765791893005371, 0.008812829852104187, -0.016680749133229256, -0.031206747516989708, -0.04498288407921791, -0.01665852963924408, -0.0011368009727448225, 0.03824583441019058, 0.027504878118634224, -0.038519393652677536, 0.04309861734509468, -0.030226659029722214, 0.021788494661450386, -0.014403545297682285, -0.13804683089256287, 0.019808342680335045, 0.031864456832408905, -0.034740149974823, 0.007235320750623941, 0.05880330502986908, 0.025544827803969383, 0.06632524728775024, -0.003298535943031311, 0.04413224384188652, -0.012615135870873928, -0.01410680916160345, 0.020843559876084328, 0.03828297555446625, 0.004680742975324392, -0.022219957783818245, 0.008838831447064877, -0.0021088828798383474, -0.015567323192954063, 0.025651585310697556, 0.0034616722259670496, -0.04835493862628937, 0.03511359915137291, -0.0007813668344169855, 0.08017304539680481, 0.022394564002752304, -0.044495802372694016, -0.001980498433113098, 0.029817234724760056, 0.06470531225204468, 0.03158712014555931, 0.03640391677618027, 0.008724300190806389, -0.052816957235336304, -0.07836005836725235, -0.004528254270553589, 0.017758149653673172, 0.02232266589999199, -0.03895445540547371, 0.0013323930324986577, -0.03632156923413277, -0.03894815593957901, -0.007289814297109842, 0.02150898613035679, -0.0005947528406977654, -0.020726995542645454, -0.04883993789553642, -0.014636611565947533, 0.01948823593556881, -0.006240639369934797, -0.05732807144522667, 0.052820365875959396, 2.779022240211212e-34, -0.004535570740699768, -0.042850639671087265, 0.013325248844921589, -0.015077430754899979, 0.016692427918314934, -0.01988069899380207, 0.061394304037094116, -0.03742656856775284, -0.036257416009902954, -0.019780324772000313, -0.02937767282128334], "6cb2c28c-4858-4f80-b7af-c763074c72db": [-0.019699465483427048, 0.03858717903494835, -0.01790122129023075, -0.014697054401040077, -0.016544338315725327, 0.04002208262681961, 0.07049711048603058, 0.011978975497186184, 0.0273942518979311, -0.02132229693233967, -0.0397200770676136, -0.008869997225701809, 0.010021213442087173, 0.06592684239149094, -0.04339778050780296, 0.015256407670676708, 0.02913925237953663, 0.014220498502254486, -0.05796698108315468, -0.02061798796057701, 0.016077501699328423, 0.03338061273097992, -0.006096336524933577, -0.021644163876771927, 0.027141023427248, -0.05054986849427223, -0.0236173328012228, 0.04273829981684685, 0.024520404636859894, 0.023610157892107964, 0.018122123554348946, 0.10095921903848648, -0.011348444037139416, 0.06118898466229439, 2.4563285023759818e-06, -0.03566313907504082, -0.03925425186753273, 0.005381939932703972, -0.030063537880778313, 0.008018731139600277, 0.039209432899951935, 0.017499757930636406, -0.028071288019418716, 0.00523800402879715, -0.019752809777855873, 0.01981428824365139, 0.010011428035795689, -0.03932355344295502, 0.01910301297903061, 0.054293952882289886, 0.010973023250699043, 0.032784249633550644, -0.001385957351885736, -0.042577583342790604, 0.04361493140459061, -0.07599348574876785, 0.018977316096425056, 0.09853113442659378, 0.07462112605571747, 0.04490652680397034, 0.021170035004615784, -0.015756268054246902, -0.042394667863845825, -0.012512998655438423, 0.10008884221315384, 0.020577965304255486, 0.0459420382976532, -0.10005368292331696, 0.02384842000901699, 0.027674125507473946, 0.08839420974254608, 0.01530363317579031, 0.03376911208033562, 0.03903674706816673, -0.03226127848029137, 0.0053932578302919865, 0.015185151249170303, -0.00958776194602251, 0.012013568542897701, -0.01601485349237919, -0.034147825092077255, -0.08564230799674988, -0.06133180111646652, 0.024134337902069092, 0.046318430453538895, -0.0072914487682282925, -0.004306664224714041, -0.03706860914826393, 0.03424307331442833, -0.020101385191082954, 0.062303800135850906, -0.020341334864497185, -0.01623287983238697, 0.019138550385832787, 0.01877099648118019, -0.034263547509908676, 0.015609928406774998, -0.012219032272696495, 0.023341530933976173, 0.04410679638385773, -0.003692406229674816, -0.00023894770129118115, 0.029743703082203865, 0.04429937154054642, -0.011956741102039814, 0.0436515212059021, 0.027339382097125053, -0.02682173252105713, 0.023349808529019356, 0.06850086152553558, -0.03293494135141373, -0.00934745091944933, -0.08076821267604828, -0.01427721418440342, -0.022482914850115776, 0.010105827823281288, -0.020505569875240326, 0.03510701283812523, 0.03238961100578308, 0.05412749573588371, 0.062271688133478165, 0.0007573895272798836, -0.03208477422595024, -0.012636802159249783, -0.057921841740608215, -0.10581258684396744, 0.016821306198835373, 0.007656579837203026, -0.03842160105705261, -0.018137915059924126, 0.020891157910227776, -0.0011423398973420262, -0.006157456897199154, 0.01923609897494316, 0.02177722007036209, 0.002999652409926057, 0.045670609921216965, 0.004280377179384232, -0.0036641149781644344, -0.014128240756690502, 0.060028351843357086, -0.013859440572559834, -0.035245321691036224, -0.029386568814516068, 0.021025439724326134, 0.020291464403271675, -0.001540843048132956, -0.015617147088050842, 0.0011973046930506825, -0.0104628661647439, -0.0019987558480352163, 0.01377631351351738, -0.05454359948635101, 0.009484604932367802, 0.016521411016583443, 0.011428297497332096, -0.0204682145267725, -0.006995126139372587, -0.03984445706009865, -0.03287030756473541, -0.004257953260093927, 0.009541542269289494, 0.046092722564935684, 0.005010715685784817, -0.01623319275677204, -0.03654235973954201, 0.048301007598638535, 0.01857127994298935, 0.00022238880046643317, -0.00419941172003746, -0.04602891206741333, 0.027788961306214333, -0.013068283908069134, 0.07095466554164886, -0.05258229747414589, -0.0012022474547848105, 0.07827967405319214, 0.02999316155910492, -0.01642877236008644, 0.02076210081577301, -0.013235309161245823, -0.11932049691677094, -0.02183365449309349, 0.04995448887348175, 0.007315365131944418, -0.0001244544400833547, -0.034193214029073715, 0.07972166687250137, -0.006471341475844383, 0.02164038084447384, -0.031911563128232956, -0.0022639641538262367, -0.06114162132143974, -0.06334123015403748, 0.05835828557610512, -0.0069835735484957695, 0.013026724569499493, -0.04812980443239212, -0.019574947655200958, -0.00787979457527399, -0.03452341631054878, -0.01923699863255024, 0.006436338182538748, 0.07698987424373627, 0.014991438947618008, -0.04684843495488167, -0.034518953412771225, -0.008302241563796997, -0.0075540319085121155, 0.013897213153541088, 0.06862913817167282, -0.004198247566819191, -0.0325159952044487, -0.053097065538167953, -0.03768501430749893, 0.008142885752022266, -0.023272758349776268, 0.02362392656505108, 0.016669292002916336, 0.015598340891301632, 0.006908028852194548, -0.06340257078409195, -0.006333252880722284, 0.010649284347891808, -0.06695127487182617, -0.042111240327358246, -0.03754400461912155, -0.011679965071380138, 0.03367400914430618, 0.005874538794159889, -0.06717350333929062, 0.027343684807419777, 0.013737127184867859, 0.03252942115068436, -0.009794460609555244, 0.01633504405617714, 0.03678660839796066, 0.055710721760988235, 0.013406207785010338, -0.06094387173652649, -0.007741192355751991, 0.04251847788691521, -0.02313632145524025, 0.011852020397782326, -0.006963928230106831, -0.0208317581564188, -0.027042346075177193, 0.015324970707297325, 0.026517406105995178, 0.021178539842367172, 0.011301729828119278, -0.01796082966029644, 0.004213940352201462, 0.03118612803518772, 0.023158445954322815, 0.033734988421201706, -0.11516683548688889, 0.010662304237484932, -0.02588135190308094, 0.008917653001844883, 0.005133448168635368, -0.009670238010585308, -0.031128771603107452, -0.03135352209210396, 0.009458929300308228, 0.009635161608457565, -0.011585292406380177, -0.03422475978732109, 0.0024780079256743193, 0.019709797576069832, -0.012951565906405449, 0.02262391336262226, 0.0028704756405204535, -0.03421968221664429, -0.030796805396676064, 0.0008231124375015497, 0.006206435617059469, 0.004014580976217985, -0.026024509221315384, 0.0006915141711942852, -0.043282512575387955, -0.0369923897087574, -0.013454224914312363, -0.004889861214905977, -0.016937581822276115, -0.02030031383037567, 0.038026172667741776, -0.05295637249946594, -0.06910381466150284, -0.028686776757240295, 0.0009472859092056751, -0.005589894484728575, 0.040938541293144226, 0.015355129726231098, -0.039581041783094406, 0.006119170226156712, 0.07587482780218124, 0.023379486054182053, -0.03488213196396828, 0.04911382123827934, 0.0032253977842628956, 0.032024163752794266, -0.029831241816282272, -0.025692759081721306, 0.05179162696003914, 0.029283277690410614, 0.07700692862272263, -0.05758374556899071, -0.0093421945348382, -0.04677596315741539, -0.016934853047132492, -0.0003601791977416724, 0.02119402214884758, 0.051634639501571655, -0.002822232898324728, 0.0013557891361415386, -0.008973930962383747, -0.0614895224571228, 0.010967963375151157, 0.03758132830262184, 0.011974022723734379, -0.04624154791235924, 0.009720440953969955, -0.04570917785167694, 0.00022848561638966203, -0.10409435629844666, -0.04890865460038185, 0.0005877887015230954, 0.03269089385867119, -0.04659208655357361, 0.005725194700062275, 0.00835330318659544, -0.0074950628913939, -0.00982954353094101, -0.0677090510725975, 0.022756153717637062, -0.00818544626235962, -0.07888339459896088, 0.0076230475679039955, -0.0016687118913978338, -0.03738369792699814, 0.043291427195072174, -0.04912130534648895, 0.020071405917406082, -0.02510496973991394, 0.018786584958434105, -0.016032624989748, -0.031636014580726624, -0.002736501395702362, 0.03208601474761963, 0.0787002444267273, 0.06425845623016357, 0.018424011766910553, 0.01225999929010868, 0.04556651413440704, -0.03420061618089676, 0.0021289968863129616, -0.01989283226430416, -0.024396054446697235, -0.04925815388560295, 0.026841919869184494, -0.019003748893737793, 0.03088241070508957, 0.023649079725146294, -0.04005561023950577, -0.07927917689085007, 0.0015880608698353171, -0.03413357213139534, 0.02796819619834423, -0.0369320809841156, -0.04315131530165672, 0.03431950509548187, -0.01963997632265091, 0.03749691694974899, 0.007255855482071638, -0.04583977907896042, -0.013914416544139385, -0.04376765713095665, -0.01790432818233967, -0.024200743064284325, 0.027042197063565254, -0.08981821686029434, 0.06868897378444672, -0.0005943108699284494, 0.009906175546348095, 0.01488517876714468, -0.021567044779658318, 0.03373470902442932, 0.07438448071479797, -0.060909856110811234, 0.02524259127676487, -0.06299704313278198, -0.057732727378606796, -0.02356887422502041, -0.006940177641808987, -0.014478238299489021, -0.0347696989774704, -0.0010641022818163037, 0.0011932400520890951, 0.013619495555758476, 0.005216245073825121, -0.03872133046388626, 0.007711140904575586, 0.008562137372791767, 0.0018315790221095085, 0.06354217231273651, 0.11630034446716309, 0.03646743297576904, -0.010774257592856884, -0.07688479870557785, 0.12515665590763092, 0.06693420559167862, 0.0478532537817955, -0.009201797656714916, 0.017696114256978035, -0.018931441009044647, 0.015009441412985325, 0.0381610281765461, 0.04190460592508316, -0.05480998754501343, -0.034245651215314865, 0.03430835157632828, 0.047195274382829666, -0.021867044270038605, 0.02546711266040802, -0.04164554551243782, 0.06769873201847076, 0.029062900692224503, 0.04237120598554611, -0.03120371699333191, -0.022936219349503517, 0.013366934843361378, -0.0004047440306749195, 0.06303595751523972, 0.03498987853527069, 0.01455359160900116, -0.03246290609240532, -0.0531124509871006, 0.005954510997980833, -0.016569161787629128, -0.027776118367910385, 0.04847191646695137, 0.008557628840208054, -0.020493626594543457, -0.0836496353149414, 0.006114001385867596, 0.01640339381992817, -0.022631574422121048, -0.005551997572183609, -0.022644584998488426, 0.01952384226024151, -0.0356430746614933, -0.050749700516462326, -0.037986159324645996, 0.011046186089515686, -0.008338539861142635, -0.07702382653951645, 0.06869617849588394, 0.007642535492777824, 0.02540179342031479, -0.013559117913246155, 0.04570912569761276, -0.02133708819746971, -0.0053605735301971436, 0.010239092633128166, -0.012856519781053066, 0.011318625882267952, -0.04149382933974266, 0.016385594382882118, -0.025818686932325363, 0.03680820390582085, -0.03726162761449814, -0.007467807270586491, -0.013134139589965343, 0.009474366903305054, -0.04077034071087837, -0.014718353748321533, 0.025772524997591972, -0.04771776497364044, 0.00797889195382595, 0.05697361007332802, -0.013728708028793335, 0.017516639083623886, 0.015199053101241589, -0.03391047567129135, 0.049881462007761, 0.05277280509471893, 0.022931698709726334, 0.013853324577212334, -0.009667356498539448, 0.05004218593239784, -0.045620232820510864, 0.005610587541013956, -0.02216849848628044, -0.024812908843159676, -0.028705764561891556, 0.03664699196815491, 0.026087379083037376, 0.035871464759111404, 0.05370473861694336, 0.0442829355597496, -0.04669405519962311, -0.03563490882515907, 0.019682392477989197, -0.0686517134308815, 0.0128529267385602, -0.031161505728960037, 0.03357693552970886, -0.03625102713704109, -0.019053010269999504, -0.0021527637727558613, -0.0029645960312336683, -0.02258707955479622, -0.07517141848802567, 0.009187894873321056, -0.004742307122796774, -0.014679749496281147, 0.043265338987112045, -0.021934639662504196, -0.053674280643463135, 0.026415864005684853, -0.03547664359211922, 0.04288743808865547, -0.015361610800027847, 0.012726128101348877, -0.024825522676110268, 0.01312433835119009, 0.0035278049763292074, 0.011499258689582348, 0.04481032118201256, -0.05071403458714485, -0.0017931413603946567, -0.012863099575042725, -0.014115199446678162, -0.06659949570894241, 0.025954214856028557, 0.022595318034291267, 0.00876576453447342, -0.03720516338944435, -0.030205626040697098, -0.007263320032507181, 0.010226991958916187, 0.0434456542134285, 0.011321116238832474, -0.04092402011156082, -0.0063337162137031555, 0.051425617188215256, 0.018677888438105583, -0.012736301869153976, 0.006722564809024334, 0.03676481917500496, 0.013064378872513771, -0.048988718539476395, -0.010035861283540726, 0.006538130342960358, -6.106172996271545e-33, -0.014377515763044357, -0.019109902903437614, -0.018574725836515427, 0.02009226381778717, -0.0023045481648296118, -0.004818903282284737, -0.0029518804512917995, -0.0018883582670241594, -0.06909576803445816, 0.001638563466258347, -0.00976807251572609, 0.02182185649871826, 0.026447219774127007, -0.034998293966054916, 0.012170588597655296, 0.06342200934886932, 0.01476218830794096, 0.003900884883478284, 0.014267176389694214, -0.0008848064462654293, -0.01857183687388897, 0.007922502234578133, 0.013501260429620743, -0.002661938313394785, 0.005911628250032663, -0.012107914313673973, 0.01086268201470375, 0.019452493637800217, -0.021192118525505066, 0.005333302542567253, -0.0025074684526771307, -0.046149756759405136, -0.02340087480843067, 0.022852331399917603, 0.01567861996591091, 0.07989943027496338, -0.048963453620672226, -0.018072662875056267, -0.0003629589919000864, -0.003296998329460621, 0.06693683564662933, -0.021736741065979004, 0.02465052343904972, -0.02526097744703293, 0.008356945589184761, 0.029809752479195595, 0.03824865445494652, 0.043653231114149094, -0.02353939227759838, 0.0014083198038861156, -0.12445630878210068, 0.005193513352423906, -0.026806998997926712, 0.07553789764642715, -0.013131898827850819, 0.023947879672050476, 0.009861698374152184, -0.10145346820354462, -0.03351619094610214, 0.0164473969489336, 0.019620558246970177, -0.0112013453617692, 0.041211437433958054, -0.03205043077468872, -0.017258552834391594, 0.011261473409831524, -0.02332349494099617, 0.04384404048323631, 0.04977381229400635, -0.011090071871876717, -0.0035283095203340054, 0.0335756316781044, -0.03881878778338432, -0.03543037921190262, -0.06841648370027542, 0.024919571354985237, -0.017764417454600334, 0.01459484826773405, 0.08052936941385269, 0.014215977862477303, 0.0063012815080583096, 0.002328247297555208, -0.02001677080988884, 0.022940510883927345, 0.01822018437087536, 0.0008226775098592043, -0.045235682278871536, -0.0404663048684597, -0.03263082355260849, 0.02009556069970131, -0.012327680364251137, -0.036351047456264496, -0.020005788654088974, 0.004730373155325651, 0.03541825711727142, -0.011189866811037064, 0.04607662558555603, -0.04797619208693504, -0.010057982057332993, -0.01592876948416233, -0.092744380235672, 0.006242604926228523, 0.028214948251843452, 0.06947731971740723, 0.03267331421375275, 0.0040571135468780994, -0.004290216602385044, -0.016307583078742027, -0.05924312397837639, 0.02232169918715954, -0.012275164015591145, 0.01215319149196148, -0.01293076854199171, -0.04424021393060684, 0.017489982768893242, 0.022509600967168808, 0.005032304208725691, 0.008411147631704807, -0.02290329895913601, -0.04122122377157211, -0.00862711202353239, 0.016652485355734825, 0.005820580292493105, -0.008777064271271229, -0.010171676054596901, 0.0017173145897686481, -0.012681292369961739, 0.006118797231465578, 0.1088423803448677, 0.03884582594037056, 0.003861901117488742, -0.02532697282731533, 3.2279453421324433e-07, 0.013896053656935692, 0.0515458770096302, 0.0409185029566288, -0.028069227933883667, -0.006530428305268288, -0.057203635573387146, -0.004211600869894028, 0.029369836673140526, 0.031527016311883926, 0.027689531445503235, -0.004280779976397753, 0.001697394996881485, 0.009990246966481209, 0.00958604458719492, -0.007646114099770784, -0.10904579609632492, -0.01393810287117958, 0.012649012729525566, -0.044157058000564575, 0.01715547777712345, 0.0465504489839077, 0.0009916843846440315, 0.02550354227423668, 0.012038828805088997, -0.03890237212181091, 0.0421159565448761, -0.018426887691020966, -0.020953578874468803, 0.049147285521030426, 0.014157786034047604, 0.02109960839152336, -0.03944327309727669, 0.005345603451132774, 0.04276234656572342, -0.012877763248980045, -0.03059368208050728, -0.048189375549554825, 0.03598856180906296, -0.01094013825058937, 0.07717601209878922, 0.06633361428976059, -0.02372826263308525, -0.034423962235450745, 0.018546758219599724, 0.013241739943623543, -0.023661073297262192, 0.006620015483349562, 0.004163249861449003, -0.08068389445543289, -0.031336814165115356, 0.02241125889122486, 0.04666456580162048, 0.06450697034597397, -0.0041942354291677475, 0.000590249546803534, -0.015342026017606258, -0.0438285693526268, 0.01277618296444416, 0.02008594572544098, 0.05519023910164833, -0.023445382714271545, -0.08047260344028473, -0.005962907802313566, 0.00645705871284008, 0.07424217462539673, -0.03468170389533043, 0.008304137736558914, 3.4642254737339563e-34, 0.0023878668434917927, -0.024664398282766342, 0.013982189819216728, 0.04421648383140564, 0.003212549490854144, -0.0246576014906168, 0.05641155317425728, 0.045021504163742065, 0.019908644258975983, -0.06239822134375572, -0.01436682604253292], "8cb68461-551d-44b1-bd45-789feee27927": [0.010210140608251095, -0.008384587243199348, 0.0035747254732996225, 0.004864811431616545, 0.010340751148760319, 0.013068586587905884, 0.0038582468405365944, 0.07171314209699631, 0.0314171127974987, 0.013045995496213436, -0.05696916952729225, -0.010956328362226486, 0.05085134506225586, 0.04812005162239075, 0.006393243558704853, 0.018506215885281563, 0.024735204875469208, -0.014194987714290619, -0.09566813707351685, -0.01298572588711977, 0.0054415492340922356, 0.012223304249346256, -0.055966880172491074, 0.0007770794909447432, 0.027514589950442314, -0.011346472427248955, -0.051510218530893326, 0.04686075448989868, 0.0787334144115448, 0.02302098646759987, 0.018385717645287514, 0.027448799461126328, -0.007200451102107763, 0.002850830787792802, 2.2394449388229987e-06, 0.011736981570720673, -0.0013521077344194055, -0.027591612190008163, -0.04691100865602493, -0.0202154703438282, -0.014867044053971767, 0.04637276008725166, 0.012579764239490032, -4.341509338701144e-05, -0.0010849012760445476, 0.0304860919713974, 0.02770889364182949, -0.029180115088820457, 0.0059962100349366665, 0.013993368484079838, -0.007759000640362501, -0.017967063933610916, -0.01419978216290474, -0.0109516941010952, -0.014848611317574978, -0.12734800577163696, 0.0187063030898571, 0.019880739971995354, 0.03280815854668617, -0.020121196284890175, 0.018801113590598106, -0.010472544468939304, -0.02115895226597786, 0.012075102888047695, 0.10191864520311356, 0.05460725724697113, 0.024998091161251068, -0.0551350973546505, -0.026811150833964348, 0.0035932385362684727, 0.07639220356941223, 0.011995617300271988, -0.019400473684072495, 0.056740980595350266, -0.017987210303544998, -0.02531435899436474, 0.02506878785789013, -0.018655871972441673, 0.00666988268494606, 0.0013954169116914272, -0.010989909060299397, -0.035329561680555344, -0.03529012203216553, 0.04621944576501846, -0.01771920919418335, -0.03221217170357704, 0.035167139023542404, -0.019367562606930733, 0.02360672689974308, 0.02263304963707924, 0.05224348604679108, 0.04208407551050186, 0.010613961145281792, 0.018056141212582588, 0.03746592625975609, -0.04201016575098038, 0.042262256145477295, 0.034183282405138016, -0.012839731760323048, 0.01507172454148531, 0.020851019769906998, -0.0018707843264564872, 0.0009710126323625445, 0.03510249778628349, -0.005159582942724228, 0.0431651771068573, -0.031708210706710815, -0.01825815811753273, -0.026717716827988625, 0.05318152531981468, 0.007855777628719807, 0.007484325207769871, -0.049987807869911194, -0.011738668195903301, 0.00610960740596056, 0.002110291039571166, 0.0005383794195950031, 0.010211407206952572, 0.03499668464064598, 0.05665013566613197, 0.0913640484213829, -0.014714349992573261, -0.020577121526002884, -0.03490595892071724, -0.050963640213012695, -0.10714255273342133, 0.04004562273621559, 0.012140661478042603, -0.043108079582452774, -0.033895544707775116, -0.015993988141417503, 0.0009904392063617706, 0.03229367733001709, 0.013811270706355572, -0.018815582618117332, 0.01816479116678238, 0.015638357028365135, 0.010032589547336102, -0.011229383759200573, 0.006738304626196623, 0.02433587610721588, 0.0027316042687743902, 0.031777676194906235, 0.025513678789138794, -0.025921247899532318, 0.005725017748773098, 0.0032364565413445234, 0.02193516492843628, 0.03275824710726738, 0.03535635769367218, -0.0578533373773098, -0.03592847287654877, -0.052530206739902496, -0.013604652136564255, -0.03516797721385956, 0.01606675237417221, 0.04892702400684357, -0.040305886417627335, -0.014932501129806042, 0.019614895805716515, -0.05515962466597557, 0.04207700490951538, 0.03937370702624321, 0.02023136615753174, 0.011981124989688396, -0.026588356122374535, -0.0007003765786066651, 0.0044676074758172035, 0.011698201298713684, -0.03463231772184372, -0.03721131756901741, 0.027704669162631035, -0.04730742424726486, 0.061752572655677795, -0.05285008251667023, -0.0755946934223175, 0.07645706087350845, -0.02625172771513462, -0.012176603078842163, -0.06464366614818573, -0.02981545217335224, -0.11102808266878128, -0.009789385832846165, 0.019587567076086998, -0.015822747722268105, 0.01560502965003252, 0.04212088882923126, 0.036427609622478485, -0.02577241323888302, -0.00974707305431366, -0.019246680662035942, 0.00424778601154685, -0.04722541943192482, -0.05917464569211006, 0.03624124079942703, -0.019753888249397278, -0.010421227663755417, -0.05508701130747795, 0.00444916682317853, -0.002415352500975132, -0.04587709158658981, -0.08777592331171036, 0.0026731272228062153, 0.10690619796514511, 0.011726006865501404, 0.021710576489567757, 0.034175168722867966, -0.011279918253421783, -0.035764504224061966, 0.08233066648244858, 0.05091110244393349, -0.012280887924134731, -0.007136699743568897, -0.05429186299443245, -0.016675304621458054, 0.07089845836162567, -0.02958369255065918, -0.002425332088023424, 0.015256321057677269, -0.0105220852419734, -0.013347454369068146, -0.04843854159116745, -0.018002022057771683, 0.006893324665725231, 0.0019247225718572736, -0.030083591118454933, -0.013286497443914413, 0.01633228175342083, 0.0165410116314888, 0.020232921466231346, -0.04210750758647919, -0.0004349363734945655, 0.004665034357458353, 0.01655934751033783, 0.041791725903749466, -0.0012760197278112173, -0.017602290958166122, 0.027906179428100586, 0.02791212685406208, -0.02758249081671238, -0.0025900090113282204, 0.030948741361498833, 0.012874238193035126, 0.026343174278736115, 0.020742179825901985, 0.02014513872563839, -0.008259550668299198, -0.02965007908642292, -0.00019779236754402518, 0.0526706725358963, 0.018805675208568573, -0.04455622285604477, 0.032409124076366425, -0.00402182387188077, 0.010004865936934948, -0.008162273094058037, -0.15146830677986145, -0.011113161221146584, -0.018937034532427788, 0.020743288099765778, -0.03254834935069084, 0.012077915482223034, 0.008182483725249767, -0.0245434008538723, 0.013356340117752552, -0.005491210147738457, 0.049477264285087585, -0.04703681170940399, -0.034972164779901505, 0.02317497693002224, 0.001150241238065064, 0.04115010052919388, -0.039013538509607315, -0.018765686079859734, 0.0017640793230384588, -0.019527800381183624, 0.03129768744111061, -0.0065263742581009865, -0.03553975000977516, 0.020947441458702087, -0.01890784129500389, -0.03023863583803177, -0.03332042321562767, -0.03388340398669243, 0.017559807747602463, -0.022596418857574463, 0.0073363943956792355, -0.06922062486410141, -0.03405160456895828, -0.019985608756542206, 0.029866866767406464, -0.035936325788497925, -0.018717113882303238, -0.02169659361243248, -0.030486764386296272, -0.02742786891758442, 0.0037292479537427425, -0.0035413161385804415, -0.01457586046308279, 0.005560115911066532, -0.001047868630848825, 0.009480967186391354, -0.04199053719639778, -0.006226710043847561, 0.03137827664613724, 0.05640313774347305, 0.0407772995531559, -0.053268205374479294, -0.024411644786596298, -0.025494957342743874, -0.0640103816986084, 0.03847578540444374, -0.005565058905631304, 0.041496776044368744, 0.040824200958013535, 0.02441229484975338, -0.018683861941099167, 0.04080402851104736, -0.009138878434896469, 0.0651814416050911, 0.027742447331547737, -0.026625093072652817, -0.05607570707798004, -0.03685334324836731, -0.0061898487620055676, -0.09822209179401398, -0.02494373545050621, 0.04207989573478699, 0.03147226944565773, -0.021034827455878258, 0.04161166027188301, -0.014235513284802437, -0.013462102971971035, 0.02541324496269226, -0.0667237937450409, 0.004923553206026554, 0.005042925011366606, -0.04313778132200241, 0.02193848229944706, 0.017296984791755676, -0.04052169993519783, 0.03898406773805618, -0.0440787672996521, 0.057801324874162674, -0.0037920859176665545, 0.012040671892464161, -0.0429435595870018, -0.0031609605066478252, 0.0018587162485346198, 0.02588925138115883, 0.05912299454212189, 0.06717447191476822, 0.012249219231307507, 0.0003775481600314379, 0.036877360194921494, -0.021600548177957535, -0.05156043544411659, 0.04407292976975441, 0.027481909841299057, -0.009843867272138596, -0.006927697919309139, -0.061547353863716125, -0.03262975439429283, 0.010430853813886642, 0.027874071151018143, -0.04570933058857918, 0.01363232359290123, -0.008137354627251625, 0.052256036549806595, 0.017750799655914307, -0.03662941977381706, 0.006304980721324682, -0.04831235855817795, -0.030187878757715225, 0.0006626282120123506, -0.017422612756490707, -0.043991800397634506, 0.00560229504480958, -0.01748935878276825, -0.028576910495758057, -0.040673188865184784, -0.03561701625585556, 0.07737274467945099, 0.01727410778403282, -0.010449384339153767, 0.006000308785587549, -0.012499957345426083, 0.03334467485547066, 0.048162393271923065, -0.005485453177243471, 0.03492620214819908, -0.018571102991700172, -0.04701681062579155, 0.03475344181060791, 0.01195988804101944, -0.0036534927785396576, -0.006401679012924433, 0.010671398602426052, -0.005624282639473677, 0.011622114107012749, 0.012660253793001175, -0.01833188720047474, 0.05343010276556015, -0.033862389624118805, -0.004056491423398256, 0.0574774332344532, 0.05594285577535629, 0.021218067035079002, -0.05353403463959694, -0.060418516397476196, 0.09102962911128998, 0.0036836578510701656, -0.004521098919212818, 0.0029018563218414783, -0.007165201939642429, -0.004059085622429848, 0.0004012559656985104, 0.06929906457662582, 0.019951369613409042, -0.05755674093961716, -0.015700455754995346, 0.017034245654940605, 0.02187558263540268, -0.008915532380342484, 0.04722161963582039, 0.003619668772444129, 0.09643255174160004, 0.014112682081758976, 0.03512865677475929, -0.041321124881505966, -0.01806725561618805, 0.00925983116030693, -0.014575374312698841, 0.0532182939350605, -0.006480318959802389, -0.019988995045423508, 0.007286377251148224, -0.0032449790742248297, -0.002866944530978799, -0.02966013178229332, 0.0008903773850761354, 0.06894906610250473, 0.00884197186678648, -0.016380038112401962, -0.06265826523303986, -0.05117374286055565, -0.004066271707415581, -0.015322762541472912, -0.004008803516626358, -0.0913049653172493, 0.04373291879892349, -0.08383876085281372, -0.003595351241528988, -0.07374577969312668, -0.01629175990819931, -0.03344448283314705, -0.0653698742389679, 0.10280230641365051, -0.02263152413070202, 0.03939193859696388, 0.006279534660279751, 0.0387723483145237, -0.00023823244555387646, 0.014122187159955502, 0.1250813901424408, -0.0073477174155414104, 0.027256397530436516, 0.0021048937924206257, 0.0051404815167188644, 0.018330367282032967, 0.06345327943563461, -0.019169963896274567, 0.01546528097242117, -0.026105370372533798, 0.02548777498304844, -0.011513091623783112, 0.036673128604888916, 0.06556446105241776, -0.07029128819704056, 0.04865504428744316, 0.031112415716052055, -0.018253685906529427, 0.040886908769607544, 0.01434135902673006, -0.018782297149300575, -0.0001833072310546413, 0.029130224138498306, 0.053946711122989655, 0.01853938400745392, -0.10007231682538986, 0.053568821400403976, 0.014278135262429714, -0.028147608041763306, -0.08408129215240479, -0.05360523983836174, -0.005418834276497364, 0.06588214635848999, 0.008416933007538319, -0.011782270856201649, 0.0704043060541153, 0.0002595069818198681, -0.010948135517537594, -0.013510129414498806, 0.017381399869918823, -0.0453655943274498, 0.0005663285264745355, 0.017671162262558937, 0.022278720512986183, -0.019563516601920128, 0.009654156863689423, -0.01604408770799637, 0.00011596433614613488, 0.03399710729718208, -0.0830455869436264, 0.012272560968995094, -0.018143564462661743, -0.06829298287630081, 0.07124961167573929, -0.028976475819945335, -0.025034965947270393, 0.008868696168065071, 0.00019510007405187935, 0.02088114432990551, 0.003971404395997524, 0.013174246996641159, 0.02405552938580513, 0.009478741325438023, 0.017658134922385216, 0.011165919713675976, 0.02442277781665325, -0.02935696952044964, 0.014933939091861248, -0.016036776825785637, 0.04598557949066162, -0.01127757877111435, -0.03831522539258003, -0.0388592928647995, -0.03259109705686569, -0.0020213716197758913, 0.016453882679343224, 0.025783099234104156, -0.012647990137338638, 0.02498549595475197, -0.010754147544503212, -0.008887720294296741, -0.041235849261283875, 0.04334065690636635, -0.002639303682371974, -0.002168518491089344, 0.011478793807327747, 0.024910639971494675, 0.0077688246965408325, 0.009871142916381359, -0.014582888223230839, 0.020122090354561806, -6.121974946424458e-33, -0.037987880408763885, 0.05300047993659973, 0.009576688520610332, 0.036494601517915726, 0.018159806728363037, -0.02452504076063633, 0.002361121354624629, -0.0020376150496304035, -0.08600287139415741, -0.027843423187732697, 0.0016087994445115328, 0.03281168267130852, 0.012625898234546185, 0.0029667869675904512, -0.027231918647885323, -0.005262352526187897, 0.06287334859371185, 0.004247913137078285, 0.0128138093277812, -0.02970070391893387, -0.048152856528759, 0.002562537556514144, 0.04787464812397957, 0.04752044752240181, 0.0036277021281421185, 0.0022863238118588924, -0.032527051866054535, 0.03497684746980667, -0.0022019273601472378, -0.03785264492034912, -0.030475331470370293, -0.06540613621473312, -0.021590353921055794, 0.028022749349474907, 0.05874190852046013, 0.07418381422758102, -0.04893462732434273, 0.02186458930373192, 0.005875742062926292, -8.480661199428141e-05, 0.04113146662712097, -0.08329946547746658, 0.011049918830394745, -0.04615939408540726, -0.023254157975316048, 0.005427508149296045, -0.012218168005347252, 0.018728790804743767, 0.04887232929468155, 0.04753506928682327, -0.039705660194158554, -0.011156830936670303, -0.030779490247368813, 0.04428713768720627, 0.003865028964355588, -0.04042800888419151, -0.00710775051265955, -0.10487665981054306, -0.04860549047589302, 0.00464653642848134, -0.01916639320552349, -0.014676564373075962, 0.004089814610779285, -0.0189045462757349, -0.037759531289339066, -0.02274726890027523, -0.03260302543640137, 0.03829706832766533, -0.01139778457581997, -0.016010133549571037, -0.0036699932534247637, -0.009842933155596256, -0.03592771291732788, -0.09253823012113571, -0.07103469967842102, 0.03607582300901413, -0.028084345161914825, 0.02550872415304184, 0.07286961376667023, 0.05168778821825981, -0.030199715867638588, 0.006776889320462942, -0.009937056340277195, 0.0392313078045845, 0.0010697601828724146, -0.03017624467611313, -0.02830515243113041, -0.021244337782263756, 0.010245557874441147, 0.009516480378806591, -0.018048755824565887, -0.040452249348163605, -0.013876808807253838, -0.007160306442528963, 0.001924161915667355, -0.05584491416811943, 0.054456278681755066, 0.004756295122206211, 0.020559018477797508, 0.006724831182509661, -0.09749478846788406, -0.01360689103603363, -0.0005935070803388953, 0.0751604363322258, 0.002560837659984827, 0.01596681773662567, -0.0165777076035738, 0.030925847589969635, -0.02081211842596531, 0.07761691510677338, 0.009151567704975605, -0.0183261726051569, 0.0022298817057162523, -0.009191631339490414, 0.0005303252837620676, -0.022651515901088715, 0.0037451765965670347, -0.04598669335246086, 0.0012830691412091255, 0.002206224948167801, -0.0026796278543770313, -0.0022491118870675564, 0.011021728627383709, -0.03537384048104286, -0.01816968247294426, 0.028656091541051865, -0.04557216167449951, -0.021206101402640343, 0.08035870641469955, -0.007663656957447529, 0.03789856284856796, -0.018777955323457718, 2.774474694433593e-07, -0.007131504360586405, 0.03190971165895462, 0.024563290178775787, 0.007355822715908289, -0.05586865916848183, -0.0899570882320404, -0.003778673941269517, -0.014004872180521488, -0.0003999644541181624, 0.03891189768910408, -0.009698214009404182, -0.002702771918848157, -0.007485940586775541, -0.025395212695002556, -0.006344404071569443, -0.12126273661851883, -0.0004954071482643485, -0.02661222219467163, -0.03335154056549072, -0.02434668317437172, -0.00927668809890747, 0.04278312623500824, 0.026234090328216553, 0.017929082736372948, 0.020617185160517693, -0.009354013949632645, -0.019860893487930298, -0.026173438876867294, -0.0025288972537964582, -0.013259978964924812, 0.06012158840894699, 0.02108183316886425, 0.029202105477452278, -0.003631322178989649, -0.03322412446141243, 0.016238195821642876, -0.0031210167799144983, 0.017542490735650063, -0.012841543182730675, 0.10467353463172913, 0.02985287271440029, -0.07440115511417389, 0.044873666018247604, 0.029226895421743393, 0.051177844405174255, 0.03451298549771309, 0.02809290587902069, 0.010583857074379921, -0.04269424080848694, -0.025876984000205994, 0.03153195232152939, 0.0553022101521492, 0.053085196763277054, -0.004139833152294159, 0.033309679478406906, 0.01630205474793911, -0.02403717115521431, -0.003148011863231659, 0.038692764937877655, 0.03943581506609917, 0.002867175033316016, -0.043393250554800034, 0.016801677644252777, -0.009388010948896408, 0.03491702303290367, -0.05299922451376915, -0.015618576668202877, 2.8105534986395774e-34, 0.008152540773153305, -0.03935610130429268, -0.029114948585629463, 0.028423050418496132, -0.0013113368768244982, -0.024546759203076363, 0.09027836471796036, 0.015554901212453842, 0.0014398284256458282, -0.04630491882562637, 0.025367463007569313], "72157987-ccc4-4b00-b6a9-4206c1635c62": [-0.0032068616710603237, -0.0697283074259758, 0.001697420491836965, 0.027376161888241768, 0.012769005261361599, 0.02977481484413147, -0.016881806775927544, 0.07196398079395294, 0.0201086588203907, 0.007398160640150309, -0.007030534092336893, 0.019069571048021317, 0.041680578142404556, 0.03311561420559883, -0.0031867942307144403, 0.05387745797634125, 0.001532815396785736, 0.002023249864578247, -0.06294608861207962, 0.002371320268139243, 0.035792648792266846, 0.019275447353720665, -0.060855645686388016, 0.021779334172606468, -0.00953634362667799, 0.020254556089639664, 0.013693963177502155, 0.019905824214220047, 0.07093415409326553, 0.006428708788007498, 0.02927568182349205, -0.011509070172905922, -0.022118164226412773, 0.013160108588635921, 2.1015187030570814e-06, 0.024660758674144745, -0.006997647695243359, -0.026524420827627182, -0.04208897054195404, 0.017366057261824608, 0.009412582963705063, 0.04122421145439148, -0.016957400366663933, 0.02079072780907154, -0.004551167134195566, -0.009418361820280552, 0.04860571771860123, -0.05117030441761017, 0.004216430243104696, 0.0008505439036525786, -0.020079469308257103, -0.010689621791243553, -0.029965316876769066, -0.014514404349029064, 0.0010104047833010554, -0.09478601068258286, 0.01482190191745758, 0.008421110920608044, 0.013923372142016888, -0.016763078048825264, 0.011030388996005058, 0.016862714663147926, -0.014464369043707848, -0.003268574597314, 0.07583105564117432, 0.02330576628446579, 0.029567966237664223, -0.04237016662955284, -0.011016574688255787, 0.010522757656872272, 0.09616697579622269, 0.013442921452224255, 0.008248679339885712, 0.036961402744054794, -0.016685185953974724, -0.011842883192002773, 0.05053838714957237, 0.03984292969107628, -0.0225625392049551, -0.006803784519433975, 0.01034634280949831, -0.008041497319936752, -0.028333382681012154, 0.02802894450724125, -0.0007952341111376882, -0.04371882230043411, 0.01225252728909254, 0.005173517391085625, 0.038077063858509064, 0.03597412630915642, 0.04566750302910805, 0.03564897179603577, -0.0041598789393901825, 0.029153596609830856, 0.018042096868157387, -0.005575872026383877, 0.021844685077667236, 0.03246089443564415, 0.0033104706089943647, 0.057397931814193726, 0.011810023337602615, -0.012555772438645363, -0.002039553364738822, 0.03408694267272949, 0.019443456083536148, 0.06027064844965935, -0.05839372053742409, 0.0337199866771698, -0.0194640401750803, 0.01784290373325348, 0.01988869532942772, -0.0063453358598053455, -0.0446632020175457, 0.028495972976088524, 0.0033803179394453764, -0.021245213225483894, -0.04881319776177406, 0.01939023844897747, 0.02139800414443016, 0.07926749438047409, 0.06042717769742012, -0.018679555505514145, -0.014290147460997105, 0.009157069027423859, -0.042842797935009, -0.0829247385263443, 0.05901157110929489, 0.005931587424129248, -0.00968731939792633, -0.058377042412757874, -0.014358735643327236, 0.004607809241861105, -0.0028876562137156725, 0.01419232040643692, -0.02406444028019905, -0.016932476311922073, 0.0401272214949131, -0.0036304115783423185, 0.06261984258890152, 0.018734153360128403, 0.03265491873025894, 0.016108546406030655, 0.05406160652637482, 0.039971429854631424, -0.02640000730752945, 0.0202805008739233, -0.0006703550461679697, 0.01654454693198204, 0.06022363901138306, 0.036450762301683426, -0.028284085914492607, -0.035906244069337845, -0.06559233367443085, -0.008176266215741634, -0.06155333295464516, 0.030065016821026802, 0.023798760026693344, -0.044001299887895584, 0.023075919598340988, 0.039065275341272354, -0.021203091368079185, 0.02987431362271309, 0.05730408802628517, 0.0221145860850811, 0.0037451719399541616, -0.04233443737030029, -0.005327398423105478, -0.0005152165540494025, 0.016857942566275597, -0.006828036159276962, -0.017453104257583618, -0.0010563035029917955, -0.05629312992095947, 0.06442104279994965, -0.07753674685955048, -0.036875203251838684, 0.05647553876042366, -0.029199250042438507, -0.019096756353974342, -0.041243571788072586, 0.005482989829033613, -0.08586691319942474, -0.007651786785572767, 0.03159540519118309, -0.022387128323316574, 0.007112268358469009, 0.014055372215807438, 0.01360959280282259, -0.03937213122844696, -0.006629582494497299, -0.010985666885972023, -0.0018591670086607337, -0.04411002993583679, -0.029304243624210358, 0.04345077648758888, -0.01867811568081379, -0.04578292742371559, -0.09972814470529556, 0.010325692594051361, -0.01614973694086075, -0.03130579739809036, -0.08987543731927872, -0.014238091185688972, 0.04752138629555702, 0.014038478024303913, -0.04536331817507744, 0.03312229365110397, 0.0019979013595730066, -0.06130083277821541, 0.07389425486326218, 0.04204653203487396, -0.020252292975783348, 0.01300196535885334, -0.022170767188072205, -0.04165460169315338, 0.013513769954442978, -0.04480087757110596, 0.04144498333334923, -0.0019497369648888707, -0.028057744726538658, -0.02479330077767372, -0.0388052836060524, -0.004262886010110378, 0.030807392671704292, 0.013008029200136662, -0.02589278668165207, -0.013512223027646542, 0.003187027061358094, 0.022426703944802284, 0.011113233864307404, -0.02637251652777195, 0.01960103213787079, 0.030627600848674774, 0.026893503963947296, 0.054466988891363144, -0.013155155815184116, -0.016902949661016464, -0.01650804653763771, -0.007133068051189184, -0.004594032187014818, -0.003524661995470524, 0.03212762251496315, 0.010603644885122776, 0.024573497474193573, 0.0215340293943882, -0.005653014872223139, 0.028689438477158546, -0.028382644057273865, -0.0028996416367590427, 0.03396736830472946, 0.017350032925605774, -0.011059780605137348, -0.025444282218813896, 0.044218722730875015, 0.022386513650417328, -0.0010731868678703904, -0.13575001060962677, -0.02223881334066391, -0.01838289014995098, -0.019620750099420547, -0.01826016791164875, -0.0012072038371115923, -0.0026650503277778625, 0.003272992791607976, -0.008279861882328987, 0.003437758656218648, 0.02872118167579174, -0.008683878928422928, -0.00767235504463315, 0.03475041687488556, 0.012719601392745972, 0.010452309623360634, -0.043696269392967224, -0.00593605637550354, -0.01183369755744934, -0.012859176844358444, -0.014405318535864353, 0.03332111984491348, -0.06033816933631897, 0.009469791315495968, -0.04626254737377167, 0.008652493357658386, 0.0025940064806491137, -0.006629894021898508, 0.022036302834749222, 0.0017710506217554212, 0.03646949306130409, -0.053355082869529724, -0.06468837708234787, 0.012841971591114998, 0.04387333244085312, -0.024713624268770218, -0.02957049384713173, -0.04781440645456314, -0.005384757183492184, 0.005914792418479919, -0.015645697712898254, 0.026797059923410416, -0.03894855082035065, 0.010535821318626404, -0.0016687302850186825, 0.016871338710188866, -0.05314245820045471, -0.015742557123303413, 0.02533935010433197, 0.012590373866260052, 0.04495561495423317, 0.011914599686861038, -0.01748918555676937, -0.016943946480751038, -0.07856253534555435, 0.05428764224052429, -0.008357251062989235, 0.027345718815922737, 0.055631719529628754, 0.019564291462302208, -0.013077187351882458, 0.01651052013039589, -0.01251855306327343, 0.06831684708595276, 0.02466055005788803, -0.038229800760746, -0.03143446147441864, -0.04190575331449509, -0.02207612618803978, -0.09095966815948486, 0.008087863214313984, 0.0010431904811412096, 0.05381098389625549, -0.03596189618110657, 0.025377484038472176, 0.003737208666279912, -0.014219798147678375, 0.014722218737006187, -0.04847022891044617, 0.013034350238740444, -0.0020972066558897495, -0.08862846344709396, 0.016630815342068672, 0.012061837129294872, -0.05798419564962387, 0.02669094316661358, -0.038366179913282394, 0.043564021587371826, 0.037084806710481644, 0.018857046961784363, -0.06655525416135788, 0.029298201203346252, -0.014786834828555584, -0.0027158167213201523, 0.08920806646347046, 0.06331020593643188, 0.025752831250429153, -0.0001357781293336302, 0.020652171224355698, -0.027614815160632133, -0.05374767631292343, 0.02967345342040062, 0.00576865253970027, -0.02707887813448906, 0.00043297262163832784, -0.020212797448039055, -0.0016835937276482582, 0.024265043437480927, 0.01606583781540394, -0.02677931636571884, 0.04341421276330948, -0.0001231310743605718, 0.07291775941848755, 0.03376094624400139, -0.0035796454176306725, -0.014894513413310051, -0.04512200132012367, -0.019039105623960495, -0.005565629340708256, -0.035080939531326294, -0.048046357929706573, 0.017442377284169197, -0.014609570614993572, 0.01112284418195486, -0.05480976402759552, -0.05549223721027374, 0.07926276326179504, 0.0026143579743802547, -0.009082605130970478, 0.009134519845247269, 0.025563474744558334, 0.029347054660320282, 0.028193559497594833, 0.014436417259275913, 0.03505253419280052, -0.07664639502763748, -0.0724252313375473, 0.03004310466349125, 0.044949453324079514, 0.0002589124196674675, -0.046005699783563614, 0.012186202220618725, 0.04613618552684784, 0.00626182509586215, 0.00293232430703938, -0.032272811979055405, 0.011998845264315605, -0.0023188497871160507, -0.015372378751635551, 0.07198400795459747, 0.08060819655656815, -0.015243451111018658, -0.05744008719921112, -0.03536679968237877, 0.08077055960893631, -0.04509930685162544, -0.0412154458463192, 0.011413672007620335, 0.02183043397963047, 0.008544716984033585, -0.019880440086126328, 0.03211984783411026, 0.003954833839088678, -0.08912601321935654, -0.013050112873315811, 0.02158980257809162, 0.052574414759874344, -0.02908306010067463, 0.048833057284355164, 0.006635419558733702, 0.05175599455833435, 0.013457364402711391, 0.03169088438153267, -0.05214931070804596, 0.0005704801878891885, -0.012998081743717194, 0.06162389740347862, 0.030374426394701004, -0.009959097020328045, 0.0037000770680606365, 0.012424789369106293, 0.003565772669389844, 0.004780409391969442, -0.033427465707063675, -0.013678115792572498, 0.060927387326955795, -0.0016547319246456027, -0.014731928706169128, -0.049077991396188736, -0.01676606945693493, -0.011907638981938362, -0.013926979154348373, 0.046609677374362946, -0.0726298913359642, 0.06723012030124664, -0.05348809063434601, -0.02855084277689457, -0.07696586847305298, -0.011553077958524227, -0.02112017571926117, -0.07716552913188934, 0.10575609654188156, -0.01795102097094059, 0.04343956336379051, 0.022466331720352173, 0.03353900462388992, 0.03037586435675621, 0.0024811439216136932, 0.08790078014135361, -0.030572250485420227, -0.016881786286830902, -0.014467361383140087, -0.00018811252084560692, -0.014468049630522728, 0.06848986446857452, -0.04351954534649849, 0.00024014321388676763, -0.01903025433421135, 0.03908393904566765, 0.013616948388516903, 0.0127897122874856, 0.0857662633061409, -0.07354263961315155, 0.0419292226433754, 0.02534300647675991, -0.006409970112144947, 0.043948616832494736, 0.017050718888640404, -0.026637090370059013, -0.019748996943235397, 0.0171901173889637, 0.031839728355407715, -0.0022532171569764614, -0.08558901399374008, 0.04500940814614296, -0.04824618622660637, -0.03135810047388077, -0.11002741008996964, -0.05809934809803963, -0.006318697705864906, 0.04209834337234497, 0.04313630983233452, -0.002967411419376731, 0.06612972170114517, -0.00273000355809927, -0.0070226299576461315, 0.03317267447710037, 0.007938667200505733, -0.041500452905893326, -0.0006210326682776213, -0.012315613217651844, 0.034726113080978394, -0.02377939596772194, 0.014904970303177834, -0.004901117645204067, 0.022187553346157074, 0.03317541256546974, -0.06039072945713997, 0.05425259470939636, -0.0271078422665596, -0.0432717464864254, 0.07362858951091766, -0.037234023213386536, -0.027340447530150414, 0.03830299526453018, 0.004857250023633242, 0.04225831478834152, -0.01924608089029789, 0.031327024102211, 0.037822917103767395, 0.00240152794867754, -0.01693824678659439, -0.007826903834939003, 0.033724937587976456, 0.007997040636837482, -0.01257632952183485, -0.024329831823706627, 0.017740780487656593, -0.0024336478672921658, -0.06242603063583374, -0.026358038187026978, -0.04476581886410713, -0.018891656771302223, 0.012359082698822021, -0.0004069528658874333, -0.03832539916038513, 0.0021613098215311766, -0.024692140519618988, -0.005231689661741257, -0.014933076687157154, 0.030119145289063454, 0.029451986774802208, 0.006751772947609425, -0.01555713266134262, 0.007341905031353235, 0.01940961182117462, -0.00253177247941494, -0.02499370276927948, 0.04330873861908913, -5.7281406252028205e-33, -0.026085661724209785, 0.0378379188477993, 0.01716424897313118, 0.023418759927153587, 0.0006759878015145659, 0.03959877789020538, -0.012620086781680584, -0.02461932972073555, -0.030502447858452797, -0.04349697381258011, -0.007631358224898577, 0.038017451763153076, 0.018058044835925102, 0.025019068270921707, -0.035652946680784225, -0.007041839882731438, 0.05958007276058197, 0.01889641210436821, 0.0015106973005458713, 0.0031123205553740263, -0.049753427505493164, -0.012748888693749905, 0.045832134783267975, 0.0021447844337671995, 0.03662842512130737, 0.01820114254951477, -0.018393462523818016, 0.0125559838488698, 0.0019930475391447544, -0.003875158727169037, -0.006142208352684975, -0.021561387926340103, -0.036578573286533356, 0.022478308528661728, 0.049380071461200714, 0.06753496825695038, -0.05390440300107002, 0.025111254304647446, -0.007282514125108719, -0.028358219191432, -0.005393460858613253, -0.08325782418251038, 0.02887161448597908, -0.044479042291641235, -0.04434387385845184, 0.015829233452677727, 0.009036391042172909, 0.013441970571875572, 0.028989603742957115, -0.018084023147821426, -0.050934311002492905, 0.014105779118835926, -0.04215860366821289, 0.04743387922644615, 0.005325316917151213, -0.060955144464969635, 0.010623941197991371, -0.05251573771238327, -0.0550817996263504, 0.0018765591084957123, -0.06637188792228699, -0.0003554321301635355, 0.004055648576468229, -0.009359991177916527, -0.007769872900098562, -0.06519258767366409, -0.007165710907429457, 0.06255672127008438, -0.022955389693379402, -0.03278231993317604, -0.012542287819087505, -0.016013942658901215, -0.03489292785525322, -0.04719805344939232, -0.020021585747599602, 0.013923539780080318, -0.05986449867486954, 0.053479235619306564, 0.058715540915727615, 0.10346046090126038, 0.0010136085329577327, 0.016868753358721733, -0.02453896403312683, 0.02826039493083954, -0.02167307212948799, -0.027115778997540474, -0.038037318736314774, -0.005736378487199545, 0.031994082033634186, 0.01580021157860756, 0.019115272909402847, -0.04204307496547699, -0.04542817547917366, -0.030125927180051804, 0.08404628932476044, -0.06984654068946838, 0.036832910031080246, 0.008597726002335548, 0.004510959144681692, -0.0036538538988679647, -0.06665980070829391, -0.006363696418702602, 0.028559645637869835, 0.05695922672748566, 0.017049601301550865, 0.011975282803177834, -0.026992985978722572, -0.0025623193942010403, -0.047500502318143845, 0.0914878398180008, 0.0010695846285670996, -0.014445413835346699, -0.014428247697651386, 0.031511612236499786, 0.011630470864474773, -0.02303369715809822, -0.010150531306862831, -0.11014033854007721, -0.0025566755793988705, -0.0015389476902782917, -0.03546760603785515, -0.029694654047489166, -0.032954394817352295, -0.0419684536755085, -0.03764202445745468, 0.04543966427445412, -0.024796316400170326, 0.017289208248257637, 0.08742831647396088, 0.02593069337308407, 0.04545889049768448, -0.026372049003839493, 2.6951047971124353e-07, -0.007413013372570276, 0.04531028866767883, 0.005525429267436266, -0.03368236869573593, -0.064571812748909, -0.08738367259502411, -0.001439603278413415, -0.037463366985321045, -0.015905465930700302, 0.026099424809217453, -0.010236631147563457, -0.03463996574282646, 0.003938498441129923, -0.0617498941719532, 0.012489362619817257, -0.12369774281978607, -0.008736933581531048, 0.011585008352994919, 0.0030189414974302053, -0.01158643513917923, -0.01231174822896719, 0.03370394557714462, 0.038506053388118744, -0.009362476877868176, -0.011004070751369, 0.028473859652876854, -0.03574761375784874, -0.030337892472743988, -0.007719170302152634, -0.015088462270796299, 0.03571226820349693, 0.02464374341070652, 0.02066476084291935, 0.016911182552576065, -0.023292027413845062, 0.005781602114439011, 0.0007135201012715697, 0.045147854834795, -0.035241611301898956, 0.09204492717981339, 0.009508800692856312, -0.051601964980363846, 0.054840557277202606, 0.01379042025655508, 0.01539687905460596, 0.045452333986759186, 0.008433124050498009, 0.001052516046911478, 0.01768934167921543, -0.054487522691488266, 0.03352660685777664, 0.0669151172041893, 0.04268799349665642, -0.017135320231318474, 0.01025390811264515, -0.039282117038965225, -0.04026871919631958, -0.022598620504140854, 0.03971656411886215, 0.010281778872013092, 0.007797241676598787, -0.05250044912099838, 0.02992752566933632, 0.010003108531236649, 0.00641671335324645, -0.05695560947060585, -0.0010243983706459403, 2.8926473149538693e-34, 0.0116410031914711, -0.05954841896891594, -0.052959125488996506, 0.014895384199917316, 0.020390450954437256, -0.023795412853360176, 0.05549060180783272, 0.026973804458975792, -0.019066330045461655, -0.03925597667694092, 0.027574235573410988], "d0309d4e-01b1-4bc1-94c9-af1c07a0a294": [0.011845347471535206, 0.010673493146896362, -0.034012194722890854, -0.015875019133090973, 0.009219005703926086, 0.06352623552083969, 0.05471032112836838, 0.025474252179265022, 0.05622933804988861, -0.011584259569644928, -0.008719394914805889, 0.03444137051701546, 0.028112344443798065, 0.07450180500745773, -0.03328310698270798, 0.04243128374218941, 0.07202921062707901, -0.003849760862067342, 0.0021051359362900257, 0.005141954403370619, -0.0050256503745913506, 0.0243106409907341, -0.036812808364629745, 0.014915810897946358, 0.08909779787063599, -0.05422072112560272, 0.023240556940436363, 0.028576264157891273, 0.027981288731098175, -0.028846703469753265, 0.05856211483478546, 0.027603840455412865, -0.00015286220877896994, 0.02222316898405552, 2.81304050986364e-06, -0.0037221163511276245, -0.04775838926434517, 0.02931249886751175, -0.04857110232114792, 0.0042508430778980255, 0.05082043260335922, 0.04415133222937584, -0.0418420284986496, 0.01721157506108284, 0.01628410443663597, 0.03886808827519417, 0.014520598575472832, 0.005947316996753216, -0.0706472247838974, -0.010717542842030525, 0.022639907896518707, -0.0021304285619407892, -0.03278680145740509, -0.005094930995255709, 0.04578432813286781, 0.019421426579356194, -0.06146441772580147, 0.08174895495176315, 0.028487553820014, 0.07454808056354523, -0.007359449751675129, 0.029681041836738586, -0.038054678589105606, -0.002807022538036108, 0.14406898617744446, 0.06678815186023712, 0.024126609787344933, -0.10853388905525208, 0.016391772776842117, -0.009440760128200054, 0.08493951708078384, -0.03191794082522392, 0.0385865792632103, 0.05681798979640007, -0.06373517215251923, 0.018508126959204674, 0.016201818361878395, -0.0016118077328428626, 0.004175457172095776, 0.0011479667155072093, 0.03504118695855141, -0.04515530914068222, -0.027796894311904907, -0.012462208047509193, 0.03432602807879448, 0.004275507293641567, -0.015660623088479042, -0.025348134338855743, 0.07176186144351959, -0.00871228240430355, 0.04849441722035408, -0.005955022759735584, -0.032193105667829514, -0.013962998986244202, -0.008834399282932281, -0.02717706188559532, 0.036636341363191605, -0.012726406566798687, 0.05283069983124733, 0.029630275443196297, -0.03746883571147919, 0.021852953359484673, 0.026957159861922264, 0.009722837246954441, -0.010088509880006313, 0.0071088229306042194, -0.00010834493878064677, 0.005198492202907801, -0.031886231154203415, 0.10156390815973282, -0.001214158721268177, 0.011162815615534782, -0.005959710106253624, 0.009456925094127655, -0.044567935168743134, -0.054943546652793884, 0.002928698668256402, 0.014913083985447884, 0.030814925208687782, 0.06708810478448868, -0.005242627579718828, 0.030853964388370514, -0.05048315227031708, 0.049559418112039566, -0.027895934879779816, -0.07515845447778702, 0.009748442098498344, -0.022674884647130966, -0.022677134722471237, 0.037191107869148254, -0.016428105533123016, -0.0282722320407629, 0.009664846584200859, 0.029700113460421562, 0.003306213766336441, 0.0061623030342161655, -0.003288835985586047, -0.03043173812329769, 0.0015918959397822618, -0.02979138121008873, 0.03289129585027695, -0.007260095793753862, 0.004024384543299675, -0.015545723959803581, 0.02217823639512062, 0.008089674636721611, 0.018964877352118492, 0.0479440875351429, 0.01608618162572384, 0.016004841774702072, -0.021470356732606888, 0.024134943261742592, -0.005297697149217129, 0.0005214582197368145, 0.03658292070031166, 0.0332551933825016, 0.0006581458146683872, 0.0011428119614720345, -0.02058119885623455, -0.009875159710645676, 0.017437851056456566, -0.00022672719205729663, -0.007387557998299599, 0.0024282000958919525, -0.03446778282523155, -0.02116646245121956, 0.09610480070114136, 0.007298881188035011, -0.009478127583861351, -0.02356632426381111, -0.03928989917039871, 0.01259299274533987, -0.01310159731656313, 0.053238824009895325, -0.025903716683387756, 0.04959769546985626, 0.0505133718252182, 0.044009510427713394, -0.05323772877454758, 0.03088533692061901, -0.008260233327746391, -0.0825636237859726, -0.0160085316747427, 0.04023442044854164, -0.08701123297214508, 0.01615615002810955, -0.05842120945453644, 0.008710627444088459, 0.011987314559519291, -0.0019505952950567007, -0.03078131191432476, 0.0065599046647548676, 0.03896951675415039, -0.006387727335095406, 0.03480638936161995, -0.01708385907113552, -0.05346006527543068, -0.09398733079433441, 0.019344719126820564, -0.008192282170057297, -0.035008832812309265, -0.030995523557066917, 0.062418896704912186, 0.06624820083379745, 0.06367675215005875, -0.05438172072172165, -0.01999748684465885, -0.040804672986269, 0.005438360385596752, 0.029495002701878548, 0.0839674323797226, 0.0006687853601761162, 0.0015720789087936282, 0.00339883822016418, -0.059910934418439865, -0.004027695395052433, -0.027941226959228516, 0.006115356460213661, 0.017305124551057816, 0.0223422572016716, -0.024320518597960472, -0.018835684284567833, -0.06612033396959305, 0.02624175325036049, -0.027916720137000084, -0.018442172557115555, -0.025040455162525177, 0.023237435147166252, 0.016680676490068436, 0.016446536406874657, -0.027503814548254013, 0.00074523885268718, 0.03440967574715614, 0.02297111041843891, -0.023252002894878387, -0.04506223276257515, -0.001253035617992282, -0.017012007534503937, -0.023441802710294724, -0.10688620805740356, -0.004927780944854021, 0.0940791517496109, 0.02722126804292202, 0.041882842779159546, 0.004607071168720722, 0.020235339179635048, 0.029805535450577736, 0.06039108335971832, -0.007287714164704084, -0.004770650994032621, 0.011917664669454098, -0.01777256838977337, 0.03955937549471855, 0.03211444243788719, -0.0007474425947293639, 0.037009745836257935, -0.12214464694261551, -0.00596613809466362, -0.026934264227747917, 0.0020694402046501637, -0.02784968912601471, -0.014944421127438545, -0.027441611513495445, 0.033418819308280945, 0.011492598801851273, -0.035774845629930496, 0.010080451145768166, -0.04359515383839607, -0.006302953697741032, -0.00682844826951623, 0.023031020537018776, 0.0022474282886832952, -0.011726472526788712, -0.002512155333533883, 0.03189031779766083, 0.03010038658976555, -0.022403830662369728, 0.00048730106209404767, -0.04731311649084091, -0.014321472495794296, -0.026529356837272644, -0.024423077702522278, -0.046141188591718674, -0.01387752778828144, -0.030272286385297775, 0.00023220921866595745, 0.056529901921749115, -0.05750862509012222, -0.04073524475097656, 0.06342858821153641, 0.031765762716531754, 0.005497139412909746, -0.010978752747178078, -0.03390903025865555, -0.004917064681649208, 0.03496219962835312, -0.00685903150588274, 0.00475735031068325, -0.025033120065927505, 0.07695150375366211, -0.004680180922150612, 0.005698916502296925, -0.008379976265132427, 0.015325836837291718, -0.0028768808115273714, 0.03889346122741699, 0.015753481537103653, -0.04270392283797264, -0.010617775842547417, -0.06845294684171677, -0.0013107485137879848, 0.03223736584186554, 0.019456420093774796, -0.053496237844228745, -0.000282333348877728, -0.026450542733073235, -0.02320084348320961, -0.05623900145292282, 0.008347139693796635, 0.03485909849405289, -0.015949955210089684, 0.001975623657926917, -0.027032926678657532, -0.015222310088574886, -0.03668076917529106, -0.11837106198072433, -0.022037319839000702, -0.017594803124666214, 0.014429940842092037, -0.030369054526090622, 0.02493412047624588, 0.06503019481897354, -0.0015848930925130844, 0.011394357308745384, -0.009016157127916813, -0.008176160976290703, -0.03518756106495857, 0.01148212794214487, 0.02868865430355072, -0.014577822759747505, -0.03311532735824585, 0.0625043734908104, -0.04361571744084358, -0.03709179535508156, 0.02587016113102436, -0.05597173050045967, -0.0019335460383445024, 0.006314460188150406, -0.05809587240219116, 0.005941689480096102, 0.07717366516590118, 0.03400187939405441, 0.054593250155448914, -0.028718918561935425, 0.022222299128770828, -0.06948108971118927, 0.0032704633194953203, -0.01890934258699417, 0.03629615530371666, -0.0696532353758812, 0.027232736349105835, -0.008691192604601383, 0.02429923787713051, -0.01383212674409151, -0.004235125612467527, -0.05393371358513832, 0.048468831926584244, -0.018951475620269775, 0.039200309664011, 0.006357969716191292, -0.03454156219959259, 0.021570753306150436, -0.004743597935885191, 0.04345153644680977, 0.02196829952299595, -0.06782885640859604, -0.0024700495414435863, -0.0021181649062782526, 0.04487062245607376, 0.012885739095509052, -0.013408632017672062, -0.04198356717824936, 0.06384948641061783, 0.00341013609431684, 0.034859396517276764, -0.04117566719651222, -0.006483476608991623, 0.01911458745598793, 0.09168616682291031, 0.006376752629876137, -0.0058920057490468025, -0.14876240491867065, -0.046734798699617386, 0.0063085174188017845, -0.049281150102615356, 0.004919169936329126, -0.025143643841147423, -0.011844403110444546, -0.030919646844267845, 0.020424658432602882, -0.009835091419517994, -0.06380193680524826, 0.019261518493294716, 0.03020595945417881, 0.005829962901771069, 0.06436846405267715, 0.04873828962445259, 0.008494854904711246, -0.0260574109852314, 0.039570942521095276, 0.06600205600261688, -0.03213183954358101, 0.008977572433650494, -0.020365649834275246, 0.052544109523296356, -0.05149895325303078, -0.003780052065849304, 0.0123088164255023, -0.026632457971572876, -0.05878112092614174, -0.0031553253065794706, 0.030055303126573563, -0.016393203288316727, -0.009072707034647465, 0.0008921137196011841, -0.04768466576933861, 0.042688485234975815, 0.0006930431118234992, 0.040435027331113815, -0.03440675511956215, 0.053849317133426666, 0.05294252932071686, -0.01610443741083145, 0.02598986215889454, 0.05713023617863655, -0.007977561093866825, -0.005075409542769194, -0.030771231278777122, -0.041741836816072464, -0.0066635580733418465, 0.00010432040289742872, 0.012993264012038708, 0.0009254190372303128, -0.01993180625140667, -0.0009752270998433232, 0.06278950721025467, 0.02929690293967724, -0.030610712245106697, -0.0007707388140261173, -0.08023673295974731, 0.016316285356879234, -0.01834634505212307, -0.05762983858585358, -0.061224568635225296, -0.00915877241641283, -0.027167202904820442, -0.08079881966114044, 0.05407847464084625, 0.022626256570219994, 0.002960140584036708, 0.01570303551852703, 0.04697667807340622, -0.0035926448181271553, -0.02056092396378517, 0.047755226492881775, 0.027637861669063568, -0.007033875677734613, -0.048069171607494354, 0.03590749204158783, -0.04251055419445038, 0.010696803219616413, -0.02573617547750473, -0.060345035046339035, -0.015834350138902664, 6.478488649008796e-05, -0.0505681075155735, -0.023906519636511803, 0.051507383584976196, 0.012354105710983276, -0.003962094895541668, 0.021270165219902992, -0.0015610784757882357, 0.03489784896373749, 0.02887168526649475, -0.023737328127026558, 0.04435325041413307, 0.012495660223066807, 0.012538919225335121, 0.006389705929905176, -0.03103610686957836, 0.03319285064935684, -0.027955731377005577, -0.022988339886069298, 0.013366817496716976, -0.0073737394995987415, 0.05051671341061592, -0.028601959347724915, 0.06075083836913109, 0.022272853180766106, 0.028424208983778954, 0.03412748500704765, -0.017125938087701797, -0.03748869523406029, 0.04511016234755516, -0.04299023374915123, -0.016607780009508133, -0.017610156908631325, 0.029125329107046127, -0.004744214471429586, -0.0017844984540715814, -0.02546149492263794, 0.02320321649312973, -0.0497438870370388, -0.07990802079439163, 0.049557339400053024, 0.039643194526433945, -0.06117726489901543, 0.031470224261283875, 0.049494072794914246, -0.0051416815258562565, 0.02713719569146633, -0.023678060621023178, 0.027017101645469666, -0.00013411299732979387, -0.0033723830711096525, 0.03470892831683159, 0.0189425740391016, 0.01669161021709442, -0.020291920751333237, 0.05104881897568703, -0.018443118780851364, -0.0378272570669651, 0.019830983132123947, -0.048500776290893555, -0.03542407974600792, -0.006953541189432144, 0.014190883375704288, -0.007142969872802496, -0.019621076062321663, -0.003075414802879095, -0.011834830045700073, -0.034939758479595184, -0.0024861681740731, 0.023606203496456146, 0.03606369346380234, -0.03830808401107788, 0.06533312052488327, 0.01998494751751423, -0.01891283132135868, -0.06496277451515198, 0.021410956978797913, -0.02034076862037182, -0.06611499190330505, 0.03279803693294525, 0.029791630804538727, -7.007014561392143e-33, 0.002918277168646455, -0.007038227282464504, 0.004829591605812311, 0.05525679886341095, -0.003630660241469741, -0.05147852003574371, -0.04354940354824066, -0.002284687478095293, -0.04486126825213432, -0.04652651771903038, -0.011016450822353363, 0.008729655295610428, 0.02344195730984211, -0.03566909581422806, 0.0016273981891572475, -0.025988619774580002, 0.025145161896944046, 0.02000015787780285, -0.01524094957858324, -0.004295854829251766, -0.08229052275419235, -0.01751408353447914, -0.028225339949131012, -0.004225186072289944, -0.0161899421364069, -0.05218233913183212, 0.019211994484066963, -0.036558110266923904, 0.0067485906183719635, 0.03253377601504326, -0.04493984952569008, -0.025424309074878693, -0.01786627061665058, -0.016915854066610336, 0.027839630842208862, 0.047530397772789, -0.06902595609426498, 0.021803386509418488, -0.008326820097863674, 0.00641681207343936, 0.02165273204445839, -0.03606277331709862, 0.02075929008424282, -0.0033088887576013803, -0.002874985570088029, 0.019076956436038017, 0.048548731952905655, 0.012523924931883812, 0.006588011514395475, -0.02325167879462242, -0.1351587474346161, -0.00929650291800499, -0.031013930216431618, 0.07735394686460495, 0.008600854314863682, 0.012492751702666283, 0.03484094887971878, -0.038284771144390106, 0.03030458092689514, -0.022631414234638214, -0.031622882932424545, -0.0025720500852912664, 0.04779769480228424, -0.00010670584015315399, -0.04091797024011612, -0.020011533051729202, -0.016092291101813316, 0.09178883582353592, 0.03278672322630882, -0.01963265985250473, 0.04246444255113602, -0.030443178489804268, -0.026674404740333557, -0.009443212300539017, -0.00854326318949461, -0.029746180400252342, -0.06832446157932281, 0.03553495928645134, 0.03617974370718002, 0.030097229406237602, 0.011525539681315422, 0.007655560504645109, -0.03367900848388672, -0.002123636892065406, -0.0013433170970529318, 0.0005197180435061455, -0.03149663284420967, -0.005002362187951803, 0.016323115676641464, 0.035903703421354294, -0.02414107508957386, -0.05255206301808357, -0.056407518684864044, -0.0067980424501001835, 0.03423658758401871, 0.01363640557974577, 0.04747055843472481, -0.00826932955533266, -0.014146031811833382, -0.03534829616546631, -0.07041992992162704, -0.00859238300472498, 0.011002783663570881, 0.03846920281648636, 0.03062182292342186, -0.04343916103243828, -0.025008145719766617, -0.008479403331875801, -0.05692262947559357, 0.031524114310741425, -0.008940795436501503, -0.036275800317525864, 0.027462204918265343, -0.01820340007543564, 0.0038386753294616938, -0.0467805489897728, 0.016331158578395844, -0.017806023359298706, -0.03374828025698662, 0.01573537103831768, -0.01884286478161812, 0.015804613009095192, -0.014405974186956882, -0.028613589704036713, -0.01638675108551979, 0.008687498047947884, 0.00775874825194478, 0.0368855856359005, 0.07186948508024216, -0.03342600539326668, -0.004467696882784367, -0.018597085028886795, 3.4937991699734994e-07, -0.00991897378116846, 0.07608717679977417, 0.01647447608411312, -0.01262664794921875, -0.008533325977623463, -0.0050672790966928005, 0.017797311767935753, 0.03791863098740578, 0.015892688184976578, 0.004490592051297426, 0.010264781303703785, 0.010477658361196518, -0.00992986187338829, -1.6573452739976346e-05, 0.0009698417852632701, -0.13717901706695557, 0.03536798804998398, -0.012804379686713219, -0.028577249497175217, 0.00890485942363739, 0.0513479970395565, 0.012611408717930317, 0.03101893700659275, -0.0013358042342588305, -0.027576012536883354, 0.00802959781140089, -0.01952250860631466, -0.036231569945812225, 0.03352024778723717, -0.004459983669221401, -0.009121587499976158, 0.08064860105514526, -0.021512728184461594, -0.026036174967885017, 0.017597010359168053, -0.05542977526783943, -0.030387328937649727, 0.020878082141280174, 0.05216101557016373, 0.04736665263772011, 0.028599873185157776, -0.008901117369532585, -0.010781040415167809, -0.028610948473215103, 0.051242198795080185, 0.0106580201536417, 0.036194443702697754, 0.0407656729221344, -0.07318421453237534, -0.017133748158812523, -0.007493613753467798, 0.026589898392558098, 0.013035908341407776, 0.004031030461192131, 0.01521714124828577, -0.050488319247961044, -0.022035522386431694, -0.03536713868379593, 0.02943180873990059, 0.05371277406811714, -0.006419095676392317, -0.04380268603563309, 0.02742316573858261, 0.044721391052007675, 0.025142310187220573, -0.051160234957933426, -0.01968061923980713, 4.250222067298683e-34, 0.01129444595426321, -0.03926552087068558, 0.011898445896804333, -0.03262089565396309, 0.0033883966971188784, -0.028348619118332863, -0.003459291299805045, -0.03681914135813713, -0.016213225200772285, -0.035791896283626556, -0.036264512687921524], "05a15588-4b09-40af-8e2e-e3cfc444a25d": [-0.0144731430336833, -0.01744176261126995, 0.0163439754396677, 0.017199020832777023, -0.005107150878757238, 0.044783204793930054, -0.003983274567872286, 0.002160283736884594, 0.056117888540029526, 0.022364916279911995, -0.017503920942544937, 0.07317306846380234, 0.026928400620818138, 0.02115548588335514, -0.044513288885354996, 0.09810029715299606, 0.008399955928325653, -0.012122370302677155, -0.023838428780436516, -0.007194294594228268, 0.06730365753173828, 0.050601065158843994, -0.05638036131858826, -0.017832808196544647, 0.0026887264102697372, 0.0005386447301134467, 0.035836249589920044, -0.018625391647219658, 0.05378570035099983, 0.022165372967720032, 0.06007394567131996, 0.001576664624735713, -0.014114788733422756, 0.028577756136655807, 2.2508543224830646e-06, 0.004728896543383598, -0.020558655261993408, 0.04834930598735809, -0.03346928954124451, 0.028451070189476013, 0.01763787493109703, 0.06278525292873383, -0.0138864666223526, 0.005791985895484686, 0.012459095567464828, 0.08659335225820541, 0.045620907098054886, -0.029018064960837364, -0.010673644952476025, -0.01309098582714796, -0.03094593621790409, -0.00997116044163704, -0.014130930416285992, -0.008456115610897541, -0.01750585064291954, -0.03718828409910202, -0.022545725107192993, 0.028187381103634834, -0.03662474453449249, 0.023169539868831635, 0.012117652222514153, 0.03469228744506836, -0.013193451799452305, -0.01209513284265995, 0.08144420385360718, 0.021119652315974236, -0.0095831835642457, -0.007840988226234913, -0.008634936064481735, -0.06122430041432381, 0.07400540262460709, -0.0167325921356678, 0.023929497227072716, 0.06084795668721199, -0.06823837012052536, -0.014500333927571774, 0.014978221617639065, -0.0009591198177076876, -0.029645195230841637, 0.034012895077466965, -0.0035945898853242397, -0.05768086761236191, -0.02458650805056095, -0.04457840695977211, -0.034966643899679184, -0.010440398938953876, 0.037446003407239914, 0.018265701830387115, 0.05203550308942795, 0.011265136301517487, 0.045202456414699554, 0.04644124582409859, -0.01351709570735693, -0.01191921066492796, 0.018266752362251282, -0.008297246880829334, 0.03826724737882614, -0.008187251165509224, 0.03718254715204239, 0.012341164983808994, -0.01921135000884533, -0.006213045213371515, 0.04076794907450676, 0.023519383743405342, 0.013908471912145615, 0.03342662379145622, -0.026748938485980034, 0.0060457694344222546, -0.02688291296362877, 0.047622133046388626, 0.0038598442915827036, -0.013753741979598999, -0.013962998986244202, 0.047342799603939056, -0.020698674023151398, -0.05737191066145897, -0.023750510066747665, 0.012804034166038036, 0.035533081740140915, 0.0747927725315094, 0.06639514863491058, 0.038061514496803284, -0.028008412569761276, 0.03768963739275932, -0.05292734131217003, -0.06932096183300018, 0.060972243547439575, -0.019417960196733475, -0.008298302069306374, -0.011613215319812298, 0.0012585385702550411, -0.02499024197459221, 0.0007093633175827563, -0.02720414102077484, -0.010575629770755768, -0.03610588610172272, -0.03664179891347885, -0.011285622604191303, 0.04967387765645981, -0.0014472176553681493, 0.026924986392259598, -0.0011678984155878425, 0.016414809972047806, 0.011174450628459454, -0.021699989214539528, 0.028670070692896843, -0.008794024586677551, 0.034369949251413345, 0.01123868953436613, 0.012099316343665123, -0.026782386004924774, -0.007676539942622185, -0.0589321106672287, 0.0039861551485955715, -0.04731264337897301, -0.023580269888043404, 0.05330889672040939, -0.012533158995211124, -0.014341766946017742, -0.009907861240208149, 0.005200646352022886, -0.027604615315794945, -0.01849975809454918, 0.04684177786111832, -0.002969427267089486, -0.06930845230817795, 0.04600802809000015, -0.016160372644662857, -0.03050040826201439, -0.03863290324807167, 0.004459160380065441, -0.011957447975873947, -0.024383094161748886, 0.02590288408100605, -0.042858757078647614, -0.013109484687447548, 0.08118166029453278, -0.029619058594107628, -0.05655060335993767, -0.04285828396677971, -0.024860581383109093, -0.09598267823457718, -0.020089445635676384, -0.017930958420038223, -0.056766655296087265, 0.04498584568500519, -0.016047095879912376, -0.010898355394601822, -0.022923791781067848, 0.005756518337875605, -0.031506430357694626, 0.004182822071015835, 0.01743750274181366, 0.028722627088427544, 0.11030993610620499, 0.005931198131293058, -0.01736881583929062, -0.01672704704105854, 0.05202166363596916, -0.0013932740548625588, -0.039660148322582245, -0.08099274337291718, 0.04643945023417473, 0.018917284905910492, 0.01874743588268757, -0.09203861653804779, 0.0032311829272657633, -0.005188505630940199, -0.022266073152422905, 0.04382719844579697, 0.032803408801555634, 0.0006804742733947933, 0.018419066444039345, -0.009076450951397419, -0.011026592925190926, 0.0044687543995678425, -0.03703059256076813, 0.018562382087111473, 0.0007303875172510743, -0.015435850247740746, -0.036364249885082245, -0.02869870513677597, -0.0025700528640300035, 0.01778235472738743, -0.023915495723485947, -0.009015584364533424, -0.01599464751780033, -0.0038253292441368103, 0.04846859350800514, -0.002341650426387787, -0.015871142968535423, 0.0442349873483181, 0.05036546289920807, -0.0075982422567903996, 0.0008963786531239748, 0.013292256742715836, 0.006913295481353998, -0.05680277571082115, -0.011813417077064514, -0.04374871775507927, -0.002211472485214472, 0.11131326854228973, 0.015198576264083385, 0.047031424939632416, 0.010392393916845322, 0.0010681452695280313, 0.05993080139160156, -0.0019022758351638913, 0.017919084057211876, -0.01928146556019783, -0.003933845087885857, 0.01853889971971512, 0.008650816045701504, 0.03378939628601074, 0.04722839593887329, 0.006633118726313114, -0.1477736532688141, 0.014888519421219826, -0.04437335580587387, 0.03081691265106201, -0.014078406617045403, -0.010141919367015362, -0.007931915111839771, 0.04985920712351799, -0.04126909375190735, -0.012870607897639275, 0.004770915023982525, -0.0011703737545758486, -0.009931737557053566, -0.008565057069063187, 0.02563261240720749, -0.018624650314450264, -0.030125943943858147, 0.03932224214076996, 0.007609325926750898, 0.008349419571459293, -0.04816161468625069, 0.012879133224487305, -0.003218380268663168, 0.00274191377684474, -0.0571402907371521, 0.014059139415621758, 0.024979030713438988, -0.0035055982880294323, -0.005853882059454918, 0.0011827636044472456, 0.025003477931022644, 0.0033640519250184298, -0.07533479481935501, 0.045541513711214066, 0.02783416584134102, -0.015706242993474007, -0.0619562566280365, -0.02164425514638424, 0.06757435202598572, 0.003028946928679943, 0.02022155374288559, -0.004649020731449127, -0.010050461627542973, 0.04747660458087921, -0.049843840301036835, 0.00975149217993021, -0.04259796068072319, -0.0018420945852994919, -0.037900347262620926, -0.013482827693223953, 0.006041424348950386, 0.0015138740418478847, -0.01765778847038746, -0.012497080489993095, 0.0005429950542747974, 0.06665951013565063, -0.0010859890608116984, -0.0325012169778347, 0.06468924134969711, -0.008835104294121265, -0.0011748073156923056, -0.017632069066166878, 0.00786522962152958, 0.035086896270513535, 0.007641738746315241, 0.021284522488713264, -0.026614347472786903, -0.008368047885596752, -0.0585484504699707, -0.08143994212150574, -0.030857808887958527, -0.010993633419275284, 0.0546228364109993, -0.024600191041827202, 0.00760525232180953, 0.0002259724569739774, -0.02060815878212452, 0.07393430918455124, -0.04920382797718048, 0.03815873712301254, -0.01377305667847395, -0.055887043476104736, 0.05327329412102699, -0.0050741988234221935, -0.048014577478170395, 0.04074181988835335, -0.006782823242247105, -0.06327450275421143, 0.006285712122917175, -0.022158298641443253, -0.05478166043758392, 0.03217753395438194, -0.01954665593802929, -0.008421925827860832, 0.02039482444524765, 0.03149302676320076, 0.03594187647104263, 0.021916083991527557, 0.04019061475992203, -0.04484757035970688, -0.035656001418828964, 0.019437585026025772, 0.015767591074109077, -0.055503129959106445, -0.00037509939284063876, -0.008548364974558353, 0.026986343786120415, -0.0077751399949193, -0.019273342564702034, -0.06802424043416977, 0.055002398788928986, -0.02050394006073475, 0.09242115914821625, -0.0015197802567854524, 0.017664548009634018, 0.004232882987707853, -0.0402507558465004, -0.02639336697757244, 0.013839025981724262, -0.04861442372202873, -0.004949160385876894, -0.0034413703251630068, 0.05391132831573486, 0.009964651428163052, -0.07419662922620773, -0.01678832247853279, 0.056984711438417435, 0.035506267100572586, -0.02969224937260151, -0.017009498551487923, -0.002412819303572178, -0.01597561314702034, 0.029340222477912903, 0.025743475183844566, 0.014159626327455044, -0.15174944698810577, -0.050950903445482254, 0.053339648991823196, -4.453813744476065e-05, 0.0012551776599138975, -0.027891911566257477, 0.01631804183125496, 0.033190030604600906, 0.0022022018674761057, -0.012031963095068932, -0.1110861673951149, 0.04981403797864914, -0.0025120009668171406, 0.011497010476887226, 0.05990069359540939, 0.01071005780249834, -0.02551814541220665, -0.027699587866663933, 0.003154580481350422, 0.06774763017892838, -0.10780368000268936, -0.004609303083270788, -0.014225276187062263, 0.06214045733213425, 0.007237221579998732, -0.05436384677886963, 0.012679769657552242, 0.02010517008602619, -0.0699739158153534, -0.0035609789192676544, -0.00915828812867403, -0.027064668014645576, -0.02037639543414116, -0.0016680798726156354, -0.016024446114897728, 0.027339650318026543, 0.011507178656756878, -0.0002925297012552619, -0.037012770771980286, 0.07332873344421387, 0.023089062422513962, 0.020772526040673256, 0.02034398540854454, 0.0223452840000391, -0.010282790288329124, -0.01146084163337946, 0.04134414717555046, -0.05354199558496475, 0.020746082067489624, 0.005083623807877302, 0.013539435341954231, -0.013454766012728214, -0.06003585457801819, -0.01136300154030323, 0.014507435262203217, -0.009126630611717701, -0.048849571496248245, 0.045127399265766144, -0.05988207086920738, 0.046708837151527405, -0.04187126085162163, -0.04067961126565933, -0.09777944535017014, -0.024883929640054703, -0.02875624969601631, -0.10983167588710785, -0.007497853133827448, -0.0061845602467656136, -0.015419621020555496, 0.03147869184613228, 0.025116870179772377, 0.033452071249485016, -0.0054582348093390465, 0.07418043911457062, 0.016527952626347542, 0.009117535315454006, -0.06673824787139893, 0.005080515518784523, -0.02304317243397236, 0.049164943397045135, -0.04105949401855469, -0.023266280069947243, 0.0014440580271184444, -0.02362619899213314, -0.006300242152065039, 0.025598496198654175, 0.04271552711725235, 0.023340051993727684, 0.05338107794523239, -0.019427696242928505, -0.025192245841026306, 0.03523337095975876, 0.024924343451857567, -0.02714969962835312, -0.0014083953574299812, 0.02012055739760399, 0.008759057149291039, 0.007455018814653158, -0.060048554092645645, 0.01760169304907322, -0.0709763765335083, -0.04807281494140625, 0.004682998172938824, -0.05300461873412132, 0.01662011444568634, -0.009846631437540054, 0.033463794738054276, 0.10009132325649261, 0.020464958623051643, 0.03507024422287941, 0.007983569987118244, 0.014175957068800926, 0.009506596252322197, -0.04233832284808159, -0.01457828190177679, -0.013521471060812473, 0.014437158592045307, 0.006389043293893337, 0.004332276992499828, 0.03574994578957558, 0.007665425073355436, 0.01881997659802437, -0.06963574886322021, 0.08974914252758026, 0.020499277859926224, -0.04423694685101509, 0.09353062510490417, 0.02724107727408409, -0.0054562883451581, 0.013991119340062141, -0.010841195471584797, 0.05986854061484337, 0.017012599855661392, 0.04127559810876846, 0.020852571353316307, -0.003887489903718233, -0.022783057764172554, 0.02707652375102043, 0.03783557936549187, 0.00887890812009573, -0.024501420557498932, 0.007471482735127211, -0.026360897347331047, -0.008479067124426365, -0.0809970423579216, -0.01649281568825245, -0.07113253325223923, -0.0009345948928967118, -0.03396078944206238, 0.011629768647253513, -0.054383814334869385, 0.0021715157199651003, 0.009757807478308678, 0.040105655789375305, -0.02457054704427719, 0.03793114051222801, 0.013575960882008076, -0.04964492842555046, 0.0044311233796179295, 0.028864692896604538, 0.03034512884914875, -0.038676463067531586, -0.009070462547242641, 0.03873801603913307, -5.939330674955522e-33, 0.006254745181649923, 0.027279434725642204, 0.01620994322001934, 0.05455208942294121, -0.027487294748425484, 0.006063429173082113, -0.06654098629951477, 0.009345735423266888, 0.00697187427431345, -0.027773788198828697, 0.011435982771217823, 0.002751250984147191, 0.021349038928747177, -0.011930501088500023, 0.02172827161848545, -0.02298290841281414, 0.05715140700340271, 0.05200245603919029, 0.004630935378372669, 0.013755290769040585, -0.029176611453294754, 0.020179850980639458, 0.02928084321320057, -0.009454498998820782, -0.005854569375514984, 0.026074938476085663, 0.0012427420588210225, 0.0483863465487957, 0.03936556354165077, 0.022339580580592155, -0.025599459186196327, 0.02756982482969761, -0.0213191956281662, 0.008491185493767262, 0.0365951843559742, 0.04628898948431015, -0.057507872581481934, 0.0454135499894619, -0.014551338739693165, -0.0028985345270484686, -0.03617091476917267, -0.021154534071683884, 0.02367986924946308, -0.06105594336986542, -0.03725184127688408, 0.007784677669405937, 0.027863863855600357, 0.028287023305892944, 0.008437675423920155, -0.044718027114868164, -0.0861825942993164, 0.011789845302700996, -0.049706701189279556, -0.002641445491462946, -0.002623815555125475, -0.03989609703421593, 0.017391154542565346, -0.019744258373975754, 0.006456793285906315, 0.0038796935696154833, -0.09317899495363235, -0.025434497743844986, -0.018637973815202713, 0.008016535080969334, -0.01952536404132843, -0.06552144885063171, -0.04040293022990227, 0.062334638088941574, -0.0009163987124338746, -0.00362211000174284, 0.04056630656123161, -0.006568838842213154, -0.03879457712173462, -0.012594038620591164, 0.00493831979110837, -0.026806002482771873, -0.041054125875234604, 0.01829296536743641, 0.0663396343588829, 0.07692161202430725, -0.010094732977449894, 0.004916217178106308, 0.030756957828998566, 0.022020995616912842, -0.026235142722725868, 0.03578812628984451, -0.036044564098119736, -0.0009196465834975243, 0.03699178248643875, 0.02404875122010708, 0.028725484386086464, -0.031243931502103806, -0.03582225739955902, -0.00838417001068592, -0.00023141654673963785, -0.014961546286940575, 0.0608077347278595, 0.027767812833189964, -0.024136817082762718, -0.01805155724287033, -0.0194123312830925, 0.020347008481621742, 0.04001426696777344, 0.031524207442998886, 0.01920008659362793, -0.0254665557295084, 0.02787349745631218, 0.05287167429924011, -0.014473045244812965, 0.05564689636230469, -0.01337710302323103, -0.020464859902858734, 0.006332573015242815, 0.029107455164194107, 0.008045182563364506, -0.019508378580212593, -0.015130072832107544, -0.03053843230009079, -0.05257553979754448, 0.05450645834207535, -0.03787913918495178, 0.03197868540883064, -0.01274327002465725, -0.02118157595396042, -0.03390746936202049, 0.016198918223381042, -0.02404167875647545, 0.038113441318273544, 0.0772314965724945, 0.031130829825997353, 0.025609349831938744, -0.02882857620716095, 2.7936732749367366e-07, -0.05958286672830582, 0.04357010871171951, -0.006278371904045343, -0.02906825952231884, -0.03939177468419075, -0.04026051238179207, -0.013577708043158054, 0.03226728364825249, 0.015502910129725933, 0.04649345949292183, -0.024731600657105446, -0.02059699036180973, 0.011459280736744404, -0.0444992333650589, -0.041880298405885696, -0.16406284272670746, 0.012500546872615814, -0.017227642238140106, 0.011454039253294468, 0.021625768393278122, -0.028120283037424088, 0.00986609049141407, 0.027057001367211342, -0.02624565362930298, -0.020102065056562424, 0.023628246039152145, -0.010966264642775059, -0.022975962609052658, -0.04108799248933792, -0.042360950261354446, -0.0402689129114151, 0.0359109602868557, 0.00014600779104512185, -0.03928815573453903, 0.00742083927616477, -0.021252429112792015, -0.031970277428627014, -0.0022555342875421047, -0.02524830400943756, 0.012471656315028667, 0.0031120257917791605, -0.026788415387272835, 0.02571631781756878, 0.05037979409098625, 0.015926240012049675, -0.0018094333354383707, -0.015262325294315815, -0.014238088391721249, -0.04786643385887146, -0.0553324855864048, -0.008211917243897915, 0.04982304200530052, -0.005362553987652063, 0.005784908775240183, 0.03257191181182861, -0.010759969241917133, -0.024824509397149086, -0.05777481570839882, 0.01966785453259945, 0.03245861828327179, -0.01882145367562771, -0.018559474498033524, 0.044327691197395325, 0.06081901118159294, -0.04096684604883194, -0.06101059541106224, 0.022474857047200203, 2.7768712233024514e-34, 0.03496640548110008, 0.0021880706772208214, -0.05223891884088516, 0.04556407779455185, 0.029615331441164017, -0.033651772886514664, 0.06132381036877632, 0.01562529057264328, -0.010119369253516197, -0.019659070298075676, 0.007568504195660353], "af06e711-3177-4400-bb92-291df03e30dd": [0.04083170369267464, -0.011891941539943218, -0.06296389549970627, 0.05144073814153671, 0.001951895421370864, 0.019309071823954582, 0.005614777561277151, 0.08217309415340424, 0.009126462042331696, -0.016872616484761238, -0.043595097959041595, 0.0532320998609066, -0.006908726412802935, 0.06434071063995361, -0.023906148970127106, -0.03039267472922802, 0.05786629766225815, 0.0086626335978508, -0.00564252445474267, -0.0015212391735985875, -0.02840035781264305, 0.015923993661999702, 0.00825221836566925, -0.020900903269648552, 0.07425776869058609, -0.0002828461292665452, -0.028600506484508514, 0.013986500911414623, -0.012291958555579185, -0.05736338719725609, 0.016643017530441284, 0.004802059382200241, 0.0107301389798522, 0.006811875384300947, 2.210873162766802e-06, -0.021143285557627678, -0.07108280062675476, -0.03250228241086006, -0.023479074239730835, 0.012394304387271404, -0.0033110177610069513, 0.049453429877758026, -0.03602204471826553, -0.018159471452236176, 0.010323749855160713, -0.017605431377887726, -0.061857499182224274, 0.09429185837507248, -0.06406775861978531, 0.05499531701207161, 0.03972634673118591, -0.0298246331512928, -0.004988581873476505, -0.025429122149944305, 0.136410653591156, -0.02045847848057747, -0.037172507494688034, 0.053474217653274536, 0.03019046224653721, -0.0032720372546464205, -0.00865732692182064, 0.017752178013324738, -0.06240738555788994, 0.013767928816378117, 0.06832408905029297, 0.014180104248225689, 0.02313975989818573, -0.10077087581157684, 0.039233237504959106, 0.03520926460623741, 0.039731018245220184, -0.04045481234788895, 0.03123300150036812, 0.03367585688829422, -0.07327675074338913, 0.047725364565849304, -0.04794364050030708, 0.0279020294547081, 0.003948128782212734, 0.018316049128770828, 0.0018841470591723919, -0.014566561207175255, 0.016902996227145195, -0.0009509710944257677, 0.09193837642669678, -0.010903144255280495, -0.008731687441468239, -0.055126797407865524, 0.04461247846484184, -0.05420074984431267, 0.06604132056236267, -0.027591394260525703, 0.009624323807656765, 0.011943300254642963, 0.037572067230939865, -0.03628242015838623, 0.0045289210975170135, -0.033870115876197815, 0.05356988683342934, 0.03334822505712509, -0.03411616384983063, -0.019776545464992523, -0.006191559135913849, 0.013258838094770908, 0.0017137668328359723, 0.022245517000555992, 0.028697077184915543, -0.006411615293473005, -0.025089392438530922, 0.1152542382478714, -0.015141341835260391, 0.016534749418497086, -0.016179217025637627, -0.033455248922109604, -0.056859251111745834, -0.023911746218800545, 0.01656944490969181, 0.004845146555453539, 0.03116338700056076, 0.02993805706501007, -0.020432988181710243, -0.0018789985915645957, -0.053026311099529266, 0.016200868412852287, 0.022882917895913124, -0.03876303881406784, 0.008957772515714169, -0.03271597996354103, -0.009560765698552132, 0.009433128871023655, -0.011654790490865707, 0.03169404715299606, 0.015199619345366955, 0.048956386744976044, -0.022992877289652824, 0.08261874318122864, 0.012342667207121849, -0.04754345864057541, -0.02910081297159195, -0.0572579950094223, 0.043982796370983124, -0.0037288973107934, 0.008251184597611427, -0.012585040181875229, 0.02821684442460537, -0.025586534291505814, 0.028339365497231483, 0.018962137401103973, 0.028331803157925606, 0.010119139216840267, -0.055321305990219116, 0.05604036524891853, 0.0352238230407238, 0.013521953485906124, 0.05013125017285347, 0.02076319418847561, -0.028146054595708847, -0.0168494563549757, 0.009300529956817627, 0.009295754134654999, 0.08305104821920395, 0.04109319671988487, 0.027212465181946754, -0.015209046192467213, -0.003231299575418234, -0.013889283873140812, 0.06392394751310349, -0.004197046160697937, 0.04327595233917236, -0.00012240545765962452, -0.0018249498680233955, -0.009170642122626305, -0.03735095262527466, 0.02179619111120701, -0.03380169719457626, 0.07491354644298553, 0.005328040570020676, 0.04590437933802605, -0.0446455143392086, 0.0018989662639796734, -0.0025229768361896276, -0.010101189836859703, -0.012309315614402294, -0.04538442939519882, -0.07699981331825256, -0.02578825131058693, -0.011775619350373745, -0.031715210527181625, 0.04000172019004822, -0.00839874055236578, -0.008165416307747364, 0.011586378328502178, 0.04296479374170303, -0.06073634326457977, 0.01694602705538273, 0.0016062069917097688, -0.07748332619667053, -0.08046208322048187, -0.011283678002655506, -0.03182069957256317, 0.06848227232694626, 0.007864671759307384, 0.06495440006256104, 0.027569379657506943, 0.08492052555084229, -0.014345213770866394, -0.02167638950049877, 0.014090520329773426, -0.009207968600094318, -0.010721423663198948, 0.05056362971663475, -0.00721947755664587, -0.010719955898821354, -0.019876256585121155, -0.04547112435102463, -0.021722793579101562, -0.01458938978612423, -0.0187185388058424, 0.008587167598307133, -0.012438975274562836, 0.030477600172162056, -0.06786302477121353, -0.024683773517608643, 0.021668529137969017, -0.023488793522119522, -0.04580515995621681, -0.07171998918056488, 0.0032320767641067505, 0.029099827632308006, -0.021954048424959183, 0.00474522914737463, 0.008007985539734364, 0.03902393952012062, 0.03384635969996452, 0.014713098295032978, 0.008964748121798038, 0.034202996641397476, -0.029975613579154015, -0.01541812438517809, -0.10969134420156479, 0.00311432802118361, 0.08157877624034882, 0.01624067686498165, 0.025867078453302383, -0.008514856919646263, 0.02811625227332115, 0.008615721017122269, 0.029969042167067528, 0.045801445841789246, 0.026248693466186523, 0.011300414800643921, -0.01685973070561886, 0.0723293125629425, 0.006386306136846542, -0.02530316449701786, 0.01680251769721508, -0.04465172067284584, 0.007003480102866888, -0.07604449987411499, 0.04504993557929993, 0.03896765038371086, 0.001148464623838663, -0.047464415431022644, 0.045439209789037704, 0.04104407876729965, -0.005842380225658417, -9.708948346087709e-05, -0.05013175681233406, -0.008798996917903423, 0.0054519204422831535, 0.043863166123628616, 0.018778057768940926, 0.02469627931714058, -0.025955144315958023, 0.01071150042116642, -0.004212888889014721, -0.020401598885655403, 0.009776902385056019, -0.039198730140924454, -0.01784702204167843, -0.0047319489531219006, -0.027843181043863297, -0.05511285737156868, -0.0026919294614344835, -0.022463051602244377, -0.0170154832303524, 0.014214844442903996, -0.057319674640893936, -0.00021337857469916344, -0.03164740651845932, 0.01788686402142048, 0.042698509991168976, 0.005121379159390926, -0.027002809569239616, -0.03624352812767029, 0.015015847980976105, -0.005559741985052824, 0.013871612027287483, 0.0026916300412267447, 0.06021437793970108, 0.017594370990991592, -0.04804716631770134, -0.021053463220596313, 0.022406786680221558, -0.023567799478769302, 0.03741052746772766, -0.020313873887062073, -0.041792795062065125, 0.010449922643601894, -0.044221654534339905, 0.04953465238213539, 0.04933909326791763, 0.015309935435652733, -0.06703303009271622, -0.0021139003802090883, -0.05032729730010033, -0.02100445330142975, -0.057273272424936295, 0.00849257130175829, 0.0616300106048584, 0.015304909087717533, 0.006223256699740887, -0.035054709762334824, 0.017606496810913086, 0.009498297236859798, -0.09030988812446594, 0.027847200632095337, -0.03510672599077225, 0.036156315356492996, 0.0014514696085825562, 0.029269559308886528, 0.0016156303463503718, -0.016371766105294228, -0.029450422152876854, 0.03274840489029884, 0.0029642474837601185, -0.024889443069696426, 0.015006457455456257, 0.012369801290333271, -0.022095084190368652, 0.024431070312857628, 0.07051239162683487, -0.033141184598207474, -0.020400553941726685, 0.010975031182169914, -0.0219412911683321, 0.004068438429385424, 0.005418961402028799, -0.14268822968006134, 0.026044189929962158, 0.02989143691956997, 0.008027158677577972, 0.018943490460515022, -0.042484525591135025, -0.015893664211034775, 0.0301499105989933, 0.013448620215058327, 0.004145558457821608, 0.0004794579290319234, -0.024485809728503227, 0.006416541989892721, 0.06120075285434723, 0.014148068614304066, 0.018854154273867607, 0.05113939940929413, 0.060218170285224915, -0.005308743566274643, -0.01935877837240696, 0.0008653395343571901, 0.00017024484986905009, -0.0800555944442749, 0.003908427897840738, 0.024313533678650856, 0.052604444324970245, 0.03334474563598633, -0.05836457014083862, 0.0238026175647974, -0.046603359282016754, 0.021654317155480385, -0.041931573301553726, 0.008336818777024746, -0.014351342804729939, 0.015357320196926594, 0.028240911662578583, 0.06995920091867447, 0.006602646317332983, 0.03140151500701904, 0.0074879489839077, 0.053651534020900726, -0.030659276992082596, 0.029473742470145226, -0.05265200510621071, -0.02905033715069294, -0.03248872980475426, -0.04046560451388359, -0.02544122375547886, -0.009207171387970448, 0.01207425445318222, -0.02694450318813324, -0.021424133330583572, -0.04094500094652176, 0.03071325086057186, -0.027799921110272408, 0.06611654162406921, 0.029297098517417908, 0.011852527037262917, 0.04056873172521591, 0.04330220818519592, 0.03540169075131416, 0.06768201291561127, 0.07397232949733734, 0.059310708194971085, 0.019671136513352394, -0.0009202841902151704, 0.036557886749506, -0.03412351757287979, 0.049070943146944046, -0.02179878018796444, -0.004640586208552122, -0.02222481183707714, -0.06070910766720772, 0.021533433347940445, 0.03764325752854347, -0.009089658036828041, 0.0006473019020631909, -0.05128667503595352, 0.055762749165296555, -0.026104863733053207, 0.037402838468551636, -0.036204706877470016, 0.08533018827438354, 0.007291809655725956, -0.005872721318155527, 0.04752210155129433, 0.03717350214719772, 0.0010692777577787638, 0.020527012646198273, -0.06866434216499329, -0.048260629177093506, -0.031269535422325134, -0.022314442321658134, -0.04955831915140152, 0.025539137423038483, -0.01869734190404415, -0.014475049450993538, 0.044710222631692886, 0.03510564938187599, 0.03044126182794571, -0.002497191773727536, -0.06476880609989166, -0.044805243611335754, -0.06389123946428299, -0.06466475874185562, -0.020726878196001053, -0.02983066253364086, 0.0065406979992985725, 0.056132230907678604, 0.011387737467885017, -0.020092274993658066, -0.013906659558415413, -0.06050116568803787, 0.05443284288048744, 0.027541685849428177, -0.021210037171840668, -0.0035383165813982487, -0.02125466987490654, -0.027872325852513313, -0.06379429996013641, 0.02769731916487217, -0.0037840392906218767, -0.0021149921230971813, -0.008396019227802753, 0.010448343120515347, -0.033037468791007996, 0.07013442367315292, -0.10386782139539719, -0.0076855868101119995, -0.02670847624540329, -0.02779187262058258, -0.017980599775910378, 0.029126480221748352, 0.0037068044766783714, 0.015099762938916683, -0.03780791535973549, -0.03521379083395004, 0.05077281966805458, -0.019906247034668922, -0.004317365121096373, 0.013983984477818012, -0.011956796050071716, 0.01625034585595131, -0.002863697474822402, -0.00076737703057006, 0.0010538640199229121, -0.0011280769249424338, 0.022004609927535057, -0.06842825561761856, -0.017620200291275978, 0.047090668231248856, -0.05173022672533989, 0.021723968908190727, -0.054653290659189224, 0.007470626384019852, 0.07521015405654907, -0.04480976238846779, -0.05112297460436821, -0.035186730325222015, 0.00033307066769339144, 0.016190901398658752, -0.015239804051816463, -0.07986670732498169, -0.032085977494716644, -0.08546452969312668, 0.0042688557878136635, 0.009974280372262001, -0.02691146358847618, -0.01176356803625822, -0.04696566238999367, 0.0358855314552784, -0.0052790530025959015, 0.013463061302900314, 0.019539713859558105, 0.024810926988720894, -0.011739573441445827, 0.022410035133361816, 0.01209778431802988, 0.022515812888741493, 0.03716777637600899, 0.03204638883471489, 0.059171825647354126, -0.00015882181469351053, -0.007727721706032753, 0.056727681308984756, -0.017721839249134064, -0.051924724131822586, 0.028600813820958138, 0.05820789560675621, 0.03667227178812027, 0.0030054899398237467, -0.037859175354242325, -0.0019187205471098423, 0.013348319567739964, 0.039456870406866074, 0.027747569605708122, 0.024856703355908394, 0.006621659267693758, 0.027436554431915283, 0.053597342222929, 0.008777961134910583, -0.07333685457706451, 0.03379887714982033, 0.009742372669279575, -0.025890689343214035, 0.013058037497103214, 0.01717650145292282, -6.107149023924712e-33, -0.02312186360359192, -0.040801167488098145, -0.006847923155874014, 0.045276228338479996, -0.009492812678217888, -0.05409124121069908, -0.021439937874674797, -0.06503243744373322, -0.0050007193349301815, -0.04790507256984711, -0.015439885668456554, -0.04921991378068924, 0.017629580572247505, -0.03716526925563812, 0.006296239793300629, -0.03250628709793091, 0.013380049727857113, 0.00598542857915163, -0.0433395616710186, 0.03702200576663017, 0.0027124451007694006, -0.017225272953510284, -0.014996115118265152, 0.0060407002456486225, -0.04483519122004509, -0.07270661741495132, -0.027533065527677536, -0.04453658685088158, 0.026820145547389984, 0.03405316546559334, -0.08224720507860184, -0.01577707938849926, -0.006827059201896191, 0.014144598506391048, -0.004379445221275091, 0.022203605622053146, -0.030520068481564522, -0.029478896409273148, -0.005966481752693653, 0.020837420597672462, 0.0373784564435482, -0.022131161764264107, -0.024852285161614418, -0.006995870731770992, 0.04007896035909653, 0.019733529537916183, 0.03312734141945839, 0.0224240031093359, -0.0355713926255703, 0.024572888389229774, -0.06329117715358734, 0.03210724890232086, -0.008865000680088997, 0.046396348625421524, -0.020466459915041924, 0.008885186165571213, 0.04511215165257454, -0.0014526930171996355, 0.003619436640292406, -0.005567672662436962, 0.01540914922952652, 0.02264207787811756, 0.05861947312951088, -0.012887364253401756, -0.012374131008982658, 0.02888665534555912, -0.01331276260316372, 0.07713368535041809, 0.006903388071805239, 0.029587626457214355, 0.027954334393143654, -0.0035633922088891268, -0.040895119309425354, -0.030220068991184235, 0.018932772800326347, 0.014336545951664448, -0.03561542183160782, 0.051758624613285065, 0.03010990284383297, 0.08454906195402145, -0.008771934546530247, 0.018314767628908157, -0.02635084092617035, 0.013945255428552628, 0.010713692754507065, 0.017333725467324257, -0.018706751987338066, -0.011005052365362644, 0.012127981521189213, 0.026724910363554955, 0.004730992950499058, -0.04384731873869896, -0.06310559064149857, 0.03185100480914116, -0.020642535760998726, 0.08194956928491592, 0.012158638797700405, -0.02559591829776764, -0.051211804151535034, -0.05216735973954201, -0.004978465847671032, -0.052605677396059036, 0.0014513288624584675, -0.037347689270973206, 0.021929707378149033, -0.02407342754304409, -0.04569293186068535, 0.019551100209355354, -0.029434971511363983, -0.019128188490867615, 0.011143723502755165, -0.07998920232057571, 0.05021775886416435, -0.018567370250821114, 0.009220877662301064, -0.052258946001529694, -0.03314099460840225, -0.006506699603050947, 0.0011663147015497088, 0.04329361394047737, -0.0025501293130218983, -0.04313628748059273, 0.017003649845719337, 0.0019908284302800894, -0.0078001562505960464, 0.01751982420682907, -0.03515417501330376, -0.02245936542749405, 0.0392322838306427, -0.0366700254380703, 0.004957296885550022, 0.020434368401765823, 2.8465484547268716e-07, -0.003859858959913254, 0.04831552132964134, 0.005095277912914753, -0.004588700365275145, -0.01440629456192255, -0.04168148711323738, -0.015828164294362068, -0.005272682756185532, -0.04680716618895531, 0.010713397525250912, 0.03466293588280678, 0.007820343598723412, 0.007937421090900898, 0.04563676193356514, -0.0008829388534650207, -0.043549153953790665, -0.005075848661363125, -0.025208979845046997, -0.02950972318649292, -0.031209196895360947, 0.03767910972237587, 0.04492349177598953, 0.06843006610870361, 0.004991836845874786, -0.042473532259464264, -7.511725561926141e-05, -0.03599391505122185, -0.041137732565402985, -0.03916225954890251, 0.0016548199346289039, 0.04677535966038704, 0.03484630212187767, -0.03651650995016098, -0.054177138954401016, -0.02511104755103588, 0.015238706953823566, -0.006404000334441662, 0.0037424180191010237, 0.028976701200008392, 0.022921347990632057, 0.02443039044737816, -0.0068691186606884, -0.04183908551931381, -0.02877582237124443, 0.017732536420226097, 0.054829858243465424, 0.05142263323068619, 0.0852757915854454, -0.06160888448357582, 0.0025091753341257572, -0.004380727186799049, 0.004906568676233292, 0.0036747981794178486, 0.0340413935482502, -0.010939400643110275, -0.03469717875123024, 0.02202530950307846, -0.026797471567988396, 0.018591906875371933, 0.011755303479731083, -0.05480136349797249, 5.615468126052292e-06, 6.575027782673715e-06, 0.039782870560884476, 0.014288594014942646, 0.001612921361811459, -0.022649168968200684, 3.4262705519380797e-34, 0.04121663421392441, -0.035854507237672806, -0.021394670009613037, -0.04347928985953331, 0.010896394029259682, -0.020998088642954826, 0.02000490203499794, 0.02264026552438736, 0.013995171524584293, -0.09822080284357071, -0.034166641533374786], "b9b977cf-0c14-4e1e-bc45-e7620f4d37f2": [0.08151967078447342, -0.008883926086127758, -0.044339168816804886, 0.019735341891646385, -0.02845616638660431, 0.012803390622138977, 0.01642885059118271, 0.023860853165388107, 0.06798305362462997, -0.0057158563286066055, -0.006541636772453785, -0.00045131039223633707, -0.016553232446312904, 0.03782523423433304, -0.04434235766530037, -0.030184825882315636, 0.03312334045767784, -0.025769421830773354, 0.01599004492163658, -0.011464787647128105, -0.01933966390788555, 0.0037133118603378534, 0.0059851668775081635, 0.0033487400505691767, 0.06958785653114319, -0.029003772884607315, -0.02306765504181385, 0.006405931431800127, -0.01063569076359272, -0.006262354552745819, 0.011275462806224823, 0.07757523655891418, -0.039930474013090134, 0.046595118939876556, 2.39450196204416e-06, -0.021463191136717796, -0.04926730692386627, -0.005560322664678097, -0.03027534857392311, 0.001962600275874138, 0.013385070487856865, 0.07224775105714798, -0.039880022406578064, 0.00826055184006691, 0.0005794709431938827, 0.03938803821802139, -0.006664866115897894, 0.013143514283001423, -0.05200566351413727, 0.038494501262903214, 0.013051367364823818, -0.0008130760979838669, -0.0559445358812809, -0.028949664905667305, 0.11390070617198944, -0.056206535547971725, -0.01826099492609501, 0.054347097873687744, 0.007112226914614439, 0.01050679013133049, 0.007185630965977907, -0.011812644079327583, -0.02853686362504959, -0.029924439266324043, 0.04408319666981697, 0.02902468480169773, -0.05476042628288269, -0.12669123709201813, -0.00013573520118370652, 0.02368977479636669, 0.04811505600810051, -0.016876164823770523, 0.032338906079530716, 0.06915482133626938, -0.007035259157419205, 0.03172662481665611, -0.0344371497631073, 0.013930373825132847, 0.01448434591293335, 0.024842645972967148, 0.005570301320403814, 0.031248576939105988, -0.011638318188488483, -0.019781462848186493, 0.06316864490509033, -0.03681447356939316, 0.004629350733011961, -0.029256965965032578, 0.02298389934003353, -0.025441834703087807, 0.031218627467751503, -0.015334352850914001, -0.015792369842529297, -0.00868589710444212, 0.03585910052061081, -0.02838827669620514, 0.015669450163841248, 0.019222857430577278, 0.051455769687891006, 0.028324788436293602, -0.055790722370147705, 0.017220493406057358, 0.011840184219181538, 0.03398774191737175, 0.019436394795775414, -0.024047719314694405, 0.034277286380529404, -0.03734946995973587, -0.03912513330578804, 0.07302463054656982, -0.010862544178962708, 0.014288674108684063, -0.007518649101257324, -0.014001854695379734, -0.04098233953118324, -0.06066974624991417, -0.03750385716557503, 0.0618661530315876, 0.03507256135344505, 0.030497541651129723, 0.02278248593211174, 0.032423246651887894, -0.06193896383047104, 0.02249445766210556, 0.0016828306252136827, -0.021744849160313606, 0.015078979544341564, -0.0458090640604496, -0.010890263132750988, -0.020959291607141495, -0.018179530277848244, 0.012235158123075962, -0.0015474010724574327, 0.053047094494104385, -0.04658742621541023, 0.08612392842769623, -0.047169700264930725, -0.009192021563649178, 0.017540471628308296, -0.05556769296526909, 0.0018960044253617525, -0.006341844331473112, -0.0002637812867760658, -0.006280009169131517, 0.04011092707514763, -0.03449082374572754, 0.028694286942481995, 0.07975819706916809, 0.017727093771100044, 0.010547786019742489, -0.025620099157094955, 0.041878800839185715, 0.05532252416014671, 0.00788186863064766, 0.041036155074834824, 0.01692245341837406, -0.023516153916716576, 0.04480716958642006, 0.0019895178265869617, 0.035459768027067184, 0.048479728400707245, 0.019644005224108696, -0.003308474086225033, -0.007553924340754747, -0.023173706606030464, -0.010707083158195019, 0.05129721760749817, -0.017938798293471336, 0.011427214369177818, -0.025626949965953827, -0.02942178212106228, 0.006258918438106775, -0.014861068688333035, 0.008672262541949749, 0.005335941910743713, 0.055244747549295425, 0.013618722558021545, 0.08353221416473389, -0.033299654722213745, -0.001536708208732307, -0.03837350383400917, -0.01542277354747057, -0.013725928030908108, -0.023172590881586075, -0.1015930250287056, -0.005797654390335083, 0.03303960710763931, -0.014929081313312054, -0.0007745815673843026, -0.011676697991788387, 0.008137512020766735, 0.01346407551318407, 0.03045153059065342, -0.035953693091869354, 0.03168373927474022, -0.018566375598311424, -0.0312512144446373, -0.062364451587200165, 0.006961428560316563, 0.00962879415601492, -0.0067768101580441, -0.03596250340342522, 0.02338600344955921, 0.11623718589544296, 0.0792311578989029, 0.00859186053276062, 0.02535252831876278, 0.010506532154977322, 0.04676203057169914, 0.0256844162940979, 0.07724913209676743, 0.020264381542801857, -0.03716326132416725, 0.007424909621477127, -0.03303411602973938, 0.04512060806155205, -0.001982844900339842, 0.00934141967445612, 0.010332520119845867, 0.01938418112695217, -0.0255130622535944, -0.02827579714357853, -0.019255969673395157, -0.019141478464007378, -0.03043425641953945, -0.019339462742209435, -0.031734537333250046, 0.017817649990320206, 0.037467245012521744, 0.011002353392541409, 0.0031970643904060125, 0.001924973796121776, 0.016023756936192513, -0.0038918659556657076, 0.03453220799565315, 0.052200671285390854, 0.002200249582529068, -0.03233166038990021, -0.0074423523619771, -0.03720035403966904, -0.01953011378645897, 0.0673329308629036, -0.0017545747105032206, 0.016629893332719803, 0.034081120043992996, 0.04336504638195038, 0.04782054200768471, 0.0005144589813426137, 0.0014721978222951293, 0.027294138446450233, 0.026528706774115562, 0.007522515021264553, 0.03940652683377266, -0.024184098467230797, -0.020613178610801697, 0.006332665216177702, -0.055372271686792374, 0.01258055493235588, -0.07567308843135834, 0.06660303473472595, 0.0031183292157948017, 0.016020992770791054, -0.0301496759057045, 0.0037741856649518013, 0.0484287329018116, -0.022616999223828316, -0.06160280108451843, -0.04169588163495064, 0.00258260197006166, 0.009253377094864845, 0.00816372036933899, 0.030113767832517624, 0.03985295817255974, -0.019182853400707245, -0.0005863126134499907, 0.0019200794631615281, 0.024627290666103363, 0.0035685449838638306, -0.025009896606206894, -0.005126659292727709, -0.030810635536909103, -0.06011417880654335, -0.00810089148581028, -0.0018871710635721684, 0.004660530481487513, 0.010823095217347145, 0.04847242310643196, -0.06090014800429344, -0.020308401435613632, -0.01733950898051262, 0.003338123671710491, 0.0021383475977927446, 0.005957466084510088, -0.05177710950374603, -0.04664948582649231, 0.015115208923816681, 0.008970712311565876, 0.039289653301239014, 0.025721391662955284, 0.061775192618370056, -0.009841983206570148, -0.012920797802507877, -0.009956096298992634, 0.02104734629392624, -0.043184347450733185, 0.003659925190731883, 0.027578452602028847, -0.09951750189065933, -0.02150530181825161, 0.005263218190521002, 0.023091759532690048, 0.04337054491043091, 0.013351738452911377, 0.00701981782913208, 0.00781936850398779, -0.03984788805246353, -0.062184061855077744, -0.030637424439191818, -0.03324256092309952, 0.03774251416325569, -0.028442420065402985, -0.021373296156525612, 0.000822564703412354, 0.016386019065976143, -0.010114933364093304, -0.1034519225358963, -0.005856106523424387, 0.01358860544860363, 0.04476599767804146, -0.0395849384367466, 0.02991059236228466, 0.02582252025604248, -0.03124357759952545, -0.018788378685712814, -0.01446443796157837, 0.0020538277458399534, -0.05295638367533684, -0.0468040369451046, 0.0003120670735370368, -0.005769452545791864, -0.0006333842757157981, 0.05621912330389023, -0.048663798719644547, -0.08725109696388245, -0.006845523603260517, -0.0419042743742466, 0.003027222352102399, 0.004610968753695488, -0.08467628806829453, 0.024656834080815315, -0.02019648812711239, -0.015458879992365837, -0.00015173200517892838, -0.03642234578728676, -0.008696820586919785, 0.015185557305812836, 0.005604171194136143, 0.0008670570678077638, -0.03128429874777794, 0.0002200861054006964, 0.047721415758132935, 0.045805007219314575, 0.012517250142991543, -0.00802457146346569, 0.027226215228438377, -0.012490085326135159, 0.0009316934156231582, 0.03664977103471756, 0.044675104320049286, 0.016322053968906403, -0.017291037365794182, 0.0700940191745758, -0.01904209889471531, 0.06806036084890366, 0.012910917401313782, -0.05779857933521271, 0.009813973680138588, -0.02296110987663269, 0.09613218903541565, -0.05758305639028549, 0.013843614608049393, -0.06771308928728104, 0.015150155872106552, 0.008337661623954773, 0.055092718452215195, -0.025422489270567894, -0.007357179652899504, -0.03388524800539017, 0.04127922281622887, 0.014408109709620476, 0.035358455032110214, -0.11193640530109406, 0.01695951633155346, -0.02478889189660549, -0.052630845457315445, -0.018866170197725296, 0.04992617666721344, -0.03297920897603035, 0.006604035384953022, -0.003941667731851339, 0.002350810682401061, -0.04969896003603935, -0.03689279779791832, 0.03794422000646591, 0.02179475501179695, 0.08407385647296906, 0.009756995365023613, 0.011902252212166786, 0.022743184119462967, 0.027596810832619667, 0.0380619652569294, 0.05109744146466255, 0.03699026629328728, 0.004333285614848137, 0.02662302367389202, -0.02618870511651039, 0.010708077810704708, -0.05446230247616768, 0.000869971641805023, -0.02413591369986534, -0.012132560834288597, 0.014987806789577007, -0.004923875909298658, -0.008161092177033424, -0.021441806107759476, -0.027814831584692, 0.09663911163806915, 0.04516967386007309, 0.050464119762182236, -0.01715782843530178, 0.028065048158168793, 0.03551816567778587, -0.041549891233444214, 0.054116141051054, -0.027958709746599197, 0.01886373572051525, -0.009882391430437565, -0.03818913921713829, -0.10710394382476807, -0.009300706908106804, -0.005089280195534229, -0.059373222291469574, -0.0008326971437782049, -0.028209969401359558, 0.004171048756688833, 0.014041436836123466, 0.0863523930311203, 0.07056037336587906, -0.011984171345829964, -0.08326065540313721, -0.059712640941143036, -0.037978898733854294, -0.06985489279031754, -0.06078006699681282, -0.03263496607542038, 0.004407551605254412, 0.018962141126394272, -0.06504009664058685, -0.013585765846073627, 0.03816767409443855, -0.014008755795657635, 0.04683445021510124, 0.030989758670330048, -0.027936182916164398, 0.0510672889649868, 0.008830000646412373, -0.0033290537539869547, -0.04913898557424545, 0.04555504769086838, -0.011261163279414177, 0.027765396982431412, -0.005368088837713003, -0.00910781230777502, -0.030196456238627434, 0.06335458904504776, -0.06220899149775505, -0.021477553993463516, -0.02686397172510624, -0.03587545081973076, -0.019622420892119408, 0.006654943805187941, -0.06438528746366501, 0.024731148034334183, -0.02314225770533085, -0.012452423572540283, 0.05163300037384033, -0.021157143637537956, -0.012355322018265724, 0.019751742482185364, -0.042904261499643326, 0.03723101317882538, -0.04864487051963806, -0.0002662291517481208, -0.002230096375569701, -0.045903295278549194, 0.027768706902861595, 0.015038533136248589, -0.06575090438127518, 0.02803894691169262, -0.018145237118005753, 0.002940400969237089, -0.005337866954505444, -0.0009479782893322408, 0.07186225056648254, -0.03838852420449257, -0.023641709238290787, -0.0329715795814991, 0.019513694569468498, -0.005185991059988737, -0.033108726143836975, -0.06936908513307571, 0.0036084777675569057, -0.0881815031170845, -0.02974134311079979, 0.06475015729665756, 0.0027357882354408503, 0.004769524093717337, -0.01732424832880497, 0.019070828333497047, -0.021825499832630157, 0.0355951301753521, 0.0008302325149998069, 0.02760271355509758, 0.0010659440886229277, 0.047288935631513596, -0.04858886078000069, -0.011381469666957855, 0.01948675699532032, 0.018911132588982582, 0.07147948443889618, -0.054515570402145386, -0.03558293730020523, 0.0722079649567604, -0.049754317849874496, -0.05502820760011673, 0.03017646074295044, 0.033662598580121994, 0.02003558538854122, 0.011730224825441837, -0.06027206778526306, 0.005810743663460016, 0.02663046307861805, 0.008245659992098808, 0.025025777518749237, 0.032998643815517426, -0.005754602607339621, -0.0069043636322021484, 0.07735660672187805, -0.018833108246326447, -0.04645991325378418, 0.009356917813420296, 0.04085294157266617, -0.0015621691709384322, 0.04595270752906799, -0.004534375853836536, -6.550458433004521e-33, -0.00455321604385972, -0.05048265680670738, -0.03500933200120926, 0.03490149974822998, -0.006781554315239191, -0.0651799738407135, -0.004207860678434372, -0.04278014227747917, 0.020154068246483803, -0.04582011327147484, 0.0016036463202908635, -0.02825862541794777, 0.027280796319246292, -0.04598143324255943, 0.040660206228494644, -0.0393015518784523, 0.0070566353388130665, -0.013330020941793919, 0.010534942150115967, 0.026705289259552956, 0.006820238661020994, -0.006159415002912283, -0.10213638097047806, 0.01955333538353443, -0.013239570893347263, -0.0676996037364006, -0.0012847250327467918, -0.01084648072719574, 0.058299701660871506, -0.006630273070186377, -0.0665484294295311, 0.010790598578751087, -0.002833873964846134, 0.01657710410654545, 0.004069046583026648, 0.06386397033929825, -0.040489163249731064, -0.05192394182085991, -0.0064062378369271755, 0.007036156486719847, 0.018493324518203735, -0.017455844208598137, 0.007057021837681532, -0.003517304779961705, -0.015302897430956364, 0.0222333837300539, 0.03328179568052292, 0.023955082520842552, -0.030878271907567978, 0.04478578269481659, -0.030250610783696175, 0.0006653203745372593, -0.010519004426896572, 0.009328857064247131, -0.031102685257792473, -0.0052255247719585896, 0.059014417231082916, -0.059055037796497345, -0.009187289513647556, 0.027186399325728416, 6.0890044551342726e-05, -0.023454397916793823, 0.03301914408802986, 0.017477834597229958, -0.01486634835600853, 0.04558580741286278, -0.0027391796465963125, 0.10226745903491974, 0.027399536222219467, 0.04039287939667702, -0.007578792981803417, 0.011896032840013504, -0.03845951706171036, -0.006293004844337702, 0.037104710936546326, -0.01702962815761566, -0.05278778448700905, 0.06114781275391579, 0.05796470493078232, 0.006892266683280468, 0.03474903851747513, -0.00392676517367363, -0.02941078692674637, 0.0003297824296168983, 0.045718900859355927, 0.06608343124389648, -0.015232381410896778, -0.060541387647390366, -0.022363321855664253, 0.04592384025454521, -0.03800862282514572, -0.07077126204967499, -0.027591662481427193, 0.013362596742808819, -0.029165063053369522, 0.02414589188992977, 0.0803033635020256, -0.0351838618516922, -0.03428567573428154, -0.07435846328735352, -0.02913859114050865, -0.04250999912619591, 0.013254889287054539, -0.0017888417933136225, -0.011053965426981449, 0.00025306924362666905, -0.001311608823016286, 0.008915423415601254, 0.0020901206880807877, 0.008248802274465561, -0.0009036151459440589, -0.02172240987420082, 0.061471302062273026, -0.031646598130464554, 0.01744505763053894, -0.024052901193499565, -0.003579125041142106, 0.01134859211742878, 0.01009135227650404, 0.0551801361143589, -3.378872497705743e-05, -0.03916237875819206, 0.01042359508574009, -0.009568321518599987, -0.0141476234421134, 0.029928788542747498, -0.043371040374040604, -0.00953324232250452, 0.039311859756708145, -0.02122865989804268, 0.01302134059369564, -0.08047986030578613, 3.096130569701927e-07, -0.006912172306329012, 0.025883998721837997, 0.02643164061009884, -0.04556922987103462, 0.019767528399825096, -0.052736684679985046, -0.0028931740671396255, 0.03572435677051544, -0.003944348078221083, -0.0032167418394237757, 0.019770672544836998, 0.019888604059815407, 0.016387412324547768, 0.04969901964068413, -0.05132792145013809, -0.07191266119480133, -0.02938888408243656, -0.005411292426288128, -0.01876777783036232, 0.006860050372779369, 0.047678716480731964, 0.03490640968084335, 0.06302372366189957, -0.006802503950893879, -0.04487152397632599, -0.03928375989198685, -0.0167405903339386, -0.0659359022974968, -0.06632786989212036, -0.006138005759567022, 0.045811280608177185, 0.02596134878695011, 0.0011295739095658064, -0.050764936953783035, -0.0023281294852495193, -0.008189654909074306, -0.05143585056066513, -0.03679224103689194, 0.009470724500715733, 0.027407905086874962, 0.021311238408088684, -0.01632368564605713, -0.03023994341492653, 0.000609240320045501, 0.031061258167028427, -0.025634879246354103, 0.020362140610814095, 0.0861157476902008, -0.012499451637268066, -0.03484795615077019, 0.015771305188536644, 0.010378754697740078, 0.015637865290045738, 0.025822676718235016, -0.002333248034119606, 0.009469034150242805, 0.03621229529380798, 0.011525833979249, 0.019873149693012238, -0.04165719076991081, -0.054448552429676056, -0.055528733879327774, 0.01612727716565132, 0.004824585281312466, -0.01931321807205677, -0.007677022367715836, -0.017049575224518776, 3.204656346851981e-34, 0.0486154668033123, 0.026751577854156494, -0.017750056460499763, -0.018557418137788773, 0.01523696817457676, -0.010097168385982513, 0.038560692220926285, 0.013247918337583542, 0.04849256947636604, -0.07900896668434143, -0.03489886596798897], "a2d3b1f4-ad42-4e85-9984-240e9e1ad08d": [0.006580219138413668, -0.02531903050839901, -0.051111239939928055, 0.04992204159498215, -0.035733070224523544, 0.005013653077185154, 0.05062643438577652, 0.0512409470975399, 0.026323478668928146, -0.017263326793909073, -0.0028136873152107, 0.02458857372403145, 0.022647246718406677, 0.10645689070224762, -0.027976730838418007, -0.06270144134759903, 0.058342237025499344, -0.007761796470731497, -0.06587003171443939, 0.0007016157614998519, 0.009306135587394238, -0.002920819679275155, -0.03316273167729378, -0.01629599928855896, 0.07955925911664963, -0.059496186673641205, -0.029543209820985794, 0.03413424268364906, 0.0037679190281778574, -0.028918202966451645, 0.029171625152230263, 0.027652980759739876, -0.01817971095442772, 0.042325008660554886, 3.1800257147551747e-06, -0.012224224396049976, -0.050006937235593796, 0.018834270536899567, -0.07117276638746262, 0.041251640766859055, -0.01331093069165945, 0.06259117275476456, -0.016440019011497498, 0.01356741227209568, 0.011834681034088135, 0.022230684757232666, -0.008870037272572517, 0.022856684401631355, -0.011331599205732346, 0.008816862478852272, 0.02969270572066307, 0.004946276545524597, -0.015260634012520313, -0.009090281091630459, 0.14172975718975067, -0.0031209513545036316, -0.031802769750356674, 0.04968004673719406, 0.053938571363687515, -0.02858443185687065, -0.007089253980666399, -0.004142259247601032, -0.011834463104605675, -0.008005142211914062, 0.054876405745744705, 0.04922603443264961, -0.02796177752315998, -0.11738007515668869, -0.00833563506603241, 0.023167939856648445, 0.09160169959068298, -0.05554318055510521, 0.018772685900330544, 0.03089609369635582, -0.06011595204472542, 0.08910425752401352, -0.03650496527552605, -0.00021798840316478163, -0.022176001220941544, -0.015287376940250397, 0.003294284688308835, -0.009086287580430508, -0.0007170572644099593, -0.018429389223456383, 0.05739026144146919, 0.016183961182832718, 0.010722629725933075, -0.04054642096161842, 0.00812452007085085, -0.01583753153681755, 0.048415981233119965, -0.002631599083542824, 0.013609019108116627, -0.011428913101553917, 0.031312793493270874, -0.04194309189915657, 0.02571764588356018, -0.007903574965894222, 0.0323745496571064, 0.03739386424422264, 0.028192641213536263, 0.03428954631090164, 0.017022520303726196, 0.014954294078052044, 0.00012960538151673973, 0.004999050870537758, 0.025906234979629517, -0.06750141829252243, -0.025257432833313942, 0.09877798706293106, -0.0010731375077739358, 0.03063676692545414, -0.02297591045498848, -0.008861705660820007, -0.02298499085009098, -0.022436125203967094, 0.010771450586616993, 0.061645664274692535, 0.006018591113388538, 0.038921307772397995, -0.006276114843785763, 0.012878675013780594, -0.057942964136600494, 0.016520043835043907, -0.0010122144594788551, -0.04310208559036255, 0.007131970953196287, -0.052296027541160583, -0.009031424298882484, -0.04386984184384346, -0.01633838191628456, 0.010043744929134846, 0.0002898375678341836, 0.03541221469640732, -0.018120380118489265, 0.07273123413324356, 1.3588045476353727e-05, -0.01569155603647232, -0.014982708729803562, -0.03260696679353714, 0.051427509635686874, 0.009437070228159428, 0.0037638188805431128, -0.022863950580358505, 0.026515960693359375, -0.017868392169475555, 0.03475409001111984, 0.003924053627997637, -0.0043158745393157005, 0.03767204284667969, -0.007738926447927952, 0.07778725028038025, 0.00839290115982294, -0.007784015033394098, 0.09881354868412018, 0.048033952713012695, -0.026820579543709755, 0.006507238373160362, -0.028636015951633453, 0.02064749412238598, 0.044104572385549545, 0.008840391412377357, 0.06450706720352173, -0.021474089473485947, -0.008010641671717167, 0.00676686642691493, -0.01502496562898159, 0.0002734542649704963, 0.016862671822309494, 0.007869038730859756, -0.04331473261117935, 0.024467390030622482, -0.02406906895339489, 0.027371810749173164, -0.013662033714354038, 0.07096242904663086, 0.0366942472755909, 0.05079176649451256, -0.021559350192546844, 0.03448911011219025, -0.031810466200113297, -0.037744536995887756, -0.030972978100180626, 0.050233252346515656, -0.07177320867776871, -0.008550792932510376, 0.0019019764149561524, -0.014737937599420547, 0.0011409921571612358, 0.0015060758450999856, -0.008653216995298862, 0.012358510866761208, 0.057239171117544174, -0.018310675397515297, 0.0020580023992806673, 0.005560198798775673, -0.020669344812631607, -0.06292985379695892, 0.0048320479691028595, -0.026688212528824806, -0.009597810916602612, -0.04819773882627487, 0.03599131852388382, 0.07343803346157074, 0.05147027596831322, -0.039903078228235245, -0.013142850250005722, 8.934583456721157e-05, 0.02745640091598034, 0.021422021090984344, 0.09231647849082947, 0.006618560757488012, -0.043876539915800095, -0.023193147033452988, -0.02380608394742012, 0.019892094656825066, -0.013682123273611069, 0.0023261019960045815, -0.017602629959583282, 0.02434961125254631, -0.008346362970769405, -0.014973298646509647, -0.014646337367594242, 0.035500962287187576, -0.021221794188022614, -0.04360400512814522, -0.040227219462394714, 0.021492086350917816, 0.04197688028216362, 0.002709727268666029, 0.00022258445096667856, -0.004619103856384754, 0.056423693895339966, 0.0582413449883461, 0.018826577812433243, -0.06419429183006287, 0.018379557877779007, -0.010675742290914059, 0.020871562883257866, -0.09972511976957321, 0.0022502471692860126, 0.04466655105352402, 0.0002695231814868748, 0.011076677590608597, 0.02412925660610199, 0.01168153714388609, 0.08082283288240433, -0.010250726714730263, -0.009954465553164482, 0.02091720886528492, 0.011854555457830429, 0.006384913809597492, 0.041550733149051666, 0.015672357752919197, -0.003831895999610424, 0.012560614384710789, -0.050447456538677216, -0.008992929011583328, -0.05054231733083725, 0.0071778856217861176, 0.020785683766007423, -0.025019269436597824, 0.008037797175347805, 0.008239174261689186, 0.04768964648246765, -0.02254311367869377, 0.032973818480968475, -0.06745646893978119, 0.00866017583757639, 0.002892947057262063, 0.0287324171513319, 0.011110593564808369, 0.01679450459778309, -0.030461343005299568, 0.003881602082401514, 0.006316191051155329, -0.0087562445551157, -0.01651672273874283, -0.04835367947816849, -0.018810439854860306, -0.00047101383097469807, -0.02398831583559513, -0.02222616970539093, -0.015966344624757767, -0.005292163230478764, -0.012250080704689026, 0.03155884891748428, -0.07861288636922836, -0.030603621155023575, 0.02259412780404091, -0.006979026366025209, -0.004487066529691219, 0.014436195604503155, -0.040787793695926666, -0.03240620717406273, 0.0038164567667990923, 0.011854679323732853, 0.07455047965049744, -0.019217554479837418, 0.10274139791727066, 0.00813001673668623, 0.0024061640724539757, -0.02074938826262951, 0.02306353487074375, -0.0062531353905797005, 0.04517470300197601, 0.03869374096393585, -0.04248557984828949, -0.028480777516961098, -0.02991189993917942, 0.020354995504021645, 0.032538093626499176, 0.007316519971936941, -0.024505821987986565, -0.0048153577372431755, -0.03299326077103615, -0.014004186727106571, -0.04128706082701683, -0.041931867599487305, 0.051723871380090714, -0.025377703830599785, -0.029358813539147377, 0.027339033782482147, -0.006128865294158459, -0.013893338851630688, -0.0917610377073288, -0.026263466104865074, -0.03109344094991684, 0.043170031160116196, -0.018584804609417915, 0.013696358539164066, 0.008184917271137238, -0.009944651275873184, 0.003579581854864955, 0.03202950581908226, -0.007294662296772003, -0.029547058045864105, -0.0075343819335103035, -0.014416011050343513, -0.010902761481702328, 0.007644678000360727, 0.02863667532801628, -0.03723139315843582, 0.008162579499185085, -0.011693885549902916, -0.05342816188931465, -0.026446761563420296, -0.020953917875885963, -0.0980735570192337, 0.0077903978526592255, 0.07577663660049438, 0.041297152638435364, 0.019709959626197815, -0.03583439439535141, 0.008668819442391396, -0.03088328056037426, -0.01534454058855772, 0.015504966489970684, -0.03938216716051102, -0.04640756919980049, 0.024768292903900146, 0.06521138548851013, 0.00616475660353899, -0.005897897761315107, 0.019497286528348923, 0.012576121836900711, 0.0507035031914711, -0.03159167245030403, 0.0003860221477225423, 0.05469342693686485, -0.08893543481826782, -0.006676584482192993, -0.009885384701192379, 0.047667209059000015, 0.029341166839003563, -0.10865392535924911, 0.0006376787205226719, -0.059409573674201965, 0.06140509620308876, -0.020408302545547485, 0.00031392130767926574, -0.0655347928404808, 0.018879804760217667, 0.006201531738042831, 0.06206665188074112, 0.0018278807401657104, 0.004457317292690277, 0.02629300020635128, 0.04273156076669693, 0.0042993370443582535, 0.0006920411833561957, -0.10561671853065491, -0.00535190524533391, -0.03894374519586563, -0.03533424809575081, -0.0006344346911646426, 0.011607383377850056, 0.0029173230286687613, -0.03876456618309021, 0.011191380210220814, 0.0163392536342144, 0.00032940987148322165, 0.009454363025724888, 0.02343415655195713, 0.02773364819586277, 0.04827701300382614, 0.06650180369615555, 0.06104004383087158, -0.023940416052937508, 0.03074246644973755, 0.05792528763413429, -0.014321409165859222, 0.010089133866131306, -0.031134840101003647, 0.04375450313091278, -0.051535848528146744, 0.04065265133976936, -0.044743612408638, 0.009755854494869709, -0.0371076762676239, -0.05710626766085625, 0.03482266515493393, 0.05701490491628647, -0.04720085859298706, -0.014973395504057407, -0.06138599291443825, 0.04037933424115181, -0.004024607595056295, 0.04085814207792282, -0.0027352403849363327, 0.03504612296819687, 0.03601391240954399, -0.05681927502155304, 0.0641074851155281, 0.018602237105369568, -0.023506710305809975, -0.02915162779390812, -0.027937455102801323, -0.0455431304872036, -0.039348311722278595, 0.006966543383896351, -0.003817311255261302, 0.030491797253489494, 0.009433752857148647, -0.009365644305944443, 0.05029488354921341, 0.0589863546192646, -0.03842053934931755, -0.002334547694772482, -0.0894130989909172, -0.02826061099767685, -0.08216005563735962, -0.03596305474638939, -0.02808411605656147, -0.02473451755940914, -0.024353651329874992, 0.021936213597655296, 0.03281010314822197, -0.03267981484532356, 0.031306277960538864, 0.015953650698065758, 0.0658797174692154, -0.0011565976310521364, 0.005286278668791056, 0.014569680206477642, 0.009669777005910873, -0.028786588460206985, -0.04450223222374916, 0.03496188670396805, -0.03200031444430351, -0.015499953180551529, -0.007275234907865524, -0.03102465160191059, -0.0301071684807539, 0.017538705840706825, -0.0713118314743042, -0.05070948600769043, -0.01653292588889599, -0.04713141918182373, -0.009687663055956364, 0.015448533929884434, -0.007149555254727602, 0.017146242782473564, -0.027179718017578125, -0.00558154471218586, 0.07391589879989624, -0.01780826412141323, -0.012316089123487473, 0.003303145756945014, 0.006243098992854357, 0.01235065795481205, -0.00830591470003128, 0.007238495629280806, 0.012222805991768837, 0.009422299452126026, 0.03342939540743828, -0.02690122462809086, 0.018166575580835342, 0.027239514514803886, 0.017191492021083832, 0.015223110094666481, -0.003653590800240636, -0.03777039423584938, 0.043828435242176056, -0.028517307713627815, 0.020994490012526512, -0.03728524222970009, 0.06555336713790894, 0.013266395777463913, 0.015426920726895332, -0.05068711191415787, 0.004509918391704559, -0.06993524730205536, -0.08104369789361954, 0.03237317502498627, 0.006207128521054983, -0.03361544758081436, 0.03559664636850357, 0.0003077983274124563, -0.0024489304050803185, 0.027015170082449913, -0.0172746442258358, 0.05203082785010338, -0.011811354197561741, 0.005691114347428083, -0.02947777323424816, 0.03682900592684746, 0.03418665751814842, 0.007986574433743954, 0.033630404621362686, -0.037927690893411636, -0.029858872294425964, 0.043320078402757645, -0.02734537608921528, -0.05257801339030266, 0.027377460151910782, 0.008385399356484413, 0.05114307254552841, 0.00785629078745842, -0.05858037993311882, -0.026209581643342972, -0.04334605112671852, 0.015656573697924614, 0.03765096142888069, 0.030357297509908676, -0.018012331798672676, 0.058334026485681534, 0.040274880826473236, 0.008294428698718548, -0.04796149954199791, 0.0023973481729626656, 0.010789885185658932, -0.034667227417230606, 0.01141034159809351, 0.001763980952091515, -7.954399090649581e-33, -0.03450886532664299, -0.045707494020462036, -0.019012082368135452, 0.08060085773468018, 0.0205822866410017, -0.07184840738773346, -0.009065316058695316, -0.01782301813364029, 0.00484696077182889, -0.042099885642528534, -0.006364754866808653, -0.0013034470612183213, 0.03330829367041588, -0.019911764189600945, 0.002723062876611948, 0.0037782674189656973, 0.013379620388150215, -0.000175098713953048, -0.007697011809796095, 0.03678932413458824, -0.038217779248952866, 0.011325026862323284, -0.03269880637526512, 0.01188697200268507, 0.002557317027822137, -0.10471289604902267, 0.019138135015964508, -0.03945036977529526, -0.01575859636068344, 0.0021205381490290165, -0.059597548097372055, -0.007352478336542845, -0.010826082900166512, 0.025867504999041557, 0.01937291957437992, 0.08157776296138763, -0.047699447721242905, -0.0395481251180172, -0.0019146139966323972, -0.017452573403716087, 0.043594859540462494, -0.0377015620470047, -0.037499282509088516, -0.0015066595515236259, 0.0021427180618047714, 0.03122907131910324, 0.05322085693478584, 0.03896988928318024, -0.0503242053091526, 0.057713497430086136, -0.08316902071237564, 0.01722794398665428, -0.014136835932731628, 0.02030664123594761, -0.0035476062912493944, 0.031771428883075714, 0.031103767454624176, -0.08809079974889755, -0.03269407898187637, -0.00013027201930526644, 0.0032442405354231596, 0.009387449361383915, 0.04367409646511078, -0.001050502061843872, -0.027148105204105377, 0.024597471579909325, 0.006771106272935867, 0.07718142867088318, 0.025339391082525253, -0.015362019650638103, 0.004793768282979727, -0.010708088986575603, -0.01591704599559307, -0.043740369379520416, 0.02263621985912323, -0.009027523919939995, -0.028269585222005844, 0.042773280292749405, 0.058826275169849396, 0.056775812059640884, 0.0003098044835496694, 0.0014093033969402313, -0.08111584931612015, -0.010346314869821072, 0.02488425187766552, -0.00385977397672832, -0.035871539264917374, -0.040325410664081573, 0.005428002215921879, -0.002670572604984045, -0.02078096941113472, -0.042425040155649185, -0.04202057048678398, 0.03701339662075043, 0.013679356314241886, 0.014556731097400188, 0.06563699245452881, -0.008976210840046406, -0.029947075992822647, -0.045976266264915466, -0.01363261230289936, -0.04581504315137863, -0.02356754057109356, -0.025672655552625656, 0.043118562549352646, -0.03728610649704933, -0.05774403363466263, 0.02284739539027214, -0.02606079913675785, 0.022427508607506752, -0.023129763081669807, -0.06022656708955765, 0.030725467950105667, 0.05163050442934036, 0.01473791990429163, 0.006737160962074995, 0.014500655233860016, 0.014334661886096, -0.023463472723960876, -0.017545824870467186, -0.06019682437181473, -0.020943256095051765, 0.007486608345061541, -0.01576465554535389, -0.028663378208875656, -0.0014790267450734973, -0.04238186031579971, 0.005123153328895569, 0.07897529751062393, -0.037861909717321396, -0.00834992341697216, -0.0048560756258666515, 3.8094620435913384e-07, 0.006280140485614538, 0.08730614930391312, 0.03385462239384651, -0.026299864053726196, -0.008808612823486328, -0.03726170212030411, -0.024891633540391922, 0.013546504080295563, 0.024945318698883057, -0.012220003642141819, 0.031666070222854614, 0.022877946496009827, 0.027128029614686966, 0.037855468690395355, -0.028995363041758537, -0.12366288155317307, -0.018317151814699173, -0.008937153965234756, -0.03291207551956177, -0.004321175627410412, 0.0429190918803215, 0.038189616054296494, 0.04486338049173355, -0.003230347065255046, -0.029129687696695328, -0.01962527446448803, -0.020070575177669525, -0.05560703203082085, 0.01232059020549059, 0.013825084082782269, 0.0255292821675539, 0.045653268694877625, -0.02713201381266117, -0.03922899067401886, -0.0024388227611780167, -0.044135868549346924, 0.001937233959324658, 0.04494435340166092, 0.034321364015340805, 0.004984305705875158, 0.013085382990539074, -0.006498889531940222, -0.04631546884775162, -0.0270294900983572, 0.04384570196270943, 0.022583898156881332, 0.040026795119047165, 0.10986565798521042, -0.06380051374435425, -0.03532610461115837, 0.017785999923944473, 0.006885917857289314, 0.04267332702875137, 0.02553337998688221, -0.0017613242380321026, -0.0451040156185627, -0.031234268099069595, -0.02154616452753544, 0.011557744815945625, 0.001325762365013361, -0.10124508291482925, -0.03038080595433712, -0.030714308843016624, -0.007791440933942795, 0.0062454515136778355, 0.01968008652329445, -0.039890918880701065, 4.43964471673904e-34, 0.00916703324764967, -0.034766342490911484, 0.029112786054611206, -0.012282051146030426, -0.014984929002821445, 0.0015810264740139246, -0.00745950685814023, 0.0029072724282741547, -0.0008440599194727838, -0.044006336480379105, -0.047472331672906876], "a130bafd-4da5-4b34-8ec6-a49e3f6f5d97": [0.017657745629549026, -0.01403646357357502, -0.039773229509592056, 0.015530990436673164, -0.032421283423900604, 0.008731059730052948, 0.030902301892638206, 0.01589680276811123, 0.01021680049598217, 0.007628931663930416, 0.04112226516008377, 0.033785924315452576, 0.035548996180295944, 0.10930077731609344, -0.008277916349470615, -0.07398989796638489, 0.04948507994413376, -0.019308606162667274, -0.034249767661094666, -0.02181265875697136, 0.04355344921350479, -0.005463012494146824, -0.05407685786485672, -0.004835161380469799, 0.014471912756562233, -0.049714621156454086, -0.004372367635369301, 0.039412856101989746, 0.020938226953148842, 0.02459268644452095, 0.03925415500998497, -0.025276994332671165, -6.285369454417378e-05, 0.0676279217004776, 2.887645678129047e-06, -0.01705906353890896, -0.03126601502299309, 0.045094363391399384, -0.040515899658203125, -0.014466905035078526, 0.03291475772857666, 0.02026781067252159, -0.006577471271157265, 0.04604995995759964, 0.008503682911396027, 0.026829730719327927, 0.0677419900894165, -0.020060217007994652, 0.04341468960046768, 0.01915060169994831, 0.0013089724816381931, 0.06166115030646324, 0.009594116359949112, 0.0024270762223750353, 0.07716904580593109, -0.008912558667361736, -0.028445083647966385, 0.0458143949508667, 0.08509224653244019, -0.026452403515577316, 0.018089234828948975, -0.017751118168234825, 0.013523631729185581, -0.019566960632801056, 0.08719143271446228, 0.087080217897892, -0.046197980642318726, -0.05634747073054314, -0.04511072859168053, 4.35376277891919e-05, 0.08297969400882721, -0.022874146699905396, -0.009954980574548244, 0.04108535125851631, -0.040096405893564224, 0.03705105558037758, -0.03197136148810387, 0.01985798217356205, -0.013755527324974537, -0.007546011358499527, -0.022820865735411644, -0.012672590091824532, -0.029499763622879982, 0.02227872610092163, 0.05446690693497658, 0.04809863120317459, 0.012994850985705853, -0.015321644954383373, 0.005748261697590351, 0.02389085851609707, 0.06717461347579956, 0.005160429514944553, 0.01237411703914404, 0.011929379776120186, -0.01622197963297367, -0.040990475565195084, 0.024058926850557327, 0.01498358603566885, 0.025000130757689476, 0.048866938799619675, 0.03751734644174576, 0.03344535455107689, 0.01770269125699997, 0.02053326740860939, 0.029140934348106384, 0.016543032601475716, -0.0252023134380579, -0.05438404530286789, 0.009833171963691711, 0.038297250866889954, -0.026528045535087585, 0.018661566078662872, -0.019298125058412552, 0.033504668623209, 0.0182249266654253, -0.005115826148539782, 0.016003644093871117, 0.08033275604248047, 0.0040590460412204266, 0.030453719198703766, -0.00017025599663611501, 0.0184025876224041, -0.057647839188575745, 0.0126909539103508, -0.026340657845139503, -0.03305981308221817, -0.03697613999247551, -0.0001240130513906479, -0.0011871408205479383, -0.09112535417079926, -0.02331647276878357, 0.0038722490426152945, -0.015312721952795982, -0.022311028093099594, 0.03011506423354149, 0.033491089940071106, 0.011994759552180767, 0.035370223224163055, 0.03554084151983261, -0.005115119740366936, 0.027150457724928856, -0.04017015919089317, -0.0006431788788177073, -0.00838888343423605, -0.008162882179021835, -0.03538932651281357, 0.04103636369109154, 0.006177299190312624, -0.014755901880562305, 0.00878866109997034, -0.0026859149802476168, 0.04726951941847801, -0.060057781636714935, -0.0164602380245924, 0.0896490067243576, 0.04734358191490173, -0.0011184504255652428, 0.003632791806012392, -0.03861464187502861, 0.03393694758415222, 0.02421129122376442, -0.021697502583265305, 0.0752783864736557, -0.03200387954711914, -0.017423875629901886, -0.01907988265156746, -0.005311105865985155, 0.04886643961071968, 0.00888066366314888, 0.05664048343896866, 0.0018930849619209766, 0.05600700154900551, -0.00929404329508543, 0.022526947781443596, 0.00506963487714529, 0.025683386251330376, -0.008030468598008156, 0.020931540057063103, -0.024664396420121193, 0.03862510994076729, -0.027510594576597214, -0.07671162486076355, -0.01427035965025425, 0.08049795031547546, 0.013192358426749706, 0.005829425062984228, 0.013612541370093822, 0.036910224705934525, -0.02823454700410366, -0.019066166132688522, -0.008013149723410606, -0.0010658380342647433, -0.035244908183813095, 0.026935476809740067, 0.02749505452811718, -0.025937439873814583, -0.027831625193357468, -0.07785960286855698, -0.01600056141614914, -0.03372883051633835, -0.04276822879910469, -0.08174406737089157, 0.006642030086368322, 0.050078246742486954, 0.028801588341593742, -0.039623744785785675, -0.044552844017744064, -0.04071734473109245, 0.012748738750815392, 0.05062234774231911, 0.0753958597779274, -0.0011513493955135345, -0.034656424075365067, -0.038684163242578506, 0.00687306048348546, 0.021744143217802048, -0.02423934079706669, -0.025112096220254898, 0.0082581527531147, 0.05045517534017563, -0.0476875975728035, 0.0035662685986608267, -0.012727731838822365, 0.03413069620728493, 0.018895288929343224, -0.009284528903663158, -0.005404685623943806, -0.010353733785450459, 0.0538213886320591, 0.023667218163609505, -0.02055644616484642, 0.008541959337890148, 0.05085662752389908, 0.03157398849725723, 0.029252871870994568, -0.03973644599318504, 0.0075178504921495914, 0.04731804132461548, 0.04015138000249863, -0.09101651608943939, -0.029954412952065468, 0.06499122083187103, -0.016061076894402504, 0.00932710338383913, 0.02986399456858635, -0.00023991669877432287, 0.07488321512937546, 0.012381713837385178, -0.03916041925549507, -0.01221197098493576, 0.04278877004981041, 0.026667973026633263, -0.007487039547413588, 0.05778001621365547, 0.012019896879792213, -0.022249486297369003, -0.08712184429168701, 0.01173839345574379, -0.055316463112831116, -0.020159929990768433, -0.005473671481013298, -0.02892456389963627, 0.026274660602211952, 0.01616058684885502, 0.011226168833673, -0.045152101665735245, 0.06021576002240181, -0.06848196685314178, 0.007576432079076767, 0.00047614178038202226, -0.0042947991751134396, -0.004575693514198065, -0.007961819879710674, -0.017085550352931023, -0.05505647510290146, 0.04392113909125328, -0.017513906583189964, -0.02836344949901104, -0.03259480372071266, 0.03233249858021736, 0.03118152730166912, 0.005797328893095255, 0.0035879136994481087, -0.014503133483231068, 0.0019595001358538866, 0.029577599838376045, 0.04701043292880058, -0.03565516322851181, -0.019934184849262238, 0.024870023131370544, -0.013295700773596764, -0.02567557990550995, 0.004334410652518272, -0.02670803666114807, -0.015636185184121132, 0.009398844093084335, 0.052122294902801514, 0.051833271980285645, -0.014761473052203655, 0.037152521312236786, 0.002528415061533451, 0.03284391388297081, -0.00874441396445036, 0.014678142964839935, 0.013404794968664646, 0.012401469983160496, 0.07264765352010727, -0.02898426540195942, -0.010149572044610977, -0.010884111747145653, -0.01624823734164238, 0.002122031059116125, -0.008075959980487823, 0.053163159638643265, 0.02037043683230877, 0.0007315828115679324, -0.04510604590177536, -0.01332447212189436, -0.008431336842477322, 0.028306230902671814, -0.017469028010964394, -0.08944977819919586, 0.052667975425720215, -0.01491013914346695, -0.040248725563287735, -0.12872755527496338, -0.07856302708387375, -0.026398446410894394, 0.03483371064066887, -0.05146051198244095, 0.015828968957066536, -0.03213755413889885, -0.010941567830741405, 0.021387159824371338, -0.02815989777445793, -0.03367811441421509, -0.004436561372131109, -0.06859047710895538, -0.0368468314409256, 0.00606348505243659, 0.011688021942973137, -0.006962224841117859, -0.02999907173216343, 0.02965347282588482, -0.028176985681056976, -0.05641457438468933, -0.03983224555850029, -0.02294725365936756, -0.037005044519901276, -0.009069805964827538, 0.06479272991418839, 0.04288338124752045, 0.006119300611317158, -0.045146554708480835, 0.038481466472148895, -0.03511704131960869, -0.01691974140703678, -0.0009872742230072618, -0.028823070228099823, 0.011177933774888515, 0.003811541246250272, 0.03351537510752678, 0.04134286195039749, -0.021166399121284485, -0.02964811399579048, -0.01185786072164774, 0.05209125950932503, -0.07085875421762466, 0.008190326392650604, 0.05648370459675789, -0.025186926126480103, -0.015827372670173645, -0.04517195746302605, 0.008294935338199139, 0.029964784160256386, -0.07546865195035934, -0.014226840808987617, -0.059050701558589935, 0.050051648169755936, 0.003303563455119729, 0.024020113050937653, -0.08972267806529999, 0.04770585894584656, -0.0047683510929346085, 0.04545746371150017, -0.03574114292860031, -0.01749865524470806, -0.004678204655647278, 0.015647301450371742, 0.04661812260746956, -0.01635882630944252, -0.08463043719530106, -0.07457117736339569, -0.05154024437069893, 0.010600087232887745, -0.0036272399593144655, 0.032061003148555756, -0.0036642453633248806, -0.004311859607696533, 0.03210749477148056, 0.03486858680844307, -0.056907664984464645, -0.0033205344807356596, 0.014531061984598637, 0.008443057537078857, 0.06946898251771927, 0.06694825738668442, 0.029011046513915062, -0.04956883564591408, -0.002060838043689728, 0.03743722289800644, 0.016350744292140007, 0.0075464011169970036, -0.024062130600214005, 0.03335517272353172, -0.02730974555015564, 0.006826505064964294, -0.030473504215478897, 0.05240212753415108, -0.06294407695531845, -0.030405724421143532, 0.024708520621061325, 0.07162119448184967, -0.067181795835495, -0.030424408614635468, -0.05369752272963524, 0.04300336912274361, 0.03639233484864235, 0.06501349061727524, -0.01836284063756466, 0.010095812380313873, 0.0135832279920578, -0.02467990852892399, 0.06655670702457428, -0.023371165618300438, -0.012020690366625786, -0.0664949044585228, 0.02644926682114601, -0.013658096082508564, -0.026786601170897484, 0.005438713356852531, 0.03833584487438202, -0.0011973970104008913, -0.012376817874610424, -0.012048866599798203, -0.004023127723485231, 0.06720151007175446, -0.07877696305513382, 0.0358760841190815, -0.03941313177347183, 0.01004162710160017, -0.05244216322898865, -0.043649930506944656, -0.041052524000406265, -0.042842332273721695, -0.04664785787463188, -0.03699759766459465, 0.011753441765904427, 0.0022032163105905056, 0.06304847449064255, 0.05782704055309296, 0.04575416445732117, 0.00410918053239584, 0.0035225527826696634, 0.02837400883436203, 0.014433909207582474, -0.02380404621362686, -0.04169251769781113, 0.004982211161404848, -0.035953521728515625, -0.002220484195277095, -0.007288290653377771, -0.05093971639871597, -0.001104484312236309, 0.003497698809951544, -0.03559176251292229, -0.03821663558483124, 0.01174233015626669, -0.052397292107343674, -0.0053578587248921394, 0.028029490262269974, 0.013415256515145302, 0.0008161019650287926, -0.02011668123304844, -0.0018293845932930708, 0.0376250259578228, 0.07216550409793854, 0.012859036214649677, -0.008235315792262554, -0.03697416931390762, -0.012647095136344433, -0.01807839423418045, -0.00911722332239151, 0.013460712507367134, -0.03296207636594772, 0.00998024083673954, -0.02084372006356716, 0.05859865993261337, 0.026059210300445557, 0.07510627061128616, 0.03413859009742737, 0.0018242894439026713, -0.019221674650907516, 0.0033451940398663282, -0.03953246399760246, 0.05485012009739876, -0.03248882666230202, 0.053830165416002274, 0.0033472254872322083, -0.005104956682771444, 0.014425366185605526, 0.011736052110791206, -0.03709341585636139, -0.1388230323791504, 0.014224126935005188, 0.012876600958406925, -0.03374061360955238, 0.09504379332065582, -0.05692704766988754, -0.024101417511701584, 0.02780795469880104, -0.01813533902168274, 0.047706227749586105, -0.0049924165941774845, 0.02896922640502453, 0.016407273709774017, 0.007459111511707306, -0.037459153681993484, 0.009005410596728325, 0.016567617654800415, -0.08965790271759033, 0.0031187296845018864, 0.04832523688673973, -0.0002080616686725989, -0.04170161485671997, 0.009659533388912678, -0.0232786163687706, 0.022874172776937485, 0.016958337277173996, -0.038599997758865356, -0.010352975688874722, -0.03889841213822365, 0.00681218970566988, 0.011535647325217724, -0.010249540209770203, -0.01665184088051319, 0.05084824562072754, 0.02240065298974514, 0.00011238652950851247, 0.009186468087136745, 0.009541070088744164, 0.0008653051336295903, -0.009889807552099228, -0.005036537069827318, 0.030807843431830406, -7.436902396379454e-33, 0.01999499835073948, -0.021508142352104187, 0.0014743927167728543, 0.026219412684440613, -0.012413926422595978, -0.024334177374839783, -0.008114155381917953, -0.0031339572742581367, -0.03162930905818939, -0.011913733556866646, -0.010986893437802792, 0.047310829162597656, 0.03470665588974953, -0.008972102776169777, 0.004950159229338169, 0.02040024846792221, 0.012247203849256039, 0.014094633981585503, 0.011269018985331059, 0.05550895258784294, -0.07237781584262848, 0.0267697274684906, -0.013621353544294834, -0.020234916359186172, 0.04959454387426376, -0.021811896935105324, 0.01862245239317417, -0.012492049485445023, 0.012882237322628498, -0.015892961993813515, -0.02253841981291771, 0.02808786928653717, -0.018188973888754845, -0.02597656659781933, 0.008859226480126381, 0.08014320582151413, -0.06216152757406235, -0.02066548727452755, 0.0009195248130708933, -0.03036658652126789, 0.013128799386322498, -0.08038154989480972, -0.023471631109714508, -0.006542880088090897, 0.009187404066324234, 0.009241514839231968, 0.0471041314303875, 0.02651822380721569, -0.02040916681289673, 0.0007134999032132328, -0.034026455134153366, 0.018833106383681297, -0.057303763926029205, 0.0367150641977787, -0.002172931795939803, 0.009099366143345833, 0.0032351596746593714, -0.03135911375284195, -0.028946537524461746, 0.05277157947421074, -0.04301317036151886, -0.020258305594325066, 0.02891441620886326, -0.05937066301703453, -0.012431285344064236, -0.01172045897692442, -0.03201235085725784, 0.029196148738265038, 0.031202323734760284, -0.004894603509455919, -0.023264039307832718, 0.02236136794090271, -0.002819271292537451, -0.02658957429230213, 0.02136405184864998, -0.01096009649336338, -0.0217701755464077, 0.022277317941188812, 0.09764989465475082, 0.027359280735254288, 0.013920306228101254, -0.02146609127521515, -0.06940320879220963, -0.00046337058302015066, 0.01627960242331028, 0.02385813370347023, -0.032034631818532944, -0.034928496927022934, -0.02449965849518776, -0.0075123729184269905, -0.030293049290776253, 0.003700767643749714, -0.01714375987648964, 0.0028388111386448145, 0.06955496966838837, -0.034942131489515305, 0.03164438158273697, 0.007952101528644562, 0.01530405692756176, 0.00739691685885191, -0.02618715539574623, -0.014930392615497112, -0.0242490042001009, 0.012000677175819874, 0.07606452703475952, -0.029191989451646805, -0.03455660864710808, 0.015773765742778778, -0.03703197091817856, 0.022293688729405403, -0.014526224695146084, 0.018207436427474022, 0.004935052245855331, 0.05445175990462303, -0.01643531769514084, 0.03724386915564537, 0.016982680186629295, 0.04275175556540489, -0.045917097479104996, -0.003912573214620352, -0.03341745212674141, 0.014541304670274258, -0.039738401770591736, -0.017135651782155037, -0.04882902652025223, -0.0076929498463869095, -0.0428384467959404, 0.03192074969410896, 0.05453944578766823, -0.006291584577411413, -0.01383762713521719, -0.0028480805922299623, 3.539189208368043e-07, -0.00710340216755867, 0.09498690813779831, 0.02451489306986332, -0.02269597537815571, -0.01971251890063286, -0.052540525794029236, -0.029452381655573845, 0.017676062881946564, -0.012014415115118027, 0.03578264266252518, 0.001947887591086328, 0.006306454073637724, 0.05127234756946564, -0.001036743982695043, -0.03285052627325058, -0.18620817363262177, -0.08314726501703262, 0.01091971155256033, -0.04224885255098343, 0.013875667005777359, -0.006515955552458763, 0.07483139634132385, 0.026727797463536263, -0.013395261019468307, -0.004648355767130852, -0.01168847270309925, -0.03463840112090111, -0.049016520380973816, 0.05732136219739914, 0.05453873053193092, -0.027049392461776733, 0.027993036434054375, -0.01961291767656803, -0.00780391925945878, 0.006082305684685707, -0.0666046142578125, -0.04186396300792694, 0.036790601909160614, 0.037797924131155014, 0.0015759126981720328, 0.0004942985251545906, 0.01628873310983181, -0.00516156293451786, -0.03630991652607918, 0.03799095377326012, 0.016874093562364578, -0.01807432994246483, 0.008501709438860416, -0.03541712090373039, -0.024098480120301247, 0.029073446989059448, -0.01622961275279522, 0.03192099928855896, 0.00970267690718174, 0.009800138883292675, -0.037258218973875046, -0.046769797801971436, -0.033610716462135315, 0.03288061544299126, -0.012878838926553726, -0.07609999179840088, -0.0643954649567604, -0.03163681551814079, -0.0353730209171772, 0.030879754573106766, -0.01770920865237713, 0.0045753223821520805, 3.7041066773608412e-34, -0.0031897667795419693, -0.027622053399682045, -0.008530393242835999, 0.03745707497000694, -0.019102774560451508, -0.01002851314842701, 0.00603762362152338, -0.044325049966573715, -0.01562914066016674, 0.00786033645272255, -0.01693199947476387], "4a91eaf3-2fa4-4374-a2aa-f9bc3cd25988": [-0.010763137601315975, -0.00622879434376955, -0.01802375353872776, 0.056193336844444275, -0.06497744470834732, -0.009313391521573067, 0.04338471591472626, 0.036252427846193314, 0.021525118499994278, -0.005859721917659044, 0.018416471779346466, 0.015174968168139458, 0.012168977409601212, 0.07354658097028732, -0.04263419657945633, -0.03484019264578819, 0.01381212193518877, -0.005135012790560722, -0.056301482021808624, -0.026861093938350677, 0.06221390515565872, 0.008521410636603832, -0.05060003325343132, -0.05461127683520317, 0.016417132690548897, -0.01993701606988907, -0.029280470684170723, 0.006624769419431686, 0.03480394929647446, 0.01835021935403347, 0.0033980486914515495, 0.019474435597658157, 0.0022483202628791332, 0.059120193123817444, 2.7650216907204594e-06, -0.006803452502936125, -0.023564355447888374, 0.0286269411444664, -0.05620972439646721, 0.006963539402931929, -0.045476432889699936, 0.025436757132411003, -0.05840202048420906, 0.007880250923335552, 0.005162842571735382, 0.047917649149894714, 0.018966631963849068, 0.03190615773200989, 0.038167595863342285, 0.039762433618307114, 0.013244936242699623, 0.05112580582499504, 0.03383202478289604, -0.028798624873161316, 0.12892554700374603, -0.026443080976605415, -0.018751608207821846, 0.06660668551921844, 0.019649125635623932, -0.027292169630527496, 0.03728407993912697, -0.033472690731287, -0.018307076767086983, -0.022755121812224388, 0.036518920212984085, 0.046644482761621475, -0.05369052290916443, -0.07706785202026367, -0.00014254916459321976, 0.005857836455106735, 0.12732253968715668, -0.02347712032496929, -0.0028185665141791105, 0.03681226819753647, -0.016962584108114243, 0.06296485662460327, -0.012520242482423782, 0.006942750420421362, -0.016555296257138252, 0.035228751599788666, 0.0016721653519198298, -0.011812329292297363, -0.027264710515737534, -0.011127687059342861, 0.05192851275205612, -0.014314096421003342, 0.013428830541670322, -0.035065095871686935, -0.034430235624313354, -0.004689248278737068, -0.0012529196683317423, 0.007980053313076496, -0.0014624608447775245, -0.020747557282447815, 0.025146659463644028, -0.0465904101729393, 0.016305329278111458, -0.021781615912914276, 0.009423773735761642, 0.07043975591659546, 0.021279653534293175, 0.04260442033410072, 0.012457489036023617, 0.021268608048558235, 0.01234857365489006, 0.04208764806389809, 0.05561583861708641, -0.040121108293533325, 0.006215287372469902, 0.09019917249679565, -0.012784908525645733, 0.012952042743563652, -0.04174114391207695, -0.01767079345881939, -0.03264050930738449, -0.016519762575626373, 0.004520200192928314, 0.036128029227256775, -0.0023157985415309668, 0.029091522097587585, 0.05030422657728195, 0.035417474806308746, -0.0673234760761261, -0.006630493327975273, -0.043680500239133835, -0.04126010090112686, 0.0054678479209542274, -0.026469724252820015, 0.003242658916860819, -0.06607866287231445, -0.027334783226251602, 0.02521066553890705, -0.0010071030119434, -0.006976348347961903, -0.017985250800848007, 0.029837829992175102, -0.012727577239274979, -0.0044613429345190525, -0.005139464046806097, -0.007301226258277893, 0.02844546176493168, 0.01051222626119852, -0.0025620730593800545, 0.007944558747112751, 0.023623516783118248, -0.06142149865627289, 0.02827473357319832, -0.03838389739394188, -0.0049769519828259945, 0.01285146176815033, -0.01124766655266285, 0.05321386456489563, -0.03868803381919861, -0.01490181777626276, 0.07169220596551895, -0.0034989817067980766, -0.02107098139822483, -0.0078566400334239, -0.027709713205695152, 0.03702796623110771, 0.02079472690820694, -0.003749814350157976, 0.09195571392774582, -0.010293631814420223, 0.02090640552341938, -0.026359133422374725, 0.011717477813363075, 0.006122891791164875, -0.015293133445084095, 0.0697435513138771, 0.02742316573858261, 0.05846475064754486, -0.005122884176671505, 0.002126120962202549, -0.034418556839227676, 0.08315081894397736, 0.03652298077940941, -0.032228983938694, -0.00150872184894979, 0.013569644652307034, -0.07076858729124069, -0.09078454226255417, -0.03099779412150383, -0.013026537373661995, 0.002074866322800517, -0.016667228192090988, 0.01928853429853916, -0.01593705266714096, -0.010467679239809513, 0.0058320192620158195, 0.012382885441184044, -0.008919096551835537, 0.00031501470948569477, -0.017629502341151237, 0.021228238940238953, 0.0004695472598541528, 0.016144869849085808, -0.040698420256376266, 0.0003699090448208153, 0.016596361994743347, -0.021384915336966515, -0.08103592693805695, 0.011947519145905972, 0.038093846291303635, 0.009956232272088528, -0.018092365935444832, 0.0030965683981776237, 0.026111893355846405, 0.05168939009308815, 0.04682837054133415, 0.049136869609355927, -0.009914839640259743, -0.0513208843767643, -0.021179702132940292, 0.00032117715454660356, 0.04734434187412262, -0.015688935294747353, 0.001104721101000905, -0.006160722579807043, 0.03326750919222832, -0.01555174496024847, -0.044909942895174026, 0.008241718634963036, 0.035161010921001434, -0.03659640625119209, -0.04099137336015701, -0.05665498226881027, 0.004154228139668703, 0.07652027904987335, -0.00727625098079443, -0.017120415344834328, 0.012106797657907009, 0.058485034853219986, 0.03113551251590252, 0.02607377991080284, -0.04079267382621765, 0.020203443244099617, -0.015399061143398285, 0.05726267024874687, -0.056445006281137466, 0.016628487035632133, 0.06386418640613556, -0.01236822921782732, 0.0111019816249609, 0.048072587698698044, 0.017129607498645782, 0.09590999037027359, -0.006640011444687843, -0.016901861876249313, 0.039881810545921326, 0.01980441063642502, 0.000131187989609316, 0.023849330842494965, 0.02210192382335663, 0.002755243331193924, -0.00807082187384367, -0.061632756143808365, -0.011895169503986835, -0.09779181331396103, 0.002386398147791624, 0.0012218948686495423, -0.017004892230033875, 0.008403143845498562, -0.013894365169107914, 0.013566120527684689, -0.020273318514227867, -0.0028187381103634834, -0.006581585388630629, -0.0017432509921491146, 0.005189808085560799, 0.01638629287481308, -0.022622140124440193, 0.015465964563190937, -0.030896779149770737, 0.0009233459713868797, 0.008228959515690804, -0.05795399099588394, -0.014984981156885624, -0.02616863138973713, -0.013543904758989811, -0.010515035130083561, -0.0036200766917318106, 0.016050171107053757, -0.0068826209753751755, 0.02389954961836338, -0.004409991670399904, 0.02249232679605484, -0.04252580925822258, -0.03834247589111328, 1.6338897694367915e-05, -0.013365787453949451, -0.019879227504134178, 0.0077406270429492, -0.04677526280283928, -0.02851388044655323, 0.00570500735193491, 0.05536891520023346, 0.04748459905385971, -0.009111152030527592, 0.08427654206752777, -0.020111728459596634, 0.034502577036619186, -0.05837763100862503, -0.01356111466884613, 0.03263062238693237, 0.04336521402001381, 0.07417840510606766, -0.05647061765193939, -0.023575589060783386, -0.00926043838262558, 0.014653775840997696, 0.02505604922771454, -0.018700670450925827, 0.0115696731954813, 0.017898978665471077, -0.015848757699131966, 0.003984850365668535, -0.054245978593826294, -0.03167681768536568, 0.028259173035621643, -0.032171666622161865, -0.0392838679254055, 0.0151127390563488, -0.02037033438682556, -0.034170184284448624, -0.09130799025297165, -0.023610036820173264, -0.014838099479675293, 0.023768911138176918, -0.006724330130964518, -0.005689726676791906, 0.018169397488236427, -0.027922989800572395, 0.046613991260528564, -0.018161987885832787, -0.05116664618253708, 0.010375089012086391, -0.10508517920970917, -0.0062824878841638565, -0.003922778181731701, -0.01620745286345482, 0.005491795018315315, -0.015046941116452217, 0.012000946328043938, -0.039314210414886475, -0.04280756041407585, -0.0322781465947628, -0.01304639969021082, -0.04431664198637009, 0.000716940441634506, 0.02589753456413746, 0.03197980672121048, -0.001657199114561081, -0.02049798145890236, 0.015821892768144608, -0.0018518457654863596, -0.00862845592200756, 0.057353973388671875, -0.024559685960412025, 0.01399120781570673, 0.021011795848608017, 0.03944092243909836, 0.03339055925607681, -0.0011925076832994819, -0.03287864103913307, 0.0013556071789935231, 0.01717512309551239, -0.014535335823893547, 0.026899125427007675, 0.044104330241680145, -0.05136178806424141, 0.012827814556658268, -0.01963331550359726, 0.01754460483789444, 0.00949297659099102, -0.08485819399356842, -0.01468187477439642, -0.06721228361129761, 0.09380745887756348, -0.057997506111860275, -0.02454901672899723, -0.09033273905515671, 0.011655223555862904, 0.024214861914515495, 0.06834608316421509, 0.010835926979780197, -0.02435947023332119, 0.023006698116660118, 0.06515272706747055, 0.021846748888492584, -0.006255274172872305, -0.06519370526075363, -0.03450256958603859, -0.023632176220417023, -0.017776845023036003, -0.0270853154361248, 0.041130270808935165, -0.018135985359549522, 0.0012759153032675385, 0.017864147201180458, 0.035231661051511765, -0.049162235110998154, -0.016276344656944275, 0.02700936794281006, 0.009318875148892403, 0.09260761737823486, 0.08425410091876984, 0.019643843173980713, 0.013107973150908947, 0.003381188027560711, 0.10831976681947708, -0.016808759421110153, 0.006373506039381027, -0.011938711628317833, 0.0293355081230402, -0.04247251898050308, 0.023484092205762863, -0.036775536835193634, 0.06745946407318115, -0.06371717900037766, -0.05893626809120178, 0.004802807234227657, 0.09679920971393585, -0.03151712566614151, -0.02333665080368519, -0.03692498058080673, 0.06289946287870407, 0.008001570589840412, 0.054801758378744125, -0.008066638372838497, 0.028043190017342567, 0.06904903799295425, -0.04671600088477135, 0.06855466216802597, -0.050582289695739746, -0.014467675238847733, -0.04815434664487839, 0.02396947145462036, -0.02021152898669243, -0.03550143167376518, -0.010597233660519123, 0.0028250033501535654, 0.03135031834244728, -0.020868806168437004, -0.028096908703446388, 0.004290919750928879, 0.05953009054064751, -0.007266109809279442, 0.06554462015628815, -0.06574036926031113, -0.018569812178611755, -0.09984976053237915, -0.046426497399806976, -0.05668521299958229, -0.036960721015930176, -0.02647092193365097, -0.0019722599536180496, -0.01769065484404564, -0.008437631651759148, 0.07312693446874619, -0.021958263590931892, 0.04651716351509094, 0.01737835258245468, 0.00757391145452857, 0.041976965963840485, 0.013166285119950771, -0.06366140395402908, -0.05082569643855095, 0.025987690314650536, -0.03836418315768242, 0.012571402825415134, 0.00016122758097480983, -0.001990862423554063, 0.02573792077600956, 0.050692059099674225, -0.028752584010362625, -0.02499597705900669, -0.03685734048485756, 0.008316366001963615, -0.004086602944880724, 0.036424171179533005, -0.03146285191178322, 0.02404163032770157, -0.02915634773671627, -0.01423124223947525, 0.05426616594195366, 0.032484281808137894, -0.016115907579660416, -0.030019504949450493, -0.007828129455447197, 0.0028824524488300085, -0.07370859384536743, -0.02502329647541046, 0.005663431249558926, -0.0105186328291893, 0.0073398323729634285, -0.0065637510269880295, 0.0037134638987481594, 0.07770808786153793, 0.03321889415383339, 0.04214641824364662, -0.009746204130351543, 0.026947656646370888, 0.0026296721771359444, -0.09245079010725021, 0.02389758639037609, -0.042570848017930984, 0.008207947015762329, 0.023807000368833542, -0.004365297965705395, -0.0271404217928648, -0.00565560394898057, -0.028093978762626648, -0.051951199769973755, 0.037396613508462906, -0.024233553558588028, -0.00807977095246315, 0.07388180494308472, -0.03267214074730873, -0.013249492272734642, 0.02724273130297661, -0.030947847291827202, 0.08300449699163437, -0.001862062606960535, 0.00783591065555811, -0.022720588371157646, 0.024455366656184196, 0.016756189987063408, 0.022500809282064438, -0.0012381101259961724, -0.0450444296002388, -0.0006210373248904943, 0.06500700861215591, -0.018954556435346603, -0.06417063623666763, -0.012479440309107304, -0.025281306356191635, 0.02566334791481495, 0.01923968829214573, -0.05404705926775932, 0.02506929822266102, -0.011693847365677357, 0.0007979278452694416, 0.03785980865359306, -0.01662621647119522, 0.025305531919002533, 0.02600124292075634, 0.031009061262011528, -0.026776067912578583, -0.01494333241134882, 0.021131400018930435, 0.005122797563672066, 0.02485525794327259, -0.0012868737103417516, 0.02154437080025673, -6.835806747930754e-33, -0.018895935267210007, -0.01486502680927515, -0.009712583385407925, 0.05713246390223503, -0.018381165340542793, -0.0037483847700059414, 0.006003543734550476, -0.00639335485175252, -0.005806521512567997, 0.004607772920280695, 0.01400825846940279, 0.0070582288317382336, 0.026098204776644707, -0.010192644782364368, 0.025082910433411598, 0.025992415845394135, -0.01727750524878502, -0.033709291368722916, 0.010642807930707932, 0.006557305809110403, -0.03236968442797661, 0.027248447760939598, -0.025321785360574722, 0.03932459279894829, 0.023452607914805412, -0.03976532071828842, 0.01607118546962738, 0.006201157346367836, 0.03675920143723488, -0.0033466892782598734, -0.03557460755109787, -0.0003528957022354007, -0.0017063840059563518, 0.019964827224612236, 0.01932387426495552, 0.07256156951189041, -0.044481467455625534, -0.011737248860299587, -0.024397732689976692, -0.031089290976524353, 0.05380641296505928, -0.05123969167470932, -0.024314500391483307, -0.033683497458696365, 0.0044676316902041435, 0.04485832154750824, 0.03427230566740036, 0.04545576125383377, -0.04874705523252487, 0.0516827329993248, -0.05870926007628441, 0.027227047830820084, -0.045985277742147446, -0.0049159643240273, -0.010355383157730103, -0.046510931104421616, 0.03911767154932022, -0.07704555988311768, -0.04106556624174118, -0.002239020075649023, -0.04830649867653847, -0.022189510986208916, -0.007202541921287775, -0.044842395931482315, -0.047708142548799515, 0.004828033968806267, -0.042905911803245544, 0.05609426647424698, 0.0319797545671463, 0.00195815390907228, -0.038233742117881775, -0.028732052072882652, -0.036058809608221054, -0.030566133558750153, 0.027400420978665352, 0.030013587325811386, -0.009996997192502022, 0.036363087594509125, 0.09003790467977524, 0.0751902237534523, 0.03404417634010315, -0.025315700098872185, -0.04962310567498207, -0.006947225891053677, 0.021979019045829773, 0.04572519659996033, -0.03012808784842491, -0.04741692915558815, -0.03324812278151512, 0.01374797709286213, 0.0029506338760256767, -0.018816189840435982, -0.010463828220963478, 0.024164726957678795, 0.020464660599827766, -0.013457191176712513, 0.0630287304520607, 0.0039896052330732346, -0.03058420680463314, -0.04266535863280296, -0.014818218536674976, -0.02770042046904564, 0.002742915181443095, -0.009703567251563072, 0.07422017306089401, -0.036600399762392044, -0.007200814783573151, 0.009971416555345058, 0.00785925891250372, 0.025966964662075043, -0.02653917297720909, -0.02862974815070629, 0.014966997317969799, 0.06983668357133865, 0.004773437045514584, 0.030439622700214386, 0.009836580604314804, -0.018819434568285942, -0.016862228512763977, -0.03131599724292755, -0.03509899228811264, 0.025601854547858238, 0.020668290555477142, -0.013153397478163242, -0.07788150012493134, -7.96108361100778e-05, -0.05267427861690521, 0.016349421814084053, 0.08855663239955902, 0.018294094130396843, 0.012675348669290543, -0.04417171701788902, 3.293886834399018e-07, -0.014877093955874443, 0.05425699055194855, 0.012747107073664665, -0.02809533104300499, -0.015211967751383781, -0.09106943011283875, -0.05956359952688217, 0.01776275783777237, -0.0013497406616806984, 0.03733333200216293, 0.0033988095819950104, 0.008096008561551571, 0.05011787265539169, -0.007753591053187847, -0.053101684898138046, -0.13857445120811462, -0.054636400192976, 0.05285221338272095, -0.015219101682305336, 0.03128219023346901, -0.03768928721547127, 0.060158707201480865, 0.03312010318040848, -0.00099795195274055, -0.012958643957972527, -0.01227209996432066, -0.030788589268922806, -0.05452324077486992, 0.019586531445384026, 0.029945001006126404, 0.006346296984702349, 0.004777709022164345, -0.025554386898875237, -0.021192630752921104, -0.0040246956050395966, -0.032094620168209076, -0.04438631609082222, 0.019713135436177254, 0.01048224326223135, -0.0035630199126899242, -0.004387090913951397, 0.00798279233276844, -0.02317713014781475, 0.035727426409721375, 0.04405496269464493, 0.027941077947616577, 0.01937146857380867, 0.060940779745578766, -0.040565427392721176, -0.03939485549926758, 0.013748995028436184, 0.0296486746519804, 0.038948290050029755, 0.010379753075540066, 0.019748272374272346, -0.04477739706635475, -0.024697240442037582, -0.03174561262130737, 0.020878661423921585, -0.05085877329111099, -0.09675668179988861, -0.033553022891283035, -0.0164899080991745, -0.054724033921957016, 0.008687689900398254, -0.014668429270386696, -0.0073983981274068356, 3.5203461454361048e-34, -0.0018341883551329374, 0.01821266859769821, 0.0018795599462464452, 0.050017762929201126, 0.01283386442810297, -0.024050584062933922, 0.040450938045978546, -0.009425540454685688, -0.013981418684124947, -0.028707895427942276, -0.007632064633071423], "8e3d6776-d318-4d99-bd67-b95466d95eb5": [0.05295291915535927, 0.01675470732152462, -0.02455994114279747, 0.06165566295385361, -0.029262736439704895, -0.012583970092236996, 0.031048212200403214, 0.013551780954003334, -0.03617507219314575, -0.0051569463685154915, -0.023710792884230614, 0.023632152006030083, -0.016553236171603203, 0.10213892161846161, -0.009869911707937717, -0.0806376039981842, 0.02132192812860012, 0.008813884109258652, -0.02446163073182106, 0.011806770227849483, 0.049538251012563705, -0.009667469188570976, -0.04808567091822624, -0.030009755864739418, 0.03700166568160057, -0.014139818027615547, -0.010476434603333473, -0.018199056386947632, -0.010868094861507416, -0.00668681925162673, -0.021440744400024414, 0.03672146424651146, -0.010020045563578606, -0.021476436406373978, 2.6608333882904844e-06, -0.010189120657742023, -0.010388880036771297, -0.03941171616315842, -0.038723960518836975, 0.021951984614133835, 0.015946997329592705, 0.07069335132837296, 0.007373012602329254, 0.053976718336343765, -0.006610001903027296, -0.025802958756685257, -0.03503630310297012, 0.09702470153570175, 0.0013929586857557297, 0.03524982929229736, 0.018293779343366623, 0.023777220398187637, -0.0016947550466284156, -0.022633295506238937, 0.09894436597824097, 0.010763822123408318, -0.05955534800887108, 0.05902757868170738, 0.010835875757038593, -0.01138843409717083, 0.020003950223326683, 0.015798324719071388, -0.048932719975709915, -0.04822586476802826, 0.0977884978055954, 0.020601265132427216, -0.06894023716449738, -0.08586622774600983, 0.0012431840877979994, 0.03085954114794731, 0.12641772627830505, -0.014674304984509945, 0.027678992599248886, 0.021753625944256783, -0.005243910942226648, 0.07002149522304535, -0.069939985871315, 0.02435287833213806, 0.0006400863057933748, -0.0051441011019051075, -0.006993867456912994, 0.008009548299014568, -0.006278374698013067, -0.010685926303267479, 0.13461005687713623, 0.03505047783255577, 0.011610369198024273, 0.0034782560542225838, -0.0061190249398350716, -0.04261879622936249, 0.049313537776470184, -0.044972918927669525, 0.0395798422396183, 0.02301754802465439, 0.03531905636191368, -0.009380807168781757, 0.04372444748878479, -0.015471874736249447, 0.007105155382305384, -0.01674172841012478, -0.028563885018229485, 0.00814928486943245, 0.0260916817933321, -0.004574810154736042, 0.018863476812839508, -0.03406595438718796, 0.04343044385313988, -0.016394250094890594, -0.017480360344052315, 0.08275525271892548, 0.0386393740773201, 0.0394560806453228, -0.022255783900618553, 0.02729460597038269, -0.06515370309352875, -0.04913809150457382, -0.00431367801502347, 0.0189339742064476, 0.013493115082383156, 0.03164450451731682, -0.02677289955317974, 0.03271976485848427, -0.010336293838918209, 0.006783260963857174, 0.02332315407693386, 0.0034063474740833044, 0.017628822475671768, -0.03616897761821747, 0.016793256625533104, -0.010765629820525646, -0.00959596037864685, -0.0011294768191874027, -0.010788066312670708, 0.04189680889248848, 0.0016066962853074074, 0.13967877626419067, -0.038361579179763794, -0.010824939236044884, 0.015624023973941803, -0.00976570975035429, 0.013964490965008736, 0.02696346305310726, -0.028499161824584007, -0.02113547921180725, 0.0048489621840417385, -0.005078782793134451, 0.009057690389454365, 0.0058120787143707275, 0.02917870134115219, 0.021875090897083282, 0.010796552523970604, 0.019189314916729927, -0.022858235985040665, 0.03474165126681328, 0.07804582267999649, 0.0733032077550888, -0.01582138054072857, -0.014813928864896297, 0.011367681436240673, 0.02500392124056816, 0.04995448887348175, 0.012554758228361607, 0.040369000285863876, 0.02440689317882061, 0.0002536482352297753, -0.0010084464447572827, 0.0932595506310463, -0.026897555217146873, 0.04222497716546059, 0.006561910733580589, -0.06364958733320236, 0.007540704682469368, -0.03103775531053543, 0.04692254960536957, 0.002401091158390045, 0.03966662660241127, 0.03929325193166733, 0.06540422141551971, -0.07190796732902527, 0.010904151014983654, 0.017411835491657257, -0.05490945279598236, 0.002830647397786379, 0.012427840381860733, -0.07377271354198456, -0.023385120555758476, 0.03084508888423443, -0.0332401767373085, -0.010574803687632084, 0.0005763975204899907, -0.019988195970654488, 0.01351142581552267, 0.04169142618775368, -0.011265264824032784, -0.033071815967559814, 0.0028608848806470633, -0.05258069559931755, 0.01915903389453888, -0.007369701750576496, -0.05466725677251816, 0.013032825663685799, 0.0357394702732563, 0.00557677261531353, 0.0288081057369709, 0.04240390658378601, 0.025952812284231186, -0.04675081744790077, -0.005030080210417509, 0.013377738185226917, 0.04838736355304718, 0.09653088450431824, -0.012809435836970806, -0.03891647607088089, -0.01799960993230343, -0.020433124154806137, -0.06272755563259125, -0.007797952275723219, -0.015294159762561321, -0.023065879940986633, 0.02582048624753952, 0.029943272471427917, -0.031604912132024765, -0.03262881189584732, 0.006447791121900082, -0.037353791296482086, -0.009897361509501934, -0.03239534795284271, -0.023551922291517258, 0.0483289435505867, 0.01619790308177471, -0.014202142134308815, 0.0032643338199704885, 0.02894158475100994, -0.00826483964920044, 0.01350585650652647, 0.045493464916944504, -0.032774198800325394, 0.020269375294446945, 0.01928117126226425, -0.07531903684139252, 0.005742830689996481, 0.033087775111198425, 0.023373598232865334, 0.007246631663292646, 0.04866114631295204, 0.012051848694682121, -0.02001865766942501, 0.02206207625567913, 0.020317815244197845, 0.031167149543762207, -0.02025628834962845, 0.03862534463405609, -0.005478736478835344, 0.03963891789317131, 0.003577795810997486, 0.050370123237371445, -0.023670503869652748, 0.027075890451669693, -0.08320952951908112, 0.03925497084856033, 0.014215603470802307, -0.023149332031607628, -0.0017293158452957869, 0.008613851852715015, 0.03543534129858017, -0.022252706810832024, 0.025842783972620964, -0.08211666345596313, -0.024479351937770844, -0.004823737777769566, 0.012165224179625511, 0.01073632761836052, 0.03762859106063843, -0.029214194044470787, 0.03442835435271263, -0.05198841914534569, 0.00530117517337203, 0.055371012538671494, -0.05240701138973236, -0.007879365235567093, 0.02649841643869877, -0.011689797975122929, -0.04513905569911003, 0.02510739304125309, -0.006389315240085125, 0.026930470019578934, 0.01777624525129795, -0.07636667042970657, -0.037690579891204834, -0.027975397184491158, -0.0259651280939579, 0.0064047593623399734, 0.011991006322205067, -0.005353686399757862, -0.054116807878017426, -0.00039026964805088937, 0.03792471066117287, -0.03297225385904312, 0.026274967938661575, 0.07075145840644836, -0.033059488981962204, -0.07549571990966797, -0.009367748163640499, 0.017647380009293556, 0.007327206898480654, 0.053015392273664474, -0.031146908178925514, -0.022633954882621765, 0.0265677310526371, -0.0005629740771837533, 0.0185658298432827, 0.05189868062734604, -0.006531090475618839, -0.02401604875922203, 0.03848670423030853, -0.003471024800091982, 0.025247203186154366, -0.053144749253988266, 0.004149720538407564, 0.048484742641448975, -0.011399627663195133, -0.0006643519154749811, -0.028338422998785973, -0.028256479650735855, -0.014806132763624191, -0.046612489968538284, -0.052953168749809265, -0.06490349769592285, 0.04510373994708061, -0.06397201865911484, 0.05679066851735115, -0.0015251572476699948, -0.03445817157626152, 0.003950870595872402, -0.028098635375499725, -0.004411985166370869, -0.020606152713298798, 0.017907148227095604, -0.042570456862449646, -0.050815511494874954, -0.017716513946652412, 0.020780522376298904, -0.04763949662446976, 0.006803773809224367, -0.010378580540418625, -0.023115402087569237, 0.005512782838195562, 0.03664090484380722, -0.11130473017692566, 0.018276887014508247, 0.0032432288862764835, 0.03489372134208679, 0.02688893862068653, -0.007190692238509655, 0.04230654984712601, 0.024038558825850487, -0.05072120577096939, 0.010456014424562454, -0.022596970200538635, -0.010904943570494652, 0.0002479750837665051, 0.031928651034832, 0.04827094078063965, -0.0037894330453127623, 0.019344469532370567, -0.014521951787173748, 0.041711047291755676, -0.03419751301407814, -0.003980554640293121, 0.011005369015038013, 0.005075681023299694, 0.014710292220115662, -0.010858329012989998, 0.05799805000424385, 0.01907403953373432, -0.05410722270607948, 0.01834871619939804, -0.044911112636327744, 0.03471656143665314, -0.03486935794353485, 0.02108873799443245, -0.08042744547128677, 0.0004184189310763031, -0.019781827926635742, 0.04588596150279045, 0.01058958936482668, 0.0017783408984541893, -0.059406038373708725, 0.049383264034986496, -0.009446308016777039, 0.028676124289631844, -0.020164553076028824, 0.002904376247897744, -0.01670277677476406, -0.029276711866259575, -0.008312158286571503, 0.013763145543634892, -0.005100114271044731, -0.025196436792612076, -0.022417040541768074, 0.011655313894152641, -0.04268276318907738, 0.005023383069783449, 0.013648593798279762, 0.01405897457152605, 0.05338924005627632, 0.01165010966360569, 0.038736581802368164, 0.03437621891498566, 0.03985469043254852, -0.01189778745174408, 0.04502624645829201, 0.005997662432491779, 0.013265510089695454, -0.005422443151473999, -0.018887760117650032, 0.028787771239876747, 0.010392259806394577, 0.05864495784044266, 0.01084226742386818, -0.04592626914381981, 0.04794807732105255, -0.0037673015613108873, -0.04948784410953522, -0.01456619706004858, -0.008948171511292458, 0.10713201016187668, -0.011184310540556908, 0.04101426154375076, -0.011697651818394661, 0.03953232988715172, 0.015449540689587593, -0.040780749171972275, 0.047593604773283005, -0.010472200810909271, -0.04410251975059509, -0.049281202256679535, 0.04347367212176323, -0.0357171930372715, -0.010775099508464336, -0.009521055966615677, -0.019252680242061615, 0.0036276604514569044, 0.02951878122985363, -0.010840484872460365, 0.014031696133315563, 0.06877336651086807, -0.014593658037483692, -0.01053687185049057, -0.06805408000946045, -0.05032780393958092, -0.07945288717746735, -0.0706641748547554, -0.019067728891968727, -0.06149790436029434, -0.004623768851161003, 0.0808352455496788, -0.10565941780805588, -0.030726663768291473, -0.0243341326713562, -0.025045285001397133, 0.0426059328019619, 0.01781882904469967, 0.029010489583015442, 0.02036983333528042, 0.03477025404572487, -0.001143412315286696, -0.07368531078100204, 0.0017271192045882344, -0.017831582576036453, 0.030924534425139427, -0.021773438900709152, -0.013865629211068153, -0.04060550034046173, 0.017772126942873, -0.07264624536037445, -0.011285632848739624, -0.05143851414322853, -0.054962098598480225, -0.005082382820546627, 0.033621907234191895, 0.0019189913291484118, 0.027785465121269226, -0.061121080070734024, -0.010968554764986038, 0.021982597187161446, 0.011037766933441162, -0.02800329402089119, -0.011029261164367199, -0.04612556844949722, -0.026987863704562187, -0.02994106337428093, 0.038809116929769516, 0.005725991912186146, -0.03610561415553093, 0.03646308183670044, -0.03173818811774254, -0.0011138883419334888, 0.03755800053477287, -0.11404097080230713, -0.019115660339593887, -0.035549346357584, 0.002487186109647155, 0.0005342709482647479, -0.03778175264596939, -0.02614220790565014, -0.037651244550943375, 0.03185073286294937, 0.004196673631668091, -0.028451409190893173, -0.015569397248327732, 0.0152795584872365, -0.06617707014083862, -0.10943328589200974, 0.002800739137455821, 0.04467570781707764, -0.01771838217973709, 0.017965691164135933, 0.030661258846521378, -0.04647645726799965, 0.03717046231031418, -0.005956240929663181, 0.023147422820329666, -0.06112809106707573, -0.013979848474264145, 0.029243553057312965, 0.005988124758005142, 0.01226835884153843, 0.018003636971116066, 0.04632529243826866, -0.02943098172545433, -0.0464775450527668, 0.06880079209804535, -0.004268709570169449, -0.06917466223239899, 0.018859434872865677, 0.028683669865131378, 0.015440540388226509, 0.004791035782545805, -0.05311821028590202, -0.021018872037529945, 0.02063359133899212, 0.03926986828446388, -0.03557891771197319, -0.0026093670167028904, -0.012633606791496277, 0.02742829918861389, 0.05182367563247681, -0.0010837065055966377, -0.027066651731729507, 0.004568122327327728, -0.008532298728823662, -0.007173200137913227, 0.014684581197798252, -0.013447805307805538, -6.665050030426493e-33, -0.011698382906615734, -0.053731758147478104, 0.022737903520464897, 0.1012662872672081, -0.01772426813840866, -0.06405746191740036, -0.012827328406274319, 0.016669508069753647, -0.021140724420547485, -0.037978947162628174, -0.0023438651114702225, -0.02786446362733841, 0.022587914019823074, -0.004229138605296612, -0.001713513396680355, -0.017970148473978043, 0.06264200806617737, -0.017155721783638, -0.005163916386663914, 0.08054982870817184, -0.05812833458185196, -0.028441142290830612, -0.0067995269782841206, -0.030252870172262192, -0.014498993754386902, -0.028615571558475494, -0.024776628240942955, -0.04720309004187584, 0.0521303154528141, -0.026492787525057793, -0.04836631193757057, 0.0023230852093547583, -0.020113864913582802, -0.03250075504183769, 0.016070853918790817, 0.03623951971530914, -0.029446903616189957, -0.016775771975517273, 0.010782575234770775, 0.011600970290601254, -0.012116517871618271, -0.026011576876044273, -0.01569770835340023, 0.006725745741277933, 0.010350788943469524, 0.015081320889294147, 0.03008866123855114, 0.03399284929037094, -0.023297131061553955, 0.023667853325605392, -0.013777347281575203, -0.005736927967518568, -0.033870767802000046, -0.011387040838599205, -0.010391633957624435, 0.03183547407388687, 0.03214617818593979, -0.059042252600193024, -0.01774131879210472, 0.051224954426288605, 0.009439910762012005, 0.0026227664202451706, 0.051935818046331406, -0.05175211280584335, -0.027041226625442505, 0.05985276401042938, -0.049048759043216705, 0.05172448605298996, 0.0375395342707634, 0.02892298996448517, -0.026643777266144753, 0.05932886153459549, 0.029049348086118698, -0.027417877689003944, -0.006717660464346409, 0.026985103264451027, 0.015523886308073997, 0.03448084741830826, 0.08280941843986511, 0.07174672186374664, -0.018079446628689766, 0.013903794810175896, -0.0006558672757819295, 0.0044715516269207, -0.007536900229752064, 0.0024281207006424665, 0.005204866174608469, -0.05786268785595894, -0.016629235818982124, 0.002868609968572855, 0.01230105571448803, 0.004553737584501505, -0.018245309591293335, 0.038289036601781845, -0.03166324272751808, 0.07929134368896484, 0.04265123978257179, -0.02387337200343609, -0.03785451874136925, -0.05112660303711891, -0.03719362989068031, -0.05726345628499985, -0.0005987972836010158, 0.01243218220770359, 0.02749914862215519, -0.011360596865415573, -0.06667391210794449, 0.016448460519313812, -0.03948592767119408, 0.01140933483839035, 0.004333619028329849, -0.017432548105716705, 0.025852756574749947, -0.02716989442706108, -0.010743844322860241, -0.021785780787467957, -0.01738840341567993, 0.016488967463374138, -0.018290674313902855, -0.017589200288057327, -0.010016470216214657, -0.0635232925415039, 0.0057030608877539635, 0.003621824085712433, -0.024599025025963783, 0.0160598736256361, -0.06160880625247955, -0.005818713456392288, 0.047732993960380554, 0.005512233357876539, -0.0018242897931486368, -0.019912052899599075, 3.330638662646379e-07, -0.04183978959918022, 0.06732036173343658, -0.004386628046631813, 0.07282259315252304, 0.03220682591199875, 0.00020650896476581693, -0.006267880089581013, 0.019765840843319893, -0.009470789693295956, 0.003081795061007142, 0.0128069082275033, 0.013709137216210365, 0.029201894998550415, 0.07630207389593124, -0.051883745938539505, -0.10656212270259857, -0.08568169176578522, -0.021626168861985207, -0.011275981552898884, -0.020792236551642418, 0.026153679937124252, 0.032957807183265686, 0.035307928919792175, 0.009436708875000477, -0.05450361594557762, -0.04388480260968208, 0.003880997421219945, -0.05050072446465492, -0.04735749587416649, 0.05140833929181099, 0.023940807208418846, 0.01904786378145218, -0.014723425731062889, -0.044870056211948395, -0.014391993172466755, -0.058856051415205, -0.0013561586383730173, -0.01311725564301014, 0.047328099608421326, 0.005011427216231823, -0.028683627024292946, 0.009614679962396622, -0.04577558487653732, 0.023928295820951462, -0.021125350147485733, 0.03178912401199341, 0.014417015947401524, 0.08342383056879044, -0.0169507022947073, -0.018027639016509056, 0.004910580348223448, 0.028133025392889977, 0.03314631059765816, 0.007232369855046272, -0.013541082851588726, -0.039646707475185394, -0.007981710135936737, 0.00429937057197094, 0.010365382768213749, -0.005450914613902569, -0.024635061621665955, -0.012855294160544872, -0.023157041519880295, -0.041107915341854095, -0.03083965554833412, -0.014877854846417904, -0.006279859226197004, 3.224084146064204e-34, 0.006219656206667423, -0.013354786671698093, -0.04017264395952225, 0.04221022501587868, -0.002049749018624425, -0.021786393597722054, 0.04928817227482796, -0.004756925627589226, -0.0003800367412623018, -0.02561333402991295, -0.03356395289301872], "13693d9f-add0-4831-b24e-18baf9b8be19": [0.008515043184161186, -0.012487921863794327, -0.0013164071133360267, 0.04632372036576271, -0.03872884809970856, -0.01444726251065731, 0.0015205091331154108, -0.01196172647178173, -0.0589502714574337, 0.0019745684694498777, 0.023855281993746758, 0.003822425613179803, -0.004567479714751244, 0.08736173063516617, 0.011133053340017796, -0.11885736882686615, 0.02234051376581192, 0.0022255550138652325, -0.010717096738517284, 0.008356972597539425, 0.049940045922994614, -0.008072019554674625, -0.06911178678274155, -0.0423063263297081, -0.0068480269983410835, -0.017127972096204758, -0.02499043382704258, -0.012232239358127117, 0.003831004723906517, -0.017366347834467888, -0.03198380395770073, 0.016744988039135933, 0.020672079175710678, -0.047548361122608185, 2.244490815428435e-06, -0.012723442167043686, 0.025593487545847893, -0.010031732730567455, -0.022508690133690834, 0.020357731729745865, 0.02234235219657421, 0.04809592291712761, 0.032105036079883575, 0.049456026405096054, 0.004098105244338512, -0.05904523655772209, -0.004344564862549305, 0.12692688405513763, 0.03256857767701149, 0.052255284041166306, 0.004844172392040491, -0.0096100103110075, 0.04134290665388107, -0.0231196116656065, 0.035343870520591736, 0.018183276057243347, -0.05428014323115349, 0.07088956981897354, 0.009780517779290676, -0.009141257964074612, 0.024074247106909752, -0.01021695975214243, -0.017338696867227554, -0.03826912119984627, 0.090326227247715, -0.018367977812886238, -0.06896089017391205, -0.047727104276418686, -0.015200283378362656, 0.038353968411684036, 0.11782728135585785, 0.014401799999177456, 0.024008838459849358, -0.0029812268912792206, 0.025443734601140022, 0.03291714936494827, -0.08505241572856903, 0.05799856036901474, 0.02045496366918087, 0.0071862502954900265, -0.020175637677311897, 0.033873192965984344, -0.007562368176877499, -0.0004975743941031396, 0.0916229858994484, 0.04009217023849487, 0.01336649153381586, 0.015229370445013046, -0.02900056727230549, -0.06013549119234085, 0.02689012698829174, -0.029487090185284615, 0.007842796854674816, 0.03230629861354828, 0.026054339483380318, -0.002161532873287797, 0.04325081408023834, -0.018648307770490646, -3.9406011637765914e-05, -0.007762101013213396, -0.044005535542964935, 0.015650209039449692, 0.01873553730547428, -0.023707645013928413, 0.013770190067589283, 0.01176613662391901, 0.01838817447423935, -0.01349329762160778, -0.0030921814031898975, 0.02399591915309429, 0.04722526669502258, 0.030284281820058823, -0.04006476700305939, 0.03873760998249054, -0.02183503285050392, -0.029295917600393295, -0.02349787764251232, 9.150731057161465e-05, 0.022252826020121574, 0.011900929734110832, -0.01384616456925869, 0.02620328590273857, 0.0031463380437344313, 0.0008798415656201541, 0.026284530758857727, 0.013071250170469284, 0.005797072313725948, -0.02545849233865738, 0.0262480266392231, -0.04378780350089073, -0.010347635485231876, 0.020571226254105568, -0.02074868604540825, 0.002386242151260376, -0.009980854578316212, 0.10220111161470413, -0.02273203618824482, 0.004936730954796076, 0.021157652139663696, -0.010370910167694092, 0.005134408827871084, 0.011703766882419586, -0.0003716146165970713, 0.00349436211399734, 0.009626291692256927, 0.001990576973184943, 0.008915959857404232, -0.025301052257418633, 0.013629201799631119, 0.007551808375865221, 0.009315196424722672, -0.0243073683232069, -0.050959110260009766, 0.010742208920419216, 0.06629730015993118, 0.06392303109169006, -0.02005109004676342, -0.001566810649819672, 0.009839370846748352, 0.023231225088238716, 6.381147977663204e-05, -0.02360842376947403, 0.05345568805932999, 0.021277552470564842, 0.03163231909275055, -0.018210429698228836, 0.09890303760766983, -0.03003367781639099, 0.0836041122674942, 0.04136023670434952, -0.009095484390854836, 0.02163509465754032, -0.018388591706752777, 0.04984221234917641, -0.009212506003677845, 0.0320761613547802, 0.03845211863517761, 0.030271470546722412, -0.03130874037742615, 0.026962364092469215, 0.029579410329461098, -0.06036052107810974, 0.0021303482353687286, -0.0007620129617862403, 0.010474729351699352, -0.010326963849365711, -0.0023614196106791496, -0.016539180651307106, -0.014307098463177681, 0.01072478573769331, -0.024371765553951263, 0.004152514971792698, -0.011044719256460667, -0.029586466029286385, -0.05159950628876686, 0.03192088007926941, -0.053202059119939804, 0.054533399641513824, 0.018911318853497505, -0.04624757170677185, -0.0005924896104261279, 0.033668797463178635, -0.033160146325826645, -0.011925037950277328, 0.017566313967108727, 0.03980417177081108, -0.015128585509955883, -0.027793219313025475, -0.0034484576899558306, 0.06894109398126602, 0.08158589899539948, -0.028364624828100204, -0.02305549569427967, -0.037080295383930206, -0.0034219722729176283, -0.07934138178825378, -0.011364780366420746, -0.04120437800884247, -0.014331125654280186, 0.014922579750418663, 0.03990722447633743, -0.015390967950224876, -0.007112114690244198, 0.008197251707315445, -0.038170017302036285, -0.01387706957757473, -0.0137489577755332, -0.047137875109910965, 0.08062637597322464, 0.024059897288680077, -0.01822882518172264, 0.013353141956031322, 0.019972501322627068, 0.020002849400043488, 0.023561295121908188, 0.05408470705151558, -0.0569312609732151, 0.03811662271618843, 0.025328485295176506, -0.04244190827012062, 0.013555936515331268, 0.017507905140519142, 0.022731730714440346, 0.0020662907045334578, 0.01738310232758522, -0.011718420311808586, 0.019134966656565666, 0.014381405897438526, 0.018613936379551888, 0.029526684433221817, -0.006118632387369871, 0.05428167060017586, -0.026083525270223618, 0.04833512008190155, -0.011082394048571587, 0.0656571015715599, -0.05229748412966728, 0.018018491566181183, -0.10498812049627304, 0.02690846659243107, 0.007307597901672125, -0.04519565775990486, 0.008383659645915031, -0.00010255662346025929, -0.012461930513381958, -0.02585512399673462, 0.049363188445568085, -0.04758748412132263, -0.048256076872348785, -0.0059902723878622055, -0.0010851264232769608, -0.02794637717306614, 0.02571742609143257, -0.03993741050362587, 0.016504544764757156, -0.045027509331703186, -0.011884573847055435, 0.03297892212867737, -0.024976348504424095, 0.0034520034678280354, 0.053074102848768234, 0.010417270474135876, -0.030505988746881485, 0.020978324115276337, 0.0010828132508322597, 0.047646909952163696, -0.005556522402912378, -0.028492897748947144, -0.02602999284863472, -0.02623765543103218, 0.022181648761034012, 0.004140776582062244, -0.002018722239881754, 0.030496761202812195, -0.04292171820998192, 0.0062055401504039764, 0.06920160353183746, -0.06108873710036278, 0.03380409628152847, 0.06360555440187454, -0.031573254615068436, -0.039220113307237625, -0.027630234137177467, 0.0191868394613266, -0.0029476238414645195, 0.06698092818260193, -0.05317071080207825, -0.024296049028635025, 0.04629627242684364, 0.035565853118896484, 0.02308289147913456, 0.04190494865179062, -0.00488746864721179, -0.043376389890909195, 0.03581256419420242, 0.020496085286140442, 0.030022775754332542, -0.05252942070364952, 0.020290279760956764, 0.022042369470000267, -0.009035349823534489, 0.006857500411570072, -0.043687764555215836, -0.04984760656952858, 0.0038645444437861443, -0.02980543114244938, -0.026177464053034782, -0.026722103357315063, 0.0384909063577652, -0.060387369245290756, 0.046008024364709854, -0.017939617857336998, -0.0021382642444223166, 0.03052087128162384, -0.09510689228773117, 0.013422071002423763, 0.016743754968047142, -0.03433128818869591, -0.03544807434082031, -0.04521343111991882, -0.06360284239053726, -0.01743950881063938, -0.034081269055604935, -0.019491977989673615, -0.018466010689735413, 0.014920366927981377, -0.012236936017870903, 0.031193315982818604, -0.08986042439937592, 0.007686549331992865, 0.002223626710474491, 0.0031713249627500772, -0.011430307291448116, 0.015147645026445389, 0.05769096687436104, 0.012567829340696335, -0.038570430129766464, 0.0013081668876111507, -0.0028281514532864094, 0.0010994242038577795, 0.0023391880095005035, -4.641321356757544e-05, 0.030481038615107536, 0.020451607182621956, -0.026193497702479362, -0.053505104035139084, 0.007970673963427544, -0.07436340302228928, -0.0224397424608469, 0.040171194821596146, 0.049512702971696854, 0.0069981724955141544, 0.015140458941459656, 0.04915280267596245, -0.0007178334635682404, -0.040174756199121475, 0.0011582945007830858, -0.04152492806315422, 0.012010814622044563, -0.03018682822585106, 0.027364812791347504, -0.05724893882870674, -0.0059778280556201935, -0.029584631323814392, 0.05082353577017784, 0.020147591829299927, -0.002924932399764657, -0.04965938255190849, 0.033932238817214966, 0.004839522298425436, 0.029003793373703957, 0.014569318853318691, -0.026073243468999863, -0.021365808323025703, -0.013601903803646564, -0.0027088348288089037, 0.02512182481586933, -0.009023519232869148, -0.028381558135151863, -0.020872296765446663, 0.03270220384001732, -0.09174831211566925, -0.0033858197275549173, -0.026515323668718338, -0.009419464506208897, 0.06682159006595612, 0.008320104330778122, 0.0029982435517013073, 0.010568876750767231, 0.018204152584075928, -0.02900869771838188, 0.029255975037813187, -0.0013931525172665715, 0.026932384818792343, -0.028615016490221024, -0.015192389488220215, 0.0148799829185009, 0.013029290363192558, 0.07580439746379852, 0.04915497824549675, -0.07275138795375824, 0.04186626896262169, 0.011372477747499943, -0.07059800624847412, -0.023272879421710968, -0.02048448473215103, 0.08362504094839096, -0.010703637264668941, 0.055907949805259705, -0.008963926695287228, 0.05731172859668732, 0.019531261175870895, -0.03232182562351227, 0.045217543840408325, -0.05781586840748787, -0.013970819301903248, -0.0656120553612709, 0.07164088636636734, -0.004925951827317476, 0.007878217846155167, -0.014248770661652088, -0.008988190442323685, -0.006549457553774118, 0.03077237866818905, -0.02256384678184986, 0.0008377475896850228, 0.05466431751847267, -0.04492935910820961, 0.03038739785552025, -0.04748392477631569, -0.05318233743309975, -0.07118789106607437, -0.0848350003361702, 0.025171777233481407, -0.07366405427455902, -0.022791465744376183, 0.05974063649773598, -0.09239165484905243, -0.016692327335476875, 0.02795771323144436, -0.00017042909166775644, 0.0173763707280159, 0.010666823014616966, 0.047454483807086945, 0.014618639834225178, 0.060572750866413116, -0.016878968104720116, -0.07850981503725052, -0.01258348673582077, 0.0007379601011052728, 0.031178241595625877, -0.04275725781917572, -0.02281097136437893, -0.017955103889107704, 0.009225623682141304, -0.059739865362644196, -0.018473472446203232, -0.03246124088764191, -0.02782142348587513, -0.025479096919298172, 0.023032136261463165, 0.014900872483849525, -0.010492193512618542, -0.053143858909606934, -0.00611311849206686, 0.0027045125607401133, 0.02015569806098938, -0.02588501200079918, 0.005215464625507593, -0.027128390967845917, -0.03056187555193901, -0.04266079142689705, 0.05464392155408859, 0.002927789930254221, -0.05672392621636391, -0.013071635738015175, -0.02842562086880207, -0.00020843221864197403, 0.04234019294381142, -0.1000775620341301, -0.02109941840171814, -0.03218003362417221, -0.008333800360560417, -0.03290535509586334, -0.05108786001801491, -0.01648266613483429, -0.03004741296172142, 0.04489842429757118, -0.006287394091486931, -0.02480863593518734, 0.026895442977547646, 0.007074020337313414, -0.006044747307896614, -0.05362427979707718, -0.022065477445721626, 0.015819264575839043, -0.01572498120367527, 0.030908523127436638, 0.020275479182600975, -0.046449825167655945, 0.03549616038799286, -0.011821754276752472, 0.014333480969071388, -0.06132422760128975, 0.00263344612903893, 0.059196826070547104, -0.015275053679943085, -0.01334704551845789, -0.017593499273061752, 0.03433982655405998, -0.023769017308950424, -0.0290790107101202, 0.06670191138982773, 0.01542508415877819, -0.054678402841091156, -0.022968538105487823, 0.03509126603603363, 0.005950822960585356, 0.0059349979273974895, -0.08200653642416, -0.011279272846877575, 0.011264560744166374, 0.011849479749798775, -0.044467829167842865, -0.04574304446578026, 0.01287185400724411, 0.03850732371211052, 0.01852448098361492, -0.023669376969337463, -0.018579833209514618, -0.0006198308547027409, -0.02317926101386547, 0.035469502210617065, -6.728293374180794e-05, 0.0006415255484171212, -5.6680669864040475e-33, -0.023482073098421097, -0.011050094850361347, 0.03516702726483345, 0.07012949883937836, -0.0005187205970287323, -0.061364416033029556, 0.00015370850451290607, 0.027640851214528084, -0.023235762491822243, 0.009243146516382694, -0.0008029341115616262, -0.03514389321208, 0.0168389193713665, 0.02530900202691555, -0.013320540077984333, -0.02024753950536251, 0.06495784223079681, -0.02424139715731144, 0.002770692342892289, 0.10312032699584961, -0.07378055155277252, -0.02482431009411812, 0.0063939993269741535, -0.039934318512678146, 0.012867128476500511, -0.009893259033560753, -0.04358254745602608, -0.03301164135336876, 0.06850931793451309, -0.026283612474799156, -0.029659835621714592, 0.004849868360906839, -0.017742590978741646, -0.030902869999408722, 0.007679772097617388, 0.04645325988531113, -0.03974149003624916, -0.019963150843977928, 0.024040408432483673, 0.021008862182497978, -0.016299700364470482, -0.05759280547499657, -0.028914306312799454, 0.00982942059636116, 0.012452472001314163, -0.005653195083141327, 0.030535593628883362, 0.059689734131097794, -0.004134217277169228, 0.007534108590334654, 0.02311796508729458, 0.0011450555175542831, -0.027734337374567986, -0.01772860623896122, 0.0001315638655796647, 0.009459549561142921, 0.04500257968902588, -0.06479483097791672, 0.0068342238664627075, 0.08643236011266708, -0.0019248317694291472, -0.022496730089187622, 0.05477609485387802, -0.053844962269067764, -0.028559774160385132, 0.05414111539721489, -0.06908614188432693, 0.0422874391078949, 0.055430490523576736, 0.041722364723682404, -0.04446946084499359, 0.05310652777552605, 0.024418605491518974, -0.02845265343785286, -0.013706284575164318, 0.056926120072603226, 0.048980072140693665, 0.03664634749293327, 0.07513359189033508, 0.060905326157808304, -0.003999466076493263, -0.011517096310853958, 0.04296112805604935, 0.007931536994874477, -0.04110707715153694, 0.00459353206679225, 0.04501822963356972, -0.04931246489286423, -0.032574694603681564, -0.00644986517727375, 0.015561339445412159, 0.045483462512493134, 0.01950068213045597, 0.03477472811937332, -0.030843691900372505, 0.060272689908742905, 0.003099302528426051, 0.002794908359646797, -0.03809765353798866, -0.023828068748116493, -0.007961324416100979, -0.06303448975086212, 0.022200720384716988, 0.02825717255473137, 0.03699474036693573, 0.011880414560437202, -0.05247218906879425, 0.023183168843388557, -0.02566624991595745, 0.011451545171439648, 0.011358819901943207, 0.01951792649924755, 0.0008686342043802142, -0.02786330133676529, -0.04551160708069801, 0.020297547802329063, -0.03042546659708023, 0.02892978861927986, -0.05713289603590965, -0.04449979215860367, 0.03193220868706703, -0.04827629029750824, 0.03328145295381546, -0.0023690604139119387, -0.013363638892769814, 0.015428101643919945, -0.045673541724681854, 0.008984077721834183, 0.06115759164094925, 0.03754846379160881, 0.0072027635760605335, 0.011943796649575233, 2.8307999855314847e-07, -0.01772499457001686, 0.055429961532354355, -0.0005415209452621639, 0.06295544654130936, 0.03982463851571083, -0.011099249124526978, 0.009487925097346306, 0.018206359818577766, -0.03349574655294418, 0.02315410040318966, -0.01742091029882431, 0.039122771471738815, 0.007856139913201332, 0.0766608938574791, -0.08670245110988617, -0.113242007791996, -0.11123057454824448, -0.004308063071221113, -0.027877775952219963, 0.007133675739169121, -0.0003551308764144778, 0.039796020835638046, -0.015742620453238487, 0.028398053720593452, -0.050785452127456665, -0.00881850067526102, -0.0028930003754794598, -0.016250494867563248, -0.04082515090703964, 0.05473026633262634, -0.007309719454497099, 0.009354563429951668, 0.005568779539316893, -0.04275530204176903, -0.01051970012485981, -0.05231186002492905, -0.006210634484887123, 0.005888031329959631, 0.04415266215801239, -0.017866084352135658, -0.021588070318102837, 0.036051195114851, -0.03480495512485504, 0.03414137661457062, -0.018566474318504333, 0.03234175220131874, -0.012486392632126808, 0.009674283675849438, -0.015914790332317352, -0.017282292246818542, 0.013492952100932598, 0.0026471831370145082, 0.03608100488781929, 0.013531846925616264, -0.00466347998008132, -0.04170979559421539, -0.021475356072187424, -0.007806873880326748, 0.026773668825626373, -0.026690179482102394, -0.007825874723494053, -0.0014724251814186573, -0.03582879900932312, -0.09144902974367142, 0.008703085593879223, -0.02951793000102043, 0.016206270083785057, 2.462304113658859e-34, 0.004526891279965639, -0.0022085586097091436, -0.06872857362031937, 0.05161667242646217, -0.003276175819337368, -0.024142539128661156, 0.08507414907217026, 0.005729271564632654, -0.017653055489063263, -0.011333547532558441, -0.010960569605231285], "70b4a312-c669-4439-89e1-6db8aaadb025": [0.038648948073387146, -0.0027826835867017508, -0.03585712984204292, 0.03235252574086189, -0.011379443109035492, 0.00738831702619791, 0.011093977838754654, 0.037337467074394226, -0.01758258230984211, -0.008348235860466957, -0.021200858056545258, 0.03043033741414547, 0.002874672180041671, 0.06389401108026505, -0.005629744380712509, -0.07778850942850113, 0.03284505382180214, 0.01911342330276966, -0.016093578189611435, 0.019702540710568428, 0.009782989509403706, 0.0014797302428632975, -0.019134925678372383, -0.005169935058802366, 0.06608281284570694, -0.025206152349710464, -0.003291317028924823, 0.012670318596065044, -0.002379932440817356, -0.01715552620589733, 0.01688320003449917, 0.031815771013498306, -0.0188800860196352, -0.013469354249536991, 2.6163561415160075e-06, 0.018188688904047012, -0.04178910702466965, -0.0012258475180715322, -0.06986036896705627, 0.02227429300546646, 0.010872677899897099, 0.045239318162202835, -0.026505328714847565, 0.030861640349030495, -0.007627102080732584, -0.00557727599516511, -0.010165342129766941, 0.08042000234127045, -0.03310301899909973, 0.04583269730210304, 0.027142368257045746, 0.008291738107800484, -0.015872394666075706, -0.0012336098589003086, 0.10970822721719742, -0.009029362350702286, -0.04732539504766464, 0.09513930231332779, 0.03595438599586487, 0.025830624625086784, 0.014820297248661518, 0.014834149740636349, -0.04079098999500275, -0.025778863579034805, 0.08565863966941833, 0.044559281319379807, -0.018315965309739113, -0.08084651827812195, 0.017879296094179153, 0.03669539466500282, 0.11640874296426773, -0.027623306959867477, 0.028982799500226974, 0.02761739119887352, -0.01091381162405014, 0.04046875238418579, -0.07336851954460144, 0.02374575287103653, -0.008097593672573566, 0.0020230459049344063, 0.01571228727698326, 0.007085938006639481, -0.009362530894577503, -0.004149641841650009, 0.1196354404091835, 0.032204873859882355, -0.019387707114219666, -0.033206649124622345, 0.008902762085199356, -0.05573312193155289, 0.06711290776729584, -0.03419138491153717, 0.018319467082619667, 0.04163089022040367, 0.04688826948404312, -0.007380892988294363, 0.022131549194455147, -0.019907042384147644, 0.029600715264678, 0.0012880247086286545, -0.021337585523724556, 0.014545528218150139, 0.0013825137866660953, 0.010499527677893639, 0.018563320860266685, -0.004801284987479448, 0.031962309032678604, -0.02086724527180195, -0.035764291882514954, 0.08543410897254944, -0.011157119646668434, 0.012431958690285683, -0.013606213964521885, -0.008305570110678673, -0.058267973363399506, -0.05546027049422264, 0.010565776377916336, 0.04568300396203995, 0.031005162745714188, 0.03847687318921089, -0.000701491953805089, 0.0266238022595644, -0.0436725914478302, 0.005428953096270561, -0.012946696020662785, -0.024537675082683563, 0.010471075773239136, -0.030498698353767395, 0.01798960007727146, -0.03312982618808746, -0.022771429270505905, -0.005345157813280821, -0.012499555014073849, 0.04453379660844803, -0.010151663795113564, 0.11254250258207321, -0.024153178557753563, -0.01478514913469553, -0.03595619648694992, -0.04187348857522011, 0.02032550424337387, 0.002735316986218095, 0.0032016930636018515, -0.008541320450603962, 0.01058140117675066, -0.0008440198143944144, 0.015553997829556465, 0.02359902486205101, 0.030469752848148346, 0.02948889508843422, -0.02730361931025982, 0.04168454185128212, 0.017449289560317993, 0.023916471749544144, 0.08251189440488815, 0.04305081441998482, -0.0013019433245062828, 0.004235995002090931, -0.0015253552701324224, 0.006010902114212513, 0.033962517976760864, 0.014866463840007782, 0.019380731508135796, -0.005553583614528179, 0.010429352521896362, -0.022997992113232613, 0.05521392077207565, 0.00011877694487338886, 0.050805192440748215, 0.0356893390417099, -0.02376224659383297, 0.025951260700821877, -0.034954220056533813, 0.07665444165468216, -0.017706628888845444, 0.041683848947286606, 0.028949804604053497, 0.0648675411939621, -0.04568585380911827, 0.035984061658382416, -0.002423998201265931, -0.02864999696612358, -0.012252145446836948, 0.027622655034065247, -0.10109104216098785, -0.020447656512260437, -0.005505651701241732, -0.013724400661885738, -0.011274348944425583, -0.015694472938776016, -0.025532355532050133, 0.022072168067097664, 0.0542130172252655, -0.031207943335175514, 0.00021650291455443949, -0.008682514540851116, -0.07136575877666473, -0.029439091682434082, -0.005823532119393349, -0.03174934908747673, 0.008165324106812477, 0.021812137216329575, -0.0064644343219697475, 0.06060927361249924, 0.05837878957390785, 0.0010987463174387813, -0.04193931818008423, -0.00017812909209169447, 0.015799259766936302, 0.020483659580349922, 0.09367328137159348, -0.010062746703624725, -0.047275375574827194, -0.024315087124705315, -0.033267535269260406, -0.044045932590961456, 0.010937880724668503, -0.013779870234429836, 0.0041154189966619015, 0.03398951143026352, 0.0277846809476614, -0.02850990928709507, -0.07336818426847458, 0.009489464573562145, -0.025077257305383682, -0.035664089024066925, -0.01989026740193367, 0.0017566436436027288, 0.027498645707964897, 0.013363797217607498, -0.016143959015607834, 0.02224162593483925, 0.018965406343340874, 0.021615831181406975, 0.02074243128299713, 0.05151492729783058, -0.01756182126700878, -0.00020545886945910752, 0.00021950768132228404, -0.07297264784574509, 0.0008787009865045547, 0.04637186974287033, 0.027547426521778107, 0.0029512380715459585, 0.007630449719727039, -0.001511119306087494, -0.007546989247202873, 0.018022656440734863, 0.016870075836777687, 0.03686748817563057, 0.003375892760232091, 0.014599120244383812, 0.016769280657172203, 0.027698678895831108, -0.013484764844179153, 0.03457964211702347, -0.04497601464390755, 0.022888125851750374, -0.1015099436044693, 0.06201885640621185, 0.019193626940250397, -0.02655123546719551, -0.012088174000382423, 0.024030381813645363, 0.023389579728245735, -0.02441975101828575, 0.0015292966272681952, -0.06340926885604858, -0.022165032103657722, -0.01084177102893591, 0.026557588949799538, 0.008214002475142479, 0.006161585915833712, -0.01966453716158867, 0.02012445218861103, -0.03354954347014427, -0.016644855961203575, 0.017172932624816895, -0.059366125613451004, 0.008976170793175697, 0.01977265626192093, -0.02162979729473591, -0.02923555113375187, 0.006618655286729336, -0.03468134254217148, 0.02062622271478176, 0.04209534078836441, -0.10087350755929947, -0.03991090506315231, -0.04199305176734924, 0.02297802083194256, 0.003435826627537608, 0.005035976879298687, -0.019367847591638565, -0.052840977907180786, 0.0099290506914258, 0.030765913426876068, 0.04125422611832619, 0.014977962709963322, 0.08003593981266022, 0.0010940529173240066, -0.049303654581308365, -0.013971331529319286, 0.01781337521970272, -0.004964683670550585, 0.06409022957086563, -0.02906479686498642, -0.08051266521215439, 0.004504415672272444, -0.02620050497353077, 0.02481899969279766, 0.05252280831336975, -0.006546618416905403, -0.012332870624959469, 0.020746709778904915, -0.014992788434028625, -0.0029769206885248423, -0.0368967205286026, 0.010863769799470901, 0.05896333232522011, 0.008802084252238274, 0.0029862201772630215, -0.00897526741027832, -0.017126375809311867, -0.004984739702194929, -0.08904159069061279, -0.026845887303352356, -0.03307505324482918, 0.054820604622364044, -0.054053500294685364, 0.033504415303468704, 0.04907781258225441, -0.05104067176580429, 0.012074841186404228, -0.017804356291890144, 0.00580402510240674, -0.027436010539531708, -0.0033525533508509398, -0.029337089508771896, -0.03076939284801483, -0.008178995922207832, 0.04743717238306999, -0.03822922706604004, 0.02224111743271351, -0.014921838417649269, -0.01747061498463154, 0.028509732335805893, 0.006616110447794199, -0.15947623550891876, 0.016228780150413513, 0.020418014377355576, 0.0007595611386932433, 2.333243401153595e-06, -0.02673284523189068, 0.018328089267015457, 0.010030815377831459, -0.012602494098246098, 0.008963309228420258, -0.013893631286919117, -0.0011415858753025532, -0.0039044113364070654, 0.027853429317474365, 0.01606210507452488, 0.002552514197304845, 0.02322838455438614, -0.024814285337924957, 0.0187765471637249, -0.02895934320986271, 0.030971236526966095, 0.02006775513291359, -0.03092663362622261, 0.008985811844468117, -0.029117252677679062, 0.058999139815568924, 0.01853157952427864, -0.040836598724126816, 0.01859940215945244, -0.05171936750411987, 0.01473605539649725, -0.0527600459754467, 0.031647324562072754, -0.056881051510572433, 0.014535630121827126, -0.012721245177090168, 0.06074470654129982, -0.025340639054775238, 0.008813582360744476, -0.042657703161239624, 0.04373180493712425, -0.011018838733434677, 0.035969506949186325, -0.04334307461977005, -0.024541450664401054, -0.02678208239376545, -0.0663905143737793, -0.018041228875517845, 0.03411810100078583, -0.006004831288009882, -0.020360246300697327, -0.011912492103874683, 0.02832292951643467, -0.033776409924030304, -0.015061186626553535, 0.05143685266375542, 0.03784104064106941, 0.05736830458045006, 0.013912917114794254, 0.040844790637493134, 0.01775543950498104, 0.032107528299093246, 0.023958377540111542, 0.048867106437683105, 0.022812731564044952, -0.014055986888706684, 0.019944198429584503, -0.06748782098293304, 0.037226755172014236, 0.005738070700317621, 0.05596352741122246, 0.007858448661863804, -0.027058007195591927, 0.04376337677240372, 0.018029160797595978, -0.04355698823928833, 0.003099088091403246, -0.046684734523296356, 0.07738343626260757, 0.021775342524051666, 0.05174163356423378, -0.02697695791721344, 0.06922166794538498, 0.01874660514295101, -0.021828481927514076, 0.03505995497107506, 0.005595310591161251, -0.026591608300805092, -0.022359812632203102, -0.03438655287027359, -0.027935877442359924, -0.010582526214420795, -0.02121838741004467, -0.030898166820406914, 0.02740074321627617, 8.428870933130383e-05, -0.021277882158756256, 0.034482501447200775, 0.07085996121168137, -0.03133759647607803, -0.002055673161521554, -0.05500779300928116, -0.03802713751792908, -0.07840102910995483, -0.1031954362988472, 0.0015257199993357062, -0.04313105717301369, -0.00348856789059937, 0.05877651646733284, -0.057946108281612396, -0.018979210406541824, -0.042313043028116226, -0.041166942566633224, 0.05366627499461174, 0.03409773111343384, 0.0246430654078722, 0.040120236575603485, 0.008264022879302502, 0.009855186566710472, -0.07661230117082596, 0.020634498447179794, -0.012576121836900711, -0.00025610128068365157, -0.0038846549578011036, -0.01428867969661951, -0.04529164731502533, 0.05161536484956741, -0.09456728398799896, -0.03626318275928497, -0.03060637228190899, -0.03207956627011299, -0.019569668918848038, 0.024871693924069405, -0.028451334685087204, 0.03844251483678818, -0.05940978601574898, -0.019418371841311455, 0.04295511916279793, -0.017717059701681137, -0.024076193571090698, -0.0007266777101904154, -0.02463473752140999, 0.023107167333364487, -0.038864921778440475, 0.016949119046330452, -0.018827645108103752, -0.052530743181705475, 0.036831457167863846, -0.03409917280077934, -0.011059409938752651, 0.05829830467700958, -0.055314309895038605, -0.007433706428855658, -0.04715524986386299, -0.006863761693239212, 0.007848245091736317, -0.04487725347280502, -0.03720612823963165, -0.026401337236166, 0.057481758296489716, 0.010820778086781502, -0.006883753929287195, -0.03482964634895325, -0.005062222480773926, -0.07808026671409607, -0.08544547855854034, 0.004758733324706554, -0.018514132127165794, -0.050470300018787384, -0.017595861107110977, 0.03891386091709137, -0.029632458463311195, 0.035295166075229645, -0.009709414094686508, 0.05274086445569992, -0.026565659791231155, 0.007822181098163128, 0.03254165127873421, -0.004519777372479439, 0.024753814563155174, 0.006540745031088591, 0.06549432873725891, -0.02430788241326809, -0.023182952776551247, 0.08325912058353424, -0.031599730253219604, -0.06066775694489479, 0.010701930150389671, 0.032699670642614365, 0.017190173268318176, 0.011784580536186695, -0.0628926083445549, -0.017321521416306496, 0.022140756249427795, 0.03392624855041504, 0.021633664146065712, 0.009640230797231197, -0.030533336102962494, 0.021285053342580795, 0.07474909722805023, 0.0034152748994529247, -0.051508836448192596, 0.016840221360325813, 0.0355672650039196, -0.04246525466442108, 0.025883646681904793, -0.005314057692885399, -6.84707973875514e-33, -0.03069283254444599, -0.05210542306303978, 0.008271374739706516, 0.09179974347352982, 0.006089738104492426, -0.03593939542770386, -0.014398243278265, -0.027001336216926575, -0.03069978393614292, -0.052079878747463226, -0.0015599923208355904, -0.01602156087756157, 0.025807686150074005, -0.01579928770661354, 0.015216798521578312, -0.04618341475725174, 0.019615095108747482, -0.0007941157091408968, -0.011786219663918018, 0.05400821194052696, -0.05798371136188507, -0.028619568794965744, 0.0032755595166236162, -0.01849399134516716, -0.017406122758984566, -0.0477927103638649, -0.007831481285393238, -0.049647293984889984, 0.04779836907982826, -0.006297771353274584, -0.06533677130937576, -0.0066427369602024555, -0.015885988250374794, -0.010264381766319275, 0.012315080501139164, 0.059461865574121475, -0.06137395650148392, -0.002403326565399766, -0.009303808212280273, 0.012640183791518211, -0.006849314551800489, -0.04145827144384384, -0.006874806713312864, -0.0007840647012926638, 0.011349188163876534, 0.004693606868386269, 0.046646445989608765, 0.023794079199433327, -0.039612866938114166, 0.04221731051802635, -0.05147653818130493, 0.012339754961431026, -0.03501856327056885, 0.006683726329356432, 0.0034470229875296354, 0.021268952637910843, 0.05832972750067711, -0.04258282482624054, -0.011115217581391335, 0.02061465010046959, 0.04637851566076279, 0.0059669408947229385, 0.05578957870602608, -0.050635743886232376, -0.0030632978305220604, 0.033965155482292175, -0.03403160348534584, 0.10311140865087509, 0.04475739598274231, 0.017578525468707085, -0.008251931518316269, 0.033926814794540405, -0.015032174997031689, -0.06023670360445976, 0.0038733023684471846, -0.009922073222696781, -0.017770016565918922, 0.043731480836868286, 0.08418451249599457, 0.05897747352719307, -0.006836055777966976, -0.0014668670482933521, -0.01362171396613121, 0.0016887792153283954, 0.018051179125905037, -0.014093420468270779, -0.006547051481902599, -0.03877793624997139, -0.0297191571444273, 0.015935424715280533, -0.0038833986036479473, -0.00680912472307682, -0.04385435953736305, 0.039795584976673126, 0.011789795942604542, 0.07568363100290298, 0.04768678918480873, -0.04193134978413582, -0.04949542507529259, -0.053715482354164124, -0.07522635906934738, -0.06417463719844818, 0.006231723353266716, 0.03659446910023689, 0.02017873339354992, -0.0026306479703634977, -0.06564144790172577, 0.017490902915596962, -0.026076598092913628, -7.760113658150658e-05, -0.0015637387987226248, -0.044813066720962524, 0.01666337437927723, -0.04856173321604729, 0.00376878771930933, -0.003894165623933077, -0.018741050735116005, 0.01483013853430748, -0.03070988319814205, -7.369942613877356e-05, -0.0056276447139680386, -0.05308627709746361, 0.025504939258098602, -0.006231952458620071, -0.021171502768993378, 0.012061002664268017, -0.007682823576033115, -0.014957006089389324, 0.060825198888778687, 0.007709689904004335, 0.00512076448649168, -0.006139981560409069, 3.3172375424328493e-07, -0.002688958076760173, 0.08947812765836716, 0.025184333324432373, 0.04323733597993851, 0.010417448356747627, -0.033070195466279984, 0.0012737498618662357, 0.0076429834589362144, -0.029008254408836365, -0.00501992367208004, 0.035391367971897125, -0.002008747775107622, 0.014919745735824108, 0.048395682126283646, -0.008017260581254959, -0.10332199931144714, -0.07576389610767365, -0.034383781254291534, -0.021771809086203575, -0.04395488649606705, 0.03747272863984108, 0.02911856397986412, 0.03594495356082916, 0.01246890053153038, -0.05939257889986038, -0.014047945849597454, -0.011276839300990105, -0.033504776656627655, -0.014280544593930244, 0.02218175120651722, 0.028453875333070755, 0.01809973083436489, -0.009171719662845135, -0.04913630336523056, -0.01027713529765606, -0.043694812804460526, -0.004351621028035879, 0.014710887335240841, 0.049851156771183014, 0.03705240786075592, -0.014850025996565819, -0.015283241868019104, -0.04446910321712494, -0.007832660339772701, 0.01470732968300581, 0.019712820649147034, 0.03831489384174347, 0.1140083596110344, -0.04022815078496933, -0.01444725226610899, -0.005758221726864576, 0.026850899681448936, 0.04684410244226456, 0.022424470633268356, -0.010168593376874924, -0.019969120621681213, 0.01526565570384264, -0.02554122544825077, 0.019819656386971474, -0.005475094076246023, -0.04179460555315018, -0.025975344702601433, -0.015059827826917171, -0.04987866058945656, 0.011850015260279179, -0.021727120503783226, -0.030656680464744568, 3.692170129158966e-34, 0.023534288629889488, -0.011510465294122696, -0.028358401730656624, 0.007061599288135767, 0.004885563161224127, -0.011460727080702782, 0.07139915227890015, 0.006499305367469788, 0.005687845405191183, -0.05927827209234238, -0.04761726036667824], "50dccdcb-69c2-41fa-9490-9234095132f3": [0.024370603263378143, 0.04552961513400078, -0.03047138825058937, 0.033934228122234344, -0.054426927119493484, -0.004837924614548683, 0.017039624974131584, 0.03800727427005768, -0.01313626579940319, -0.026730535551905632, -0.002883852692320943, 0.04447397217154503, 0.008791223168373108, 0.10075962543487549, -0.036952950060367584, 0.004452558699995279, 0.04423155635595322, -0.010902507230639458, -0.0491979755461216, -0.00221000867895782, -0.004035620018839836, 0.03567301481962204, -0.021513717249035835, 0.006094833370298147, 0.09826124459505081, -0.0397757925093174, 0.01030714251101017, 0.023634545505046844, 0.011549546383321285, -0.014238884672522545, 0.008826402015984058, 0.02991377003490925, -0.042707931250333786, 0.04614809527993202, 2.9473362701537553e-06, -0.017847973853349686, -0.04324837774038315, 0.010676081292331219, -0.047395702451467514, 0.06089189276099205, -0.016481827944517136, 0.01405444648116827, -0.05866819620132446, 0.014883691444993019, -0.004979322664439678, 0.010451062582433224, -0.028332948684692383, 0.03339763358235359, -0.014749238267540932, 0.026959441602230072, 0.036078453063964844, 0.03450224548578262, 0.006752185057848692, -0.01960727386176586, 0.15236587822437286, -0.0001968973083421588, -0.062332458794116974, -0.0007763307658024132, 0.04286286234855652, 0.04653868079185486, 0.01317548006772995, 0.02083049714565277, -0.02789227105677128, -0.012186989188194275, 0.07896160334348679, 0.05582999438047409, -0.030652202665805817, -0.09501645714044571, 0.017054123803973198, 0.003605829318985343, 0.07862520217895508, -0.018837060779333115, 0.03354119136929512, 0.049445170909166336, -0.07050050050020218, 0.03223993256688118, -0.014287414960563183, 0.047586433589458466, 0.006283145863562822, 0.017403433099389076, -0.0036704244557768106, -0.02651585079729557, -0.02632106840610504, -0.025395749136805534, 0.06915698200464249, 0.026127316057682037, -0.015064400620758533, -0.029213236644864082, 0.02078743651509285, -0.04449569806456566, 0.03406726196408272, -0.0384250245988369, -0.03730053827166557, -0.014674652367830276, 0.0803130641579628, -0.02513875998556614, 0.01663416251540184, -0.005782264284789562, 0.059488654136657715, 0.05004051327705383, -0.04936160892248154, 0.04030187800526619, -0.02538115903735161, 0.015855086967349052, -0.0037979220505803823, 0.012563900090754032, -0.007618382573127747, 0.03200605511665344, -0.007406763266772032, 0.09446431696414948, 0.02134048193693161, 0.023866211995482445, 0.01322521734982729, -0.018339086323976517, -0.04931790381669998, -0.008601806126534939, 0.01956053264439106, 0.029204823076725006, 0.03327381983399391, 0.07366342097520828, 0.03183688968420029, 0.027692625299096107, -0.04805480316281319, 0.008296837098896503, -0.015107681043446064, -0.06300565600395203, -0.005668425001204014, -0.0507282093167305, -0.01277873944491148, -0.012257834896445274, -0.04486176371574402, 0.007359453476965427, -0.01544104516506195, 0.0009536464349366724, -0.020296161994338036, 0.054158639162778854, -0.012522774748504162, 0.007354652509093285, -0.0003347664314787835, -0.049375783652067184, 0.010958605445921421, 0.04306945204734802, -0.04805118590593338, -0.029338881373405457, 0.003067239886149764, -0.02146098017692566, 0.019030362367630005, 0.020361488685011864, 0.021221701055765152, 0.012424010783433914, -0.040609121322631836, 0.025000762194395065, -0.027777595445513725, 0.007342467550188303, 0.03033442050218582, 0.05364863947033882, -0.00282561918720603, -0.050418101251125336, -0.030092572793364525, 0.01742277853190899, 0.0560535304248333, 0.019641384482383728, 0.043941814452409744, -0.012593024410307407, -0.020312665030360222, 0.003479883773252368, 0.10595735907554626, 0.014703732915222645, 0.04154884070158005, 0.0034180092625319958, -0.016568655148148537, 0.012548084370791912, -0.009578400291502476, -0.0010834657587110996, -0.008746846579015255, 0.03873523324728012, 0.04657979682087898, 0.04624073952436447, -0.06351164728403091, 0.03246505558490753, -0.012741360813379288, -0.0749916210770607, 0.005439847707748413, 0.005878963507711887, -0.09102127701044083, -0.011056873016059399, -0.0654233768582344, 0.009192653000354767, 0.014550268650054932, 0.016630858182907104, -0.03571009635925293, -0.007259434089064598, -0.0022770599462091923, -0.04487286135554314, 0.030951421707868576, -0.004677787888795137, -0.03034481778740883, -0.0999503955245018, 0.021117696538567543, -0.01528777927160263, 0.006091853138059378, -0.034651923924684525, 0.05740490183234215, 0.06400410085916519, 0.06723519414663315, -0.03005501627922058, -0.010908097960054874, -0.026118025183677673, -0.005151642952114344, -0.01787683367729187, 0.05226236209273338, -0.0037822278682142496, -0.03913978114724159, 0.004944315645843744, -0.03392493724822998, -0.03905366733670235, -0.010061627253890038, 0.04548482969403267, 0.004001858178526163, -0.009150402620434761, -0.006081381347030401, 0.018573153764009476, 0.017655236646533012, 0.023079881444573402, 0.015593022108078003, -0.04876347631216049, -0.026049209758639336, 0.002683846512809396, 0.006145643536001444, 0.023491540923714638, -0.01375295128673315, 0.0012888979399576783, 0.04973570629954338, 0.008917782455682755, -0.013395641930401325, -0.013003715313971043, 0.06325638294219971, -0.002222262555733323, 0.01076904684305191, -0.09634215384721756, -0.006173534784466028, 0.06645675748586655, -0.011442761868238449, 0.02662591077387333, 0.0509088896214962, 0.024991413578391075, -0.008091785944998264, 0.013077722862362862, -0.02906693145632744, 0.02585507184267044, 0.002518738154321909, 0.0010386062785983086, 0.035035811364650726, 0.017117228358983994, 0.014367230236530304, 0.040429212152957916, -0.06814804673194885, 0.027890823781490326, -0.042220741510391235, 0.012380062602460384, -0.009709303267300129, -0.027466565370559692, -0.010550004430115223, -0.002219802001491189, 0.05414315685629845, -0.006493177730590105, -0.026180386543273926, -0.019863048568367958, -0.011536708101630211, -0.015680046752095222, 0.031415607780218124, 0.011053050868213177, 0.013069115579128265, -0.014568001963198185, 0.021438010036945343, 0.0311319250613451, -0.02528894506394863, 0.008149910718202591, -0.08717896789312363, -0.003414352424442768, 0.0045144581235945225, -0.020784763619303703, -0.014016807079315186, 0.0040738265961408615, -0.014953427948057652, -0.007676590234041214, 0.02902376838028431, -0.05008014664053917, -0.062676340341568, -0.039794743061065674, 0.0006330395117402077, 0.017532477155327797, 0.03190020099282265, -0.03581203520298004, -0.04670675843954086, 0.021420693024992943, 0.01666758581995964, 0.007110889069736004, -0.019177326932549477, 0.07577325403690338, 0.026649419218301773, -0.011847694404423237, -0.01592417247593403, 0.007323529105633497, 0.02698647230863571, -0.028291715309023857, 0.03433839976787567, -0.04637774080038071, 0.010394335724413395, -0.07666996121406555, 0.034978315234184265, 0.03623198717832565, -0.006185451056808233, -0.03638119623064995, 0.001716773258522153, -0.03427395224571228, -0.0018585227662697434, -0.05613945052027702, -0.018314320594072342, 0.040213245898485184, 0.0009828434558585286, -0.021489499136805534, -0.015707138925790787, -0.01818348653614521, -0.021448099985718727, -0.06290869414806366, -0.002519254805520177, -0.05836626514792442, 0.05672229453921318, -0.036425162106752396, 0.03269242122769356, 0.051407210528850555, 0.0005122633301652968, -0.002502655377611518, 0.0517888106405735, 0.0021882299333810806, -0.01742173731327057, 0.0006634059245698154, -0.022335000336170197, -0.04164901003241539, -0.003774418029934168, 0.04773871973156929, -0.02562863752245903, -0.04641661047935486, 0.009161088615655899, -0.042249176651239395, 0.008426529355347157, 0.014450904913246632, -0.0705748200416565, -0.007779746316373348, 0.05951400473713875, 0.043082281947135925, 0.06622743606567383, -0.033579155802726746, 0.00628896988928318, -0.02855733036994934, -0.03975984826683998, -0.03565817326307297, -0.037899695336818695, -0.005927915684878826, -0.01486654207110405, 0.04975980147719383, 0.07854025065898895, 0.011859927326440811, 0.037529267370700836, 0.013496560044586658, 0.048886094242334366, -0.0015983195044100285, 0.015490724705159664, 0.00573682552203536, -0.08919338136911392, 0.02605726383626461, -0.019083809107542038, 0.06291381269693375, 0.04900321364402771, -0.030821414664387703, 0.020195702090859413, -0.03360483795404434, 0.06655771285295486, -0.0061619821935892105, 0.01470247097313404, -0.11318668723106384, 0.04542286694049835, -0.01389223337173462, 0.0635480061173439, -0.028250686824321747, -0.012697207741439342, 0.00025877082953229547, 0.05307947099208832, 0.015353315509855747, 0.005981700494885445, -0.0794668048620224, 0.017007187008857727, -0.028825700283050537, -0.04726184532046318, -0.036338455975055695, -0.048354510217905045, 0.006252763327211142, -0.002825210802257061, 0.021717792376875877, -0.02162781171500683, -0.012758600525557995, 0.006932487711310387, 0.05321626737713814, 0.02732865884900093, 0.05830645561218262, 0.09034381806850433, 0.01129966601729393, 0.02705530636012554, -0.004098495468497276, 0.10796742886304855, -0.042698487639427185, 0.017869634553790092, -0.0193143542855978, 0.08693483471870422, -0.051619064062833786, 0.0045747775584459305, 0.020705632865428925, 0.02037912793457508, -0.06718695163726807, -0.03885546326637268, -0.010153152979910374, 0.043707408010959625, 0.009130274876952171, 0.019921615719795227, -0.02988986298441887, 0.010611515492200851, -0.014402219094336033, 0.041198261082172394, -0.04124175012111664, 0.046092115342617035, 0.036830052733421326, -0.03567299246788025, 0.005761538632214069, 0.014841229654848576, -0.027126485481858253, -0.019014226272702217, -0.026184601709246635, -0.059119611978530884, -0.04872112721204758, -0.00027436521486379206, -0.01750398427248001, 0.02671612612903118, -0.021255549043416977, -0.04821576178073883, -0.0008507458260282874, 0.055214982479810715, 0.005584926810115576, -0.030353132635354996, -0.07634694874286652, -0.005323822610080242, -0.029692763462662697, -0.0495370551943779, -0.05152323096990585, 0.01076406892389059, -0.02800874039530754, 0.02590482123196125, 0.003890948835760355, -0.014778145588934422, 0.014599870890378952, 0.004460457246750593, 0.057889051735401154, -0.018565289676189423, -0.007529359310865402, 0.005871723871678114, -0.03623422607779503, -0.032817378640174866, -0.05010242760181427, 0.04292319342494011, -0.023150542750954628, 0.011795386672019958, -0.02703067474067211, -0.02670912817120552, -0.03273482620716095, 0.005320630967617035, -0.05012749135494232, -0.04460599645972252, 0.017577888444066048, 0.015406936407089233, 0.003390935715287924, 0.02661919593811035, -0.00036082821316085756, 0.02401733212172985, 0.009029548615217209, -0.014050942845642567, 0.07892896980047226, 0.023991180583834648, -0.019474182277917862, 0.002270251512527466, -0.012274893000721931, 0.049163464456796646, -0.09254191070795059, 0.012012961320579052, 0.04189584404230118, -0.018490780144929886, 0.06391401588916779, -0.06709691137075424, 0.003951679449528456, 0.05377383530139923, 0.014548646286129951, 0.025730576366186142, -0.013744457624852657, -0.014230393804609776, 0.0884043425321579, -0.07341567426919937, -0.03121134638786316, -0.015145806595683098, -0.0028020022436976433, -0.015847565606236458, -0.013590612448751926, -0.003884013742208481, -0.01428754348307848, -0.1128021627664566, -0.04651673510670662, 0.0538695827126503, 0.030801253393292427, -0.02700563333928585, 0.02386402152478695, 0.027551203966140747, 0.00631746044382453, 0.021915029734373093, -0.02965613640844822, 0.053755369037389755, -0.036211829632520676, -0.0019768867641687393, -0.0025012183468788862, 0.014067624695599079, 0.01616882160305977, -0.02712695114314556, 0.07334727793931961, -0.0757087841629982, -0.017169974744319916, 0.03118644841015339, 0.004475370515137911, -0.05310447886586189, 0.013532586395740509, -0.0009238627390004694, 0.029136180877685547, -0.012754242867231369, -0.038828250020742416, -0.004779675509780645, 0.024487806484103203, 0.011802463792264462, 0.050189994275569916, 0.06968212127685547, 0.01793602854013443, 0.03314502537250519, 0.03283889964222908, -0.026278939098119736, -0.06865114718675613, 0.015797046944499016, -0.0037273357156664133, -0.052912503480911255, 0.016478529199957848, 0.029544072225689888, -7.544957510526885e-33, -0.001942267408594489, -0.03442513942718506, -0.04739021882414818, 0.0643061026930809, -0.010516297072172165, -0.047887325286865234, -0.011899365112185478, -0.016091763973236084, -0.021778633818030357, -0.07939458638429642, 0.007246981840580702, -0.017768051475286484, 0.0380115732550621, -0.05001692473888397, 0.025776883587241173, -0.017484026029706, -0.0013887874083593488, 0.00549993384629488, -0.01900283619761467, 0.014883498661220074, -0.01911812461912632, 0.0019319732673466206, -0.032381899654865265, 0.02630181424319744, 0.0021395478397607803, -0.07889953255653381, -0.007226182613521814, -0.005649971775710583, 0.04125063866376877, 0.009562233462929726, -0.03382069617509842, -0.03155986964702606, -0.02117699384689331, -0.003107096767053008, 0.019467875361442566, 0.009249302558600903, -0.03588619828224182, -0.015371219255030155, -0.013101723045110703, -0.014639426954090595, 0.036437809467315674, -0.02014690823853016, -0.0014764810912311077, 0.011306853964924812, 0.007262836210429668, -0.00013095195754431188, 0.034116990864276886, 0.01691296137869358, -0.020513707771897316, 0.04031844064593315, -0.06470561772584915, 0.016692357137799263, -0.026945902034640312, 0.04297841340303421, -0.008663814514875412, 0.022073617205023766, 0.058278150856494904, -0.052754957228899, -0.002443714765831828, -0.011761590838432312, -0.003459291998296976, -0.00812406837940216, 0.05268694460391998, -0.023232273757457733, -0.026711812242865562, -0.0080659668892622, -0.05173949897289276, 0.05422813445329666, -0.008810153231024742, 0.01668805442750454, 0.0007994783809408545, 0.01631917990744114, 0.011598641984164715, 0.008009403944015503, 0.004919984377920628, 0.0022883047349750996, -0.03728955611586571, 0.0437995120882988, 0.029850652441382408, 0.05766618251800537, 0.005169358570128679, 0.007096211425960064, -0.027574017643928528, 0.009891337715089321, 0.015906473621726036, 0.002045889152213931, -0.040812063962221146, -0.023652877658605576, -0.0032985229045152664, 0.036660246551036835, -0.009165546856820583, -0.03023620881140232, -0.04944248124957085, 0.02262885309755802, 0.0548616424202919, 0.029609326273202896, 0.03376373276114464, 0.008560148067772388, -0.053245145827531815, -0.05061924085021019, -0.0527542419731617, -0.024471044540405273, 0.012979082763195038, 0.0066261314786970615, 0.05298558995127678, -0.024751413613557816, -0.026838766410946846, -0.0032088167499750853, -0.057017307728528976, 0.03193231299519539, -0.024852512404322624, -0.028460349887609482, -0.0003518700832501054, 0.0062681701965630054, -0.018460992723703384, -0.041073162108659744, 0.012974410317838192, -0.02182360365986824, -0.009449546225368977, 0.02090435102581978, -0.05138197913765907, 0.03305978327989578, -0.00325608323328197, -0.029193490743637085, -0.023454170674085617, 0.02868063747882843, 0.04075999930500984, 0.012248780578374863, 0.058627232909202576, -0.02069367840886116, -0.010121814906597137, -0.025482317432761192, 3.654145075415727e-07, 0.00715066771954298, 0.04883166775107384, 0.0388290211558342, -0.009196988306939602, -0.014800598844885826, -0.031687185168266296, -0.0381043441593647, 0.0674886554479599, -0.03614833950996399, -0.04264679178595543, 0.009186552837491035, -0.004282490815967321, 0.01177018228918314, 0.03488367795944214, 0.015117893926799297, -0.07570059597492218, -0.009060870856046677, 0.0064987060613930225, -0.039803728461265564, -0.004937881138175726, 0.09303509443998337, -0.011966760270297527, 0.0671931803226471, -0.002867866540327668, -0.02687833458185196, -0.0017827738774940372, -0.015888761729002, -0.04553455486893654, 0.011440846137702465, 0.044733233749866486, 9.251727169612423e-05, 0.04547115042805672, -0.03595054894685745, -0.07294224202632904, -0.0029963948763906956, -0.05245447903871536, -0.047288455069065094, 0.008837373927235603, 0.04256380349397659, 0.010358725674450397, 0.005486517213284969, -0.035689666867256165, -0.0452086366713047, -0.0484599769115448, 0.023540766909718513, 0.04459996894001961, 0.03203992545604706, 0.10371603816747665, -0.003772683907300234, -0.0218274537473917, 0.021196097135543823, 0.015244792215526104, 0.05409091338515282, -0.017100738361477852, 0.013250384479761124, -0.027956176549196243, -0.004812790080904961, -0.03801674768328667, -0.0039575472474098206, -0.0001151940887211822, -0.06594473868608475, -0.04441433027386665, 0.011646723374724388, 0.026505546644330025, -0.01003000047057867, -0.028138499706983566, -0.012327251024544239, 4.086955085519083e-34, 0.023088820278644562, -0.04640655964612961, -0.03053245134651661, -0.01063974667340517, 0.0023853525053709745, -0.020994331687688828, 0.046280961483716965, -0.013316173106431961, -0.01446670014411211, -0.05404457077383995, -0.05569296330213547], "56f95194-e0bf-4d86-bef9-c4112ef570db": [0.03263901174068451, -0.0428214929997921, -0.06292661279439926, 0.03446710854768753, -0.009467273019254208, 0.03369109332561493, 0.057513076812028885, 0.03493945300579071, 0.022987382486462593, -0.005779990926384926, -0.03814898431301117, 0.017560044303536415, 0.030212605372071266, 0.0330093652009964, 0.017009569332003593, -0.03702171519398689, 0.06418512761592865, 0.007601721212267876, 0.005404670722782612, 1.2309681551414542e-05, -0.024605877697467804, 0.025518788024783134, -0.010898642241954803, -0.01582346484065056, 0.11369171738624573, -0.04295520856976509, -0.01683581806719303, -0.011214717291295528, 0.03769149258732796, -0.035142023116350174, 0.06221427768468857, 0.02822677418589592, -0.01761048473417759, 0.0041070133447647095, 2.427689423711854e-06, 0.018777810037136078, -0.06300785392522812, -0.019168343394994736, -0.019056756049394608, 0.01314733736217022, 0.04000803083181381, 0.042211320251226425, 0.012410812079906464, 0.0092748599126935, 0.009934849105775356, 0.0009156943997368217, -0.007003141101449728, 0.0015187610406428576, -0.034352272748947144, -0.0018322896212339401, 0.03342441841959953, 0.0009333353955298662, -0.024084897711873055, -0.003106507007032633, 0.1061573326587677, -0.02439621463418007, -0.047778286039829254, 0.07499411702156067, 0.0466623418033123, 0.04209010675549507, -0.00931207649409771, 0.011511162854731083, -0.027440901845693588, 0.025199418887495995, 0.029393374919891357, 0.030957063660025597, 0.003721286077052355, -0.08878367394208908, 0.013484660536050797, 0.03441331535577774, 0.12228631973266602, -0.051278937608003616, 0.02301141247153282, 0.03194783627986908, -0.039936963468790054, 0.09171631932258606, 0.004588948097079992, -0.005365012213587761, -0.03034130483865738, -0.009997759014368057, 0.010897132568061352, -0.0163294468075037, -0.005900397896766663, 0.0035520365927368402, 0.03194422647356987, 0.027763353660702705, -0.020113427191972733, -0.009942278265953064, 0.03816438093781471, -0.04462384805083275, 0.02899397350847721, 0.034908972680568695, -0.009450557641685009, 0.011500410735607147, 0.027306701987981796, -0.026915689930319786, 0.045472774654626846, 0.0010676344390958548, 0.05926169827580452, -0.0006603178917430341, 0.022391555830836296, 0.03090769052505493, -0.014159739948809147, 0.023100050166249275, 0.02695472352206707, 0.018428681418299675, 0.02551289275288582, -0.033049505203962326, -0.01844848319888115, 0.06452824175357819, 0.0017272497061640024, 0.014779146760702133, 0.009913086891174316, -0.03217108175158501, -0.02758793532848358, -0.04292331263422966, 0.011151407845318317, 0.03379669785499573, 0.013163586147129536, 0.0029752610716968775, -0.02892717719078064, 0.008000722154974937, -0.04195389151573181, 0.011661114171147346, 0.005271321162581444, -0.04826324060559273, -0.0073296320624649525, -0.04558583348989487, -0.034576740115880966, -0.03876988962292671, 0.01778469793498516, -0.03834402561187744, -0.033766970038414, 0.02664039470255375, 0.01221173070371151, 0.04775533080101013, 0.005098497960716486, -0.03476220741868019, -0.03946322575211525, -0.024455174803733826, 0.029089126735925674, -0.009581485763192177, 0.009460102766752243, 0.0038325870409607887, 0.056250136345624924, -0.0071738953702151775, 0.0240599624812603, 0.024190884083509445, 0.00882011279463768, 0.050925999879837036, -0.0032252087257802486, 0.04649464040994644, 0.041704460978507996, 0.010801167227327824, 0.07231267541646957, 0.042348526418209076, -0.02069455198943615, 0.033403776586055756, -0.025216061621904373, -0.0012371325865387917, 0.038662441074848175, 0.0067561911419034, -0.005993420258164406, -0.028181523084640503, -0.0009626661194488406, -0.023848235607147217, 0.022820744663476944, -0.01590164564549923, -0.02316618338227272, -0.04128671810030937, -0.04054953530430794, 0.03801543265581131, -0.028335342183709145, -0.005352169740945101, 0.0005730189150199294, 0.032481882721185684, 0.05589127913117409, 0.11069919168949127, -0.04364858940243721, 0.03880415856838226, 0.030385861173272133, -0.02068895660340786, -0.008339871652424335, 0.03884296864271164, -0.10769803076982498, -0.0065473951399326324, -0.022609010338783264, -0.026527877897024155, 0.01573256216943264, -0.016155999153852463, -0.0038536249194294214, 0.04346902668476105, 0.04700217396020889, -0.03207883983850479, 0.01017250120639801, -0.01630273461341858, -0.04733322188258171, -0.11631688475608826, 0.010637068189680576, -0.01575954258441925, 0.0162521880120039, 0.024370159953832626, 0.0581049844622612, 0.08202582597732544, 0.09400765597820282, -0.04415027052164078, -0.035692282021045685, 0.01830137148499489, -0.009536889381706715, -0.015149020589888096, 0.05838410556316376, -0.02685963176190853, -0.023656435310840607, -0.033537112176418304, -0.040646690875291824, 0.017623361200094223, -0.03521537780761719, -0.025669004768133163, 0.007482193410396576, 0.01211368478834629, -0.007809628266841173, -0.06317396461963654, -0.05427321791648865, 0.02154318057000637, -0.015665650367736816, 0.014453359879553318, -0.03781144693493843, 0.009181923232972622, 0.03683917596936226, 0.02394353784620762, 0.0038578498642891645, -0.010308917611837387, 0.00848220195621252, 0.03703435882925987, 0.02446705289185047, -0.0255042165517807, -0.0052495114505290985, 0.003939763642847538, 0.01771317794919014, -0.09800177812576294, 0.029881395399570465, 0.0896809920668602, 0.028732381761074066, 0.04619318246841431, -0.022490084171295166, 0.026399387046694756, -0.00234300852753222, -0.0014184798346832395, 0.01005580835044384, 0.025594273582100868, 0.008606303483247757, -0.008593863807618618, 0.05404945835471153, -0.02061890996992588, -0.0010397927835583687, 0.01876198500394821, -0.06119866669178009, -0.013864431530237198, -0.06205510348081589, 0.05504833161830902, 0.014721350744366646, 0.015675654634833336, -0.03329318016767502, 0.049717847257852554, 0.022283416241407394, -0.0286711398512125, 0.017305724322795868, -0.02832922153174877, 0.004262811038643122, -0.012370946817100048, 0.04429101571440697, 0.01711592637002468, -0.02922840788960457, -0.028176916763186455, 0.024014053866267204, -0.006660474464297295, 0.02426152117550373, -0.012370085343718529, -0.0372164323925972, -0.02220619097352028, -0.01958492211997509, 0.0023187650367617607, -0.038210202008485794, -0.010122965089976788, -0.037647098302841187, -0.01228183601051569, 0.020502032712101936, -0.08402960747480392, -0.015775403007864952, -0.018541989848017693, 0.00711832707747817, 0.004805132746696472, 0.00781934056431055, -0.029169809073209763, -0.025274647399783134, 0.004952999763190746, 0.01933976821601391, 0.029548674821853638, 0.006774693727493286, 0.07607141882181168, -0.004007081035524607, -0.015903836116194725, -0.007541969884186983, 0.04172615706920624, -0.030019454658031464, 0.021389463916420937, 0.004338666331022978, -0.07002806663513184, -0.003921699244529009, -0.05598605051636696, 0.02299383096396923, 0.017531346529722214, -0.01535144355148077, -0.014190125279128551, -0.0022072752472013235, -0.0223157349973917, -0.03194153681397438, -0.025443507358431816, -0.02163943648338318, 0.05508701875805855, -0.03586877882480621, -0.01896110735833645, -0.015048549510538578, -0.004196396563202143, 0.00030618783785030246, -0.12765638530254364, 0.011726698838174343, -0.019491229206323624, 0.08500988036394119, -0.0034827690105885267, 0.03449882194399834, -0.016525832936167717, -0.01867162436246872, -0.003907796461135149, 0.05093448609113693, 0.03551564738154411, -0.029170798137784004, 0.017516475170850754, -0.013837052509188652, -0.03672683611512184, 0.0007041054777801037, 0.11390596628189087, -0.03094484657049179, 0.03163352236151695, 0.01432059146463871, -0.04112376272678375, 0.016451498493552208, -0.035660482943058014, -0.11001092940568924, 0.0027822088450193405, 0.053917061537504196, 0.008608398959040642, 0.03509058430790901, -0.01691117137670517, 0.007817436940968037, -0.04276016354560852, -0.001137890387326479, -0.01634557917714119, -0.02174234762787819, -0.08721012622117996, 0.01766364835202694, 0.05659032613039017, -0.044910311698913574, -0.02114398218691349, 0.05013119801878929, -0.032857734709978104, 0.05863983556628227, -0.020389242097735405, 0.016005177050828934, 0.04268450662493706, -0.0644725039601326, -0.01010253094136715, 0.012749419547617435, 0.07199279963970184, 0.035144273191690445, -0.104148730635643, -0.005760734900832176, -0.0399385541677475, 0.03765186667442322, -0.026409270241856575, -0.021926749497652054, -0.04086470976471901, 0.05825938656926155, -0.01042099017649889, 0.063670814037323, -0.0036432230845093727, 0.013532249256968498, -0.01393397618085146, 0.05593413859605789, -0.027517171576619148, 0.01715746521949768, -0.09312122315168381, -0.032609473913908005, 0.014728325419127941, -0.012300466187298298, -0.024863092228770256, 0.009877737611532211, 0.0076265037059783936, -0.013799149543046951, 0.025458799675107002, -0.024216681718826294, -0.026404613628983498, 0.02028532139956951, 0.026788346469402313, 0.00357961212284863, 0.03119255229830742, 0.025562822818756104, 0.03848889470100403, 0.011255512945353985, 0.02541247382760048, 0.03232613950967789, -0.019593479111790657, 0.01793808490037918, -0.037940043956041336, 0.055647123605012894, -0.05405519902706146, 0.0558348074555397, -0.03171135112643242, 0.05120849609375, -0.011086616665124893, -0.01013378519564867, 0.02596224844455719, -0.017362112179398537, -0.021448209881782532, -0.015192556194961071, -0.03355787694454193, 0.07637735456228256, 0.0030323145911097527, 0.040311869233846664, -0.017722124233841896, 0.05611320957541466, 0.024542763829231262, -0.029785476624965668, 0.06178653612732887, 0.02365962788462639, -0.03957025334239006, 0.019889522343873978, -0.06063006818294525, -0.05596902593970299, -0.02547406405210495, -0.004749365150928497, 0.0023688473738729954, 0.01458005141466856, 0.03199341148138046, 0.01846175268292427, 0.06604564934968948, 0.016454029828310013, -0.025879792869091034, -0.04088081046938896, -0.06550982594490051, -0.019372213631868362, -0.06930240988731384, -0.11087100952863693, 0.007451408542692661, -0.0018499797442927957, -0.0007694039959460497, 0.020265167579054832, 0.03413161262869835, -0.03370470926165581, 0.02558368444442749, -0.012445651926100254, 0.04377026483416557, 0.01107212994247675, -0.01127002201974392, -0.00537284417077899, 0.019693033769726753, -0.04427557811141014, -0.06190624088048935, 0.030722273513674736, -0.03624308854341507, 0.007423353847116232, -0.028602678328752518, -0.0192039106041193, 0.0036674239672720432, 0.051215507090091705, -0.0682869628071785, -0.026156870648264885, -0.014692200347781181, -0.0444926992058754, -0.014594264328479767, -0.020118553191423416, -0.04590904712677002, 0.006695989985018969, -0.012847504578530788, -0.03591315820813179, 0.022179333493113518, -0.013652020134031773, 0.023891426622867584, 0.027177423238754272, -0.0201790239661932, 0.03812072426080704, -0.06057097390294075, -0.030113868415355682, -0.037909120321273804, 0.012650713324546814, 0.0379716195166111, -0.051296621561050415, 0.06887242197990417, 0.03206156939268112, 0.01980995014309883, -0.009497148916125298, -0.03138183802366257, -0.005419760476797819, 0.04283896088600159, -0.06255599111318588, 0.00013833490083925426, 0.0023253795225173235, 0.07336306571960449, 0.020145181566476822, -0.0128870140761137, -0.052315399050712585, 0.008273390121757984, -0.040096160024404526, -0.03602687641978264, 0.0451914444565773, -0.039020538330078125, -0.048183873295784, 0.00217077205888927, 0.014104767702519894, -0.011819444596767426, 0.003739800537005067, -0.006772587075829506, 0.04112568497657776, -0.03573678806424141, 0.0510898157954216, -0.02974018268287182, 0.03941699117422104, 0.031967855989933014, 0.005295558832585812, 0.058600053191185, 0.01092590019106865, -0.03867654502391815, 0.05421391874551773, -0.0468008928000927, -0.06414224207401276, 0.014164213091135025, 0.008441327139735222, 0.06089730188250542, 0.013513164594769478, -0.01023183111101389, -0.02529507502913475, 0.0009414521045982838, 0.026483509689569473, 0.04259273782372475, 0.04346684366464615, -0.04472164809703827, 0.03629510849714279, 0.04756569862365723, -0.015919778496026993, -0.08251158148050308, -0.0033506338950246572, 0.01202319748699665, -0.041985515505075455, 0.044028595089912415, -0.004001164808869362, -6.495241055242583e-33, -0.02010946162045002, -0.04825901612639427, -0.004992383532226086, 0.04938080161809921, 0.006366606801748276, -0.07986307889223099, -0.004261741414666176, -0.04146580025553703, -0.023167820647358894, -0.04969281703233719, 0.011981691233813763, -0.003031462663784623, 0.01091582328081131, -0.051073022186756134, 0.00036426246515475214, -0.007972761057317257, 0.020654983818531036, 0.007791583426296711, -0.026732949540019035, 0.04480495676398277, -0.013339037075638771, -0.00763355940580368, -0.014838933013379574, -0.017302239313721657, -0.02205537259578705, -0.08476890623569489, -0.0017050908645614982, -0.0238944161683321, -0.015525680966675282, 0.015852240845561028, -0.03735978156328201, -0.043581075966358185, 0.01529920194298029, -0.012243116274476051, 0.009726239368319511, 0.05679483339190483, -0.07403740286827087, -0.037855152040719986, 0.021482279524207115, 0.0021809171885252, 0.0006768913008272648, -0.04245155677199364, -0.020264407619833946, 0.00804717093706131, 0.016734827309846878, -0.00032041550730355084, 0.029338940978050232, 0.0077529349364340305, -0.03166212886571884, 0.039100125432014465, -0.05992764234542847, 0.026022853329777718, -0.001852623070590198, 0.06706420332193375, 0.012977433390915394, 0.026907509192824364, 0.03293862193822861, -0.05179601162672043, -0.023546548560261726, 0.013913251459598541, 0.0625535175204277, 0.018348626792430878, 0.041805535554885864, 0.026265205815434456, -0.0032453143503516912, 0.04350743442773819, 0.006752599496394396, 0.08203589171171188, 0.017259567975997925, 0.03478258475661278, 0.008562647737562656, 0.019399423152208328, -0.036323245614767075, -0.03991323709487915, -0.03093745931982994, -0.0217833761125803, -0.012337148189544678, 0.06397898495197296, 0.039589300751686096, 0.018766384571790695, 0.008348459377884865, -0.00463454332202673, -0.06382372230291367, -0.01238669641315937, -0.002427096711471677, -0.010757732205092907, -0.02839275822043419, -0.026719680055975914, -0.01707415096461773, -0.009058167226612568, -0.06674447655677795, -0.06765159219503403, -0.03366605192422867, 0.033258870244026184, 0.03681843727827072, 0.07220396399497986, 0.042419083416461945, -0.014180936850607395, -0.02908683940768242, -0.05497117340564728, -0.06584063917398453, -0.05198855325579643, -0.0035965843126177788, -0.0025070165283977985, 0.015604974702000618, -0.045927658677101135, -0.05342601612210274, 0.021587679162621498, -0.029409032315015793, -0.0016422823537141085, 0.008800738491117954, -0.04102828726172447, 0.01699996180832386, 0.002201842376962304, 0.0233404990285635, -0.0289663877338171, 0.014668326824903488, 0.0017574320081621408, -0.0014468433801084757, -0.020565006881952286, -0.024158956483006477, 0.012356121093034744, -0.010237266309559345, -0.04272933304309845, -0.0009633014560677111, -0.0017664572224020958, 0.006533175706863403, -0.009627747349441051, 0.07258814573287964, -0.012542469426989555, -0.002624077955260873, -0.006402576342225075, 3.084452089296974e-07, 0.008553368970751762, 0.06388035416603088, 0.039138589054346085, -0.0020685179624706507, 0.005903639364987612, -0.05354907363653183, 0.03348558396100998, 0.0024175685830414295, 0.00601428747177124, -0.010094176977872849, 0.056009046733379364, 0.04126392677426338, -0.020776132121682167, 0.04551680013537407, 0.002279415726661682, -0.05649147555232048, 0.017410464584827423, -0.00903397984802723, -0.024350019171833992, -0.006180574186146259, 0.031022492796182632, 0.014941582456231117, 0.024541271850466728, 0.0005137655534781516, -0.04688405245542526, -0.007918605580925941, -0.023509148508310318, -0.05266941338777542, -0.025054337456822395, 0.039077918976545334, 0.06257578730583191, 0.03254982829093933, -0.01599983312189579, -0.0499037504196167, 0.013356920331716537, -0.022378655150532722, -0.024561714380979538, -0.024681398645043373, 0.04618077352643013, 0.01105676032602787, 0.013330655172467232, -0.01534441951662302, -0.04527818411588669, 0.0033732068259269, 0.04333832859992981, 0.04967987909913063, 0.03228438273072243, 0.12641766667366028, -0.022171754390001297, -0.01638554036617279, -0.034556806087493896, 0.01736762933433056, 0.035296279937028885, 0.031676746904850006, -0.01719745434820652, -0.04055105149745941, 0.0035320708993822336, -0.021779127418994904, 0.027321409434080124, -0.0070984759368002415, -0.04752838611602783, -0.027083907276391983, -0.008807597681879997, 0.007175856735557318, -0.02841334603726864, 0.00046667823335155845, -0.02940606325864792, 3.363999886646971e-34, 0.01049403753131628, -0.05122437700629234, -0.03336581960320473, -0.03439382091164589, -0.003315495792776346, -0.018732236698269844, 0.01018559467047453, 0.020819412544369698, 0.024640120565891266, -0.06783796101808548, -0.04773667827248573], "e8716438-9709-458f-84d4-b7d3fbde4130": [0.013692809268832207, -0.01406168844550848, -0.01230468600988388, -0.015418598428368568, -0.04158380255103111, -0.022043269127607346, 0.022968418896198273, -0.01121776457875967, -0.040067244321107864, -0.020978329703211784, 0.04515821486711502, -0.026954852044582367, 0.0519246943295002, 0.017071621492505074, 0.017150411382317543, -0.027238722890615463, 0.057241201400756836, -0.033654678612947464, -0.02706151269376278, 0.018465999513864517, -0.013436740264296532, -0.009658435359597206, -0.016327645629644394, 0.006595459766685963, -0.013108176179230213, -0.04590389505028725, 0.03072078712284565, 0.027490634471178055, 0.046796515583992004, -0.045619286596775055, -0.009554826654493809, -0.004973936825990677, -0.036001164466142654, 0.0551234669983387, 2.459513780195266e-06, -0.016346188262104988, -0.025575915351510048, 0.05578157678246498, 0.018388641998171806, 0.05857999250292778, -0.0048356568440794945, 0.051576513797044754, -0.012207088060677052, 0.06544192135334015, -0.022185012698173523, -0.004875166341662407, 0.06049274280667305, -0.009568916633725166, 0.031225871294736862, 0.03994698077440262, -0.007801203988492489, -0.04022363945841789, 0.019216028973460197, 0.014029820449650288, 0.04749419167637825, -0.02836584486067295, 0.011688864789903164, 0.07193421572446823, 0.052539147436618805, 0.01185138151049614, -0.014060890302062035, -0.030341126024723053, 0.020464960485696793, -0.03168347850441933, 0.04600508511066437, 0.00031563351512886584, 0.04549158364534378, -0.05692209303379059, -0.020392660051584244, 0.03690569847822189, 0.10018490254878998, -0.019697312265634537, 0.03668438643217087, 0.05939705669879913, -0.05508122220635414, -0.02619587816298008, -0.02483777143061161, 0.03195459768176079, -0.009066559374332428, 0.023656615987420082, -0.017824290320277214, -0.021652644500136375, -0.0033416098449379206, -0.036562733352184296, -0.00026150717167183757, 0.06482565402984619, 0.028066661208868027, -0.03051614947617054, -0.011022745631635189, -0.007958420552313328, -0.022074606269598007, -0.023944571614265442, -0.013777261599898338, 0.012709912844002247, 0.003842639271169901, -0.010881667025387287, 0.0024422702845185995, -0.01641075126826763, 0.04961571469902992, 0.04718600586056709, 0.020455587655305862, 0.048215702176094055, 0.013952897861599922, 0.03496752306818962, -0.031173111870884895, 0.02020709402859211, -0.008378954604268074, -0.005105176940560341, 0.007524143438786268, 0.02847643941640854, -0.025234151631593704, -0.02071591280400753, -0.04722600057721138, 0.05146430432796478, 0.030335798859596252, -0.011386836878955364, -0.04877779260277748, 0.04460397735238075, -0.023117050528526306, 0.041773151606321335, -0.000934798561502248, -0.040321577340364456, -0.0012383527355268598, 0.029825376346707344, -0.00397095363587141, -0.06599507480859756, -0.03926418349146843, -0.007238559890538454, 0.002387244487181306, -0.052659280598163605, -0.025899549946188927, 0.0009795398218557239, -0.019726498052477837, -0.018182944506406784, -0.053078655153512955, 0.007051930297166109, 0.031186632812023163, 0.02581668645143509, 0.007525943219661713, -0.04818996042013168, 0.012137779034674168, 0.008245955221354961, 0.025075295940041542, -0.03497849032282829, -0.015096407383680344, -0.03521833196282387, 0.03971320018172264, -0.04009135439991951, -0.0170171856880188, 0.014195668511092663, 0.012801877222955227, -0.017222631722688675, -0.039056554436683655, 0.005105904769152403, -0.04313825070858002, 0.027597423642873764, -0.01604984514415264, 0.006058068014681339, -0.0029226483311504126, 0.008225062862038612, 0.019773466512560844, 0.012268752790987492, 0.04431283846497536, -0.027659380808472633, -0.01815040223300457, -0.0570656880736351, -0.004547164309769869, 0.029184723272919655, 0.05379322171211243, 0.0064033023081719875, -0.005165582522749901, 0.10388711094856262, -0.050422340631484985, 0.014351249672472477, -0.019066069275140762, 0.05559611693024635, 0.06172874569892883, 0.07904651015996933, -0.0020190076902508736, 0.015936940908432007, 0.04672206565737724, -0.024937892332673073, -0.025182174518704414, 0.025205569341778755, -0.059238601475954056, 0.013124903663992882, -0.08202137053012848, 0.056581638753414154, -0.027278361842036247, -0.0415489599108696, -0.0476483590900898, -0.001654588500969112, -0.03167460858821869, -0.051704294979572296, -0.014997714199125767, 0.0014599255518987775, 0.01655288226902485, -0.05937429144978523, -0.00552357267588377, -0.029970144852995872, -0.014700735919177532, -0.0545671172440052, 0.025929288938641548, 0.039322320371866226, 0.019896822050213814, -0.08334222435951233, -0.017526552081108093, -0.026556067168712616, -0.009446029551327229, -0.015028207562863827, 0.06747456640005112, -0.003404393792152405, -0.013469398953020573, -0.03492928668856621, -0.02116619423031807, 0.05658074468374252, 0.0066556804813444614, 0.010176056995987892, -0.059573736041784286, 0.06340639293193817, -0.01272184494882822, -0.021510552614927292, -0.022681763395667076, 0.03522287681698799, 0.012338533066213131, -0.039757855236530304, -0.022256925702095032, 0.030868012458086014, -0.016899440437555313, 0.023986173793673515, -0.034559350460767746, 0.04023395851254463, 0.041556648910045624, 0.055323630571365356, -0.0006783766439184546, 0.0005817320197820663, -0.035997577011585236, 0.06667295098304749, 0.05211608111858368, -0.0996987521648407, -0.021822987124323845, 0.0703267753124237, 0.006894891615957022, 0.00011552279465831816, -0.0009339543175883591, -0.028496669605374336, 0.07394949346780777, -0.019726209342479706, -0.008629926480352879, 0.0068402281031012535, -0.008911042474210262, -0.0033268143888562918, -0.051421280950307846, 0.04483999311923981, -0.006403177045285702, 0.04033546894788742, -0.10813077539205551, 0.03801140561699867, -0.006307409610599279, -0.03251887485384941, 0.0314825177192688, -0.023746542632579803, 0.02058303914964199, 0.03658772259950638, 0.060310348868370056, 0.003336861729621887, -0.003964745905250311, -0.012334130704402924, -0.029729850590229034, -0.0052317106164991856, 0.04113870859146118, -0.01457361038774252, -0.0031724318396300077, -0.0013674467336386442, -0.010310125537216663, 0.002451814478263259, -0.028469184413552284, -0.027342528104782104, -0.027143405750393867, 0.030971864238381386, 0.009555014781653881, -0.08491865545511246, 0.01971133053302765, -0.023399678990244865, -0.004195835441350937, 0.032841756939888, 0.00654918048530817, -0.02283308282494545, -0.07559952139854431, -0.016026915982365608, 0.01161161344498396, 0.0056482721120119095, -0.0016946701798588037, -0.012922970578074455, -0.02899162285029888, 0.02138690836727619, 0.00524339871481061, 0.01596711203455925, -0.0418667197227478, 0.010491225868463516, -0.00960598886013031, 0.053820669651031494, -0.056101344525814056, -0.018340831622481346, 0.03156834468245506, 0.004040583036839962, 0.042600519955158234, -0.0051646726205945015, 0.021110929548740387, 0.00998698826879263, -0.05784187838435173, -0.016084596514701843, 0.011020421050488949, 0.01731143519282341, -0.014518734067678452, -0.03522702306509018, -0.02232063189148903, -0.0745399072766304, -0.004504744429141283, 0.055027056485414505, 0.004788467660546303, -0.004537918139249086, 0.0371653251349926, -0.022322488948702812, -0.016092341393232346, -0.09707868099212646, 0.034283462911844254, -0.044313326478004456, 0.030346864834427834, -0.05083027482032776, 0.00796348787844181, 0.04805819317698479, -0.031624387949705124, 0.004953597206622362, -0.0436599925160408, 0.057057563215494156, 0.010515500791370869, 0.010290009900927544, -0.002899481449276209, 0.03794663026928902, -0.019828051328659058, -0.028158241882920265, -0.042307037860155106, -0.022783620283007622, 0.04364761337637901, 0.024587472900748253, -0.05277160927653313, 0.006037352606654167, -0.04219653084874153, 0.02635423094034195, 0.08126868307590485, -0.03996332362294197, 0.0316082201898098, -0.03184923157095909, 0.016757259145379066, -0.04497763514518738, -0.006792330648750067, -0.03437686711549759, 0.01747930981218815, 0.02462891675531864, 0.021408118307590485, 0.07688125222921371, -0.03616764023900032, 0.02754577249288559, -0.028080839663743973, -0.02867444045841694, 0.06553493440151215, -0.022404270246624947, -0.016187487170100212, 0.0407572016119957, -0.016968192532658577, 0.009621166624128819, -0.01937214657664299, 0.0364619605243206, 0.01688407175242901, -0.027532456442713737, 0.03564807027578354, -0.042337894439697266, 0.08395973592996597, 0.0031063933856785297, 0.01863003894686699, -0.12809903919696808, 0.0729142352938652, -0.008138290606439114, 0.0037879168521612883, 0.004939285572618246, -0.007846456952393055, 0.039693452417850494, -0.0045534525997936726, 0.006571959238499403, 0.02505304478108883, -0.07527029514312744, -0.07123596221208572, -0.014682510867714882, 0.0068037668243050575, 0.0067842197604477406, 0.000772426079493016, 0.02994484081864357, -0.06071235239505768, -0.003542680060490966, 0.041878554970026016, -0.10407552123069763, -0.0015320162056013942, -0.05433397740125656, -0.013276592828333378, 0.023577414453029633, 0.07985688745975494, 0.013550612144172192, -0.012262498028576374, -0.0748729407787323, 0.06736928224563599, 0.028406240046024323, 0.00672718184068799, -0.04268762841820717, -0.03797521814703941, -0.0006533203995786607, -0.019242843613028526, -0.008718125522136688, -0.006849215365946293, -0.037570007145404816, -0.04935082793235779, 0.017337219789624214, 0.07346143573522568, -0.016361216083168983, -0.014205380342900753, -0.03666391223669052, 0.021131904795765877, 0.02490979991853237, 0.033261194825172424, -0.004745467100292444, 0.041428420692682266, -0.029079005122184753, -0.03376501053571701, 0.04038394242525101, -0.05234649404883385, -0.014964191243052483, -0.05825073644518852, -0.0165645033121109, -0.04549214988946915, -0.07006049156188965, -0.01859208010137081, 0.0310391616076231, 0.08182794600725174, 0.020234951749444008, -0.02758341282606125, 0.058466311544179916, 0.02350393496453762, -0.026955949142575264, -0.0062574176117777824, -0.07364333420991898, -0.016031604260206223, -0.029135318472981453, -0.007494635879993439, -0.04110521078109741, 0.006171431392431259, -0.028122326359152794, -0.04269801452755928, 0.07096688449382782, -0.021830234676599503, 0.08182945847511292, 0.03957551717758179, 0.05442231893539429, -0.038055963814258575, -0.026577679440379143, 0.014951298013329506, -0.03062693029642105, -0.039747968316078186, -0.03126715496182442, 0.01319923996925354, 0.015178054571151733, -0.04246571660041809, 0.002836283529177308, -0.026214057579636574, 0.0026280053425580263, -0.004861247260123491, -0.03352080285549164, -0.0033719101920723915, 0.009709546342492104, -0.003050660714507103, -0.0032165651209652424, 0.04674115777015686, -0.011338199488818645, -0.0006453644018620253, 0.0658380463719368, 0.0035854014568030834, 0.029078762978315353, -0.00448442529886961, 0.017672130838036537, -0.020023493096232414, 0.08170029520988464, -0.014407328329980373, -0.017289098352193832, -0.01779482327401638, 0.016964931041002274, -0.010956408455967903, 0.018294792622327805, -0.007910892367362976, 0.03674999251961708, -0.01241560373455286, 0.05414630472660065, 0.035852883011102676, -0.0029325701761990786, -0.008078197948634624, 0.04570266231894493, -0.006461396813392639, 0.023450497537851334, -0.02745668776333332, 0.010180100798606873, 0.03521242365241051, -0.00041215564124286175, -0.031613197177648544, 0.029398201033473015, -0.034137580543756485, -0.06328646093606949, 0.004983632359653711, 0.02053089253604412, 0.035649705678224564, 0.06776884943246841, 0.007892671972513199, -0.04967869073152542, 0.025184964761137962, -0.007338014896959066, 0.06146525964140892, -0.018618259578943253, 0.044373657554388046, -0.024879809468984604, 0.03866026923060417, -0.013426409102976322, -0.06346627324819565, 0.03390176594257355, -0.03549351543188095, -0.049404941499233246, -0.03321220353245735, -0.02058023028075695, -0.020230595022439957, -0.009350004605948925, 0.02227412536740303, 0.016092732548713684, -0.020816370844841003, -0.06859100610017776, -0.08488236367702484, -0.048574015498161316, 0.041628435254096985, 0.04554321989417076, 0.007810868322849274, 0.002640452003106475, 0.045092083513736725, 0.0038424076046794653, 0.04860428720712662, -0.013526427559554577, 0.039540644735097885, -0.0290597602725029, -0.03252587839961052, -0.04020411893725395, 0.009238891303539276, -6.414572020733434e-33, -0.006783806718885899, -0.006628714501857758, 0.01879674196243286, 0.04832291975617409, -0.04680289700627327, -0.029133399948477745, 0.009355281479656696, -0.012927383184432983, -9.477381536271423e-05, 0.00024614925496280193, -0.004581820219755173, 0.014967827126383781, 0.024442872032523155, -0.024736545979976654, -0.031243225559592247, -0.014995098114013672, 0.011280432343482971, 0.021182775497436523, -0.04041333869099617, -0.03249472752213478, -0.03172030672430992, -0.02298956736922264, 0.04186626523733139, 0.005155785009264946, 0.018710114061832428, -0.010164928622543812, -0.014373891986906528, 0.0008894096245057881, -0.011204931885004044, 0.05771263316273689, 0.009284129366278648, -0.025954559445381165, 0.005312918685376644, 0.009798288345336914, -0.022390272468328476, 0.10545225441455841, -0.0753563866019249, -0.057447630912065506, 0.02518474869430065, -0.019395988434553146, 0.009805840440094471, -0.03252497687935829, -0.02647588960826397, -0.009940097108483315, -0.02250874601304531, 0.04601258784532547, 0.03917297348380089, 0.01543657947331667, -0.04144338518381119, -0.013675213791429996, -0.04698251187801361, -0.0003636635956354439, -0.02777441404759884, 0.07173215597867966, 0.026039518415927887, -0.006024347152560949, 0.023556368425488472, -0.05213151499629021, -0.050747454166412354, -0.005813108291476965, -0.007223549298942089, -0.001477150246500969, 0.02468010038137436, -0.017980825155973434, 0.00477254344150424, 0.007837756536900997, -0.02899264357984066, 0.05540880933403969, 0.022016994655132294, 0.003490317612886429, -0.02249256707727909, 0.03406412526965141, -0.04062255471944809, -0.01923416554927826, 0.07231515645980835, -0.03675337880849838, -0.0824570506811142, 0.06305285543203354, 0.021548965945839882, 0.0870191752910614, 0.00302209728397429, -0.00475902808830142, -0.06377167254686356, -0.009937996976077557, -0.019783271476626396, 0.03673297166824341, -0.019713623449206352, 0.014968075789511204, -0.009909624233841896, -0.006244645919650793, -0.0011329742847010493, 0.06210498511791229, 0.020368237048387527, -0.002418618416413665, 0.0283012967556715, 0.00631865207105875, 0.03598253056406975, 0.015786852687597275, -0.029048467054963112, -0.007841214537620544, 0.01319910679012537, -0.03243064880371094, 7.487068069167435e-05, 0.02936953864991665, 0.03544440120458603, -0.03067600727081299, 0.009120921604335308, 0.0462760329246521, -0.04571970924735069, 0.011191366240382195, -0.002528494456782937, 0.02881001867353916, 0.01885555498301983, -0.02075718529522419, 0.001268445630557835, 0.025703787803649902, 0.040331508964300156, 0.044231660664081573, -0.05067022889852524, -0.05479736998677254, -0.03551335260272026, 0.08097930997610092, 0.05645220726728439, -0.0003465627378318459, 0.015655234456062317, -0.02147391252219677, 0.03376071900129318, 0.05328379571437836, 0.1204167902469635, 0.026438549160957336, -0.01121451985090971, 0.004942622501403093, 3.1689415891378303e-07, 0.06886014342308044, 0.018428733572363853, 0.07612639665603638, 0.015674740076065063, -0.008873619139194489, -0.04919200390577316, -0.01194754522293806, 0.02332926169037819, -0.013128343038260937, 0.02565390057861805, 0.034574244171381, 0.029113126918673515, -0.004937026184052229, -0.020876619964838028, -0.04497895389795303, -0.12221316993236542, -0.04403729364275932, -0.004446474369615316, 0.016501137986779213, -0.012551914900541306, 0.07495144754648209, -0.016119740903377533, 0.0026156636886298656, -0.031706035137176514, -0.033349353820085526, -0.005620204843580723, 0.033909399062395096, -0.03082965686917305, 0.06499560177326202, 0.038082949817180634, 0.04790054261684418, -0.009030140936374664, 0.018279805779457092, -0.02870802953839302, 0.03526408597826958, -0.03763337433338165, -0.00020967514137737453, 0.1081782653927803, 0.014816183596849442, -0.01861877366900444, -0.043565891683101654, -0.02468550205230713, -0.015558025799691677, 0.015794631093740463, 0.017520565539598465, 0.03443522751331329, 0.007275169715285301, -0.00604578061029315, -0.05521613731980324, -0.013327513821423054, 0.012431315146386623, 0.005405919160693884, 0.010379507206380367, 0.021411770954728127, -0.00626959465444088, -0.025909706950187683, -0.016661381348967552, -0.014903297647833824, 0.003817887743934989, 0.018215790390968323, -0.04060067981481552, -0.07105108350515366, 0.022755898535251617, 0.003939492627978325, 0.01620250567793846, -0.02656714990735054, -0.043201103806495667, 3.541094079905599e-34, 0.007987805642187595, -0.09739544242620468, 0.0030626000370830297, 0.03154514357447624, -0.036330290138721466, -0.01347433216869831, 0.005444598384201527, -0.009555373340845108, -0.02264256402850151, -0.035690806806087494, -0.041280243545770645], "5152f868-b29a-47d3-b9d8-b00239673c47": [0.0017536514205858111, -0.0055839866399765015, -0.01888200454413891, -0.059196244925260544, -0.007108014542609453, 0.015323720872402191, -0.009783854708075523, 0.007178207393735647, -0.021989110857248306, -0.06350073963403702, 0.0692717507481575, 0.03172644227743149, -0.004461285658180714, 0.04196401685476303, 0.0116912592202425, 0.05064835399389267, 0.04714057967066765, 0.01087050512433052, -0.03031601943075657, 0.050448331981897354, -0.00906496774405241, 0.002698823343962431, 0.04523368924856186, 0.021437248215079308, -0.01064093317836523, -0.03928981348872185, 0.012153556570410728, 0.0027248875703662634, 0.04305605962872505, -0.024587955325841904, -0.006165000610053539, 0.0554683692753315, 0.0176053736358881, 0.037946123629808426, 2.4966832370409975e-06, -0.016085511073470116, -0.00200297636911273, 0.044837918132543564, -0.06377830356359482, 0.028112510219216347, -0.009896240197122097, -0.01847567968070507, -0.005995821673423052, 0.038794588297605515, 0.017965389415621758, -0.03217090666294098, -0.021056953817605972, 0.03450679033994675, 0.04171226918697357, 0.035284824669361115, 0.023946059867739677, -0.03752533718943596, -0.014195174910128117, -0.026407886296510696, 0.1119498535990715, 0.04242269694805145, 0.007588106207549572, 0.07713020592927933, -0.04736115410923958, 0.03388708829879761, 0.03202120587229729, 0.04179137572646141, 0.0029164196457713842, -0.054257214069366455, 0.04365167394280434, -0.012537777423858643, 0.09379488974809647, -0.037024471908807755, 0.06430557370185852, -0.011127636767923832, 0.07064151018857956, -0.032249175012111664, 0.03804558515548706, -0.01424006000161171, -0.05553252995014191, -0.04324793070554733, -0.00020306972146499902, -8.410003647441044e-05, 0.017808692529797554, -0.03056790493428707, 0.00532891508191824, -0.0838920921087265, -0.0019452820997685194, -0.025921983644366264, 0.009053745307028294, -0.03081612102687359, -0.0280927587300539, 0.03246800974011421, -0.029438717290759087, -0.04414023458957672, 0.001951832789927721, -0.04357978329062462, -0.031026534736156464, -0.022026007995009422, 0.046111322939395905, 0.004619976505637169, 0.010095401667058468, -0.018158504739403725, 0.017360908910632133, -0.02921235002577305, -0.04383598268032074, 0.020353712141513824, -0.0343286357820034, -0.008679287508130074, -0.04681757837533951, 0.05447964370250702, 0.018452493473887444, 0.042820412665605545, -0.00178389938082546, -0.0002040375693468377, -0.009870772249996662, 0.01877756230533123, -0.04138040170073509, -0.03209661319851875, 0.05443038418889046, 0.03154025599360466, 0.05030236020684242, 0.05626096576452255, 0.0643019899725914, 0.07402924448251724, 0.011738533154129982, -0.02469669096171856, -0.05203917995095253, 0.013645117171108723, 0.028967272490262985, -0.08785276114940643, 0.041839491575956345, -0.0035050027072429657, 0.006312660872936249, 0.02256382629275322, -0.02117096446454525, -0.044460445642471313, -0.03468029201030731, 0.05425594374537468, -0.02358045056462288, -0.00469429325312376, 0.04403723031282425, -0.03977913409471512, -0.03392526134848595, -0.027328098192811012, 0.015369739383459091, 0.013966403901576996, -0.05765628069639206, -0.014751224778592587, -0.015265197493135929, -0.015349323861300945, -0.01461087353527546, -0.06385977566242218, -0.04302820563316345, -0.008153402246534824, -0.0009906684281304479, -0.06145048514008522, -0.05179563909769058, -0.012746750377118587, -0.0029714980628341436, 0.00406209472566843, -0.014501788653433323, 0.04159151390194893, 0.02462031878530979, -0.009054325520992279, 0.006249220576137304, -0.0246927160769701, -0.02787819318473339, -0.04064011573791504, -0.04504098370671272, -0.015860220417380333, -7.195254147518426e-05, 0.02237240970134735, 0.04173918440937996, -0.00437117088586092, -0.028219226747751236, -0.021922893822193146, -0.010231005027890205, -0.052212897688150406, -0.02607700414955616, -0.029846372082829475, 0.10184719413518906, -0.02622080035507679, -0.000931353191845119, 0.028252113610506058, -0.043723952025175095, -0.03599058464169502, 0.019735187292099, -0.0298415869474411, 0.0021189069375395775, -0.06353656202554703, -0.053658854216337204, -0.045186784118413925, 0.013563469052314758, -0.03591466322541237, -0.05267602577805519, -0.0053995042107999325, -0.03644092381000519, -0.019617823883891106, -0.01960502378642559, 0.002335481345653534, 0.007920618169009686, 0.020422840490937233, 0.01574729010462761, -0.010749150067567825, 0.0022303685545921326, 0.019369587302207947, 0.06864920258522034, 0.04601794108748436, 0.036702949553728104, -0.028588512912392616, -0.013248956762254238, -0.012053282000124454, -0.02333463542163372, -0.03415411338210106, 0.05456216260790825, -0.018165016546845436, 0.006319140084087849, -0.005371940787881613, -0.012989056296646595, -0.07163430750370026, -0.003096982603892684, -0.003342714859172702, -0.008389617316424847, 0.02183728665113449, 0.0232629906386137, -0.001731578609906137, -0.0454007051885128, 0.027857648208737373, 0.006666050758212805, 0.0046857441775500774, -0.017963143065571785, -0.043629128485918045, 0.018941538408398628, 0.016794541850686073, -0.024094244465231895, 0.0021588129457086325, 0.02387087047100067, 0.03173273801803589, -0.03924437612295151, 0.03577756509184837, 0.024755289778113365, 0.001196249620988965, 0.032761264592409134, -0.010709069669246674, 0.022358102723956108, 0.0004635611257981509, -0.05035149306058884, 0.00635373592376709, -0.023633921518921852, -0.0806630402803421, 0.01772858202457428, 0.0020013446919620037, 0.023185204714536667, -0.020245525985956192, 0.0019185002893209457, 0.007336749695241451, -0.049305398017168045, 0.00044734901166521013, -0.05763339251279831, -0.01709573343396187, 0.02488057315349579, 0.015643944963812828, 0.0074541931971907616, -0.0055812085047364235, 0.08022791147232056, -0.009954837150871754, -0.011637626215815544, 0.012460395693778992, -0.024743063375353813, 0.0016985981492325664, -0.014231918379664421, -0.03837292641401291, -0.003925182856619358, 0.010406576097011566, -0.02873445861041546, 0.013065334409475327, -0.009884984232485294, -0.00612576212733984, 0.03528643399477005, 0.05663032457232475, 0.07533282786607742, 0.015303237363696098, -0.021590888500213623, 0.014750421047210693, 0.03257344663143158, 0.010171057656407356, -0.03673264756798744, 0.014380593784153461, -0.0034560752101242542, 0.048552256077528, -0.011444509960711002, -0.03118262253701687, -0.12595953047275543, 0.02010400965809822, -0.04713916406035423, 0.02652987465262413, 0.0012934845872223377, -0.00981750339269638, -0.006365117151290178, 0.014271106570959091, 0.08083924651145935, -0.04082096740603447, 0.025875534862279892, 0.052251752465963364, 0.019360288977622986, 0.022495992481708527, -0.08341356366872787, -0.03281977027654648, 0.015382274985313416, 0.015107646584510803, -0.014254841022193432, -0.024904519319534302, 0.020789094269275665, -0.008875292725861073, -0.03890874981880188, -0.037363797426223755, -0.038513846695423126, -0.03841380774974823, -0.007891303859651089, -0.02154492773115635, 0.0805644690990448, -0.058153729885816574, -0.014206169173121452, 0.027350399643182755, 0.036861877888441086, -0.031010493636131287, -0.04247935861349106, -0.011809456162154675, 0.011763193644583225, -0.048985935747623444, 0.007403315510600805, -0.03444209694862366, 0.05417822673916817, -0.003166539827361703, 0.0004143041151110083, 0.005754549987614155, -0.011411850340664387, 0.04303760454058647, -0.06677311658859253, 0.006241494789719582, 0.02997400239109993, 0.02519449219107628, -0.028989654034376144, -0.0005852486938238144, 0.036836542189121246, 0.0733736902475357, -0.00216112332418561, -0.01674245111644268, -0.024915212765336037, 0.008275764063000679, -0.01883046142756939, 0.04660218209028244, -0.030955838039517403, 0.01351428497582674, 0.025572804734110832, 0.017372649163007736, 0.0821097195148468, -0.01238254550844431, 0.00042896746890619397, -0.10080162435770035, -0.02317468822002411, -0.028744278475642204, 0.02325587160885334, 0.005202546250075102, 0.057649388909339905, 0.04782964289188385, 0.017266767099499702, 0.01003743801265955, -0.023727359250187874, -0.09006734937429428, 0.02409125305712223, -0.00313109764829278, 0.00037492020055651665, 0.01706361584365368, -0.04578010365366936, -0.006453315727412701, 0.00932681281119585, 0.04820508509874344, 0.007176745682954788, -0.01409103162586689, 0.01390024647116661, -0.020628929138183594, 0.009339461103081703, -0.013397407718002796, -0.013658690266311169, -0.044668443500995636, 0.0065608699806034565, 0.0002256521984236315, -0.03516197204589844, 0.012577532790601254, -0.0013721563154831529, 0.00708349421620369, 0.13275068998336792, -0.008233433589339256, 0.004281178582459688, -0.05829104036092758, 0.018967432901263237, -0.03231889754533768, -0.009781494736671448, -0.02542184479534626, -0.07413706928491592, -0.021672887727618217, 0.022450322285294533, 0.007603372447192669, 0.042697980999946594, -0.06831612437963486, -0.0006419726414605975, 0.009652579203248024, -0.015947336331009865, 0.04235616698861122, 0.03185632824897766, -0.03886668384075165, 0.02896028198301792, -0.00458909897133708, 0.10590826719999313, 0.021582910791039467, 0.04130427539348602, -0.06081319600343704, 0.005241611041128635, -0.04002993181347847, 0.018371162936091423, 0.010189665481448174, -0.06702639162540436, 0.04839438945055008, -0.017351821064949036, -0.009339424781501293, -0.00019287093891762197, -0.06936132162809372, -0.07376301288604736, -0.018848953768610954, 0.025906475260853767, -0.07120701670646667, 0.0166277214884758, 0.004658213816583157, 0.03728378936648369, 0.023267051205039024, -0.0027272342704236507, 0.032556530088186264, 0.05418160557746887, 0.026482362300157547, -0.07151615619659424, -0.03698369488120079, -0.044540077447891235, -0.02569461800158024, -0.05289008840918541, 0.015217316336929798, 0.020627843216061592, -0.010782022960484028, 0.004791416227817535, 0.011520381085574627, 0.00802120566368103, -0.02422778308391571, -0.008720427751541138, -0.07280460000038147, 0.0071505834348499775, -0.049339357763528824, -0.038610782474279404, 0.061174407601356506, 0.04146232455968857, -0.005174771882593632, -0.017785940319299698, -0.008896604180335999, -0.004222778137773275, 0.04362206533551216, -0.016552060842514038, 0.028264842927455902, 0.023381760343909264, -0.012324954383075237, -0.02632404863834381, -0.04760574549436569, -0.06177208572626114, -0.011697516776621342, 0.019771821796894073, 0.020086882635951042, 0.02649153582751751, -0.011898770928382874, -0.022566387429833412, -0.014585144817829132, -0.027881957590579987, -0.056318141520023346, -0.02803380973637104, 0.03421682491898537, -0.0846366137266159, -0.04175809398293495, 0.024614281952381134, 0.016852889209985733, 0.07181451469659805, -0.014590450562536716, -0.020052528008818626, 0.008677913807332516, 0.024486426264047623, 0.024496015161275864, -0.02282559685409069, 0.024601859971880913, 0.013113060966134071, -0.01710299402475357, -0.03216790407896042, 0.08691683411598206, -0.07883320748806, -0.002773050218820572, 0.0008781287469901145, -0.006026702467352152, -0.005124719347804785, 0.045048002153635025, -0.012677309103310108, 0.008286249823868275, -0.057531971484422684, -0.013351322151720524, -0.015547528862953186, -0.02255246788263321, -0.013860682025551796, 0.037927836179733276, -0.008082576096057892, -0.013322471641004086, -0.006935894023627043, 0.021189365535974503, -0.03317681699991226, -0.013757926411926746, 0.010829370468854904, -0.05067300796508789, 0.009235232137143612, 0.05984733998775482, 0.10642831027507782, -0.019352607429027557, 0.017624767497181892, -0.033604659140110016, 0.046319060027599335, 0.01712127961218357, -0.00038627724279649556, -0.010939235799014568, -0.006036031059920788, 0.008027690462768078, -0.03179965168237686, 0.020304955542087555, 0.02206454984843731, 0.01915460079908371, -0.040484871715307236, -0.0111188143491745, 0.0052838316187262535, -0.014121816493570805, 0.032881975173950195, 0.006445939652621746, -0.03919818997383118, -0.08444678038358688, -0.02122107334434986, 0.027433594688773155, 0.051688604056835175, 0.06199977174401283, -0.00701094139367342, 0.028533117845654488, 0.02135227806866169, 0.025529611855745316, 0.026943139731884003, -0.055767834186553955, 0.024073617532849312, -0.03073766455054283, 0.007341780234128237, 0.031742654740810394, 0.03041539527475834, -5.657406722010028e-33, -0.009251774288713932, 0.0028314257506281137, -0.002378304023295641, 0.02380300685763359, -0.058256130665540695, -0.019551588222384453, -0.031645517796278, -0.03466005250811577, -0.007772155571728945, -0.06315594166517258, 0.0376242995262146, 0.01827053353190422, 0.006657901685684919, -0.09754973649978638, 0.021636085584759712, -0.013951066881418228, 0.04622752591967583, 0.026606952771544456, 0.023116322234272957, 0.020967459306120872, -0.004807172808796167, -0.025927815586328506, 0.03426719829440117, -0.01590084098279476, 0.018786586821079254, 0.007901281118392944, 0.030411548912525177, 0.020873388275504112, -0.014813763089478016, -0.006168451625853777, -0.005260030273348093, -0.08551298826932907, -0.003229602472856641, 0.004230561666190624, -0.030282272025942802, -0.08476658910512924, 0.044880811125040054, -0.03196805715560913, 0.0073350272141397, -0.001487267785705626, 0.03062870353460312, -0.018014024943113327, -0.022458886727690697, 0.009897638112306595, -0.03330165520310402, 0.00642873952165246, -0.00024371450126636773, 0.04491433501243591, -0.008911294862627983, 0.028459085151553154, -0.011821473017334938, 0.016930781304836273, 0.0085007194429636, 0.061667297035455704, -0.019058655947446823, 0.01878991350531578, 0.11241582781076431, -0.04542985185980797, -0.06726276129484177, -0.028174296021461487, 0.00047130888560786843, -0.02951982244849205, 0.038399048149585724, -0.046903204172849655, -0.012608456425368786, -0.013477116823196411, 0.011154004372656345, 0.048739805817604065, 0.023139094933867455, 0.02037418633699417, 0.04347015544772148, 0.028412239626049995, 0.036611560732126236, -0.021711040288209915, 0.00727474968880415, -0.03413566201925278, 0.009098160080611706, 0.07619957625865936, 0.0010060275672003627, 0.10285130143165588, -0.006590620148926973, 0.02483895607292652, 0.00422932393848896, 0.012942928820848465, -0.01934840902686119, 0.03502989560365677, -0.01282381173223257, -0.011830228380858898, -0.008631283417344093, 0.00570406811311841, 0.018418967723846436, 0.00903839897364378, 0.014825399965047836, 0.005009779240936041, 0.07554922997951508, 0.026556609198451042, -0.04473945125937462, -0.003238716395571828, 0.025790629908442497, -0.010773076675832272, 0.0028908124659210443, -0.02138686552643776, 0.09281426668167114, 0.009351585991680622, 0.0405673123896122, -0.03761090710759163, 0.017850637435913086, 0.038781825453042984, 0.005228364374488592, 0.03439164161682129, -0.00010284296877216548, -0.051005709916353226, -0.051523685455322266, -0.04031238704919815, -0.008284898474812508, -0.013576376251876354, -0.0025536585599184036, 0.05544757470488548, -0.03861435875296593, -0.02396896481513977, -0.05204346030950546, 0.06383180618286133, 0.0886751189827919, 0.0030106825288385153, 0.015576374717056751, 0.027326809242367744, 0.019744660705327988, 0.044666651636362076, 0.06725142151117325, 0.07052215188741684, -0.014531634747982025, 6.609222509723622e-06, 3.1393946642310766e-07, 0.015306836925446987, 0.0539301261305809, 0.03809782490134239, -0.07804855704307556, 0.05453766509890556, -0.0020196249242872, -0.03202503174543381, 0.004673193208873272, -0.008954881690442562, 0.06622082740068436, -0.008179564960300922, 0.002227064222097397, 0.018950559198856354, 0.03066885657608509, 0.053031545132398605, -0.11191112548112869, -0.01334371417760849, -0.038932304829359055, -0.03633222356438637, 0.004567471798509359, 0.049917928874492645, 0.006164479069411755, 0.013669492676854134, 0.03714532032608986, -0.03392084687948227, 0.025519248098134995, 0.0012461948208510876, -0.04047563299536705, 0.043091047555208206, 0.03465703874826431, 0.07022453099489212, 0.05751108005642891, -0.00010905656381510198, -0.09887668490409851, -0.0005420930683612823, -0.07837711274623871, -0.0376884900033474, 0.040177349001169205, 0.023164337500929832, 0.045458532869815826, 0.0018793178023770452, 0.004922950174659491, -0.026261145249009132, -0.03895411267876625, 0.014678440988063812, 0.017188727855682373, -0.0222184956073761, 0.0054360623471438885, -0.011779430322349072, -0.021383900195360184, 0.0395464189350605, 0.028512494638562202, 0.014155929908156395, -0.006811455357819796, -0.008940685540437698, -0.026884526014328003, -0.04271511733531952, -0.06022677943110466, -0.007398180663585663, -0.03154367208480835, -0.009846438653767109, -0.01667044311761856, -0.014422209933400154, 0.029706956818699837, 0.05738595873117447, 0.0074741714634001255, 0.01883179508149624, 2.875951851341087e-34, 0.00039449086762033403, 0.015783490613102913, -0.008849953301250935, -0.05457882583141327, -0.0014487566659227014, -0.00841330923140049, 0.04145585745573044, -0.0012760176323354244, -0.02861872874200344, -0.056856341660022736, -0.043116115033626556], "998a3b4c-d069-4bed-a7aa-9874021d7572": [-0.007582771126180887, -0.025835489854216576, -0.03890244662761688, -0.0052793906070292, 0.01558197382837534, 0.036039020866155624, 0.003885882440954447, -0.004703819751739502, -0.05001160874962807, -0.03241972252726555, -0.011614021845161915, 0.019600026309490204, -0.015495024621486664, 0.03241709992289543, 0.014353620819747448, -0.007238671183586121, 0.019517067819833755, 0.01453077606856823, 0.0096299322322011, 0.05650142580270767, -0.001862223376519978, 0.02717914804816246, 0.02932114340364933, 0.03585462272167206, 0.0329396016895771, -0.017362838611006737, 0.03560686856508255, 0.01516297459602356, 0.029119012877345085, 0.026535358279943466, -0.020785607397556305, 0.021069861948490143, 0.0019257988315075636, 0.00577195780351758, 1.8788271063385764e-06, 0.00874592736363411, -0.07986923307180405, -0.032173726707696915, 0.007097368594259024, 0.020880555734038353, 0.03925826773047447, -0.0382654145359993, -0.026131680235266685, 0.0482109934091568, 0.0023838344495743513, -0.047463659197092056, 0.005220419727265835, -0.012506410479545593, 0.026180850341916084, 0.020764583721756935, 0.031284574419260025, 0.021000411361455917, -0.007166294381022453, 0.0035031712613999844, 0.006508373189717531, 0.01869320310652256, -0.040293484926223755, 0.04572461172938347, -0.011881373822689056, 0.030024394392967224, 0.03149425983428955, -0.0013054097071290016, 0.022607918828725815, 0.026456084102392197, 0.03967650607228279, 0.00878521241247654, -0.05632135272026062, -0.08997680991888046, 0.014273266308009624, 0.03266088292002678, 0.06347935646772385, -0.03805411979556084, -0.005683660041540861, -0.01797318458557129, -0.012752690352499485, -0.031102048233151436, -0.0011117723770439625, 0.05885998532176018, -0.01172587275505066, 0.002591573866084218, 0.019735001027584076, -0.0706121176481247, -0.038329292088747025, -0.0058096228167414665, 0.023207740858197212, 0.04467306658625603, 0.006290122866630554, 0.008506354875862598, 0.03635987266898155, -0.05397484079003334, -0.06910297274589539, -0.04791887104511261, -0.03177706152200699, 0.0028413129039108753, 0.032875336706638336, -0.01930989883840084, 0.0016310299979522824, -0.09524372220039368, 0.06922219693660736, 0.017366280779242516, -0.05050978064537048, 0.06412997841835022, -0.015262463130056858, -0.021261611953377724, -0.010208094492554665, 0.05257059633731842, 0.05411401763558388, 0.09074682742357254, 0.05795682594180107, -0.008602157235145569, -0.0004200509574729949, 0.009627214632928371, -0.03620445355772972, -0.07632613927125931, -0.0008675696444697678, 0.024865102022886276, 0.012497356161475182, 0.04958333447575569, 0.04019423574209213, 0.034110069274902344, 0.039751339703798294, -0.04977257922291756, -0.04632638394832611, -0.016169844195246696, 0.03237183764576912, -0.005369473714381456, -0.013183984905481339, 0.0126276183873415, -0.024567214772105217, 0.03684602677822113, -0.011691775172948837, -0.017014697194099426, -0.021996544674038887, -0.012876990251243114, -0.0006591402925550938, 0.028861578553915024, 0.051655445247888565, 0.01826879009604454, 0.04668935388326645, 0.013726173900067806, 0.047188498079776764, 0.03531670942902565, -0.09010376781225204, -0.01850908435881138, -0.037390708923339844, 0.06976673007011414, -0.01888870820403099, -0.0927458107471466, -0.05342547595500946, -0.022412044927477837, 0.0014056420186534524, -0.03564552590250969, -0.07656935602426529, 0.02947283536195755, 0.039064791053533554, -0.002357826568186283, -0.040868110954761505, -0.01893334835767746, 0.0009625107049942017, -0.007119701709598303, 0.0017972377827391028, -0.03591129183769226, 0.0691620483994484, 0.0002963792358059436, -0.0006645201938226819, 0.013914541341364384, 0.0010423673084005713, 0.006502930540591478, 0.05478222295641899, -0.04900951310992241, 0.017418300732970238, 0.02204137109220028, 0.004532742314040661, -0.06371217966079712, -0.03414372727274895, -0.00949117261916399, 0.09901364892721176, 0.008128087967634201, -0.012965986505150795, 0.03088989667594433, 0.028256380930542946, -0.023512525483965874, 0.006762796081602573, 0.02180822752416134, -0.003786038840189576, 0.012686116620898247, -0.009722745046019554, 0.07628048956394196, 0.01762726530432701, 0.0374528169631958, -0.0817902460694313, -0.0038088373839855194, 0.007278711535036564, -0.06393104046583176, -0.04586220532655716, -0.0514737106859684, -0.0167537871748209, -0.07277964800596237, 0.0251484178006649, 0.002638951875269413, -0.053994785994291306, 0.01785157434642315, -0.0019723910372704268, 0.04875500127673149, 0.04463265836238861, 0.011145107448101044, 0.01506661344319582, -0.05041936784982681, -0.0020523914135992527, -0.04313567653298378, 0.047590143978595734, -0.043592419475317, 0.042618367820978165, -0.02798372320830822, -0.040911223739385605, -0.06108548864722252, -0.018742062151432037, 0.025532465428113937, -0.0594584122300148, -0.039628203958272934, 0.01468819472938776, -0.007896878756582737, -0.04696370288729668, 0.02443768084049225, 0.04117174074053764, -0.03916945308446884, -0.044043779373168945, -0.011086852289736271, -0.020379414781928062, 0.008246468380093575, -0.11698022484779358, 0.009164770133793354, -0.01905769482254982, 0.008748209103941917, -0.00480162538588047, 0.00911329872906208, 0.11444507539272308, 0.02715866081416607, 0.009591353125870228, -0.04021703824400902, -0.020588871091604233, 0.03182429447770119, -0.023182114586234093, 0.022002873942255974, -0.017304401844739914, 0.057532504200935364, 0.048998065292835236, 0.011491890996694565, 0.03833828493952751, -0.005141010507941246, 0.023446334525942802, -0.0007643532590009272, -0.009033356793224812, -0.03257816284894943, -0.031112059950828552, 0.03723255917429924, 0.011354961432516575, 0.05442480742931366, -0.03871653974056244, -0.035485394299030304, 0.018585113808512688, 0.052783746272325516, -0.03308255970478058, 0.036763209849596024, 0.053303312510252, 0.039283398538827896, -0.034165915101766586, -0.014925355091691017, 0.040472641587257385, -0.03203160688281059, -0.013903623446822166, -0.0006256268243305385, -0.023511070758104324, -0.022252630442380905, 0.006711676716804504, -0.017268942669034004, -0.008907224982976913, -0.040339354425668716, 0.01529649831354618, 0.0051253014244139194, -0.024254675954580307, -0.014939102344214916, -0.04246414825320244, -0.005798784084618092, -0.02775876596570015, 0.010162003338336945, -0.01248947810381651, -0.057743147015571594, -0.08100093901157379, 0.027122903615236282, -0.045411910861730576, -0.009363638237118721, 0.06642329692840576, -0.04875897988677025, -0.029915086925029755, 0.011877531185746193, 0.039890121668577194, 0.0024259837809950113, -0.008664662949740887, 0.023160280659794807, 0.03303108364343643, 0.046828191727399826, -0.0029439530335366726, -0.007370282430201769, 0.05679931491613388, 0.022285839542746544, 0.0648324266076088, -0.021621014922857285, 0.0005623855395242572, -0.017900073900818825, 0.0009983893251046538, 0.03759720176458359, 0.001685896422713995, 0.045015815645456314, 0.004597303923219442, 0.003062407486140728, 0.06341340392827988, -0.058539990335702896, 0.030626840889453888, 0.05602271854877472, 0.01597237028181553, -0.036434356123209, 0.015095038339495659, -0.024354100227355957, -0.00891106016933918, -0.04049518704414368, 0.003177925944328308, -0.01684938184916973, -0.013207364827394485, 0.03513408452272415, 0.013343933038413525, 0.03090469352900982, 0.007951559498906136, -0.015544206835329533, 0.017877867445349693, 0.003297601593658328, 0.05927852913737297, -0.025095749646425247, 0.043498747050762177, -0.0029981189873069525, -0.021541085094213486, 0.03351207077503204, 0.032155826687812805, -0.02048078551888466, -0.019982535392045975, 0.019896162673830986, 0.02834116294980049, -0.007765954826027155, 0.04282192513346672, 0.0655377209186554, 0.060741864144802094, -0.002975993324071169, 0.07022993266582489, 0.015253743156790733, -0.0018625655211508274, -0.060642171651124954, 0.012382803484797478, -0.07085013389587402, 0.011706007644534111, -0.04173598065972328, 0.014230272732675076, -0.010970959439873695, 0.03259716555476189, 0.013435698114335537, -0.010890176519751549, -0.03799566999077797, 0.013482950627803802, 0.03408801555633545, -0.048686958849430084, 0.028465809300541878, 0.013565825298428535, 0.0507839061319828, 0.030983932316303253, 0.05555161461234093, 0.018461918458342552, -0.02885335683822632, 0.013835180550813675, -0.028614580631256104, 0.1042633205652237, 0.01777847670018673, 0.03953494131565094, -0.1124206930398941, 0.0053182728588581085, -0.05302559211850166, -0.040095336735248566, -0.01846352219581604, 0.009176032617688179, 0.003692565718665719, 0.09250900149345398, -0.04012277349829674, 0.003687602700665593, -0.040605854243040085, -0.02716573141515255, 0.031581975519657135, 0.003954995423555374, -0.018182776868343353, -0.005036652088165283, 0.011573794297873974, 0.01346567738801241, 0.053084004670381546, -0.007980355061590672, -0.02229498326778412, -0.017885301262140274, -0.04796137288212776, -0.02066977322101593, 0.10945852845907211, 0.07787727564573288, -0.030568093061447144, -0.001546916551887989, -0.03797091543674469, 0.03471330925822258, 0.03483325615525246, -0.005853395909070969, -0.02103654108941555, 0.032549381256103516, -0.013247632421553135, -0.006266227923333645, 0.021169370040297508, -0.029547791928052902, 0.04698559269309044, -0.05263437703251839, -0.05091032758355141, 0.00981905683875084, -0.06493712961673737, -0.03434494510293007, 0.002737276488915086, -0.0024052232038229704, -0.003461868269369006, 0.023243339732289314, 0.07610774785280228, 0.02770082838833332, -0.06772676855325699, -0.04891318827867508, -0.013032043352723122, -0.03121933527290821, -0.002998792566359043, -0.03387212008237839, 0.011485250666737556, -0.016017261892557144, -0.05797767639160156, -0.02114865370094776, 0.03960653766989708, 0.019901352003216743, 0.010581678710877895, 0.0019236932275816798, -0.016355490311980247, 0.024009766057133675, -0.0045100608840584755, -0.0469818077981472, 0.02201322838664055, -0.032417766749858856, -0.036618031561374664, -0.12267381697893143, 0.00860690325498581, -0.0056413309648633, -0.014725697226822376, -0.005098942667245865, 0.046118367463350296, -0.0123995840549469, 0.012061858549714088, -0.03185264393687248, 0.03018495999276638, -0.014192856848239899, -0.0024524449836462736, -0.07625996321439743, -0.01700909622013569, -0.05901945382356644, -0.059455756098032, 0.020212844014167786, 0.007440440822392702, 0.008428758941590786, 0.011109776794910431, -0.012728990986943245, 0.015449878759682178, -0.007327854633331299, -0.048538532108068466, -0.01087507139891386, 0.014852608554065228, -0.06234085559844971, -0.012935111299157143, 0.02181197702884674, -0.07927167415618896, 0.025379279628396034, -0.005236401222646236, -0.04901636764407158, 0.030065277591347694, 0.0113222012296319, -0.006310188677161932, -0.007217299658805132, 0.03413411229848862, -0.015066702850162983, -0.050949953496456146, 0.018771572038531303, -0.016255710273981094, -0.025259312242269516, 0.041297465562820435, -0.007471730932593346, 0.03315160423517227, -0.019394852221012115, 0.03457694500684738, 0.02037416398525238, -0.002146203303709626, -0.027924250811338425, -0.0036940351128578186, -0.01918126828968525, 0.022686613723635674, -0.005016144830733538, 0.08209601044654846, 0.00572983967140317, -0.047004781663417816, -0.021359631791710854, 0.01908215321600437, -0.024805830791592598, -0.0018003766890615225, -0.015887180343270302, -0.016234882175922394, -0.005676726344972849, -8.202687604352832e-05, 0.06541866809129715, -0.008474119007587433, 0.0024714937899261713, -0.0022887184750288725, 0.031090963631868362, 0.01289813406765461, 0.0037901499308645725, -0.01625390723347664, -0.018658895045518875, -0.029071899130940437, -0.07211631536483765, 0.05008404701948166, -0.02244449220597744, 0.018286189064383507, -0.028420010581612587, -0.037521686404943466, 0.004522314295172691, 0.021287638694047928, 0.0055733947083354, -0.003686139825731516, -0.033521492034196854, -0.016381504014134407, -0.03650645166635513, 0.00328372186049819, 0.035757776349782944, 0.06398774683475494, -0.030996359884738922, -0.02225886844098568, -0.027270961552858353, 0.0073090773075819016, 0.002953062765300274, -0.05348551273345947, 0.018820056691765785, -0.03116566687822342, -0.0008115957025438547, -0.014264844357967377, 0.005209657363593578, -4.155445631211728e-33, -0.0054508596658706665, 0.01861410401761532, -0.020026348531246185, 0.05551830679178238, 0.050407182425260544, -0.042898908257484436, -0.06179891899228096, -0.045329853892326355, -0.01678384095430374, -0.07983638346195221, 0.0354597344994545, -0.03832455351948738, 0.0020663407631218433, -0.09345532953739166, 0.03889155015349388, 0.028981678187847137, 0.010029884055256844, 0.027745159342885017, -0.05350762605667114, 0.010004531592130661, -0.02006760984659195, 0.001974242739379406, 0.06718727946281433, 0.028903601691126823, -0.047580670565366745, 0.011776168830692768, 0.023083709180355072, 0.010118147358298302, 0.005035229492932558, 0.044862788170576096, 0.025013135746121407, -0.06808538734912872, 0.023058969527482986, -0.016765588894486427, -0.02687925100326538, -0.04581233859062195, 0.044068146497011185, -0.02460162714123726, -0.032390400767326355, 0.015310673974454403, 0.027332527562975883, -0.013600340113043785, 0.021298330277204514, -0.024843627586960793, 0.011426245793700218, 0.04858792945742607, -0.017298005521297455, 0.027160443365573883, 0.031369227916002274, 0.0511910617351532, 0.0026988040190190077, 0.02784428745508194, 0.009315505623817444, 0.059110693633556366, -0.008015663363039494, 0.028969604521989822, 0.04368346929550171, -0.028654947876930237, -0.039643723517656326, -0.009138530120253563, 0.07813360542058945, -0.0005870235618203878, 0.038755711168050766, -0.06180376186966896, -0.04101385921239853, 0.04738892987370491, -0.026929393410682678, 0.014524539932608604, -0.019389642402529716, 0.0487721748650074, 0.0376521497964859, 0.016515549272298813, -0.050100114196538925, 0.03604111075401306, -0.04990333691239357, 0.006328868679702282, -0.004968452733010054, 0.06849199533462524, 0.005080346018075943, 0.058385372161865234, -0.030641689896583557, 0.049503061920404434, 0.004478742368519306, -0.020919060334563255, -0.03969912603497505, 0.013231107965111732, -0.03516193479299545, -0.03164321184158325, -0.0188764538615942, -0.04561803117394447, 0.014757978729903698, -0.027756497263908386, 0.010184945538640022, 0.012697377242147923, 0.029073592275381088, 0.055804070085287094, -0.07966504245996475, 0.030962010845541954, 0.00783766433596611, -0.0026491680182516575, 0.004150865133851767, 0.017162121832370758, 0.016944734379649162, -0.05472049117088318, 0.05817016214132309, 0.010840421542525291, 0.020987439900636673, 0.024155426770448685, -0.009265847504138947, 0.008034738712012768, 0.018710870295763016, -0.04590367153286934, -0.007490911055356264, -0.01975121535360813, -0.05285588651895523, -0.010765868239104748, -0.024765264242887497, -0.03686556592583656, -0.026136528700590134, -0.028099916875362396, -0.04518764466047287, -0.007863455452024937, 0.062054309993982315, -0.012855303473770618, -0.03320709988474846, 0.014644249342381954, 0.020794710144400597, 0.013149202801287174, 0.06279590725898743, 0.07838461548089981, -0.020967882126569748, -0.018121594563126564, 2.6254977569806215e-07, 0.07338038831949234, 0.10002849251031876, 0.053247708827257156, -0.06906045973300934, 0.03229660913348198, 0.004010165110230446, -0.054288338869810104, 0.06852659583091736, -0.0031807965133339167, -0.013541003689169884, -0.024068333208560944, -0.002036673715338111, -0.018515100702643394, 0.05808796361088753, 0.08565156906843185, 0.019018584862351418, -0.009851398877799511, 0.033174559473991394, -0.06543084233999252, 0.008294803090393543, 0.03824475780129433, -0.00011790709686465561, -0.030142053961753845, 0.009929482825100422, -0.007114698179066181, 0.06984173506498337, -0.022730322554707527, -0.02408681996166706, 0.07446126639842987, 0.057877738028764725, -0.042578279972076416, -0.045569129288196564, 0.0030004577711224556, -0.0057975552044808865, -0.010660164058208466, -0.06376877427101135, -0.011141194961965084, 0.04351877421140671, 0.0010823853081092238, 0.02014899253845215, 0.02695111744105816, 0.034447088837623596, -0.022358352318406105, -0.02478991635143757, 0.015795128419995308, 0.008788476698100567, 0.004603497218340635, 0.002913772827014327, 0.0031908024102449417, -0.010226779617369175, 0.029228530824184418, -0.019844578579068184, 0.05085676535964012, -0.003942505456507206, -0.016133379191160202, 0.0030989376828074455, -0.024229172617197037, 0.02231387235224247, -0.0015721082454547286, 0.0029213903471827507, 0.009654928930103779, -0.006777272094041109, -0.06381025910377502, -0.011460804380476475, 0.039215024560689926, -0.04174712672829628, 0.025503871962428093, 3.0826460025438777e-34, -0.0005190518568269908, -0.04700780659914017, -0.005543246399611235, -0.03891684114933014, 0.025048360228538513, -0.03189224749803543, 0.03406386449933052, -0.05217282474040985, -0.01454248372465372, -0.04756072163581848, -0.05785940960049629], "d692095e-53cf-4583-969f-34d0abcb3eb9": [-0.011185367591679096, -0.03741242364048958, -0.03195170685648918, -0.025180216878652573, 0.02984260953962803, 0.03526701778173447, 0.009293538518249989, -0.05574416369199753, -0.05105101317167282, -0.009691690094769001, -0.020365005359053612, -0.010271853767335415, -0.01235401351004839, 0.035281091928482056, 0.03220754489302635, 0.022710854187607765, 0.004166818223893642, -0.010486219078302383, 0.05494919791817665, 0.05559108778834343, -0.0014957397943362594, 0.01646757312119007, -0.027103103697299957, 0.03039187751710415, 0.02923094667494297, 0.010012946091592312, 0.02721630409359932, 0.011620178818702698, 0.03954873979091644, 0.03876258805394173, 6.281084642978385e-05, -0.03134731203317642, 0.038955263793468475, 0.04021405801177025, 1.948063527379418e-06, 0.010590197518467903, -0.04842954874038696, -0.03371825069189072, 0.015917867422103882, 0.008004738949239254, 0.026975922286510468, -0.0682186558842659, 0.012167862616479397, 0.044822853058576584, 0.00588252954185009, -0.060133397579193115, -0.0023024179972708225, -0.04855578765273094, 0.009949939325451851, 0.014954042620956898, 0.021251467987895012, 0.0935758724808693, 0.009888057596981525, 0.02132374234497547, -0.03390086442232132, -0.002611726988106966, -0.022858427837491035, 0.019147057086229324, -0.007660308852791786, 0.006682381499558687, 0.061470113694667816, 0.014067858457565308, 0.01627308502793312, 0.019898660480976105, 0.0637454241514206, -0.0002683510538190603, -0.07886050641536713, -0.06514300405979156, -0.005856627132743597, 0.01553222257643938, 0.034977469593286514, -0.028374258428812027, -0.028598319739103317, -0.04473353177309036, -0.016386162489652634, -0.02316030114889145, 0.020842241123318672, 0.0517444834113121, -0.011510860174894333, 0.010819371789693832, 0.0241257231682539, -0.07320857048034668, -0.03290901705622673, 0.034855157136917114, 0.0065988837741315365, -0.01718093641102314, 0.004453047178685665, 0.016334546729922295, 0.03312225639820099, -0.023781340569257736, -0.04313790425658226, -0.04364459589123726, -0.034791648387908936, 0.004589236341416836, 0.009446228854358196, -0.030351504683494568, -0.006846110802143812, -0.06469839811325073, 0.027189571410417557, 0.030326278880238533, -0.07034522294998169, 0.04940842092037201, -0.014914487488567829, -0.006748783867806196, 0.002169404411688447, 0.046451982110738754, 0.043007634580135345, 0.10280121117830276, 0.022637836635112762, -0.030662134289741516, -0.00176693731918931, 1.4963929970690515e-05, -0.01893039606511593, -0.08294172585010529, -0.0236460380256176, 0.0058317589573562145, 0.027792461216449738, -0.0054567730985581875, 0.031693700700998306, 0.04659310355782509, -0.049083054065704346, -0.04538526386022568, -0.00811268575489521, 0.006871281657367945, 0.02654792182147503, 0.039261359721422195, 0.003094801679253578, 0.03968683257699013, -0.01975252479314804, 0.06387124955654144, -0.05190882831811905, -0.005613821558654308, -0.00879223458468914, -0.0320793017745018, 0.04185209423303604, 0.03010508604347706, 0.05927414074540138, -0.025307267904281616, 0.02923126146197319, 0.015209756791591644, 0.0369129553437233, -0.01421823725104332, -0.04560110345482826, 0.028882035985589027, -0.03202342987060547, 0.06469004601240158, -0.021185213699936867, -0.07409034669399261, -0.04784002900123596, -0.06544928252696991, -0.0003802401479333639, -0.05387241765856743, -0.04882015660405159, 0.03626550734043121, 0.003064777934923768, -0.005330475978553295, -0.00679369829595089, -0.020646201446652412, 0.0012469083303585649, -0.004728900268673897, 0.003856723429635167, -0.05660371482372284, 0.07013937830924988, 0.005100734997540712, 0.0005486124427989125, -0.006148678250610828, 0.02581065334379673, -0.003178760875016451, 0.009218770079314709, -0.06271395832300186, 0.02369110845029354, -0.022868935018777847, -0.003311463166028261, -0.04078473895788193, -0.03593652322888374, -0.0323789082467556, 0.02955050952732563, -0.035991568118333817, -0.0034018103033304214, 0.020771929994225502, 0.04211575537919998, 0.029625043272972107, -0.005669188220053911, 0.02539079077541828, 0.02018015645444393, 5.402764872997068e-05, 0.034048017114400864, 0.04464791342616081, -0.0029235307592898607, 0.033894628286361694, -0.0677247866988182, 0.0040278383530676365, 0.02624448761343956, -0.036513298749923706, -0.016403580084443092, -0.0803365632891655, -0.0010208479361608624, -0.036468032747507095, 0.016472822055220604, 0.007186381611973047, -0.06371120363473892, 0.008419360965490341, -0.04867193475365639, 0.08970439434051514, 0.03180332109332085, -0.023524224758148193, -0.0524180643260479, -0.0367724634706974, -0.026333201676607132, -0.014976524747908115, 0.03836430609226227, -0.03894812613725662, 0.07696552574634552, -0.008238398469984531, -0.04315187782049179, -0.1008225753903389, -0.005960689391940832, -0.021743586286902428, -0.032356396317481995, -0.032134730368852615, 0.0043076761066913605, -0.0216290932148695, -0.032385434955358505, 0.026237385347485542, 0.024621866643428802, -0.00054202601313591, -0.027646005153656006, -0.022831428796052933, -0.031712617725133896, 0.029954727739095688, -0.09789957851171494, 0.001959731802344322, -0.011102826334536076, 0.014428449794650078, 0.03727464750409126, -0.04003169387578964, 0.06293687224388123, 0.01776091940701008, 0.030618885532021523, -0.0033924023155122995, -0.046671245247125626, 0.04989294707775116, -0.017200615257024765, 0.0003116147418040782, -0.023257581517100334, 0.06694718450307846, 0.024979854002594948, 0.03475355729460716, 0.04541194811463356, 0.0168759822845459, 0.058676958084106445, 0.014757576398551464, -0.006691856309771538, -0.02436693198978901, -0.021404730156064034, 0.012881486676633358, 0.04801299795508385, 0.038622863590717316, -0.016617652028799057, -0.022901907563209534, -0.04344310611486435, 0.03268902748823166, -0.05204339325428009, 0.019654031842947006, 0.015817241743206978, 0.03837546333670616, -0.009643505327403545, -0.026086069643497467, 0.06751507520675659, -0.048600587993860245, -0.026897968724370003, 0.0014750632690265775, -0.02895509824156761, -0.027742253616452217, 0.024251658469438553, 0.012570660561323166, 0.006779452785849571, -0.024503037333488464, 0.0168154239654541, -0.004733158275485039, -0.04924790933728218, -0.015557626262307167, -0.037894316017627716, -0.0003673759347293526, -0.03348454087972641, -0.006112093571573496, -0.03446580097079277, -0.06400742381811142, -0.06269539147615433, 0.022312823683023453, -0.06987440586090088, -0.0053389123640954494, 0.010575590655207634, -0.013868710957467556, -0.018464677035808563, -0.0016815552953630686, 0.013910782523453236, -0.037205152213573456, -0.015286730602383614, -0.012991838157176971, 0.07093854248523712, 0.06185675039887428, 0.020256148651242256, -0.015893708914518356, 0.07458846271038055, 0.03161939978599548, 0.0590696707367897, 0.03238893672823906, -0.03743861988186836, -0.03635101020336151, -0.022169027477502823, 0.0021789257880300283, 0.017117096111178398, 0.0945943295955658, 0.03566335141658783, 0.024318847805261612, 0.08572367578744888, -0.04995596408843994, 0.014447578229010105, 0.06407342851161957, 0.009560520760715008, -0.07846216857433319, 0.0039341808296740055, -0.020129898563027382, -0.014159360900521278, -0.011913230642676353, -0.05231526121497154, -0.010099421255290508, 0.006407418753951788, 0.0539507195353508, -0.00811317004263401, 0.04826004058122635, -0.006793690379709005, -0.009605048224329948, 0.01707954704761505, 0.02239902690052986, 0.04249140992760658, 0.0049322787672281265, 0.025136832147836685, 0.02722078002989292, -0.01922152191400528, 0.031315915286540985, 0.007411371450871229, -0.032646045088768005, -0.025713283568620682, 0.04613035172224045, 0.04322897270321846, -0.03573963791131973, 0.07357266545295715, 0.03721724823117256, 0.04095819965004921, 0.019097503274679184, 0.055987268686294556, 0.025240860879421234, 0.018826598301529884, 0.014532016590237617, 0.029036428779363632, -0.06633978337049484, 0.04960377886891365, -0.036458078771829605, -0.012154563330113888, -0.03277017921209335, -0.004910018295049667, 0.013894268311560154, -0.005720319226384163, -0.012190802954137325, 0.04488789662718773, 0.018564801663160324, -0.0425972081720829, 0.003643954871222377, 0.041940417140722275, 0.014917582273483276, 0.018625713884830475, 0.033007558435201645, 0.038961492478847504, 0.009268906898796558, -0.018689041957259178, 0.006252482533454895, 0.07912737131118774, 0.00624504778534174, 0.020675232633948326, -0.11599954217672348, 0.012777400203049183, -0.03890195116400719, -0.020256590098142624, 0.01165813859552145, 0.009551145136356354, -0.030003760010004044, 0.11353802680969238, -0.02123500406742096, 0.013032256625592709, -0.004594821948558092, 0.003809153800830245, 0.026600083336234093, 0.006043118424713612, -0.015251665376126766, 0.007021778263151646, 0.018648572266101837, -0.006565216928720474, 0.07797159999608994, -0.022664446383714676, 0.01746510900557041, -0.0034417391289025545, -0.010150684043765068, -0.015492173843085766, 0.1025686040520668, 0.07981042563915253, -0.05976608023047447, -0.01944577693939209, -0.04541957750916481, 0.019457299262285233, 0.04289821535348892, -0.021878747269511223, -0.027867527678608894, 0.05189398303627968, 0.02732778899371624, 0.019358264282345772, 0.014677531085908413, -0.003064471296966076, 0.04102083668112755, -0.031416960060596466, -0.039765529334545135, 0.005528403911739588, -0.04287441074848175, -0.04728942736983299, 0.010895988903939724, -0.007793157361447811, -0.01419900543987751, 0.04028511792421341, 0.08316781371831894, 0.030699102208018303, -0.08930972218513489, -0.0010396151337772608, -0.02522863633930683, -0.019169863313436508, 0.008117376826703548, -0.00587251503020525, 0.04456033930182457, -0.05182504281401634, -0.02425086870789528, -0.02079133316874504, 0.05275419354438782, -0.014458067715168, -0.038157470524311066, 0.006220351904630661, -0.06169549748301506, 0.028909942135214806, -0.006431866902858019, -0.02892318367958069, 0.049878183752298355, -0.013328011147677898, 0.028122372925281525, -0.0883837565779686, -0.005353379528969526, -0.03271939605474472, -0.02432914450764656, 0.007439568638801575, 0.031390480697155, -0.01859947293996811, 0.0001611807820154354, -0.0808139368891716, 0.008343289606273174, 0.03283223882317543, 0.024665463715791702, -0.003418222302570939, 0.017749082297086716, -0.07819310575723648, -0.03204119950532913, 0.03897029906511307, 0.027250735089182854, 0.02271394617855549, 0.012466718442738056, -0.008619237691164017, 0.03247777745127678, 0.0064949411898851395, -0.039400894194841385, 0.02745828963816166, 0.039478056132793427, -0.049449771642684937, 0.0013602754333987832, 0.04785362631082535, -0.01822962425649166, 0.003786124289035797, -0.010490580461919308, -0.03893152251839638, 0.01800053007900715, 0.07058432698249817, -0.012652547098696232, -0.02534201182425022, -0.008090510964393616, -0.028902871534228325, -0.053671080619096756, -0.014780793339014053, -0.04211141914129257, -0.009296691976487637, 0.10312235355377197, 0.029735667631030083, 0.052210815250873566, -0.07601544260978699, 0.004520044196397066, 0.01967988908290863, -0.032200783491134644, 0.003456550883129239, 0.005539192818105221, -0.027739647775888443, 0.05046648904681206, -0.01908106356859207, 0.0638975128531456, -0.0026242565363645554, -0.031794238835573196, -0.007760017178952694, 0.03387860208749771, -0.014512886293232441, -0.023451175540685654, -0.0052883741445839405, -0.017087938264012337, -0.0005623992765322328, -0.028084728866815567, 0.07167773693799973, 0.011881680227816105, -0.02790304645895958, 0.023510262370109558, 0.0041507538408041, 0.014137730933725834, 0.0018597545567899942, -0.027691856026649475, -0.02224138006567955, -0.01052725501358509, -0.050331804901361465, 0.02872505784034729, -0.03802825137972832, 0.0429617241024971, -0.0008933316566981375, -0.033977873623371124, 0.02137470245361328, 0.0004780769522767514, -0.07601433247327805, 0.017522040754556656, 0.017348987981677055, 0.03713005781173706, -0.024783315137028694, 0.015683801844716072, 0.052616532891988754, 0.02830253727734089, -0.05388331413269043, -0.03392314165830612, -0.026070307940244675, -0.005890022497624159, -0.005307498387992382, -0.04932312294840813, 0.02002508006989956, -0.03810085728764534, 0.07395129650831223, 0.007233701180666685, -0.028989827260375023, -4.8531996087346525e-33, 0.01609968952834606, 0.020597822964191437, 0.01669834554195404, 0.03225898742675781, -0.0167707372456789, -0.014648213982582092, -0.06769868731498718, -0.030722610652446747, -0.04278634488582611, -0.07353205978870392, 0.03727605938911438, 0.007482987362891436, -0.015967847779393196, -0.05696990340948105, 0.03725295513868332, 0.04281168803572655, -0.014650593511760235, 0.001257764408364892, -0.018886378034949303, 0.011312642134726048, -0.014702624641358852, -0.0004210309125483036, 0.08205265551805496, -0.002182129304856062, -0.06815435737371445, 0.019156135618686676, 0.04369436204433441, 0.013855439610779285, -0.002337969373911619, 0.020178956910967827, 0.035553205758333206, -0.09521926939487457, 0.031181592494249344, -0.03766230121254921, 0.0009146357770077884, -0.09374093264341354, 0.041117776185274124, -0.033165037631988525, -0.0264029111713171, -0.01692352071404457, 0.01499671395868063, -0.026911750435829163, 0.06069650873541832, -0.034257978200912476, 0.01682063564658165, 0.01664583757519722, -0.03000805154442787, 0.0027154134586453438, 0.035951074212789536, 0.0019406507490202785, 0.01442655362188816, 0.040439460426568985, -0.00725975027307868, 0.032975759357213974, -0.010455294512212276, 0.027478985488414764, 0.02762671560049057, -0.012106036767363548, -0.04669957235455513, 0.020858146250247955, 0.07690004259347916, -0.020899081602692604, 0.00593494763597846, -0.08065765351057053, -0.03530916944146156, 0.04935471713542938, -0.007760960143059492, -0.06044083088636398, -0.05186958983540535, 0.02360915020108223, -0.0029098859522491693, 0.02485935017466545, -0.047384269535541534, -0.01655755750834942, -0.09568224102258682, 0.006457701325416565, -0.01595330238342285, 0.01763620227575302, -0.03316603600978851, 0.033655062317848206, -0.0024252966977655888, 0.013398735783994198, -0.027474526315927505, -0.021925348788499832, -0.0324120819568634, 0.032885946333408356, -0.02792486734688282, -0.027786383405327797, -0.03106248378753662, -0.01578306034207344, 0.01302702259272337, -0.06797678023576736, 0.003039868548512459, 0.00418473593890667, 0.02475249208509922, 0.05537708103656769, -0.07015268504619598, 0.0034842737950384617, 0.04042142257094383, 0.014295421540737152, -0.021929854527115822, 0.042585570365190506, -0.010045419447124004, -0.04668916389346123, 0.034282419830560684, 0.009620759636163712, 0.025948993861675262, 0.014768100343644619, -0.011738847941160202, 0.010723255574703217, 0.022360054776072502, -0.034115832298994064, -0.030767155811190605, -0.03825933858752251, -0.014047840610146523, -0.0030404627323150635, -0.029116937890648842, -0.04470060393214226, -0.0016554147005081177, 0.0025744123850017786, -0.035754695534706116, -0.018172837793827057, 0.04494176432490349, 0.001797628472559154, -0.029885556548833847, 0.05478234216570854, -0.0010128082940354943, 0.009638594463467598, 0.027523985132575035, 0.052848488092422485, 0.0008568899356760085, -0.008445740677416325, 2.7884917130904796e-07, 0.0652981847524643, 0.08255083113908768, 0.016910308972001076, -0.024685319513082504, -0.004631676245480776, -0.0030639837495982647, -0.06623934954404831, 0.028178971260786057, -0.014393815770745277, -0.005824564956128597, -0.007111803628504276, 0.004062591586261988, -0.04046962037682533, 0.05546768009662628, 0.12606099247932434, 0.05096599459648132, 0.017814751714468002, 0.008339623920619488, -0.00966885220259428, 0.003696000436320901, 0.014352009631693363, -0.004737378563731909, -0.038815688341856, -0.02442396618425846, 0.01872331276535988, 0.030440393835306168, -0.020307693630456924, -0.00950012169778347, 0.07994530349969864, 0.04157710447907448, -0.05593837425112724, -0.0033667152747511864, 0.004527044016867876, -0.024001602083444595, -0.00417405366897583, -0.014088998548686504, -0.04038846120238304, 0.023448260501027107, -0.0033702412620186806, 0.012357286177575588, 0.02504565380513668, 0.003341217990964651, 0.018623564392328262, 0.004442387726157904, 0.023940304294228554, -0.02402801252901554, -0.0050514377653598785, -0.03224685415625572, -0.030554722994565964, 0.05500668287277222, 0.011117557063698769, 0.031214918941259384, 0.029104791581630707, 0.011163221672177315, -0.019376643002033234, 0.006409641820937395, -0.017374781891703606, -0.006465189158916473, 0.02243637666106224, 0.01227885577827692, 0.04111367464065552, -0.0029093606863170862, -0.033194445073604584, -0.038830604404211044, -0.0059906961396336555, -0.017378566786646843, 0.0104671660810709, 2.8115010113711875e-34, 0.006271368823945522, -0.06249043345451355, 0.01081059593707323, -0.05630948022007942, 0.002437674906104803, -0.0179459098726511, 0.016244027763605118, -0.07788001745939255, 0.018325813114643097, -0.031228289008140564, -0.023426655679941177], "5d95abb7-0902-4779-8d44-fedef73fd58d": [-0.01758177950978279, -0.04954041540622711, -0.03895079344511032, -0.011113561689853668, 0.03833402693271637, 0.028485007584095, -0.03311217203736305, -0.012499560602009296, -0.05617007613182068, -0.00638809148222208, -0.024781595915555954, 0.01569051295518875, -0.01886793039739132, 0.04557974636554718, 0.05181790888309479, 0.0169247817248106, 0.03697942942380905, 0.022188687697052956, 0.06171952560544014, 0.05476203188300133, -0.025916675105690956, 0.025049839168787003, -0.01126775611191988, 0.03997493162751198, 0.024854503571987152, -0.025812063366174698, 0.049141302704811096, -0.02195099927484989, 0.004831922240555286, -0.034788578748703, 0.04332727566361427, 0.007704506628215313, 0.030246993526816368, 0.0029456517659127712, 1.471275709263864e-06, 0.016729753464460373, -0.07039180397987366, -0.06078009679913521, 0.01049035508185625, 0.012460715137422085, -0.016377300024032593, -0.052585188299417496, 0.03978310525417328, 0.04922841116786003, -0.030424760654568672, -0.1135527715086937, -0.01195626799017191, -0.0914265438914299, 0.024368470534682274, 0.04963645339012146, 0.017970232293009758, 0.05986839160323143, -2.1189880499150604e-05, -0.0021488124039024115, -0.0324133038520813, 0.014577186666429043, -0.0015761323738843203, 0.041980400681495667, 0.009314896538853645, 0.00659031979739666, 0.06127224862575531, 0.0022037599701434374, 0.012774461880326271, 0.015076989307999611, 0.062183927744627, -0.008317856118083, -0.08179595321416855, -0.03153746575117111, 0.03188934549689293, 0.01438951026648283, 0.05738569051027298, -0.05363687127828598, -0.0003315565118100494, -0.024365553632378578, -0.01737654209136963, -0.06415163725614548, -0.021226661279797554, 0.032901424914598465, 0.0089254854246974, -0.01627226360142231, -0.05217362940311432, -0.08406350761651993, -0.030074898153543472, 0.02583034336566925, 0.04481498897075653, -0.03414356708526611, 0.006346798036247492, 0.0237997118383646, 0.01781843975186348, -0.0025199647061526775, -0.03798345476388931, -0.01028077770024538, -0.03559008613228798, 0.015946757048368454, -0.024780070409178734, -0.04446825757622719, 0.017013706266880035, -0.027266917750239372, 0.040632642805576324, 0.038034114986658096, -0.03434420004487038, 0.04979267343878746, -0.008013250306248665, -0.009559586644172668, -0.050218429416418076, 0.0540817454457283, 0.012555081397294998, 0.03686131536960602, 0.0230760108679533, -0.03554868698120117, 0.02901957742869854, -0.020318904891610146, -0.002593998797237873, -0.06572084873914719, 0.032500796020030975, 0.04084324836730957, 0.040919166058301926, 0.030231822282075882, 0.04320591688156128, 0.03453607112169266, -0.03892391920089722, -0.04277925193309784, 0.01410034392029047, -0.006758570671081543, 0.023038361221551895, 0.00031128115369938314, 0.020016130059957504, -0.01206966768950224, -0.02835150994360447, 0.010303562507033348, -0.04265058785676956, -0.020568547770380974, -0.013742676936089993, -0.024429967626929283, 0.04005539417266846, 0.02188102900981903, 0.029687851667404175, 0.009957052767276764, -0.01175566017627716, 0.007726435549557209, 0.029423007741570473, 0.023784032091498375, 0.005153464153409004, 0.010055650025606155, -0.07971806824207306, 0.06210487335920334, -0.0061721112579107285, -0.08010757714509964, -0.06302600353956223, -0.04016371816396713, 0.039507899433374405, -0.05835459753870964, -0.07082510739564896, 0.03215646371245384, 0.004202233627438545, -0.039218585938215256, -0.041392888873815536, -0.020174115896224976, 0.017397677525877953, 0.005953635089099407, -0.00039475460653193295, -0.08681865781545639, 0.013333907350897789, -0.0037149013951420784, 0.031107937917113304, -0.03515324741601944, -0.0343807190656662, -0.04213729128241539, 0.060936663299798965, -0.06952770054340363, 0.004042692948132753, -0.021859262138605118, -0.03614416718482971, -0.026183998212218285, -0.04764573276042938, -0.023614617064595222, 0.01223002839833498, 0.01738101989030838, 0.0014133939985185862, -0.028090614825487137, 0.04757910221815109, 0.02469346486032009, -0.022591549903154373, 0.05555997043848038, 0.04041009768843651, 0.04231451824307442, -0.001489004003815353, 0.0315699428319931, 0.02406173199415207, 0.012867944315075874, -0.0766538605093956, 0.022063974291086197, 0.029925614595413208, -0.04868492856621742, -0.029838530346751213, -0.07713010907173157, -0.007325144950300455, 0.002885333029553294, 0.015429061837494373, 0.005971132777631283, -0.053756892681121826, -0.029961122199892998, -0.05571447312831879, 0.0820670947432518, 0.05324006825685501, -0.0318635031580925, -0.0498126745223999, -0.05727880075573921, -0.04864935204386711, -0.006475718226283789, 0.02940385974943638, -0.02040444314479828, 0.051018230617046356, -0.047432515770196915, -0.05824170634150505, -0.10086223483085632, -0.029939204454421997, -0.010501425713300705, -0.004525712691247463, -0.013766199350357056, 0.012785672210156918, -2.5968050977098756e-05, -0.022308992221951485, 0.04879255220293999, -0.010855053551495075, -0.01581118069589138, 0.001813298906199634, -0.02977515012025833, -0.008239740505814552, 0.011983327567577362, -0.08855713903903961, 0.00990340206772089, -0.01837058737874031, 0.014522272162139416, -0.0068469359539449215, -0.022534111514687538, 0.028986120596528053, 0.027582494542002678, 0.03587143123149872, -0.011641890741884708, -0.06347455829381943, 0.06315741688013077, 0.0024871602654457092, 0.02793261595070362, -0.06046878173947334, 0.05589083954691887, 0.017662353813648224, 0.005268437322229147, 0.03945629298686981, 0.02763950824737549, 0.003643751610070467, 0.00853106752038002, -0.023801295086741447, -0.029865937307476997, 0.008050884120166302, 0.010001465678215027, 0.03659698739647865, 0.0839671716094017, -0.017062325030565262, -0.0009559450554661453, -0.029499636963009834, 0.013434006832540035, -0.03702888637781143, 0.040110353380441666, 0.02703731693327427, 0.043399617075920105, -0.01758716255426407, -0.0012247058330103755, 0.05426648259162903, -0.03998603671789169, -0.03212213143706322, -0.03586864843964577, -0.029262730851769447, -0.03643951192498207, -0.016806310042738914, -0.02021736092865467, 0.0011898184893652797, -0.05062226578593254, 0.03521684557199478, 0.026231490075588226, -0.08489672094583511, 0.0013857701560482383, -0.056497253477573395, -0.010145061649382114, -0.031469300389289856, -0.0040285661816596985, -0.050212353467941284, -0.026779737323522568, -0.008646574802696705, 0.018087167292833328, -0.022141901776194572, 0.008539274334907532, 0.029698209837079048, -0.02568819932639599, 0.010082121007144451, -0.025058023631572723, 0.04516623541712761, 0.039125800132751465, -0.01459236815571785, -0.031077807769179344, 0.09403254091739655, 0.0798826515674591, -0.002073271432891488, 0.006410959642380476, 0.04908430203795433, 0.02563343197107315, 0.04835234954953194, 0.011629663407802582, -0.030776657164096832, 0.0015280385268852115, -0.007226392161101103, 0.015196396969258785, -0.004232162144035101, 0.05893680453300476, 0.01802985928952694, 0.019869457930326462, 0.0705159604549408, -0.02159188501536846, 0.009302942082285881, 0.06932488828897476, 0.03012831136584282, -0.10246200114488602, 0.004524795338511467, -0.002785016316920519, -0.006853812374174595, -0.02903459221124649, -0.040967974811792374, -0.016682546585798264, 0.02553657256066799, 0.02957075834274292, -0.0012366902083158493, 0.02253076806664467, -0.003419235348701477, -0.018193285912275314, 0.00623509893193841, 0.05101177468895912, 0.0558709017932415, -0.012786892242729664, 0.03131755441427231, 0.023242022842168808, -0.048119936138391495, 0.021522408351302147, -0.0002988479391206056, -0.023438386619091034, -0.022313086315989494, 0.040138114243745804, 0.061238616704940796, -0.04859805852174759, 0.09095479547977448, 0.014259678311645985, 0.042427908629179, 0.01867670752108097, 0.037572648376226425, 0.01363035012036562, 0.02790091559290886, -0.016606761142611504, 0.012917198240756989, -0.04689569026231766, -0.0018301494419574738, -0.008356655016541481, -0.015059782192111015, -0.019058994948863983, -0.037325888872146606, 0.04084090143442154, -0.04144418612122536, -0.03220590949058533, 0.04645629972219467, 0.007668482605367899, -0.022881776094436646, -0.009693696163594723, 0.014296382665634155, 0.0448940172791481, 0.033225104212760925, 0.058574724942445755, 0.005054878536611795, -0.014235402457416058, 0.011305914260447025, 0.007485678885132074, 0.08172813802957535, 0.035128407180309296, 0.004061131272464991, -0.07458119839429855, 0.031430888921022415, -0.0567842535674572, -0.009845183230936527, 0.015320777893066406, 0.007675723172724247, -0.030704315751791, 0.09938432276248932, -0.03160844370722771, 0.004211068153381348, -0.032922081649303436, -0.0014663704205304384, 0.046066202223300934, -0.027940213680267334, -0.014462873339653015, 0.007040415890514851, -0.007754896767437458, 0.01447445061057806, 0.06624550372362137, -0.01981581188738346, -0.031048910692334175, -0.012516378425061703, -0.05181487277150154, -0.01858508214354515, 0.06432176381349564, 0.06303761154413223, -0.005458823870867491, 0.01694793812930584, -0.038448408246040344, -0.005314665846526623, 0.05050937831401825, 0.00011246478970861062, -0.04447929188609123, 0.050904400646686554, 0.025052564218640327, 0.000335068121785298, 0.04199552908539772, 0.015079228207468987, 0.017044635489583015, -0.03005855903029442, 0.011949273757636547, -0.004915675614029169, -0.0111493319272995, -0.03880682587623596, 0.015582000836730003, -0.035177841782569885, -0.016333261504769325, 0.01636604033410549, 0.07977253198623657, 0.05181293189525604, -0.043175552040338516, -0.0447835698723793, 0.020544743165373802, -0.048167191445827484, -0.008593054488301277, -0.04623677209019661, 0.04033883661031723, -0.02863551862537861, -0.031965821981430054, 0.02054525725543499, 0.038145020604133606, -0.032157495617866516, -0.04824783653020859, -0.016890551894903183, -0.009001325815916061, 0.0337703563272953, -0.026590794324874878, 0.010641918517649174, 0.05600150674581528, -0.013385424390435219, 0.058689702302217484, -0.07530102878808975, 0.072210893034935, -0.007870899513363838, -0.008996809832751751, -0.04908093065023422, 0.042977359145879745, -0.03122897632420063, -0.05176667124032974, -0.048097431659698486, -0.011123724281787872, 0.04038527235388756, 0.0041562155820429325, -0.05755632743239403, 0.006257528904825449, -0.07034572958946228, -0.0025410326197743416, 0.02295602113008499, 0.042633119970560074, 0.036439016461372375, 0.004697414115071297, 0.006569073535501957, 0.012463182210922241, -0.002498202258720994, -0.020324526354670525, -0.005439239088445902, 0.007550002075731754, -0.025953391566872597, 0.023333357647061348, 0.038634706288576126, -0.002006430411711335, -0.0053705256432294846, 0.03931153193116188, -0.041366904973983765, -0.011767243035137653, 0.05496637523174286, 0.04489246383309364, 0.015363523736596107, 0.020564008504152298, 0.013499611988663673, -0.0685967430472374, -0.022228164598345757, -0.024972597137093544, -0.014838026836514473, 0.038328275084495544, 0.0035849784035235643, 0.10089799761772156, -0.04223712906241417, 0.011883222497999668, 0.03288339823484421, -0.020780716091394424, -0.024723468348383904, -0.01427299715578556, -0.018332481384277344, 0.03855043649673462, -0.021806301549077034, 0.06101471185684204, 0.0005085720913484693, -0.030045142397284508, 0.028638962656259537, 0.05547549948096275, 0.01161196082830429, -0.0605899840593338, 0.019083788618445396, -0.019482985138893127, 0.010567570105195045, -0.010000297799706459, 0.04250586777925491, 0.0007771348464302719, -0.024821210652589798, 0.014572353102266788, -0.035477932542562485, -0.01339191198348999, 0.06249864771962166, -0.059702884405851364, -0.005065022502094507, -0.04029257968068123, -0.05752810835838318, 0.08258984237909317, -0.016090817749500275, 0.01248389296233654, 0.025553163141012192, -0.012976274825632572, 0.015548476949334145, 0.0005872178007848561, -0.009074253030121326, 0.034746330231428146, 0.029909182339906693, 0.04995887726545334, -0.006491605658084154, -0.016431942582130432, 0.0014912581536918879, 0.0025375117547810078, -0.0510428324341774, -0.05407099798321724, -0.03208673745393753, 0.011814828030765057, -0.021233662962913513, -0.025587739422917366, 0.03723631426692009, 0.006291881203651428, 0.06590946018695831, 0.017903495579957962, -0.08162059634923935, -3.999135004595104e-33, 0.015337885357439518, -0.0014754649018868804, 0.0384037047624588, 0.05835150554776192, 0.018652774393558502, -0.006636843550950289, -0.023555193096399307, -0.05061180144548416, -0.05087489262223244, -0.047250404953956604, 0.029002603143453598, -0.005753963254392147, -0.026214592158794403, -0.057048119604587555, 0.02543656714260578, 0.058950915932655334, 0.01627812720835209, 0.00179171038325876, -0.03969483822584152, 0.009270692244172096, -0.044776368886232376, -0.003198441118001938, 0.09503409266471863, -0.04752035439014435, -0.07460420578718185, 0.05590656027197838, 0.060952600091695786, 0.040484074503183365, -0.01682344079017639, 0.020747901871800423, 0.012357628904283047, -0.08807460963726044, 0.028864214196801186, -0.06797894835472107, -0.004684160929173231, -0.03491794317960739, 0.02469741739332676, -0.059694718569517136, -0.02429960109293461, 0.002158226678147912, 0.020413722842931747, -0.050346359610557556, 0.04710985720157623, -0.01342201977968216, 0.007684848736971617, 0.006404724437743425, -0.03384925425052643, 0.016651805490255356, -0.025311866775155067, 0.006611047778278589, 0.009964708238840103, 0.05531080812215805, -0.02337043173611164, 0.005443074274808168, -0.0029808038379997015, 0.006007060408592224, 0.01005304604768753, 0.010914905928075314, -0.012531555257737637, -0.015839580446481705, 0.011630683206021786, -0.02775062993168831, 0.02959943190217018, -0.06218728423118591, -0.03750767186284065, 0.06262338161468506, 0.004795180633664131, 0.03941808640956879, -0.02709418535232544, 0.008343594148755074, 0.034659989178180695, 0.021477874368429184, 0.015631746500730515, -0.0409470796585083, -0.08056578785181046, -0.0016353833489120007, 0.034241318702697754, -0.002110473345965147, 2.793120438582264e-05, 0.03129754215478897, -0.027119047939777374, 0.0017345065716654062, 0.0014198675053194165, -0.03483625501394272, -0.031637344509363174, -0.011511720716953278, 0.005732025485485792, -0.023644691333174706, -0.03617143630981445, -0.03093899041414261, -0.02152923308312893, -0.040849845856428146, -0.00021829087927471846, 0.017009664326906204, 0.048605211079120636, 0.06984763592481613, -0.05937645956873894, 0.005504715722054243, 0.03955654799938202, 0.01193332951515913, -0.02890118956565857, 0.04939631372690201, -0.03563525900244713, -0.05236116796731949, 0.023788245394825935, 0.03598826006054878, -0.006906780879944563, -0.0014821714721620083, -0.014451542869210243, 0.005384936463087797, 0.029917435720562935, -0.053592849522829056, -0.0387423038482666, -0.026745153591036797, -0.028254760429263115, -0.004954508040100336, -0.01621958054602146, -0.01135802548378706, 0.008917161263525486, -0.00981923472136259, -0.020238686352968216, -0.04280870035290718, 0.08567371964454651, -0.02433425933122635, 0.0057997978292405605, -0.004894041921943426, -0.013970430940389633, 0.026111679151654243, 0.0497620664536953, 0.10930968821048737, -0.011647894978523254, -0.03612717613577843, 2.270687815553174e-07, 0.02214554324746132, 0.06341996788978577, 0.006729945540428162, 0.03557118400931358, 0.01805950701236725, 0.012961898930370808, -0.01730433665215969, 0.022114992141723633, 0.016984272748231888, -0.011294684372842312, -0.034832339733839035, 0.0330415815114975, -0.024268250912427902, 0.06087932735681534, 0.06766846030950546, 0.03349234163761139, -0.01829495280981064, 0.011934049427509308, -0.0060659912414848804, 0.019435694441199303, 0.027604395523667336, -0.017747797071933746, -0.030296675860881805, 0.02830611728131771, 0.015539559535682201, -0.0060799987986683846, -0.04465162009000778, -0.02298673614859581, 0.04555639624595642, 0.05310877040028572, -0.024235475808382034, -0.009995060041546822, 0.02248995006084442, -0.047426167875528336, -0.02038649655878544, -0.020423293113708496, -0.025675106793642044, 0.04361400753259659, -0.032407112419605255, 0.04802345111966133, 0.02870320901274681, 0.03134577348828316, 0.004839871544390917, 0.019771216437220573, 0.04440462216734886, 0.01626472920179367, 0.011120887473225594, -0.03318455442786217, 0.03659355640411377, 0.019879044964909554, 0.010460726916790009, -0.003988342359662056, 0.029886318370699883, 0.006821570917963982, -0.010543092153966427, 0.013827173039317131, -0.04040412977337837, 0.015676429495215416, 0.03109322115778923, 0.004543142393231392, 0.0362052246928215, -0.04971951246261597, -0.022046539932489395, -0.0062476214952766895, 0.0035451396834105253, 0.049820758402347565, -0.019856959581375122, 2.2630888156744345e-34, 0.005661581642925739, -0.0627957433462143, 0.03529217839241028, 0.022638216614723206, 0.014102434739470482, -0.009081326425075531, 0.014777558855712414, -0.026543868705630302, 0.031003236770629883, -0.05234336853027344, -0.026147859171032906], "ef58638f-76af-4f77-a459-560c3d95561b": [-0.019711334258317947, -0.05420210212469101, -0.03211430832743645, -0.0385051928460598, 0.022910162806510925, 0.003344491124153137, 0.0068770842626690865, 0.0060290084220469, -0.053728651255369186, -0.05452433601021767, 0.023335976526141167, 0.0064133466221392155, -0.04191574826836586, 0.076261967420578, 0.025024211034178734, 0.007775177713483572, 0.01740923337638378, 0.025597842410206795, 0.02991667203605175, 0.06900455802679062, -0.024515140801668167, 0.03555428236722946, -0.0021913740783929825, 0.019671492278575897, 0.0016724348533898592, -0.02479766495525837, 0.04192040488123894, 0.002137409523129463, 0.025567086413502693, -0.05595673248171806, 0.023242920637130737, 0.01748253032565117, 0.03898215293884277, 0.06511903554201126, 1.725526203699701e-06, -0.018318964168429375, -0.056541185826063156, -0.009802772663533688, 0.024463461712002754, 0.012126336805522442, 0.021815216168761253, -0.035946961492300034, 0.015399052761495113, 0.06384159624576569, -0.029524024575948715, -0.0835082083940506, -0.017212240025401115, -0.05887286365032196, 0.05202902853488922, 0.0662737637758255, 0.02865482121706009, 0.05758913606405258, 0.010272471234202385, -0.007613454945385456, -0.0166421290487051, 0.02928151935338974, -0.019065624102950096, 0.045057740062475204, 0.005372391082346439, 0.0010296605760231614, 0.07520914077758789, -0.012951520271599293, 0.02629910223186016, 0.009978069923818111, 0.06883487105369568, 0.013091945089399815, -0.04699510708451271, -0.05302984640002251, -0.00013232418859843165, 0.00902592297643423, 0.06816546618938446, -0.04634445905685425, -0.013777362182736397, -0.0003253217146266252, -0.03001507930457592, -0.0836363211274147, -0.051443953067064285, 0.05831735208630562, 0.011233653873205185, -0.016479957848787308, -0.02260386198759079, -0.07619699090719223, -0.06299572438001633, 0.019200362265110016, 0.02396433614194393, -0.024932585656642914, 0.01950955204665661, 0.0015439087292179465, 0.035263288766145706, 0.00017884583212435246, -0.013217957690358162, -0.0405394583940506, -0.031421300023794174, 0.012615946121513844, -0.011704870499670506, -0.05120352655649185, 0.007515262812376022, -0.06289305537939072, 0.05947904661297798, 0.008909372612833977, -0.040063101798295975, 0.03539038822054863, 0.006961158011108637, -0.00868160743266344, -0.08317157626152039, 0.036327462643384933, 0.04383287951350212, 0.07286401093006134, 0.022946860641241074, -0.009717660956084728, 0.02316255308687687, 0.007245318498462439, -0.025505758821964264, -0.06622794270515442, 0.022272083908319473, 0.01781272143125534, 0.03471839055418968, 0.03514575585722923, 0.023556755855679512, 0.03367723152041435, -0.0039759231731295586, -0.02991671860218048, -0.0175804253667593, 0.01348934043198824, 0.020045693963766098, -0.018602555617690086, 0.02849232219159603, 0.004485141485929489, -0.03895118087530136, 0.01869753561913967, -0.05537910759449005, 0.0270096268504858, 0.011742871254682541, -0.044722359627485275, 0.01936892420053482, 0.05620241165161133, 0.030734241008758545, -0.012940477579832077, 0.021550504490733147, 0.004158478230237961, 0.04352294281125069, -0.015397731214761734, -0.029451606795191765, -0.009310434572398663, -0.08403287827968597, 0.07571802288293839, 0.01950523816049099, -0.06361138075590134, -0.03362882137298584, -0.047976259142160416, 0.030212992802262306, -0.03813987597823143, -0.059636190533638, 0.019604621455073357, -0.0018541000317782164, -0.029386956244707108, -0.014704858884215355, -0.03871392086148262, 0.016044285148382187, -0.006077342666685581, -0.004615940153598785, -0.06226152926683426, 0.019659124314785004, -0.015390906482934952, 0.022650808095932007, -0.00584140419960022, -0.0456375852227211, 0.0027598312590271235, 0.05666802078485489, -0.04247867316007614, 0.03740205988287926, 0.007174759637564421, 0.001092991093173623, -0.02929488569498062, -0.0828869417309761, -0.0007209921604953706, 0.03034185990691185, -0.015602393075823784, 0.02016255632042885, 0.004038065671920776, 0.036230552941560745, -0.0014895342756062746, -0.014060656540095806, 0.03394749015569687, 0.03813784196972847, 0.039060331881046295, -0.015074670314788818, 0.07689069211483002, 0.007603487465530634, 0.01117485947906971, -0.07166367769241333, 0.004793365951627493, 0.00310582690872252, -0.07269375771284103, 0.0032732763793319464, -0.06025352329015732, -0.02027946710586548, -0.0009432325605303049, 0.03432277962565422, -0.014235262759029865, -0.06632008403539658, -0.03437991067767143, -0.011982118710875511, 0.027757277712225914, 0.05034259706735611, -0.030729351565241814, -0.017652636393904686, -0.07727811485528946, -0.062483757734298706, 0.023627420887351036, 0.03608774021267891, -0.01696634106338024, 0.02795325592160225, -0.06751251965761185, -0.04427757114171982, -0.09344986826181412, -0.020913926884531975, -0.008742920123040676, -0.0042425538413226604, -0.019058965146541595, 0.042922284454107285, -0.015572869218885899, -0.04294346272945404, 0.06094950810074806, 0.025712110102176666, -0.03385811671614647, -0.017766566947102547, -0.032676082104444504, -0.0017623300664126873, 0.018261143937706947, -0.12281426787376404, 0.019506478682160378, -0.02037925086915493, 0.026033012196421623, 0.02110801450908184, -0.025325573980808258, 0.03875012323260307, 0.012297423556447029, 0.029687684029340744, -0.0492623969912529, -0.05438937619328499, 0.08499010652303696, 0.004491433035582304, 0.0031272361520677805, -0.042064204812049866, 0.05124668776988983, 0.0036257393658161163, 0.010619078762829304, 0.024439968168735504, 0.011690882965922356, 0.035516802221536636, 0.01878821849822998, -0.016706349328160286, -0.002605581423267722, -0.0010339030995965004, 0.024424578994512558, 0.01310781855136156, 0.057930026203393936, -0.016177160665392876, -0.04255833476781845, -0.012512702494859695, 0.02172774448990822, -0.04786683991551399, 0.024840861558914185, 0.06124083697795868, 0.046791061758995056, -0.016648711636662483, -0.035637252032756805, 0.07323283702135086, -0.04416023567318916, -0.04999428614974022, -0.011531542986631393, -0.017561065033078194, -0.021592816337943077, -0.0026849068235605955, -0.015935083851218224, 0.0013518640771508217, -0.03568112105131149, 0.006463559810072184, -0.0009040900622494519, -0.06276905536651611, 0.006545803043991327, -0.045347910374403, -0.016338888555765152, -0.05600757151842117, 0.021587058901786804, -0.012619858607649803, 0.00020022412354592234, -0.03764725476503372, 0.034003958106040955, -0.013039985671639442, 0.013994148932397366, 0.05133667215704918, -0.014690350741147995, -0.009103086777031422, -0.006521256640553474, 0.04463569074869156, 0.011739196255803108, 0.006208403035998344, -0.004014241509139538, 0.0742821991443634, 0.07287004590034485, -0.014141803607344627, 0.004262634553015232, 0.029106145724654198, 0.03596276044845581, 0.10394968092441559, -0.0162977185100317, -0.02153944782912731, -0.0012704244581982493, -0.017275379970669746, 0.004172325599938631, 0.007143810857087374, 0.06438684463500977, 0.03248076140880585, 0.029011592268943787, 0.07537535578012466, -0.03430764004588127, 0.014582555741071701, 0.037364695221185684, 0.04900398105382919, -0.0821760892868042, 0.016274211928248405, -0.032580986618995667, -0.022777531296014786, -0.04864512011408806, -0.04912066459655762, -0.050759825855493546, 0.018965506926178932, 0.07677053660154343, -0.0009805100271478295, -0.007553117349743843, -0.003154225880280137, -0.02158254384994507, -0.004211277235299349, 0.027385666966438293, 0.05761347711086273, -0.03196803107857704, 0.048957984894514084, 0.030658459290862083, -0.03731217235326767, 0.04096788540482521, 0.005364133045077324, -0.013902868144214153, -0.01627139002084732, 0.04039807617664337, 0.014075362123548985, -0.048444367945194244, 0.0629894807934761, 0.06139051169157028, 0.03773239627480507, 0.01881825551390648, 0.050063516944646835, 0.02208300493657589, 0.008269437588751316, 0.027708444744348526, -0.0005960380658507347, -0.0839560255408287, 0.01175201777368784, -0.020088236778974533, 0.017034515738487244, -0.009813114069402218, -0.00416593998670578, 0.06340155750513077, -0.04250694438815117, -0.046487584710121155, 0.014128587208688259, -0.007537905592471361, -0.020214157178997993, -0.005794059950858355, 0.017838532105088234, 0.04687783867120743, 0.016384242102503777, 0.0711287334561348, 0.01903115026652813, 0.01323417667299509, 0.0037478413432836533, -0.035343561321496964, 0.08881361782550812, 0.021470200270414352, 0.009128786623477936, -0.07873503118753433, 0.03628036752343178, -0.04919111728668213, 0.001984960865229368, -0.0035005442332476377, 0.020503878593444824, -0.039351630955934525, 0.10386618971824646, -0.033545807003974915, 0.011166882701218128, -0.017740916460752487, 0.019166339188814163, 0.0005907597369514406, -0.029841387644410133, -0.020262490957975388, -0.004623171407729387, 0.006329546682536602, 0.015048275701701641, 0.042186226695775986, -0.014429569244384766, -0.022518496960401535, -0.00021768291480839252, -0.011426715180277824, -0.015399426221847534, 0.08316884934902191, 0.08152545988559723, -0.018975965678691864, -0.02304108813405037, -0.045374300330877304, 0.018394581973552704, 0.04565442353487015, -0.004178730770945549, -0.04737299680709839, 0.05848541483283043, 0.02018003724515438, 0.0019081630744040012, 0.01856343261897564, -0.0037931627593934536, 0.023270053789019585, -0.024319469928741455, -0.001542773679830134, 0.013955766335129738, -0.013615562580525875, -0.055094122886657715, -0.03526744991540909, -0.006554270628839731, -0.022299019619822502, 0.02942720428109169, 0.06635113805532455, 0.0614767000079155, -0.0787961408495903, -0.040575768798589706, 0.014118703082203865, -0.06886343657970428, -0.023605214431881905, -0.050125088542699814, -0.011291634291410446, -0.022644279524683952, -0.016566308215260506, -0.024435700848698616, 0.07533404231071472, 0.02129150554537773, -0.03432503342628479, -0.0195639505982399, -0.054811157286167145, 0.02480212412774563, -0.041811954230070114, 0.01387754175812006, 0.0472535714507103, -0.00669001555070281, 0.007901199162006378, -0.0995638370513916, 0.039070963859558105, -0.007144479546695948, -0.0198240764439106, -0.0017220325535163283, 0.05451155826449394, -0.03441957011818886, 0.017147492617368698, -0.030753910541534424, 0.023062586784362793, 0.025278402492403984, -0.001323113450780511, -0.003858291544020176, 0.010940495878458023, -0.055000871419906616, -0.009311014786362648, 0.0010317396372556686, 0.0055329455062747, -0.0013279719278216362, -0.005138811655342579, -0.01172301359474659, 0.025375202298164368, 0.005735115148127079, -0.053483396768569946, 0.011829612776637077, 0.05970148369669914, -0.0365753136575222, 0.023220010101795197, 0.050844673067331314, -0.017406554892659187, 0.009600695222616196, 0.006995255593210459, -0.04316508397459984, 0.002019831445068121, 0.019519850611686707, 0.01974497362971306, -0.008001917041838169, 0.04146687686443329, -0.024435339495539665, -0.04844139143824577, -0.01043533906340599, -0.029026804491877556, -0.041642773896455765, 0.0430549792945385, -0.006149719934910536, 0.0742032378911972, -0.04191805049777031, 0.02725888043642044, 0.06006697565317154, -0.044942162930965424, -0.025391671806573868, -5.46669980394654e-05, -0.018585840240120888, 0.04241914674639702, -0.0031844298355281353, 0.06750394403934479, -0.013941500335931778, -0.035747598856687546, 0.003114893566817045, 0.02862408198416233, -0.018942415714263916, -0.04857392981648445, -0.02745143696665764, -0.027431311085820198, -0.002139831893146038, -0.015910815447568893, 0.038505010306835175, -0.009580082260072231, -0.005134058650583029, 0.021875625476241112, 0.0038872023578733206, 0.006474243942648172, 0.052573010325431824, -0.015662850812077522, 0.001973002217710018, -0.031547971069812775, -0.059907712042331696, 0.07222356647253036, -0.01344536803662777, 0.03425677493214607, 0.0332382470369339, -0.04922909662127495, -0.019650055095553398, 0.019623111933469772, -0.009871825575828552, 0.011350689455866814, 0.014320941641926765, 0.027621345594525337, -0.0254282895475626, -0.011500955559313297, 0.03397483006119728, 0.02937310002744198, -0.06390408426523209, -0.027676990255713463, -0.005875729024410248, -0.005958916619420052, -0.00848778523504734, -0.02851535938680172, 0.05782916769385338, 0.01551408227533102, 0.05318140611052513, -0.03599708527326584, -0.03748493641614914, -3.98240514858901e-33, 0.003926485776901245, 0.0010629064636304975, 0.00848903227597475, 0.03150841221213341, 0.013827608898282051, -0.0027239974588155746, -0.03522303327918053, -0.04073772951960564, -0.016269417479634285, -0.051767099648714066, 0.03691327944397926, -0.03616004437208176, -0.0008128525223582983, -0.06774824112653732, -0.006922852713614702, 0.07730250805616379, 0.017834940925240517, 0.027418678626418114, -0.034600574523210526, 0.007437367457896471, -0.03775957599282265, 0.007574699819087982, 0.07039184868335724, -0.00046025734627619386, -0.04721468314528465, 0.04586545750498772, 0.056179068982601166, 0.005663103889673948, -0.0036733790766447783, 0.027893859893083572, 0.023897269740700722, -0.05946006625890732, 0.005354489665478468, -0.017590561881661415, -0.01030862145125866, -0.020220037549734116, 0.0043997326865792274, -0.04973641410470009, -0.035905420780181885, 0.013943138532340527, -0.02180534601211548, -0.024173084646463394, 0.02813895419239998, -0.03587673231959343, 0.028436478227376938, 0.019540781155228615, -0.014771778136491776, 0.03132792189717293, 0.01725923642516136, -0.011440727859735489, 0.013184311799705029, 0.05633247271180153, -0.03180859237909317, 0.023554787039756775, -0.039141539484262466, -0.021734582260251045, 0.035812824964523315, -0.02050606533885002, -0.04393499717116356, -0.015395212918519974, 0.04579321667551994, -0.023278959095478058, 0.031209740787744522, -0.07806947827339172, -0.042016610503196716, 0.039497461169958115, 0.003110921708866954, 0.013141012750566006, 0.0132709089666605, -0.006913637742400169, 0.009276394732296467, 0.01111683901399374, -0.016232779249548912, -0.04454649239778519, -0.08087670803070068, 0.011197231709957123, -0.0130876200273633, 0.03368939459323883, 0.026073375716805458, 0.05279745161533356, 0.005804584827274084, -0.0011140189599245787, -0.01852327026426792, -0.017740868031978607, -0.031422074884176254, -0.002724630292505026, -0.014964526519179344, -0.03650062903761864, -0.030187826603651047, -0.03287894278764725, -0.02002219296991825, -0.052351806312799454, 0.00785223487764597, 0.037741467356681824, 0.04008583724498749, 0.03993799909949303, -0.051401522010564804, 0.011619077064096928, 0.012803900055587292, 0.014067825861275196, 0.028351685032248497, 0.04553092643618584, -0.0012424075976014137, -0.0737319365143776, 0.056805409491062164, 0.00791314709931612, -0.002214487874880433, 0.0012130383402109146, -0.035153064876794815, 0.008011593483388424, 0.022931985557079315, -0.036177776753902435, 0.0017619685968384147, -0.012476923875510693, -0.04289175942540169, 0.009794583544135094, -0.014728091657161713, -0.03710060939192772, 0.025671642273664474, -0.05486908555030823, -0.03215513378381729, -0.02181585505604744, 0.06829684227705002, -0.027598878368735313, -0.047361597418785095, 0.004502680152654648, 0.006022951100021601, 0.02062251977622509, 0.05685865134000778, 0.10428721457719803, -0.016581855714321136, -0.016723904758691788, 2.577810391812818e-07, 0.03523781895637512, 0.0722179040312767, 0.027724262326955795, 0.020951608195900917, 0.00040270626777783036, 0.005373590160161257, -0.028594734147191048, 0.03724774718284607, 6.20422069914639e-05, 0.0046789092011749744, -0.04037044569849968, 0.00034708433668129146, -0.005767500028014183, 0.07051505148410797, 0.0910610482096672, 0.027792004868388176, -0.015293479897081852, 0.011187789961695671, -0.035229090601205826, -0.0017727585509419441, 0.03761925920844078, 0.018021104857325554, -0.014531407505273819, 0.008290988393127918, -0.014535837806761265, -0.0025815623812377453, -0.05940379574894905, -0.03337207809090614, 0.05059371516108513, 0.05629412829875946, 0.0006771664484404027, -0.026851244270801544, 0.009196753613650799, 0.00021731210290454328, -0.01827031373977661, -0.023013578727841377, -0.00934573169797659, 0.037414126098155975, -0.018622178584337234, 0.06391607969999313, 0.03529420495033264, 0.02664523757994175, 0.012753925286233425, -0.03632393106818199, 0.04425574094057083, 0.033506836742162704, -0.02002856321632862, -0.05369418486952782, -0.017144376412034035, 0.02219008468091488, 0.014888035133481026, -0.006062305066734552, 0.03624144569039345, 0.009203474968671799, -0.03228970989584923, 0.011019987054169178, -0.024548839777708054, 0.0006579458131454885, -0.0001424078509444371, -0.0006026773480698466, 0.02705015242099762, -0.06508132815361023, -0.026547452434897423, 0.0013993385946378112, 0.0339222177863121, -0.029187466949224472, 0.008283883333206177, 3.370342734777863e-34, 0.002479391871020198, -0.04620561748743057, 0.030892835929989815, 0.02552366629242897, 0.009489241056144238, -0.02304389327764511, 0.06511202454566956, -0.050260722637176514, 0.028967704623937607, -0.07222688943147659, -0.05843481421470642], "91aec09e-c299-451a-bee5-36cc906bf2ce": [-0.023532958701252937, -0.04691017046570778, -0.03091626614332199, -0.020056698471307755, 0.06862697750329971, 0.05188131332397461, -0.030891573056578636, 0.004141577985137701, 0.003692933125421405, -0.026351381093263626, -0.009279003366827965, 0.023328298702836037, -0.029560746625065804, 0.030157234519720078, 0.060298942029476166, 0.008407959714531898, 0.04136448726058006, -0.0039975899271667, 0.06377051770687103, 0.05226581543684006, -0.023411469534039497, 0.03210922330617905, -0.00029638930573128164, 0.03511006012558937, 0.020767923444509506, -0.019904954358935356, 0.061876215040683746, -0.017238754779100418, 0.030637333169579506, -0.040954168885946274, 0.04066179320216179, -0.029967719689011574, 0.06460701674222946, 0.033081308007240295, 1.6183813613679376e-06, 0.026454590260982513, -0.05415729433298111, -0.02120768278837204, 0.00709153339266777, -0.020572148263454437, -0.01799800619482994, -0.023331936448812485, 0.03521258756518364, 0.05922858789563179, -0.029843207448720932, -0.11444643884897232, -0.02304765209555626, -0.07619784027338028, 0.04942230135202408, 0.05728722736239433, 0.025826258584856987, 0.09077849984169006, 0.00741885881870985, 0.0054959626868367195, -0.04214173182845116, -0.0070495340041816235, 0.00918780080974102, 0.04715152829885483, 0.009799123741686344, -0.035905394703149796, 0.06158196181058884, 0.018567359074950218, 0.020490018650889397, 0.022385235875844955, 0.020278559997677803, 0.016595222055912018, -0.0526597797870636, -0.01246078871190548, 0.02240779995918274, 0.005058480426669121, 0.027350155636668205, -0.04276511073112488, -0.023034803569316864, -0.01893089897930622, -0.026136914268136024, -0.07151869684457779, -0.044618550688028336, 0.04293655604124069, 0.006527027115225792, 0.005782714579254389, -0.04088625684380531, -0.08648752421140671, -0.026698913425207138, 0.06473256647586823, 0.04583572968840599, -0.06884765625, -0.0061223627999424934, 0.028320008888840675, 0.0023901143576949835, 0.04038511961698532, -0.03750511258840561, 0.01754516363143921, -0.05374429002404213, 0.004518006928265095, -0.05325872823596001, -0.04443865269422531, 0.016677364706993103, -0.031424883753061295, 0.006363527849316597, 0.010965289548039436, -0.03877873346209526, 0.010961387306451797, 0.0016009440878406167, 0.004805265460163355, -0.06898773461580276, 0.061008021235466, 0.017819225788116455, 0.041976653039455414, 0.034558143466711044, -0.02113715000450611, -0.006987305823713541, -0.014513756148517132, -0.01924518682062626, -0.06612784415483475, 0.047226544469594955, 0.04094688594341278, 0.045763298869132996, 0.0362725630402565, 0.012912907637655735, 0.055274080485105515, -0.07711435109376907, -0.06649447977542877, 0.020733853802084923, 0.028805488720536232, 0.028397727757692337, -0.00541059160605073, 0.056369151920080185, 0.006625059060752392, -0.05488407611846924, -0.02740236558020115, -0.05615128204226494, 0.03198846057057381, -0.01785406842827797, -0.03297557681798935, 0.018378470093011856, 0.03759850189089775, -0.0027714879252016544, -0.007516184356063604, -0.028659271076321602, -0.006968398112803698, 0.040871746838092804, -0.015792716294527054, 0.009236927144229412, 0.005754736717790365, -0.069324791431427, 0.044871099293231964, 0.04170598089694977, -0.0743991881608963, -0.014877991750836372, -0.03857552260160446, 0.029760872945189476, -0.028849605470895767, -0.05757204070687294, 0.00262222858145833, -0.008504629135131836, -0.022658472880721092, -0.017947975546121597, -0.029913946986198425, 0.022820159792900085, 0.0036372574977576733, -0.015286778099834919, -0.06481610983610153, 0.01660510152578354, -0.021146496757864952, 0.021853715181350708, -0.018637128174304962, -0.04371540993452072, -0.01440989226102829, 0.05231916904449463, -0.03970717638731003, 0.02445531077682972, -0.0016112554585561156, -0.021357910707592964, 0.023849759250879288, -0.054831311106681824, -0.051956914365291595, -0.03241170570254326, 0.0012608888791874051, 0.009165422059595585, 0.00419818377122283, 0.02432696707546711, 0.03466903045773506, -0.031787652522325516, 0.04112287238240242, 0.03408035263419151, 0.00020143770962022245, 0.004115934018045664, 0.013505063951015472, -0.0010287800105288625, 0.00892359297722578, -0.04069613292813301, 0.022059442475438118, 0.05057350546121597, -0.02893921174108982, 0.009695515036582947, -0.07352399826049805, -0.013459001667797565, 0.011833339929580688, 0.00027120698359794915, 0.014735396951436996, -0.027945740148425102, -0.0653415098786354, -0.041109561920166016, 0.08179956674575806, 0.03730199113488197, -0.037751201540231705, -0.034426044672727585, -0.06739520281553268, -0.04597567394375801, 0.01890699937939644, 0.025101246312260628, -0.01780061237514019, 0.026790859177708626, -0.046563319861888885, -0.041281551122665405, -0.09136392921209335, -0.04883807897567749, -0.030521821230649948, 0.0064615895971655846, -0.03005572408437729, 0.01266332808881998, -0.027106711640954018, -0.03487599268555641, 0.05814751982688904, -0.01929956115782261, -0.023244014009833336, -0.006760719697922468, -0.02468683198094368, 0.005920079071074724, 0.014067371375858784, -0.10269924253225327, 0.013858268968760967, -0.04604938253760338, 0.0015614950098097324, -0.024983135983347893, -0.03476391360163689, 0.0011600713478401303, -0.02129439264535904, 0.004345808643847704, -0.020207799971103668, -0.09323597699403763, 0.10119439661502838, 0.006277069915086031, 0.018614379689097404, -0.03784673288464546, 0.024049315601587296, -0.009855122305452824, 0.012313124723732471, 0.04132071137428284, 0.03658943995833397, 0.05567494034767151, -0.005185461603105068, -0.03436170518398285, -0.014102388173341751, 0.016070976853370667, 0.007914905436336994, 0.027423080056905746, 0.047277335077524185, -0.02428162842988968, -0.03185718134045601, -0.009169765748083591, 0.032318759709596634, -0.009317274205386639, 0.047690197825431824, 0.05228041484951973, 0.06883955746889114, -0.027222411707043648, -0.04244396463036537, 0.05945529043674469, -0.03384852781891823, -0.029791977256536484, -0.028317011892795563, -0.029334181919693947, -0.02939705178141594, -0.010812020860612392, -0.013324294239282608, 0.026598455384373665, -0.05173942819237709, 0.02886907197535038, 0.004166414495557547, -0.08854760229587555, 0.009151238016784191, -0.04457399994134903, -0.002233277540653944, -0.046228159219026566, 0.028875384479761124, -0.026219086721539497, -0.023264875635504723, 0.0015121643664315343, -0.003248186782002449, -0.006652772426605225, 0.03769806772470474, 0.03506729006767273, 0.007603800389915705, -0.004410928580909967, 0.0033557722344994545, 0.05353116989135742, -0.012029392644762993, -0.027614682912826538, -0.013356521725654602, 0.0922577902674675, 0.057166002690792084, -0.017726626247167587, 0.004309322685003281, 0.05423760786652565, 0.0008257441804744303, 0.07258483022451401, -0.005332136061042547, -0.047569748014211655, -0.020465193316340446, 0.004464975092560053, -0.020646987482905388, -0.034711502492427826, 0.07944662123918533, 0.02061407081782818, 0.043291546404361725, 0.0852060317993164, -0.011408737860620022, 0.007485092617571354, 0.050560612231492996, 0.03362023085355759, -0.09752346575260162, 0.011195550672709942, -0.0036466082092374563, -0.017600420862436295, -0.04445469379425049, -0.056061677634716034, -0.02287955768406391, 0.0008338813786394894, 0.04279549419879913, -0.021992456167936325, -0.0063470802269876, -0.03730098903179169, -0.020451311022043228, 0.003745022462680936, 0.02254321798682213, 0.046401288360357285, 0.022152096033096313, 0.023327259346842766, 0.03325306251645088, -0.052401088178157806, 0.014767300337553024, -0.009156947024166584, -0.01101266872137785, -0.02631278894841671, 0.06243399903178215, 0.02273005247116089, -0.050300996750593185, 0.10303159058094025, 0.0021134058479219675, 0.04738883674144745, 0.016165023669600487, 0.02369149960577488, -0.0030058950651437044, 0.004064455162733793, 0.016640281304717064, 0.01102222129702568, -0.04278622567653656, 0.008576316758990288, -0.007749261800199747, 0.05665852874517441, -0.0038441880606114864, -0.04928584396839142, 0.06933873146772385, -0.07112537324428558, -0.015580861829221249, 0.025461411103606224, -0.024486949667334557, -0.033014167100191116, -0.01188971009105444, -0.01587658002972603, -0.002636370714753866, 0.02461955137550831, 0.047322727739810944, -0.0014616400003433228, 0.0308366771787405, -0.008800286799669266, 0.010822945274412632, 0.055793892592191696, 0.020423932000994682, 0.0010925319511443377, -0.06767887622117996, 0.05085602030158043, -0.028680922463536263, 0.002798624336719513, 0.031523533165454865, 0.007578762713819742, -0.03511912748217583, 0.0967458039522171, -0.0032480184454470873, -0.0026099970564246178, -0.025814348831772804, -0.006460802163928747, 0.03829323872923851, -0.010335453785955906, -0.0036037357058376074, 0.041430339217185974, -0.00532018207013607, 0.011419233866035938, 0.05565403401851654, -0.01580648496747017, 0.0014581975992769003, 0.003314391942694783, -0.00818772055208683, -0.028561977669596672, 0.044562242925167084, 0.05684908851981163, -0.009695583023130894, -0.021285714581608772, -0.011843094602227211, -0.00039397674845531583, 0.028893277049064636, -1.893237822514493e-05, -0.04069870337843895, 0.07414384186267853, 0.04013547673821449, -0.012297885492444038, 0.022838834673166275, -0.028880823403596878, -0.006449202075600624, -0.03472325578331947, 0.01178787276148796, 0.014373747631907463, -0.013420261442661285, -0.061353422701358795, 0.01677810773253441, -0.004399292171001434, -0.008135279640555382, -0.009903748519718647, 0.06011424958705902, 0.05524624511599541, -0.05846163257956505, -0.018325023353099823, -0.014277620241045952, -0.052896708250045776, -0.025104621425271034, -0.018534023314714432, 0.019291952252388, -0.07184138149023056, -0.021006854251027107, -0.003861444303765893, 0.06817593425512314, -0.018148407340049744, -0.050393491983413696, -0.02786436676979065, -0.011234073899686337, 0.0351911261677742, -0.03764653205871582, 0.019024187698960304, 0.048932235687971115, 0.02575867623090744, 0.05427682772278786, -0.06705217808485031, 0.035676151514053345, 0.001731795840896666, -0.0026013103779405355, -0.029730021953582764, 0.041493069380521774, -0.046145305037498474, -0.03387916460633278, -0.06764545291662216, -0.016524622216820717, 0.026654671877622604, -0.004321119282394648, -0.009832968935370445, 0.010875239968299866, -0.07510355859994888, 0.004970022477209568, 0.0014581597642973065, 0.05645516514778137, 0.030265362933278084, 0.011213392950594425, 0.004497597925364971, 0.011166132986545563, 0.007936364971101284, -0.02428530715405941, 0.008097842335700989, -0.00857362151145935, -0.03609796240925789, 0.025728022679686546, 0.055017173290252686, 0.02131195180118084, 0.01622495986521244, 0.017107686027884483, -0.03581139072775841, -0.03216620162129402, 0.07769448310136795, 0.03175867721438408, -0.003359522670507431, 0.023039348423480988, 0.010769223794341087, -0.04980405047535896, -0.018461504951119423, 0.004376561846584082, -0.013044038787484169, 0.03140503913164139, 0.006782641634345055, 0.11033742874860764, -0.04958914592862129, 0.013798518106341362, 0.05419972538948059, -0.008653402328491211, -0.03754591569304466, -0.000756354711484164, -0.0007598382071591914, 0.022746840491890907, -0.0015525008784607053, 0.041702933609485626, -0.01188221387565136, -0.02613465115427971, 0.047308556735515594, 0.044133178889751434, 0.003250869456678629, -0.08454397320747375, 0.024729229509830475, -0.026172546669840813, 0.021550610661506653, -0.014005886390805244, 0.022328009828925133, 0.01577654294669628, -0.016628313809633255, 0.025920946151018143, -0.028279244899749756, -0.016954924911260605, 0.0444723516702652, -0.034834135323762894, 0.0022535715252161026, 0.00389493047259748, -0.05554668977856636, 0.07172107696533203, 0.006967920809984207, 0.019259097054600716, 0.056744400411844254, -0.044507648795843124, 0.0029264020267874002, -0.027497021481394768, 0.006775596644729376, 0.003809625282883644, 0.045255351811647415, 0.08247745782136917, 0.03566218540072441, -0.015181377530097961, -0.007262023165822029, -0.005642851814627647, -0.053537193685770035, -0.04740987718105316, -0.01789681427180767, 0.012403704226016998, -0.020516689866781235, -0.024802975356578827, 0.016677087172865868, 0.01200361829251051, 0.11686939001083374, 0.011881240643560886, -0.05595440790057182, -3.910996805512433e-33, -0.008847967721521854, -0.0013242933200672269, 0.041488874703645706, 0.05595278739929199, -0.018815740942955017, -0.0266001857817173, -0.027196265757083893, -0.012429545633494854, -0.039431195706129074, -0.02386469393968582, 0.03819303959608078, -0.0035288112703710794, -0.024734606966376305, -0.045762207359075546, 0.008368928916752338, 0.058135416358709335, 0.023226052522659302, 0.01599980518221855, -0.011291250586509705, 0.005396808497607708, -0.02996443398296833, 0.005793400574475527, 0.09402424842119217, -0.046998005360364914, -0.056657034903764725, 0.07799732685089111, 0.05390344560146332, 0.01695355959236622, -0.010967401787638664, -0.010565575212240219, 0.006714419461786747, -0.050343092530965805, 0.03838038071990013, -0.07804521173238754, -0.02292500250041485, -0.019892916083335876, 0.02813492901623249, -0.057399798184633255, -0.03290794417262077, 0.03563898056745529, 0.005503466352820396, -0.011575168929994106, 0.0334135927259922, -0.04372582957148552, 0.031989723443984985, 0.016389107331633568, -0.025516441091895103, -0.008006823249161243, 0.00977942906320095, -0.0053079985082149506, 0.01531079038977623, 0.05855229124426842, -0.04471052438020706, -0.0009134203428402543, 0.006699924357235432, -0.00659136613830924, -0.007431631907820702, 0.006130922120064497, -0.03505771979689598, -0.013926556333899498, 0.009759889915585518, -0.02973451092839241, 0.025839025154709816, -0.07614614814519882, -0.05393382906913757, 0.051843609660863876, -0.008103749714791775, 0.0029940714593976736, -0.03637564554810524, -0.013414010405540466, 0.02415294758975506, -0.007136865984648466, 0.012942453846335411, -0.07470182329416275, -0.12582989037036896, 0.014268542639911175, -0.014949053525924683, -0.0068748146295547485, 0.017278453335165977, 0.047586001455783844, -0.011063932441174984, -0.009534272365272045, -0.007969188503921032, -0.04972871392965317, -0.029172653332352638, -0.000420748459873721, 0.004265137482434511, -0.03246178478002548, -0.02946317568421364, -0.025824887678027153, -0.01700851321220398, -0.04146135598421097, 0.02488485909998417, 0.014491969719529152, 0.042216282337903976, 0.041441239416599274, -0.04145493358373642, -0.018788432702422142, 0.031564030796289444, 0.026702025905251503, -0.02030295692384243, 0.05572464317083359, -0.023522861301898956, -0.055567581206560135, 0.0459236241877079, 0.014468856155872345, -0.010223811492323875, -0.01708138734102249, -0.05642165616154671, 0.010276678018271923, 0.014646775089204311, -0.052121564745903015, -0.0015908956993371248, 0.00029791679116897285, -0.02888939343392849, -0.01386322546750307, -0.008528468199074268, -0.00510432431474328, 0.024175697937607765, -0.024854203686118126, -0.01824466697871685, -0.006493278779089451, 0.043575093150138855, -0.017074650153517723, -0.019632188603281975, 0.016401154920458794, -0.021047204732894897, 0.010305934585630894, 0.03475166857242584, 0.08857371658086777, -0.006377825513482094, -0.029276402667164803, 2.4005416321415396e-07, 0.007761707529425621, 0.05191310867667198, -0.0008962922147475183, 0.06032421439886093, -0.0019403636688366532, 0.007410746067762375, -0.023204877972602844, 0.022330939769744873, -0.005853163544088602, 0.008144238963723183, -0.03404632955789566, 0.03856920823454857, -0.006174536421895027, 0.05537169799208641, 0.06372351944446564, 0.026374921202659607, -0.029269665479660034, 0.015543827787041664, 0.003987641539424658, -0.011852532625198364, 0.049216896295547485, 0.0003482527390588075, -0.012232795357704163, 0.02263275906443596, 0.011960704810917377, -0.03554408252239227, -0.05747866630554199, -0.018792487680912018, 0.027521319687366486, 0.05740533396601677, -0.005254559218883514, 0.0165947824716568, 0.025035684928297997, -0.0022504650987684727, -0.007700268644839525, -0.05037440359592438, -0.004270636942237616, 0.03071056865155697, -0.01718590222299099, 0.07541815936565399, 0.03964448720216751, 0.04046262428164482, 0.006822999566793442, 0.008883859030902386, 0.03072543255984783, -0.009965028613805771, -0.007358652539551258, -0.038674257695674896, 0.012871433049440384, 0.03619537129998207, 0.01546747051179409, 0.0037036635912954807, 0.0030793058685958385, 0.02677137963473797, -0.021068142727017403, 0.027800362557172775, -0.04149327427148819, 0.01771247386932373, 0.0020129659678786993, -0.00617060624063015, 0.005957141984254122, -0.04153932258486748, 0.004094654694199562, -0.02190505526959896, -0.00642653601244092, 0.04268302023410797, -0.022161172702908516, 2.6465982098162733e-34, 0.009327088482677937, -0.03980249911546707, 0.05115406960248947, 0.02257918007671833, -0.008173977956175804, 0.015639828518033028, 0.014957827515900135, -0.031010329723358154, 0.039911676198244095, -0.045231275260448456, -0.022358501330018044], "0f6df599-a7d7-4b74-99f7-cddd754c7717": [-0.017059888690710068, -0.06760084629058838, -0.038443464785814285, -0.0204774197191, 0.05372059345245361, 0.04546701908111572, -0.009539967402815819, 0.04861652851104736, -0.039219118654727936, -0.04541325569152832, -0.001986953429877758, 0.033645935356616974, -0.013261650688946247, 0.042039792984724045, 0.0479106567800045, -0.0014320272020995617, 0.05444565787911415, 0.004395299591124058, 0.05859703943133354, 0.06329990178346634, -0.033044472336769104, 0.027159597724676132, -0.030774861574172974, 0.018611131235957146, 0.006728582549840212, -0.025011412799358368, 0.01764329895377159, -0.014077899046242237, 0.004529864992946386, -0.06594949215650558, 0.020332390442490578, 0.02137923613190651, 0.04160534590482712, 0.037332192063331604, 1.7091516610889812e-06, 0.010183512233197689, -0.041996777057647705, -0.011961201205849648, 0.016107376664876938, 0.012026573531329632, 0.012211130000650883, -0.0050818584859371185, 0.02396511472761631, 0.037517767399549484, -0.020733987912535667, -0.10338971763849258, -0.028796300292015076, -0.019253840669989586, 0.051267921924591064, 0.08307377994060516, 0.03049885481595993, 0.08532846719026566, -0.010363888926804066, -0.011153330095112324, 0.014936947263777256, -0.00444286223500967, 0.006430694367736578, 0.05551491677761078, 0.037393637001514435, -0.015500366687774658, 0.07596136629581451, -0.024847939610481262, 0.010671326890587807, 0.0023431775625795126, 0.05426862835884094, 0.02785218320786953, -0.043210744857788086, -0.045303232967853546, 0.027898354455828667, -0.00870470143854618, 0.06347781419754028, -0.036607127636671066, -0.019475409761071205, -0.0008484456338919699, -0.040961649268865585, -0.05610720068216324, -0.05156742036342621, 0.03999384492635727, 0.019084744155406952, -0.013436790555715561, -0.04889149218797684, -0.06319323182106018, -0.029202589765191078, 0.036424633115530014, 0.024305734783411026, -0.0787300169467926, -0.025264032185077667, -0.031156081706285477, 0.008597241714596748, 0.03332984820008278, -0.020255951210856438, 0.0050758058205246925, -0.032123077660799026, 0.01506019476801157, -0.03423836827278137, -0.050804510712623596, 0.010694505646824837, -0.08215147256851196, 0.050929974764585495, 0.014253390021622181, -0.04635516554117203, 0.0011587897315621376, -0.012203121557831764, 0.013358735479414463, -0.06939084082841873, 0.07322640717029572, 0.014565527439117432, 0.05621378868818283, 0.02723206952214241, 0.025256726890802383, -0.005117098800837994, -0.011017519980669022, -0.034691743552684784, -0.07257963716983795, 0.05275414511561394, 0.023556862026453018, 0.05559283494949341, 0.013311749324202538, -0.01384944748133421, 0.05781424418091774, -0.05210237577557564, -0.035518936812877655, 0.0021878243423998356, 0.0368247926235199, 0.020626641809940338, -0.050784870982170105, 0.04546708986163139, -0.03021307662129402, -0.05841410905122757, -0.006792943459004164, -0.04729336127638817, 0.0356329008936882, -0.026030657812952995, -0.03531910479068756, 0.013107581064105034, 0.051296643912792206, 0.010566609911620617, -0.025765538215637207, -0.02800092101097107, -0.018228581175208092, 0.06381340324878693, 0.00431103678420186, -0.014159617945551872, -0.0020955547224730253, -0.06496068835258484, 0.047168198972940445, 0.018993210047483444, -0.050754040479660034, -0.006332720629870892, -0.03179844468832016, 0.0017652164679020643, -0.0068494719453155994, -0.050681017339229584, 0.032252151519060135, -0.005527614615857601, -0.04741906374692917, -0.0155888507142663, -0.0458575002849102, 0.006275409832596779, -0.028832707554101944, -0.004634214099496603, -0.061386026442050934, 0.02956409379839897, -0.029887152835726738, 0.045672707259655, -0.0025463479105383158, -0.028647933155298233, -0.0032628823537379503, 0.08458515256643295, -0.002792821265757084, 0.01942831091582775, 0.01753176562488079, -0.015379618853330612, 0.014561796560883522, -0.08066709339618683, -0.022336067631840706, 0.0061975507996976376, -0.019734038040041924, 0.0021888837218284607, -0.015534351579844952, 0.029877254739403725, 0.017650745809078217, -0.038141511380672455, 0.01827309839427471, 0.02410862222313881, 0.0033721562940627337, -0.02170751430094242, -0.0007701163413003087, 0.0020035631023347378, 0.0027374224737286568, -0.06373971700668335, 0.029368026182055473, 0.02355574630200863, -0.05091299116611481, 0.035920094698667526, -0.05062860995531082, -0.02690620720386505, 0.006762943230569363, 0.02632809802889824, -0.020823746919631958, -0.007325868587940931, -0.048033639788627625, 0.0241433996707201, 0.06157180294394493, 0.04049280658364296, -0.04880489408969879, -0.014326098375022411, -0.06382404267787933, -0.06615625321865082, -0.013640973716974258, 0.019931761547923088, -0.01639917492866516, -0.012782436795532703, -0.06829526275396347, -0.034307464957237244, -0.10467618703842163, -0.031879667192697525, -0.018806975334882736, 0.0075951372273266315, -0.04516558349132538, 0.037202101200819016, -0.028384802863001823, -0.02009485475718975, 0.0757053941488266, 0.022310452535748482, -0.03008972480893135, -0.017255689948797226, -0.03127813711762428, 0.011888100765645504, 0.023896733298897743, -0.11977343261241913, 0.01115503441542387, -0.023595402017235756, 0.02861844189465046, -0.014166385866701603, -0.007942215539515018, 0.020174846053123474, -0.00826899241656065, 0.0074651106260716915, -0.04408007860183716, -0.07897447049617767, 0.10824615508317947, 0.0153642687946558, 0.015674134716391563, -0.06107077747583389, 0.0005367083358578384, -0.06358973681926727, 0.009247655048966408, 0.039031099528074265, 0.01142122596502304, 0.04533080756664276, 0.023312928155064583, -0.018352286890149117, 0.001656278851442039, 0.03853221610188484, 0.033727530390024185, 0.036509715020656586, 0.04718998074531555, -0.05609707906842232, -0.02803550474345684, 0.01717923954129219, -0.004717852920293808, -0.04200417920947075, 0.029641402885317802, 0.05290430411696434, 0.0782732143998146, -0.027227895334362984, -0.05158364772796631, 0.05291566625237465, -0.030940577387809753, -0.034902337938547134, -0.008390462957322598, -0.03633803501725197, -0.02637629024684429, -7.767070201225579e-05, 0.03071736916899681, -0.0217079259455204, -0.034940823912620544, -0.0041383495554327965, 0.012954482808709145, -0.07381647080183029, 0.044942714273929596, -0.03579214587807655, -0.021386846899986267, -0.0667872503399849, 0.05440802872180939, -0.009513752534985542, -0.01881767064332962, -0.0235951766371727, 0.0401129424571991, 0.04166306182742119, 0.019307654350996017, 0.04917868971824646, -0.005705689080059528, -0.016310270875692368, -0.004595016594976187, 0.06590387225151062, 0.03330635651946068, 0.011907157488167286, 0.039651889353990555, 0.06611572206020355, 0.06374695897102356, -0.005615319591015577, 0.002944875042885542, 0.07123129069805145, 0.04245688021183014, 0.10293532907962799, -0.04790014028549194, -0.010399236343801022, -0.013844936154782772, 0.0014074797509238124, -0.008885592222213745, -0.03742098808288574, 0.060031138360500336, 0.00425222422927618, 0.026020411401987076, 0.05945630371570587, -0.013252685777842999, 0.009732191450893879, 0.022325798869132996, 0.030187634751200676, -0.060907911509275436, 0.010773728601634502, -0.033009931445121765, -0.01735577918589115, -0.05631106346845627, -0.0639701560139656, -0.023914651945233345, 0.008831201121211052, 0.04692963510751724, -0.020362822338938713, -0.01678040437400341, -0.047067053616046906, -0.0038987176958471537, -0.021705839782953262, 0.0012944163754582405, 0.0399443693459034, 0.003948664758354425, 0.027556316927075386, 0.021234149113297462, -0.05105319246649742, 0.040346719324588776, 0.0045930431224405766, -0.03335357457399368, -0.013287712819874287, 0.044863540679216385, 0.013128860853612423, -0.03614607825875282, 0.029728442430496216, 0.01635296642780304, 0.038415852934122086, 0.03199087828397751, 0.009381335228681564, 0.013552271761000156, 0.017715128138661385, 0.02158627286553383, -0.020848924294114113, -0.06654578447341919, 0.012007936835289001, -0.038710903376340866, 0.03180152177810669, 0.01913672685623169, -0.02862503007054329, 0.10436130315065384, -0.09326203167438507, -0.03801708295941353, -0.026619605720043182, -0.0365847572684288, 0.005823231767863035, -0.015565237030386925, -0.027022168040275574, 0.009157787077128887, 0.018478116020560265, 0.0654144361615181, 0.002729873638600111, 0.032564930617809296, 0.009739256463944912, -0.041504282504320145, 0.007768863346427679, 0.016405759379267693, 0.0026373560540378094, -0.06461392343044281, 0.05653373524546623, -0.01310765277594328, 0.020175641402602196, 0.022721504792571068, 0.009539086371660233, 0.002173563465476036, 0.11119882017374039, -0.015835842117667198, -0.006964854430407286, -0.012337392196059227, -0.007994004525244236, 0.01908086985349655, -0.04272202029824257, -0.024119172245264053, 0.03935011848807335, 0.00648496812209487, 0.03693568333983421, 0.042912084609270096, -0.0023415950126945972, 0.013805871829390526, 0.009506288915872574, 0.0048563312739133835, -0.012783851474523544, 0.04311051964759827, 0.0797729417681694, -0.014634530991315842, -0.0475250668823719, 0.0063015129417181015, 0.0042811851017177105, 0.025452200323343277, 0.023291049525141716, -0.05503832548856735, 0.07342293858528137, 0.03804721683263779, 0.0017428050050511956, 0.058435551822185516, -0.005542645696550608, -0.007773200515657663, -0.06300708651542664, 0.027142977342009544, -0.010556574910879135, -0.010121827013790607, -0.06843705475330353, -0.04421975463628769, 0.03077906183898449, -0.005618915893137455, -0.002977679017931223, 0.04187997803092003, 0.08702052384614944, -0.05168180167675018, -0.03147520497441292, 0.03286287933588028, -0.04779990017414093, -0.026402702555060387, -0.03145400062203407, 0.005905711092054844, -0.005321337375789881, -0.005896043032407761, -0.018730873242020607, 0.08408430218696594, 0.012068568728864193, -0.060633353888988495, -0.059916820377111435, -0.023463506251573563, 0.019072504714131355, -0.045759327709674835, 0.039031341671943665, 0.0793767049908638, 0.032144565135240555, 0.031005609780550003, -0.08254122734069824, 0.022624919191002846, -0.0037930903490632772, 0.0029264125041663647, -0.0081412298604846, 0.03592870384454727, -0.024717407301068306, -0.016140099614858627, -0.05203533545136452, -0.0015097754076123238, 0.003428871277719736, -0.017251452431082726, -0.015301236882805824, 0.009032845497131348, -0.08390731364488602, -0.016292624175548553, 0.017603835090994835, -0.00350865232758224, -0.018738795071840286, 0.01247703842818737, -0.021216409280896187, 0.018797513097524643, -0.021697387099266052, -0.08325112611055374, -0.0007940337527543306, 0.03661247715353966, 0.004899423569440842, 0.031742606312036514, 0.03677583858370781, 0.04217768833041191, 0.054017361253499985, 0.008963092230260372, -0.027314305305480957, -0.013573410920798779, 0.04773446545004845, 0.014050045982003212, -0.002542860107496381, 0.03711425140500069, 0.0004111415473744273, -0.0446399562060833, -0.03665134683251381, -0.005696427542716265, -0.03894724324345589, 0.017102880403399467, 0.00373466475866735, 0.07670148462057114, -0.016698729246854782, 0.0012954723788425326, 0.06471536308526993, -0.04381658509373665, -0.027677685022354126, -0.005682180169969797, -0.027162039652466774, 0.020805958658456802, 0.003404817311093211, 0.03981592506170273, -0.009820179082453251, -0.02220604009926319, 0.04561866819858551, 0.0070008402690291405, -0.010337228886783123, -0.038589004427194595, 0.02212102711200714, -0.03279998153448105, 0.015030328184366226, -0.01543188001960516, -0.011516401544213295, 0.0031495210714638233, -0.007897790521383286, 0.02760767936706543, 0.004456580150872469, -0.025422999635338783, 0.050003018230199814, -0.013779395259916782, 0.01043009851127863, 0.005222763400524855, -0.04737670347094536, 0.058117013424634933, -0.026661289855837822, 0.04076135531067848, 0.05676668882369995, -0.033014196902513504, -0.007248148322105408, 0.003631183411926031, 0.00019909325055778027, 0.027135251089930534, 0.02461339719593525, 0.013372167013585567, 0.058641090989112854, -0.012327073141932487, 0.03245509788393974, 0.03817988559603691, -0.050859320908784866, -0.022494778037071228, -0.0038818262983113527, 0.025908706709742546, -0.03381485119462013, -0.04336361959576607, 0.040831610560417175, 0.006761061027646065, 0.06128226965665817, -0.017281917855143547, -0.038806021213531494, -4.1550081269080314e-33, -0.005151031538844109, -0.04467055946588516, 0.016487883403897285, 0.025115270167589188, -0.006844191811978817, -0.025064419955015182, -0.030209923163056374, -0.005572951398789883, -0.008179103024303913, -0.009887195192277431, 0.020640844479203224, 0.014903290197253227, -0.015962954610586166, -0.06992430984973907, 0.010975544340908527, 0.08430375903844833, 0.042642105370759964, 0.010099484585225582, -0.0316227488219738, 0.005182685796171427, -0.03997425734996796, 0.005260939244180918, 0.07070361822843552, -0.010086830705404282, -0.06004269793629646, 0.03955366462469101, 0.04319273307919502, 0.009138371795415878, -0.0023303234484046698, 0.010425547137856483, 0.014731190167367458, -0.05272151529788971, 0.016883578151464462, -0.030333448201417923, -0.011989245191216469, 0.004908139351755381, -0.019930977374315262, -0.02569880336523056, -0.021574459969997406, 0.034126244485378265, -0.015490283258259296, -0.0004285673494450748, 0.030945926904678345, -0.04344794899225235, 0.07021905481815338, 0.011241848580539227, -0.00965108908712864, 0.007825106382369995, 0.012433202005922794, -0.014471199363470078, -0.007986774668097496, 0.06182766333222389, -0.06370889395475388, 0.021493395790457726, -0.003325630445033312, -0.024120165035128593, 0.019007094204425812, -0.008006727322936058, -0.00435017142444849, -0.02153821475803852, 0.040679674595594406, -0.008217506110668182, 0.018911518156528473, -0.08608409017324448, -0.034699343144893646, 0.017231207340955734, -0.022737029939889908, 0.026422128081321716, -7.580277451779693e-05, -0.021940452978014946, 0.021716047078371048, 0.006699040997773409, 0.0026784350629895926, -0.04864932596683502, -0.08640505373477936, 0.03167613223195076, -0.002025931142270565, 0.005854746792465448, 0.022354941815137863, 0.03774675354361534, -0.017427684739232063, -0.011396851390600204, -0.021856145933270454, -0.0277495626360178, -0.02477031946182251, -0.009240387938916683, -0.019794413819909096, -0.057891931384801865, -0.02542882040143013, -0.01826872117817402, -0.028744349256157875, -0.031454313546419144, 0.006885909475386143, 0.018498487770557404, 0.0642222985625267, 0.047606516629457474, -0.05183276906609535, 0.01225223671644926, -0.006989363580942154, 0.00034181581577286124, -0.02097921259701252, 0.013322807848453522, 0.009286602959036827, -0.030945822596549988, 0.052394453436136246, 0.011556608602404594, -0.023824317380785942, -0.0039260173216462135, -0.0406610369682312, 0.009998906403779984, 0.053169600665569305, -0.031092921271920204, -0.022305939346551895, -0.011063494719564915, -0.023875197395682335, 0.010442927479743958, -0.0022457747254520655, -0.02099437080323696, 0.02047591097652912, -0.06034697964787483, -0.04103921353816986, -0.004275005776435137, 0.03885306045413017, -0.029747197404503822, -0.016055123880505562, -0.013386251404881477, -0.041016846895217896, 0.013477705419063568, 0.050541214644908905, 0.08837246894836426, -0.012585376389324665, 0.034852270036935806, 2.4631489736748335e-07, 0.0248235035687685, 0.0898493155837059, 0.01455198135226965, 0.05922723188996315, -0.017482612282037735, -0.01400046143680811, -0.057362258434295654, 0.021459046751260757, -0.00017880818631965667, 0.0013682279968634248, -0.013216208666563034, 0.0015497695421800017, 0.023491080850362778, 0.0718594416975975, 0.0587531141936779, 0.02371356077492237, -0.028126539662480354, -0.010517125949263573, -0.03616322576999664, -0.026650836691260338, 0.04257610812783241, -0.0009126426302827895, -0.01351184956729412, 0.030376968905329704, -0.0007343392353504896, -0.03507666289806366, -0.054614365100860596, 0.005933195818215609, 0.03661571070551872, 0.04073796421289444, -0.009075529873371124, -0.008040559478104115, 0.007993927225470543, 0.004586194176226854, -0.014255999587476254, -0.037285301834344864, -0.029538923874497414, 0.028346402570605278, 0.0032300043385475874, 0.08517932891845703, 0.033539313822984695, 0.02317993901669979, -0.002191192004829645, -0.02130136452615261, 0.037071261554956436, 0.02871844172477722, 0.0034118075855076313, -0.04690602794289589, -0.01519409567117691, 0.0006057440768927336, 0.00798463448882103, -0.005708572454750538, 0.06017010286450386, 0.026748554781079292, -0.04718020558357239, 0.012012765742838383, -0.048394761979579926, 0.011232192628085613, 0.028842268511652946, -0.014158584177494049, 0.011694981716573238, -0.038650356233119965, 0.019824232906103134, -0.01699085906147957, 0.005019851960241795, 0.016764981672167778, -0.01359314564615488, 2.8260257134435354e-34, 0.0011538354447111487, -0.020287128165364265, 0.04805557802319527, 0.018922695890069008, 0.007442839443683624, -0.004592232406139374, 0.058748215436935425, -0.0038227515760809183, 0.03395270183682442, -0.03260146081447601, -0.028246456757187843], "ce949a35-c420-4642-8f65-2ad80b27fe15": [-0.03374556452035904, -0.047386810183525085, -0.025000954046845436, -0.024174023419618607, 0.03624856099486351, 0.04518360272049904, 0.0032280879095196724, 0.03167111054062843, 0.0150121646001935, -0.021794237196445465, 0.013347907923161983, 0.031065883114933968, -0.021865028887987137, 0.07168642431497574, 0.05582239478826523, 0.015070594847202301, 0.044349271804094315, -0.023098966106772423, 0.051897548139095306, 0.05262300372123718, -0.01811297796666622, 0.016387591138482094, -0.04788258299231529, 0.024820556864142418, -0.0033152650576084852, 0.0010626724688336253, 0.024581793695688248, -0.014321823604404926, 0.02856561727821827, -0.04236917942762375, -0.0007363200420513749, 0.008261185139417648, 0.03822686895728111, 0.04261866956949234, 2.1322841803339543e-06, -0.011670627631247044, 0.005811494309455156, 0.0037407020572572947, -0.009580923244357109, -0.006112290546298027, -0.008807705715298653, -0.013641606085002422, 0.029611309990286827, 0.03406607359647751, 0.004468850325793028, -0.1014520674943924, -0.007440274581313133, -0.04198756068944931, 0.04776393994688988, 0.07359443604946136, 0.033223770558834076, 0.07855392247438431, -0.0006491800304502249, -0.010319670662283897, 0.03457918390631676, -0.03539688140153885, 0.030575545504689217, 0.04855244234204292, 0.04584072157740593, -0.04474780336022377, 0.0587204210460186, -0.013435152359306812, 0.020761460065841675, -0.00848047249019146, 0.03362879157066345, 0.03612212836742401, -0.005332048516720533, -0.03966950252652168, 0.010425472632050514, -0.03075186349451542, 0.06958822160959244, -0.05791599676012993, -0.01667739450931549, -0.01195764821022749, -0.02962287701666355, -0.016707375645637512, -0.02650168165564537, -0.03256235644221306, 0.035390134900808334, -0.01387009210884571, -0.0341644249856472, -0.05977471172809601, -0.04002203792333603, 0.020126108080148697, 0.014293833635747433, -0.06379158049821854, -0.01811777986586094, -0.023929119110107422, 0.0022003906778991222, 0.05503956228494644, -0.001884474535472691, 0.008802298456430435, -0.014321901835501194, 0.017700687050819397, -0.03472631424665451, -0.04706021398305893, 0.008484350517392159, -0.07542170584201813, 0.04277418181300163, 0.03957873582839966, -0.05279620364308357, 0.006348410155624151, -0.02476155385375023, 0.004050984047353268, -0.04213361069560051, 0.09566407650709152, 0.06784698367118835, 0.04571991413831711, 0.026402965188026428, 0.007837783545255661, -0.03544822707772255, -0.010820940136909485, -0.028662946075201035, -0.05214251950383186, 0.06892122328281403, 0.015740755945444107, 0.05406853184103966, 0.016664238646626472, 0.015922915190458298, 0.08291909843683243, -0.054297998547554016, -0.05871763452887535, -0.009547318331897259, 0.038945507258176804, -0.023101702332496643, -0.07072242349386215, 0.02235272526741028, -0.053637828677892685, -0.03093790076673031, -0.027985574677586555, -0.049455173313617706, -0.0177910253405571, -0.033455803990364075, -0.01589399017393589, 0.0301362294703722, 0.04813621938228607, 0.0019108528504148126, -0.049987178295850754, -0.0067558325827121735, 0.005822823382914066, 0.04811716452240944, 0.01152721419930458, -0.03185980021953583, -0.006523957010358572, -0.034983254969120026, 0.03698078542947769, -0.011971230618655682, -0.05516846105456352, -0.019949907436966896, -0.04197792336344719, 0.030739732086658478, -0.04679504781961441, 0.01471538282930851, 0.02485840395092964, -0.011913304217159748, -0.02064364030957222, -0.023627977818250656, -0.01793086901307106, -0.04538808763027191, -0.016491830348968506, -0.012938170693814754, -0.03338467702269554, 0.050838302820920944, -0.014454283751547337, 0.04500420764088631, 0.019002314656972885, -0.03791950270533562, -0.0076246545650064945, 0.03219100460410118, 0.007432091049849987, -0.028272755444049835, -0.009427618235349655, -0.016960300505161285, 0.03642790764570236, -0.06203310936689377, -0.02744308114051819, 0.017756231129169464, -0.02985982783138752, 0.029043441638350487, -0.012088079005479813, 0.021416576579213142, 0.03747818246483803, -0.049594249576330185, 0.02507423423230648, 0.02837342768907547, -0.015550465323030949, -0.051064856350421906, 0.01711638830602169, 0.01688387244939804, 4.2358835344202816e-05, -0.03483204543590546, 0.03492794185876846, 0.00731011712923646, -0.024584971368312836, 0.04876309633255005, -0.0535854808986187, 0.0034134017769247293, -0.006264174822717905, 0.002139329444617033, -0.0134648522362113, -0.028204679489135742, -0.04406789690256119, 0.02423625998198986, 0.07391489297151566, 0.06232928857207298, -0.06815356761217117, -0.04510941728949547, -0.02124132588505745, -0.06797629594802856, -0.04177923873066902, 0.033771321177482605, -0.006478937342762947, -0.028338752686977386, -0.024211790412664413, -0.014698675833642483, -0.052812181413173676, -0.008080046623945236, 0.004127581138163805, 0.01227140985429287, -0.016285110265016556, 0.01064322516322136, -0.02718363329768181, -0.03164912015199661, 0.06336256861686707, 0.028252212330698967, -0.030085526406764984, -0.011096380650997162, -0.05020304396748543, -0.040668439120054245, -0.007049081847071648, -0.07983013987541199, 0.0018921969458460808, -0.01726708374917507, 0.034673094749450684, 0.008475120179355145, -0.023142728954553604, 0.017980683594942093, 0.010997666977345943, 0.018742982298135757, -0.03306778892874718, -0.09092364460229874, 0.10518237948417664, -0.007412918843328953, 0.004025011323392391, -0.06775488704442978, 0.0028767220210283995, -0.06363040953874588, 0.0073004658333957195, 0.041591063141822815, 0.005943813361227512, 0.010211211629211903, 0.043547697365283966, -0.010606215335428715, 0.019320519641041756, 0.03846612945199013, 0.030087191611528397, 0.022214850410819054, 0.02223796956241131, -0.02744480036199093, -0.02491234429180622, 0.007425370160490274, -0.01065916009247303, -0.03526023030281067, -0.001763847074471414, 0.02493549883365631, 0.07761146873235703, 0.0027870105113834143, -0.0547882542014122, 0.06114913150668144, -0.026144353672862053, -0.012483853846788406, -0.027118772268295288, -0.018209168687462807, -0.023135505616664886, -0.008675788529217243, 0.007830597460269928, -0.002963003935292363, -0.020359892398118973, -0.02016054093837738, -0.0014193502720445395, -0.05541648343205452, 0.027861885726451874, -0.03469002991914749, -0.008594698272645473, -0.048755474388599396, 0.05043714866042137, -0.024920180439949036, -0.05077897384762764, -0.018189841881394386, 0.026456987485289574, 0.04326063394546509, 0.0392589308321476, 0.03218672797083855, -0.00023045777925290167, -0.017103809863328934, -0.0034593832679092884, 0.05889686942100525, 0.011646358296275139, -0.025084752589464188, 0.018370961770415306, 0.05132067948579788, 0.05520959198474884, -0.03130929172039032, -0.003892212640494108, 0.08404801785945892, 0.05488376319408417, 0.07172830402851105, -0.023366164416074753, -0.014106142334640026, -0.013412381522357464, 0.009187527932226658, -0.0315413661301136, -0.005951283033937216, 0.06662578135728836, -0.012625506147742271, 0.020535144954919815, 0.05441083014011383, -0.022331126034259796, -0.029700595885515213, -0.004577068146318197, 0.02493838593363762, -0.08183974772691727, 0.04835032299160957, -0.04076046124100685, -0.02928129956126213, -0.07940614223480225, -0.07350926846265793, -0.009622877463698387, 0.06062217056751251, 0.019506940618157387, -0.034611642360687256, -0.005530915688723326, -0.04398449510335922, 0.04687301442027092, -0.007584225386381149, 0.018917318433523178, 0.035083796828985214, 0.01091010868549347, 0.0025805628392845392, 0.013727786019444466, -0.04722669720649719, 0.038927335292100906, 0.010664687491953373, -0.021756498143076897, -0.06195500120520592, 0.0568775050342083, 0.03511972725391388, -0.022781217470765114, 0.04757309705018997, 0.008805660530924797, 0.051258865743875504, 0.05972178652882576, 0.012729535810649395, 0.019505217671394348, 0.030830951407551765, -0.029932646080851555, -0.029777107760310173, -0.04322213679552078, 0.0031913539860397577, -0.02345144934952259, 0.01363478135317564, -0.010237752459943295, -0.043512292206287384, 0.059535104781389236, -0.07041799277067184, -0.06221554055809975, -0.010514973662793636, -0.05574607476592064, 0.040405407547950745, -0.004880056716501713, -0.03629150986671448, -0.015992507338523865, -0.003118241438642144, 0.04461616277694702, 0.01695648394525051, 0.022400328889489174, 0.0054994011297822, 0.01880296878516674, -0.00379781611263752, 0.018366916105151176, -0.0005622419412247837, -0.09305834770202637, 0.0357510931789875, -0.004675301257520914, 0.015260587446391582, 0.020170461386442184, 0.0246262364089489, 0.024543793871998787, 0.08737294375896454, -0.003715777536854148, -0.020905306562781334, -0.00837581418454647, -0.0008405813132412732, 0.040665946900844574, -0.03919424116611481, -0.024693157523870468, -0.024130728095769882, 0.0029882669914513826, 0.0100917499512434, 0.04552723839879036, -0.002231892431154847, -0.01663947105407715, -0.007637776434421539, 0.015756098553538322, -0.0034388843923807144, 0.018761806190013885, 0.07495106756687164, -0.01381514873355627, -0.033750616014003754, -0.013143619522452354, 0.00501065980643034, 0.001267323736101389, 0.040510524064302444, -0.06503361463546753, 0.060019515454769135, 0.04567158967256546, -0.007146189454942942, 0.013112717308104038, -0.0029199719429016113, 0.019151417538523674, -0.02763713151216507, 0.027275998145341873, 0.013081544078886509, -0.025759335607290268, -0.08217622339725494, -0.037824053317308426, 0.018886078149080276, 0.004696221090853214, -0.020478732883930206, 0.06266777962446213, 0.07535477727651596, -0.05862068012356758, 0.0035506654530763626, 0.016195904463529587, -0.041997067630290985, -0.027242394164204597, -0.06026053801178932, 0.015097248367965221, -0.010502105578780174, -0.0063948677852749825, -0.01192567776888609, 0.11816313117742538, 0.0031328462064266205, -0.05696960911154747, -0.06801466643810272, -0.06274102628231049, 0.02207653783261776, -0.03176959976553917, 0.018542036414146423, 0.07931506633758545, 0.037006109952926636, 0.06255759298801422, -0.07634418457746506, 0.026537062600255013, 0.018940895795822144, 0.004438295494765043, 0.027399547398090363, 0.019716806709766388, -0.017453527078032494, -0.029585862532258034, -0.05735732987523079, -0.009056802839040756, -0.011483273468911648, -0.042616501450538635, -0.018010219559073448, -0.0007243293803185225, -0.08911054581403732, -0.034597236663103104, -0.00677582947537303, 0.007603404577821493, -0.02896258421242237, 0.023971473798155785, -0.04160632938146591, 0.018183967098593712, -0.024714644998311996, -0.08445027470588684, 0.006628441624343395, 0.036692675203084946, -0.0069139208644628525, 0.03428119048476219, 0.03636060655117035, 0.023401565849781036, 0.042404282838106155, -0.000911290873773396, -0.03448476642370224, 0.014491677284240723, 0.059331752359867096, 0.006913301534950733, -0.007667381316423416, 0.04369327425956726, 0.019745564088225365, -0.06669111549854279, -0.02658945880830288, 0.01369240041822195, -0.04304065182805061, 0.036398522555828094, -0.02115354873239994, 0.08804982900619507, 0.00102756277192384, 0.011530309915542603, 0.05255046486854553, -0.025421926751732826, -0.03536924719810486, -0.04082368314266205, -0.00626232847571373, 0.011898032389581203, -0.01312252413481474, 0.03714046627283096, -0.008761057630181313, -0.0511799231171608, 0.08880816400051117, 0.0022481929045170546, 0.0018494091928005219, -0.013272447511553764, 0.020127173513174057, -0.013313342817127705, 0.02840612828731537, 0.02886137366294861, 0.03596394136548042, -0.0072622401639819145, -0.025914113968610764, 0.01534269843250513, -0.014308315701782703, -0.059774015098810196, 0.08580353111028671, -0.032818496227264404, 0.015064070001244545, 0.02096719853579998, -0.04973285272717476, 0.01738782972097397, -0.03936066851019859, -0.002709750784561038, 0.07236922532320023, -0.005573224276304245, -0.0006715931813232601, 0.0024999501183629036, 0.029244234785437584, 0.015117505565285683, 0.012556334026157856, -0.014695089310407639, 0.028814295306801796, -0.02012093923985958, 0.052121348679065704, 0.05252043902873993, -0.05853356420993805, -0.03589584678411484, 0.008320936933159828, 0.02302231825888157, 0.012121365405619144, 0.02259564772248268, 0.04686162248253822, 0.010961372405290604, 0.04920322448015213, -0.012439033016562462, -0.03770822659134865, -4.952545411768444e-33, -0.029081588611006737, -0.05354927480220795, 0.04364512488245964, 0.03340090438723564, -0.01456908043473959, -0.040101587772369385, -0.027555638924241066, 0.007519937120378017, 0.010840003378689289, 0.01165086030960083, 0.039745889604091644, 0.03881528973579407, -0.016552362591028214, -0.08833420276641846, 0.019688930362462997, 0.035604771226644516, 0.043408170342445374, 0.04040917381644249, -0.03192229941487312, 0.01108616590499878, -0.03371769189834595, 0.020580017939209938, 0.0744585394859314, -0.01454218104481697, -0.0326804518699646, 0.0437910296022892, 0.05280478671193123, 0.015184889547526836, -0.030484719201922417, 0.012244749814271927, 0.009115406312048435, -0.04818826913833618, 0.007819796912372112, -0.04273272305727005, 0.0029791893903166056, -0.01694978028535843, -0.017334550619125366, -0.03522223234176636, 0.009070788510143757, 0.003484263550490141, -0.0205812007188797, 0.027912762016057968, 0.006579616107046604, -0.037645600736141205, 0.05927950516343117, 0.03887951746582985, -0.0278952494263649, 0.019161103293299675, 0.007162041030824184, -0.00914998073130846, -0.018934525549411774, 0.06981982290744781, -0.05060700327157974, 0.0004917252226732671, 6.228954589460045e-05, 0.021236546337604523, 0.03939732536673546, -0.06172327324748039, 0.03308232128620148, -0.028476236388087273, 0.050057534128427505, -0.012453759089112282, 0.0004876581078860909, -0.08612710237503052, -0.03955948352813721, 0.01805960200726986, -0.03221393749117851, -0.01332779135555029, 0.005851834546774626, -0.004105994012206793, 0.04725004732608795, 0.014297187328338623, 0.038848668336868286, -0.04406840354204178, -0.10603844374418259, 0.031237957999110222, 0.015389115549623966, 0.012139036320149899, 0.030420998111367226, 0.01703052967786789, -0.004531919956207275, -0.02412249706685543, -0.06417205929756165, -0.0030853261705487967, -0.009811442345380783, 0.008449481800198555, -0.021577676758170128, -0.06912010908126831, -0.013310478068888187, 0.01450381614267826, -0.04007912427186966, -0.017675496637821198, 0.007872501388192177, 0.01917923614382744, 0.06183779239654541, 0.016588089987635612, -0.03576504811644554, 0.02055164985358715, -0.0071826535277068615, -0.015213871374726295, 0.006492886692285538, 0.040071696043014526, -0.006342766806483269, -0.023926978930830956, 0.03614632412791252, -0.019795222207903862, -0.03215572610497475, 0.009970284067094326, -0.017315493896603584, 0.014010422863066196, 0.028576325625181198, -0.01370422262698412, -0.046529319137334824, -0.05592010170221329, -0.0344318263232708, 0.011075272224843502, -0.006397983059287071, -0.0035974616184830666, 0.01560926903039217, -0.05856725201010704, -0.06981846690177917, 0.03608379140496254, 0.06451541185379028, -0.025229863822460175, -0.016163507476449013, 0.0039586760103702545, -0.019280729815363884, 0.02312508039176464, 0.05594130977988243, 0.08204228430986404, -0.013617499731481075, 0.07394332438707352, 2.8700989673779986e-07, 0.0325198732316494, 0.07559005916118622, 0.015289985574781895, 0.0659419447183609, -0.014558066613972187, -0.02906521037220955, -0.057990603148937225, -0.0014606888871639967, 0.04793766140937805, 0.018312470987439156, -0.018999801948666573, 0.01003341842442751, 0.004718038719147444, 0.07051185518503189, 0.03938421979546547, -0.008970580995082855, -0.034241318702697754, -0.01367519423365593, -0.022890886291861534, -0.02266211248934269, 0.02959342487156391, -0.0016238639364019036, -0.03102951869368553, 0.03074917197227478, -0.00726232910528779, -0.041640687733888626, -0.048798926174640656, 0.014208624139428139, -0.0014875290216878057, 0.03403962776064873, -0.007792237214744091, 0.021660126745700836, 0.006397726479917765, -0.011548854410648346, -0.005782675463706255, -0.025259830057621002, -0.020006438717246056, 0.00669298879802227, 0.039375633001327515, 0.05065289884805679, 0.01794390194118023, -0.0002826173440553248, 0.017723744735121727, 0.0023083859123289585, 0.03349052369594574, 0.013886501081287861, 0.03324639052152634, -0.05096949636936188, -0.00807350967079401, -0.02577822282910347, -0.009840714745223522, -0.0019343254389241338, 0.03849576413631439, -0.007510167546570301, -0.04172345995903015, 0.021132996305823326, -0.03824082016944885, 0.04687570407986641, 0.010804588906466961, 0.03588163107633591, -0.007967703975737095, -0.043421484529972076, 0.0033797353971749544, -0.07652390003204346, -0.04402865469455719, 0.01268764678388834, -0.02857639640569687, 2.9049431695344627e-34, 0.011777158826589584, 0.011421761475503445, 0.0529041588306427, 0.02093431167304516, -0.004664918407797813, 0.003530613612383604, 0.0021717797499150038, -0.007230609655380249, 0.03929753601551056, -0.006812985520809889, -0.023763339966535568], "0067c7fe-dbac-4676-b633-bbd243898fd9": [-0.007741125300526619, -0.043644700199365616, -0.03185578063130379, -0.061045777052640915, 0.022973325103521347, 0.030194031074643135, 0.0003387998149264604, -0.015594694763422012, -0.05769031122326851, -0.011919603683054447, -0.028341500088572502, 0.034531861543655396, 0.019230861216783524, 0.06744345277547836, 0.0549214705824852, 0.008615228347480297, 0.052516356110572815, 0.008005908690392971, 0.011106950230896473, 0.05160219222307205, 0.003605104982852936, 0.01438207272440195, -0.02761324867606163, 0.03522508591413498, 0.017607277259230614, -0.030016986653208733, 0.03470388799905777, -0.011649352498352528, -0.002572588622570038, -0.0030712431762367487, 0.03242088109254837, 0.03581659868359566, 0.04400280863046646, 0.03670540079474449, 1.7630729871598305e-06, 0.009099774062633514, -0.048589833080768585, -0.017833858728408813, -0.02150259166955948, -0.022604456171393394, -0.02745303325355053, -0.020372973755002022, 0.047695666551589966, 0.01163423154503107, -0.013983606360852718, -0.09304963052272797, 0.03224777430295944, -0.03867426887154579, 0.06451275944709778, 0.05517423897981644, 0.027474861592054367, 0.050203025341033936, -0.015125252306461334, 0.002506914082914591, 0.021509923040866852, 0.025027595460414886, 0.0019950605928897858, 0.06467956304550171, 0.03721446171402931, 0.0009918486466631293, 0.06341558694839478, 0.013241183012723923, 0.02507259137928486, -0.00957506988197565, 0.10593532025814056, 0.043535266071558, -0.023858733475208282, -0.05072754994034767, 0.028964772820472717, -0.014188229106366634, 0.0876547247171402, -0.03514750674366951, 0.0008582872105762362, 0.002148842206224799, -0.03989202156662941, -0.030547354370355606, -0.06629042327404022, -0.013713610358536243, 0.029396478086709976, -0.01441557239741087, -0.026507273316383362, -0.08071468770503998, -0.054056886583566666, 0.025691255927085876, 0.049008239060640335, -0.02948359027504921, -0.004733507055789232, 0.0008564293384552002, 0.003493885975331068, 0.004967800807207823, -0.016186552122235298, -0.03198833018541336, -0.008611449040472507, 0.0465899333357811, 0.008899838663637638, -0.04618025943636894, -0.002016193000599742, -0.08767414093017578, 0.03621658310294151, 0.020564792677760124, -0.008790847845375538, 0.026809174567461014, -0.015638122335076332, -0.011488356627523899, -0.04937049746513367, 0.08878690004348755, 0.020301679149270058, 0.052856966853141785, 0.026287809014320374, -0.006953302770853043, -0.015021760016679764, -0.022096913307905197, -0.06851015985012054, -0.028750132769346237, 0.01162748597562313, 0.012753425166010857, 0.034317608922719955, 0.010674786753952503, 0.03719242289662361, 0.05442935228347778, -0.011461352929472923, -0.04215175285935402, 0.015858469530940056, 0.013839446008205414, 0.007410475984215736, -0.07578131556510925, 0.012042964808642864, -0.034738555550575256, -0.03768247738480568, -0.021284550428390503, -0.04634535685181618, -0.00519063463434577, -0.024381481111049652, -0.047969162464141846, 0.012582442723214626, 0.030862143263220787, 0.030135342851281166, -0.02170337177813053, 0.009680585004389286, 0.018104590475559235, 0.024170836433768272, 0.003019834402948618, -0.06416226178407669, -0.0220407135784626, -0.0363268107175827, 0.03378572687506676, -0.025321273133158684, -0.08312828093767166, -0.029834222048521042, -0.03013765811920166, 0.029499558731913567, -0.07125646620988846, -0.07977723330259323, 0.020975913852453232, 0.03223288059234619, -0.031114475801587105, -0.06461244076490402, -0.03491892293095589, -0.010071656666696072, -0.013038896955549717, -0.004366712179034948, -0.06759603321552277, 0.03587878867983818, -0.01661870814859867, 0.014645027928054333, -0.025054480880498886, -0.03453035652637482, 0.018540946766734123, 0.047247689217329025, -0.024553772062063217, 0.01293103490024805, -0.019300030544400215, -0.02122071571648121, 0.01985667087137699, -0.02216336317360401, -0.028998088091611862, 0.027642440050840378, 0.010738895274698734, 0.021164676174521446, -0.005730897653847933, 0.05406160280108452, -0.013094201683998108, -0.05341537296772003, 0.06488018482923508, 0.08337145298719406, -0.018475553020834923, -0.04149675369262695, -0.00322060682810843, 0.017412500455975533, 0.0018812445923686028, -0.044312503188848495, 0.021920815110206604, -0.011896253563463688, -0.04978908970952034, -0.005707112606614828, -0.05148513987660408, 0.030491093173623085, 0.01388766709715128, -0.013937380164861679, -0.013409064151346684, -0.03191496804356575, -0.014445006847381592, 0.010096599347889423, 0.09042838960886002, 0.04007890820503235, -0.05735388770699501, -0.06942015886306763, -0.06680133193731308, -0.06812554597854614, -0.015658657997846603, 0.037816666066646576, 0.0024969675578176975, 0.01610550284385681, -0.05878443643450737, -0.019998988136649132, -0.08656781911849976, -0.011050116270780563, -0.011713266372680664, 0.019951144233345985, -0.009867265820503235, 0.013276956044137478, -0.02327006310224533, -0.04609448462724686, 0.05486644431948662, 0.07480157911777496, -0.008864288218319416, -0.010473285801708698, -0.05698299780488014, -0.017192795872688293, -0.013814130797982216, -0.08859992772340775, 0.007698151748627424, -0.03375779837369919, 0.024451039731502533, -0.0006858099950477481, -0.024597782641649246, 0.02190697379410267, 0.05732003599405289, 0.018332894891500473, -0.007999321445822716, -0.09355601668357849, 0.03722287714481354, 0.004479060415178537, 0.02316867932677269, -0.030460437759757042, 0.005719448439776897, -0.04457565024495125, 0.0009213453740812838, 0.03154023736715317, 0.00973509531468153, 0.02403082884848118, 0.04799843952059746, -0.007359424605965614, 0.015059922821819782, 0.03331712260842323, 0.024508094415068626, 0.013778112828731537, 0.01597077026963234, -0.008432643488049507, 0.0025571035221219063, -0.029372386634349823, -0.012501337565481663, -0.0454879030585289, -0.017065102234482765, 0.01817433349788189, 0.07837213575839996, 0.015043577179312706, -0.0582529716193676, 0.04294244199991226, -0.044279247522354126, -0.03966016694903374, -0.03592125326395035, -0.008230909705162048, -0.031684745103120804, -0.0018148755189031363, 0.023611843585968018, 0.007626163773238659, -0.06652706116437912, 0.00016002674237824976, 0.0101441266015172, -0.03140350803732872, 0.04212438315153122, -0.05304696038365364, -0.01612631417810917, -0.03317461162805557, 0.033780843019485474, -0.0327443927526474, -0.05723272264003754, -0.008834556676447392, 0.01859861984848976, 0.007729840464890003, 0.03303120285272598, 0.03876696154475212, -0.0011179386638104916, -0.019424164667725563, -0.020819971337914467, 0.076203353703022, 0.01736561395227909, -0.012694346718490124, 0.016244973987340927, 0.07425495237112045, 0.054039496928453445, -0.025511911138892174, -0.0002995949180331081, 0.06629951298236847, 0.04754018038511276, 0.021989336237311363, 0.007696385495364666, 0.00760340690612793, -0.013343121856451035, -0.006962313316762447, -0.016889210790395737, 0.002246825722977519, 0.058897100389003754, 0.010231319814920425, 0.022429445758461952, 0.048848360776901245, -0.0058906241320073605, -0.01103284489363432, 0.047799672931432724, 0.022772924974560738, -0.10685465484857559, 0.005483558867126703, -0.0581132248044014, -0.036988694220781326, -0.03381744772195816, -0.08570463210344315, -0.013890582136809826, 0.032931942492723465, 0.011028050445020199, 0.0013137739151716232, -0.017604831606149673, -0.026933155953884125, 0.03566525876522064, -0.015111091546714306, 0.030302181839942932, 0.046359430998563766, 0.0028814394026994705, 0.01521056704223156, 0.01120022963732481, -0.04325111210346222, 0.0692061260342598, 0.022578928619623184, -0.021416233852505684, -0.046625640243291855, 0.0587034672498703, 0.054119598120450974, -0.011651057749986649, 0.07288088649511337, 0.017106927931308746, 0.04732101783156395, 0.05168985575437546, 0.01843809336423874, 0.02991458959877491, 0.023192863911390305, -0.027837589383125305, 0.007040563505142927, -0.05080607533454895, 0.0011459406232461333, -0.009744595736265182, -0.035867176949977875, -0.0014442483661696315, -0.04390121251344681, 0.018822243437170982, -0.050557903945446014, -0.05594995617866516, 0.027364371344447136, -0.05053331330418587, -0.020123707130551338, -0.0035143294371664524, -0.005602691788226366, 0.011773403733968735, 0.02879565767943859, 0.051533594727516174, 0.022536398842930794, -0.007223314139991999, -0.003436116734519601, -0.012154417112469673, 0.03639344125986099, 0.03607069328427315, 0.005236865486949682, -0.08437051624059677, 0.03422682359814644, -0.006569856312125921, -0.013225022703409195, 0.013215787708759308, -0.005268922075629234, -0.021903788670897484, 0.12254151701927185, -0.013508801348507404, -0.017659829929471016, -0.04515267536044121, 0.019980665296316147, 0.011706089600920677, -0.019258640706539154, -0.0016250346088781953, -0.0763290748000145, 0.008955162018537521, 0.026211606338620186, 0.07117421180009842, -0.020243065431714058, -0.012789065018296242, 0.023776846006512642, -0.044911980628967285, -0.029016800224781036, 0.05574451759457588, 0.0684453621506691, -0.0319211408495903, -0.004523137118667364, -0.013536978513002396, 0.012748895213007927, 0.03287746384739876, 0.011618725024163723, -0.05333587899804115, 0.02884315885603428, 0.0004786684876307845, 0.014609560370445251, 0.03411206603050232, 0.027183350175619125, 0.02848513238132, -0.022440960630774498, 0.023662779480218887, 0.04428486153483391, -0.039810553193092346, -0.037716034799814224, -0.01894640363752842, 0.01066484022885561, -0.0022971821017563343, -0.0002675933938007802, 0.05651464685797691, 0.07167526334524155, -0.04677492007613182, -0.027687201276421547, 0.022111551836133003, -0.021175287663936615, 0.023760635405778885, -0.06556166708469391, -0.001984646311029792, -0.029738696292042732, -0.025365713983774185, -0.008591091260313988, 0.07608417421579361, -0.014463101513683796, -0.027864690870046616, -0.0366661436855793, -0.04136381298303604, 0.018326301127672195, -0.016536613926291466, -0.006355005782097578, 0.04124867916107178, 0.01884121261537075, 0.06977131962776184, -0.07367514818906784, 0.0304234828799963, -0.01310537476092577, -0.014093984849750996, 0.0027646315284073353, 0.05034222453832626, -0.010704771615564823, -0.03037562035024166, -0.018313944339752197, -0.0031175450421869755, 0.018359040841460228, -0.011362058110535145, -0.047664325684309006, -0.02396697923541069, -0.06987491250038147, -0.03469943255186081, -0.0003576285089366138, 0.016436172649264336, -0.012878128327429295, 0.004431590437889099, -0.02998596802353859, -0.02012481726706028, -0.03664623200893402, -0.052549347281455994, -0.008317326195538044, 0.007478796411305666, 0.007367219775915146, 0.043333716690540314, -0.0011884947307407856, 0.04135051369667053, 0.014121421612799168, 0.0720859244465828, -0.038608670234680176, 0.01216018944978714, 0.06918231397867203, 0.009514255449175835, 0.014926739037036896, 0.015341206453740597, 0.01575113646686077, -0.039618268609046936, -0.023852156475186348, 0.005504317115992308, -0.03864400088787079, 0.050579413771629333, 0.028833609074354172, 0.09611989557743073, -0.03113754466176033, -0.008836554363369942, 0.04643860086798668, -0.013269559480249882, -0.03811293840408325, 0.009149400517344475, -0.023709621280431747, -0.00672143092378974, -0.049386583268642426, 0.03758588060736656, 0.008813598193228245, -0.05133435130119324, 0.03639881685376167, 0.020003458485007286, -0.01151770818978548, -0.0616973415017128, 0.021709831431508064, 0.0006435867981053889, 0.015621940605342388, 0.013529417105019093, 0.003919103182852268, -0.008133495226502419, -0.018876589834690094, 3.2504972296010237e-06, -0.006407884880900383, -0.018746431916952133, 0.04523620381951332, -0.040795937180519104, 0.018062183633446693, 0.004216288682073355, -0.08939870446920395, 0.04630561172962189, -0.034020427614450455, 0.02162771299481392, 0.050261400640010834, -0.03275004401803017, 0.002515710424631834, -0.008268368430435658, -6.646986003033817e-05, 0.038225509226322174, 0.007775430101901293, -0.023281682282686234, 0.01050389651209116, 0.0025706018786877394, 0.05167664960026741, 0.029538284987211227, -0.05624963343143463, -0.030285891145467758, -0.00046610631397925317, 0.02262229286134243, 0.0019007837399840355, -0.020896850153803825, 0.012260740622878075, 0.016785336658358574, 0.031510815024375916, 0.0025274131912738085, -0.07254001498222351, -4.378028425275805e-33, 0.004692415706813335, -0.006446438375860453, 0.032542113214731216, 0.0742044746875763, -0.016161620616912842, -0.033367425203323364, -0.046050604432821274, -0.02578362077474594, -0.007139815948903561, -0.006140427198261023, 0.0558675192296505, 0.024085553362965584, -0.004443159326910973, -0.08187799155712128, 0.02004065178334713, 0.05474607273936272, 0.04162612184882164, 0.02104901522397995, -0.013173144310712814, 0.004472512751817703, -0.059823375195264816, -0.015535742044448853, 0.07095517218112946, -0.01843615435063839, -0.03411965072154999, 0.036222778260707855, 0.08002936094999313, 0.04177720472216606, 0.023446740582585335, 0.025124546140432358, 0.02806807868182659, -0.05955827608704567, -0.011379614472389221, -0.040664974600076675, -0.010292970575392246, -0.04022880643606186, -0.018270419910550117, -0.023630453273653984, 0.010310973972082138, 0.02080652490258217, -0.02704857662320137, -0.0632595494389534, 0.025130804628133774, -0.010912970639765263, 0.004013656638562679, 0.015796003863215446, -0.008174623362720013, 0.03834843635559082, 0.0022081597708165646, -0.022473743185400963, -0.002740476280450821, 0.06672776490449905, -0.03238876536488533, 0.03346516191959381, -0.001106931478716433, -0.008189653977751732, 0.0325443297624588, -0.012078844010829926, 0.0016172626055777073, -0.02236841432750225, 0.017229735851287842, -0.006107073277235031, 0.01752440817654133, -0.08436048775911331, -0.026553496718406677, 0.003020180854946375, -0.02299659512937069, -0.013944443315267563, -0.02587801218032837, 0.03644203767180443, 0.015612613409757614, 0.06130996346473694, 0.05078597739338875, -0.05095452070236206, -0.06234531104564667, 0.017751630395650864, 0.053368519991636276, -0.0016983371460810304, -0.05939309298992157, 0.06280550360679626, -0.007725562434643507, 0.0063214353285729885, -0.027766339480876923, 0.005556924268603325, -0.0008674063719809055, -0.05833769589662552, -0.02953360788524151, -0.04404067248106003, -0.008324194699525833, -0.010762738063931465, -0.0267044510692358, -0.02988051436841488, 0.011654169298708439, 0.05152718722820282, 0.08825650811195374, 0.03445585072040558, -0.026200223714113235, 0.009731431491672993, 0.04629609361290932, 0.013316257856786251, 0.0026450278237462044, 0.0516076534986496, 0.00036701851058751345, -0.038918498903512955, 0.03661515191197395, 0.010549427010118961, 0.004881605040282011, 0.003517387667670846, -0.013467105105519295, 0.015539424493908882, 0.037707146257162094, 0.007279729004949331, -0.04948798939585686, -0.050614628940820694, -0.0406263992190361, -0.032698459923267365, -0.013142392039299011, 0.00819681491702795, -0.003996394574642181, -0.027252420783042908, -0.023709503933787346, -0.01090125273913145, 0.07174977660179138, -0.021328331902623177, 0.009386129677295685, 0.02097070775926113, -0.005536832381039858, 0.04975108057260513, 0.05813520774245262, 0.08160839974880219, -0.0059153009206056595, 0.05891554802656174, 2.509629837277316e-07, 0.021380538120865822, 0.0820862203836441, 0.02750137634575367, 0.01991070620715618, 0.011863863095641136, -0.02493465505540371, -0.007809184957295656, 0.006469872314482927, -0.007302781101316214, 0.017931394279003143, -0.038020871579647064, 0.024441668763756752, -0.0028409252408891916, 0.058547064661979675, 0.07348547875881195, -0.023288795724511147, -0.022306310012936592, -0.0039175427518785, -0.022745532914996147, -0.015035475604236126, 0.05291242524981499, 0.007796440739184618, -0.03620905056595802, 0.026759838685393333, 0.006020395550876856, -0.015183629468083382, -0.04335777461528778, 0.005152738653123379, 0.08516041934490204, 0.052135493606328964, -0.028927676379680634, 0.022891011089086533, -0.0011758871842175722, -0.07014035433530807, -0.016000784933567047, -0.03415905311703682, -0.0026061225216835737, 0.03649325296282768, -0.014129704795777798, 0.07016556710004807, 0.029739443212747574, -0.011052845977246761, -0.01128578744828701, -0.05356908589601517, 0.023849250748753548, -0.026002908125519753, 0.03044537827372551, -0.05336299538612366, -0.05010785534977913, -0.0050922567024827, 0.004114964045584202, -0.007877571508288383, 0.029566731303930283, -0.03195614367723465, -0.012434779666364193, -0.003992991056293249, -0.04040275514125824, 0.027673281729221344, 0.012405691668391228, 0.014850439503788948, 0.020220762118697166, -0.008393580093979836, -0.04153861850500107, -0.01983371004462242, 0.008021237328648567, 0.06410465389490128, -0.03623563051223755, 2.1619375267861767e-34, 0.005631742067635059, -0.028843000531196594, 0.0393114872276783, 0.0434698686003685, 0.027228794991970062, -0.02038966305553913, 0.005467009264975786, -0.020029466599225998, 0.007945427671074867, -0.04293737933039665, -0.042332690209150314], "93687e9e-a133-4f4a-97eb-6a7c6561d8b8": [0.06638439744710922, -0.03567223995923996, -0.0145755959674716, -0.046724237501621246, 0.04885039106011391, 0.05846882984042168, 0.0265224426984787, 0.01367333997040987, -0.017437873408198357, -0.05226844549179077, -0.015920300036668777, 0.02323298528790474, 0.01498602144420147, 0.04934234917163849, 0.013030261732637882, -0.0036731611471623182, 0.016811352223157883, -0.019322682172060013, 0.05173593759536743, 0.025960424914956093, -0.008928922936320305, 0.030553793534636497, -0.008325026370584965, -0.002146673621609807, 0.0030958987772464752, 0.0155353844165802, 0.038810860365629196, 0.010764908976852894, 0.009262657724320889, -0.07851620763540268, 0.046525467187166214, 0.014762883074581623, 0.05076028034090996, 0.0676468014717102, 2.1925272903899895e-06, -0.016954075545072556, -0.01853899471461773, 0.03158997371792793, 0.015144486911594868, 0.015571326948702335, 0.052287325263023376, -0.0046873376704752445, 0.03705604374408722, 0.040985699743032455, 0.024443214759230614, -0.04339532554149628, -0.01931934803724289, 0.03899146616458893, 0.05240075662732124, 0.06775540113449097, 0.04413653165102005, 0.012405281886458397, -0.006403291132301092, -0.006744858343154192, 0.019386976957321167, -0.0372980460524559, 0.02202582359313965, 0.13116231560707092, 0.01587904430925846, -0.014031192287802696, 0.07117652893066406, 0.004213203210383654, -0.00827100407332182, 0.01640905812382698, 0.05796696990728378, -0.0031524745281785727, 0.033643968403339386, -0.12868228554725647, -0.008738853968679905, 0.014112318865954876, 0.057681191712617874, -0.08416006714105606, 0.007573057897388935, 0.009168551303446293, -0.03190544992685318, -0.010388897731900215, -0.03565938025712967, 0.053174249827861786, 0.044079605489969254, -0.012770221568644047, -0.014845132827758789, -0.06180669739842415, -0.019288748502731323, -0.0021784130949527025, 0.0029481607489287853, 0.0443301685154438, 0.015600762329995632, -0.03726177662611008, 0.02734130620956421, 0.0025057068560272455, -0.037038933485746384, -0.044975098222494125, -0.029471883550286293, 0.010690194554626942, 0.002365995431318879, -0.03978310152888298, 0.03180379793047905, -0.03699367120862007, 0.04662463068962097, 0.037981532514095306, -0.05289710313081741, -0.01165678072720766, -0.011703252792358398, 0.014156736433506012, 0.00846810545772314, 0.07374785095453262, 0.005246269050985575, 0.07279795408248901, 0.01055301632732153, 0.027533838525414467, -0.0016232182970270514, 0.01763897016644478, -0.016645073890686035, -0.048476897180080414, 0.02920491434633732, 0.005424502305686474, 0.01804378628730774, 0.017851676791906357, 0.006193657871335745, 0.04842821881175041, 0.02619343437254429, -0.024960437789559364, -0.05387662723660469, -0.014582406729459763, -0.049912527203559875, -0.0510575994849205, 0.015980888158082962, 0.026479599997401237, 0.015446825884282589, 0.03677444905042648, -0.04485374689102173, 0.025035778060555458, -0.007805549073964357, -0.015838798135519028, -0.02276463806629181, 0.011193922720849514, 0.01922949030995369, -0.013338225893676281, 0.04958531633019447, -0.023284485563635826, 0.04652787744998932, -0.03536843881011009, -0.04876895248889923, -0.017628736793994904, -0.06322292238473892, 0.0331246480345726, 0.04355810955166817, -0.06337571144104004, -0.022021805867552757, -0.037009283900260925, -0.01532779075205326, -0.04028236120939255, 0.00757201574742794, 0.029343131929636, -0.027132056653499603, -0.016377421095967293, -0.05327858030796051, -0.0666196271777153, -0.02453763224184513, -0.01764739118516445, -0.0058286660350859165, -0.025869060307741165, 0.06757767498493195, -0.07088165730237961, 0.003531179390847683, 0.030263051390647888, 0.03977852687239647, 0.03402181714773178, 0.0500425286591053, -0.0030695535242557526, 0.003730097785592079, 0.013150366954505444, -0.0021488042548298836, 0.030985478311777115, -0.04316562041640282, 0.0265598576515913, 0.061794403940439224, -0.03967639431357384, 0.007986879907548428, 0.04886716231703758, 0.0237127635627985, -0.034282926470041275, -0.0074956840835511684, 0.0056885238736867905, -0.0013135853223502636, 0.013241946697235107, -0.06356408447027206, 0.08784457296133041, 0.01684969663619995, -0.01622723415493965, -0.06787281483411789, -0.0046150051057338715, -0.03768986091017723, -0.02089625969529152, 0.041739825159311295, 0.0008477261872030795, 0.006565986666828394, -0.04183269664645195, 0.03264765813946724, -0.03630925714969635, -0.03979763016104698, -0.008896004408597946, 0.0443100780248642, 0.016262216493487358, 0.049273230135440826, -0.0517442412674427, -0.0033878826070576906, -0.04128842055797577, -0.02524263970553875, 0.04107634723186493, 0.03340885415673256, -0.007384563330560923, -0.039469897747039795, -0.05720807984471321, -0.07229766249656677, -0.006215694360435009, -0.01616259105503559, -0.0025283978320658207, 0.017660604789853096, -0.005639414303004742, 0.0183072779327631, 0.02633969858288765, 0.006071097683161497, 0.08522482961416245, -0.04623712599277496, -0.026673095300793648, -0.040719058364629745, 0.0020356308668851852, 0.034967973828315735, 0.021566271781921387, -0.046729691326618195, 0.02336786687374115, 0.01057157851755619, 0.058176442980766296, 0.013786384835839272, -0.034535471349954605, 0.03479037061333656, 0.05130556970834732, 0.05996245890855789, -0.02408425882458687, -0.03687065839767456, 0.043381497263908386, 0.014019914902746677, 0.0048346021212637424, -0.04984806850552559, 0.04870149493217468, 0.019099010154604912, 0.03936748951673508, 0.024789998307824135, 0.03466792777180672, 0.07976940274238586, 0.012048996053636074, -0.022274456918239594, 0.019228706136345863, 0.00041972860344685614, 0.06004577502608299, -0.07435370236635208, 0.07281993329524994, 0.004745022393763065, -0.016258569434285164, 0.012394033372402191, -0.01187780313193798, 0.0048248423263430595, 0.026398632675409317, 0.051268886774778366, 0.013273029588162899, -0.0037101497873663902, 0.041879892349243164, 0.03435518220067024, -0.013936571776866913, -0.05843019858002663, 0.01720350980758667, -0.0466272197663784, -0.016162602230906487, -0.004829987417906523, 0.043206050992012024, -0.00666251964867115, -0.05545065924525261, -0.020051877945661545, -0.01654508151113987, -0.01654478721320629, -0.002355128526687622, -0.030628032982349396, -0.00682208314538002, -0.0017518044915050268, 0.028391363099217415, -0.004457051400095224, -0.020624661818146706, -0.060326043516397476, -0.033935390412807465, -0.030228611081838608, 0.011089525185525417, 0.023271027952432632, -0.036493271589279175, -0.01276853121817112, 0.02278321608901024, 0.04250818490982056, -0.060785602778196335, -0.06301461160182953, -0.017600415274500847, 0.07863540947437286, 0.021752331405878067, -0.036070581525564194, -0.013599260710179806, 0.0016763826133683324, 0.011360221542418003, 0.10856059938669205, -0.0015500318259000778, -0.03578536957502365, -0.022424612194299698, -0.023750413209199905, -0.009737340733408928, -0.02696787565946579, -0.03572256118059158, -0.027459215372800827, -0.06032354384660721, 0.024330681189894676, -0.02327890135347843, 0.022599821910262108, 0.04650557041168213, 0.0361531637609005, -0.018399879336357117, -0.01728406548500061, -0.023132646456360817, -0.005191348493099213, -0.10758359730243683, -0.04049587994813919, -0.04456176608800888, -0.0036965201143175364, 0.06896931678056717, -0.026073459535837173, 0.0350949764251709, -0.00254778447560966, -0.025652023032307625, -0.011958720162510872, 0.017489559948444366, 0.042574137449264526, -0.029453426599502563, 0.05389018729329109, 0.014640179462730885, -0.01947791688144207, 0.05156296119093895, -0.02227342128753662, -0.009267221204936504, -0.029314100742340088, -0.005104274954646826, -0.06372930109500885, -0.058429915457963943, 0.02235506661236286, 0.03668895363807678, 0.11062981933355331, -0.0119662806391716, 0.05526050925254822, 0.003498611506074667, 0.016696076840162277, -0.026468683034181595, 0.013896413147449493, -0.0362747423350811, -0.01438184641301632, -0.0026887627318501472, 0.0344591960310936, -0.016840899363160133, 0.0024097366258502007, 0.012393628247082233, -0.01602090522646904, -0.012120457366108894, -6.671815935987979e-05, -0.00602824566885829, 0.0034876023419201374, 0.016679393127560616, -0.062375809997320175, 0.028060663491487503, 0.02107876166701317, 0.05031343922019005, 0.03264954313635826, -0.020760653540492058, -0.013843170367181301, -0.02306332439184189, 0.08391406387090683, 0.0016736263642087579, -0.004403337370604277, -0.0467672236263752, 0.04789326339960098, -0.018746118992567062, 0.012127429246902466, -0.0003302943950984627, 0.03557147458195686, 0.01767808571457863, 0.09050460904836655, -0.007192286662757397, 0.0016488631954416633, -0.024027593433856964, -0.06318320333957672, -0.035742755979299545, -0.032862138003110886, -0.02683604694902897, 0.02026096172630787, 0.024571029469370842, -0.017992036417126656, 0.03833944350481033, -0.024548180401325226, -0.046823594719171524, 0.0017424063989892602, -0.0033462343271821737, 0.01388443075120449, 0.006077616009861231, 0.031148340553045273, 0.006650391034781933, -0.017866816371679306, -0.0051557887345552444, 0.11450152844190598, 0.0346396304666996, -0.03290671855211258, -0.039388176053762436, 0.08073626458644867, 0.0364508293569088, -0.016317473724484444, 0.012103257700800896, -0.05223190784454346, -0.0821298137307167, -0.04005739837884903, -0.04778291657567024, 0.045244913548231125, 0.018103336915373802, -0.017871350049972534, -0.01161813735961914, 0.018249396234750748, -0.02531818300485611, 0.032214269042015076, 0.019177936017513275, 0.07775400578975677, -0.014252973720431328, 0.0017965186852961779, -0.002044523134827614, 0.004662343766540289, 0.002509309910237789, 0.022222306579351425, -0.06097786873579025, -0.09704730659723282, -0.07069169729948044, -0.007750345394015312, 0.042973294854164124, 0.010745418258011341, -0.019794493913650513, -0.02111709862947464, 5.439493543235585e-05, 0.031945694237947464, -0.014765720814466476, -0.018421972170472145, 0.00433001946657896, 0.006249822210520506, -0.037926893681287766, -0.10704532265663147, 0.028834646567702293, 0.016133122146129608, -0.0421370305120945, -0.0005594477988779545, 0.06114109978079796, -0.012613680213689804, 0.0571870356798172, -0.021743351593613625, 0.03314054384827614, -0.027344826608896255, -0.01577824354171753, 0.008709805086255074, -0.01285629253834486, -0.044346753507852554, -0.05187854915857315, 0.0072562191635370255, -0.03574669361114502, 0.004405375104397535, -0.004171296488493681, -0.034518130123615265, -0.004821984563022852, -0.010291232727468014, -0.10476722568273544, -0.01506428699940443, 0.01065088715404272, -0.04870143160223961, 0.0020751722622662783, 0.06395313143730164, 0.027446269989013672, 0.06589554250240326, -0.017296504229307175, -0.04856674000620842, 0.02280423417687416, 0.037741582840681076, 0.01161055639386177, -0.009337901137769222, 0.02377266250550747, 0.04656105488538742, -0.05060466378927231, 0.006652151700109243, 0.01746550388634205, 0.014353246428072453, 0.03421340510249138, -0.027913393452763557, 0.023777209222316742, 0.015801984816789627, 0.059796690940856934, 0.02394900843501091, -0.03325164318084717, -0.0473102331161499, 0.01873892918229103, -0.04850873723626137, 0.006943493150174618, 0.003117301966995001, 0.02850303240120411, -0.0211027879267931, -0.04937998205423355, -0.00023145379964262247, -0.011006993241608143, -0.04050865396857262, -0.041724659502506256, 0.029799357056617737, -0.0337505079805851, 0.01488714199513197, 0.01102688629180193, 0.07545991241931915, -0.013183463364839554, -0.018122892826795578, -0.025675367563962936, 0.0669938176870346, -0.014334534294903278, 0.05109255760908127, -0.009435329586267471, 0.0017047870205715299, -0.014802560210227966, -0.01641247607767582, 0.06653035432100296, 0.010229562409222126, -0.002345220884308219, 0.05568397417664528, -0.033845338970422745, -0.03635001927614212, 0.0005577772972173989, -0.02003689669072628, 0.002805363852530718, -0.015288244932889938, 0.012386007234454155, 0.01754632778465748, -0.027483899146318436, -0.029923779889941216, 0.06650150567293167, -0.043019890785217285, -0.032990749925374985, -0.020941901952028275, -0.0027762935496866703, -0.01214477326720953, -0.03072376176714897, 0.006505970843136311, 0.008150875568389893, -0.0014855231856927276, 0.013592326082289219, 0.016783198341727257, -5.085614678359389e-33, -0.02188391610980034, -0.03345611318945885, 0.031006628647446632, 0.05781896412372589, 0.0055037387646734715, -0.0369405597448349, -0.014761657454073429, -0.02545790746808052, -0.0383790098130703, -0.003299560397863388, 0.02812710590660572, -0.003975833300501108, 0.0068019782193005085, -0.07704047858715057, 0.012273474596440792, 0.03136086091399193, -0.047010790556669235, 0.01670093648135662, -0.013499059714376926, 0.02702353708446026, 0.005692190490663052, 0.012535428628325462, 0.0023218560963869095, -0.010491061955690384, -0.08589673787355423, -0.003719656728208065, 0.006064926739782095, -0.021784719079732895, -0.02854984998703003, 0.0521203950047493, -0.002569156000390649, -0.054422833025455475, 0.005819325800985098, 0.013151786290109158, -0.036347001791000366, -0.0003610770218074322, -0.029660236090421677, -0.04429430887103081, -0.05546143278479576, 0.013055489398539066, 0.02789517119526863, 0.010067099705338478, 0.03625764697790146, -0.02589913085103035, 0.061568934470415115, 0.031067663803696632, 0.013296682387590408, -0.00248517794534564, -0.05019887536764145, 0.03363209590315819, -0.044936403632164, 0.033626023679971695, 0.01849961280822754, 0.038181744515895844, 0.024373194202780724, -0.017814872786402702, 0.01844188943505287, -0.003001371631398797, 0.033164896070957184, -0.010073760524392128, 0.005380149930715561, 0.027663029730319977, 0.03809058293700218, -0.02676873281598091, -0.03191101923584938, -0.027018660679459572, -0.050799012184143066, 0.020570360124111176, 0.050574276596307755, 0.0030947555787861347, -0.023470766842365265, 0.011208074167370796, -0.021930238232016563, -0.047567930072546005, -0.07612773030996323, -0.008066865615546703, -0.05545952543616295, 0.04524386674165726, 0.08434722572565079, 0.07625066488981247, -0.013397750444710255, -0.009168700315058231, -0.049017250537872314, 0.017239442095160484, 0.0011452807812020183, 0.029557300731539726, -0.029037971049547195, -0.0137563431635499, -0.03298645839095116, 0.00012320162204559892, -0.01502459216862917, -0.00018751491734292358, -0.030180878937244415, 0.02037019655108452, 0.006314470432698727, 0.027467237785458565, -0.040932368487119675, 0.020327560603618622, 0.005061302799731493, -0.01450736727565527, -0.033771805465221405, 0.0073117418214678764, -0.003389313817024231, -0.026066290214657784, 0.028620662167668343, -0.022945586591959, -0.005616671871393919, 0.004018126521259546, -0.012644749134778976, -0.0016997624188661575, -0.019229957833886147, -0.024469668045639992, -0.006156818009912968, 0.0360245481133461, -0.04829245060682297, -0.009486740455031395, -0.017551036551594734, -0.017157433554530144, -0.015745924785733223, -0.05605406314134598, -0.01729583740234375, 0.09832951426506042, 0.04435978829860687, -0.07238632440567017, -0.020331716164946556, 0.00042606788338162005, -0.015474258922040462, 0.05421701818704605, 0.10363222658634186, 0.09024503827095032, -0.015050161629915237, -0.009428895078599453, 2.8177771582704736e-07, 0.03259367123246193, 0.0824246034026146, 0.03813111409544945, 0.011589353904128075, -0.03427773714065552, -0.000599837745539844, -0.0930711105465889, 0.03485757112503052, 0.014030464924871922, -0.02837018482387066, 0.02442448027431965, 0.005970729049295187, -0.00035188577021472156, 0.011870414949953556, 0.056364454329013824, -0.04142823815345764, -0.02516118250787258, -0.0014977669343352318, -0.028660306707024574, -0.016385367140173912, 0.02041897177696228, 0.01490157749503851, 0.0035577970556914806, 0.006794918328523636, -0.02195827290415764, -0.012992040254175663, -0.023221179842948914, -0.03785501420497894, 0.05506779998540878, 0.03430107235908508, 0.057598911225795746, 0.01612277515232563, -0.01043431181460619, -0.04038304090499878, -0.01600559614598751, -0.028286831453442574, -0.028005260974168777, 0.021344203501939774, 0.005921310279518366, -0.013254488818347454, 0.010433328337967396, 0.03194266930222511, -0.001611801446415484, -0.06939022988080978, -0.0046062893234193325, 0.028008120134472847, 0.02455248311161995, -0.051592867821455, -0.029749123379588127, 0.019918205216526985, 0.022086743265390396, 0.02991718240082264, 0.015751667320728302, 0.018410000950098038, -0.01925559528172016, 0.012862342409789562, -0.04884674400091171, -0.04467375576496124, 0.028849124908447266, -0.0071202488616108894, -0.04133155569434166, -0.012746511027216911, -0.023910313844680786, 0.00203041173517704, 0.023068636655807495, -0.015328193083405495, 0.011626201681792736, 3.2562729466450606e-34, 0.022513508796691895, -0.09943122416734695, 0.029062289744615555, -0.021805180236697197, 0.008651012554764748, 0.006236810702830553, -0.022114893421530724, -0.030461668968200684, -0.012970075011253357, -0.07658050954341888, -0.01954939402639866], "e71be8f0-fe30-480b-9e5c-86141c78d8a4": [-0.010038972832262516, -0.042315058410167694, -0.001908234553411603, -0.039174072444438934, 0.013354036025702953, 0.013758273795247078, 0.031470753252506256, 0.028357600793242455, -0.01274382509291172, -0.024259556084871292, -0.0009872129885479808, 0.025698618963360786, 0.0023851252626627684, 0.07781364768743515, 0.006956407334655523, -0.007720481604337692, 0.003906561993062496, -0.005271850619465113, 0.052850253880023956, 0.0400690883398056, -0.016226211562752724, 0.029670560732483864, -0.005133535247296095, -0.020540768280625343, 0.008594064973294735, 0.005614589899778366, 0.02681698091328144, -0.004164586775004864, 0.020253315567970276, -0.07747058570384979, 0.048396505415439606, 0.042123809456825256, -0.016352785751223564, 0.022713111713528633, 2.3747115847072564e-06, -0.009968149475753307, -0.02599846012890339, 0.017077896744012833, 0.03568526729941368, 0.04024689644575119, 0.0662456601858139, -0.014736944809556007, 0.051276739686727524, 0.05638932064175606, -0.012266316451132298, -0.05254719406366348, 0.001088679418899119, 0.023034341633319855, 0.07227133959531784, 0.027933839708566666, 0.027165740728378296, 0.055797331035137177, 0.004279567394405603, 0.027863720431923866, 0.00814434327185154, 0.011482685804367065, 0.027932418510317802, 0.03886733949184418, 0.016439680010080338, 0.00907666701823473, 0.08133690804243088, -0.017071520909667015, 0.00414749002084136, -0.0070250858552753925, 0.05119364708662033, -0.013716930523514748, -0.03754686191678047, -0.07338322699069977, -0.03122270479798317, 0.004956573247909546, 0.04776936396956444, -0.0921311303973198, -0.03444388881325722, 0.00131062394939363, -0.0307049248367548, -0.06223280355334282, -0.027426907792687416, 0.018717871978878975, -0.001311092171818018, -0.026379240676760674, 0.01580793596804142, -0.026712782680988312, -0.014029396697878838, -0.014369532465934753, -0.017520377412438393, 0.04852192476391792, 0.03292597830295563, -0.06494047492742538, 0.036006610840559006, 0.013427660800516605, 0.04104786366224289, -0.0812981054186821, -0.0064424630254507065, 0.0012841379502788186, -0.0030411193147301674, -0.07516498118638992, 0.02085752598941326, -0.01969042606651783, 0.0503389872610569, -0.0027248947881162167, -0.03926369547843933, 0.02691018395125866, 0.005079698748886585, 0.022835176438093185, -0.03339531645178795, 0.02843305841088295, 0.01119229570031166, 0.043898291885852814, 0.009686833247542381, 0.038179054856300354, 0.0408085472881794, 0.009464860893785954, -0.05299094319343567, -0.049408379942178726, 0.05160152167081833, 0.0372803770005703, 0.033103540539741516, 0.031822189688682556, -0.028056276962161064, 0.06712684780359268, 0.053281236439943314, -0.027078669518232346, 0.028106827288866043, 0.0174245648086071, 0.013218941166996956, -0.06922514736652374, -0.00014247909712139517, -0.008169863373041153, -0.026471035555005074, 0.0277452040463686, -0.029446985572576523, 0.05091512203216553, 0.009021156467497349, -0.04562130570411682, 0.009190015494823456, 0.05098279193043709, 0.018528811633586884, -0.009080975316464901, 0.057754915207624435, -0.01726527139544487, 0.03948025405406952, -0.02509917877614498, 0.002752525731921196, -0.026898955926299095, -0.10563525557518005, 0.004490422084927559, 0.022781863808631897, -0.03372162953019142, -0.03166034445166588, -0.0290362648665905, -0.002957370365038514, -0.008310221135616302, -0.014383481815457344, 0.02800765261054039, -0.08122488856315613, -0.0017418756615370512, -0.028394028544425964, -0.044560506939888, -0.01644337922334671, -0.047524116933345795, 0.030827922746539116, -0.08327820897102356, 0.0520210936665535, -0.04480099305510521, 0.0006403923616744578, 0.03387653827667236, 0.030124323442578316, 0.015182782895863056, 0.019767610356211662, -0.03751755133271217, -0.03236352652311325, 0.03218543902039528, 0.007179514970630407, -0.0310219619423151, -0.07755701243877411, -0.003885346231982112, 0.059003353118896484, -0.05351952463388443, 0.039825037121772766, 0.0219124648720026, 0.01762538217008114, 0.0006525962380692363, -0.00968259945511818, 0.020522259175777435, 0.01928117498755455, 0.008835884742438793, -0.007670661900192499, 0.08894532918930054, 0.010740537196397781, -0.031433381140232086, -0.06623610109090805, 0.03466103598475456, -0.012852910906076431, -0.012104792520403862, -0.0017604160821065307, -0.01686730608344078, -0.02323770709335804, 0.019647156819701195, 0.03377607464790344, -0.05205988511443138, -0.06038650870323181, -0.04376555606722832, 0.052162423729896545, 0.017397968098521233, 0.03237532824277878, -0.031233057379722595, -0.010419396683573723, -0.048553597182035446, -0.07946065068244934, 0.003824898973107338, -0.01657341979444027, -0.023342981934547424, 0.04490101337432861, -0.07678454369306564, -0.03626401722431183, 0.007252077106386423, 0.01660623401403427, -0.026456603780388832, 0.02805212326347828, -0.018587779253721237, 0.02309403382241726, -0.028562309220433235, 0.008026544004678726, 0.05539946258068085, 0.021183814853429794, -0.06904029846191406, -0.002232765778899193, 0.003913777880370617, 0.02716602012515068, 0.02674799971282482, -0.07058838754892349, -0.0010709775378927588, -0.00038412606227211654, 0.06072211265563965, 0.039271239191293716, -0.039775993674993515, -0.009547959081828594, 0.06450928002595901, 0.04572314769029617, -0.07930370420217514, -0.034654147922992706, 0.03645065054297447, 0.02318902499973774, -0.00475280499085784, -0.017153723165392876, 0.06944536417722702, 0.03820188343524933, 0.022437145933508873, 0.04280119761824608, -0.00968141108751297, 0.05793981999158859, 0.05052488297224045, -0.03512761741876602, -0.013352349400520325, -0.0022901957854628563, 0.04475321248173714, -0.011628113687038422, 0.05826093629002571, 0.016670741140842438, -0.06373380124568939, 0.013599907048046589, 0.00039384557749144733, 0.02063858136534691, 0.02318524569272995, 0.08042073994874954, 0.04186280071735382, -0.003401023568585515, -0.011049419641494751, 0.03967927768826485, -0.024478698149323463, -0.03692494332790375, 0.0321308858692646, 0.00635895598679781, -0.01408898551017046, 0.021039912477135658, 0.04270423576235771, -0.042389631271362305, -0.03519848361611366, 0.02743222936987877, -0.02534942887723446, -0.03128218650817871, -0.05665677785873413, -0.012613623403012753, -0.04033280536532402, -0.009625726379454136, 0.025465182960033417, -0.006186513230204582, -0.015477849170565605, -0.07270202785730362, 0.034436095505952835, 0.013244186528027058, -0.005482798907905817, 0.012225695885717869, -0.052845943719148636, 0.023108648136258125, -0.013827241957187653, 0.031495802104473114, -0.029124397784471512, -0.04857468232512474, -0.05462053790688515, 0.0515032596886158, 0.021240592002868652, -0.018433252349495888, -0.0236202422529459, 0.03271074220538139, 0.028082268312573433, 0.13674746453762054, -0.033212676644325256, -0.0008442700491286814, 0.02006952278316021, -0.03885394334793091, -0.008661264553666115, -0.04237380623817444, -0.021612079814076424, 0.023116596043109894, -0.03256615996360779, 0.046759627759456635, -0.04675724729895592, 0.04237884283065796, 0.013911529444158077, 0.022211367264389992, -0.006253830157220364, -0.005295317620038986, -0.05233292654156685, 0.004592234268784523, -0.021458877250552177, -0.06530574709177017, -0.04863952472805977, -0.011018571443855762, 0.05806848779320717, -0.029530702158808708, 0.06461182236671448, -0.03341206908226013, -0.002273371210321784, -0.02847101539373398, 0.018506793305277824, 0.02555634081363678, -0.040797557681798935, 0.043190017342567444, 0.021490026265382767, 0.00688201142475009, 0.017554650083184242, -0.006320992484688759, -0.001973719336092472, -0.01564483530819416, -0.002411800669506192, -0.05964026227593422, -0.05482051149010658, 0.06411483138799667, 0.06170952320098877, 0.05309892073273659, -0.01293126866221428, 0.0646628886461258, 0.013570050708949566, 0.016815783455967903, 0.006996236275881529, -0.07002203166484833, -0.08808204531669617, -0.010358964093029499, -0.012942132540047169, 0.0009112714324146509, -0.01675308123230934, 0.0036415508948266506, 0.03399863466620445, -0.06416181474924088, -0.02054024301469326, 0.02954091690480709, 0.010209688916802406, -0.016546623781323433, 0.0008408461580984294, -0.011088772676885128, -0.0032616553362458944, -0.016432542353868484, 0.022313786670565605, -0.002900033025071025, -0.012484169565141201, 0.004626921843737364, -0.05533701926469803, 0.0902828723192215, -0.000405347062041983, 0.01058356836438179, -0.06127143278717995, 0.037522006779909134, -0.029613671824336052, -0.006064769811928272, -0.042209185659885406, 0.02659064717590809, 0.01777985878288746, 0.06686293333768845, -0.03479348123073578, 0.012481605634093285, 0.016935614868998528, -0.07179491966962814, 0.023251540958881378, -0.012274468317627907, -0.008454494178295135, -0.0016604799311608076, 0.027219364419579506, -0.01501155924052, 0.028450611978769302, -0.008029059506952763, -0.06797955185174942, -0.007420143112540245, -0.0020917116198688745, 0.01867033913731575, 0.013822655193507671, 0.05968014523386955, -0.019709235057234764, -0.045102693140506744, -0.01224757730960846, 0.07042378187179565, 0.0044328258372843266, -0.060862842947244644, -0.047180064022541046, 0.04432748630642891, 0.06340157985687256, -0.014339013025164604, -0.015866370871663094, -0.03520616143941879, 0.00010691542411223054, -0.033494286239147186, -0.05261625349521637, 0.026622088626027107, 0.019920796155929565, -0.0369439423084259, -0.029491936787962914, 0.014601481147110462, -0.025025689974427223, 0.01868024468421936, 0.046723052859306335, 0.06673458963632584, -0.0586390383541584, -0.0189035814255476, -0.020794177427887917, -0.08141713589429855, -0.009172012098133564, -0.003036677371710539, -0.03724769502878189, -0.02870628982782364, -0.06642754375934601, 0.03207189217209816, 0.04855116829276085, 0.013381566852331161, -0.03424365445971489, -0.03828238323330879, -0.04036467522382736, 0.008434631861746311, -0.04932156950235367, -0.027886753901839256, 0.02102363109588623, -0.00119287078268826, -0.03213854506611824, -0.07137325406074524, 0.016523607075214386, -0.01112549938261509, -0.01965532824397087, 0.0024455119855701923, 0.04878062382340431, -0.014595244079828262, 0.09207817912101746, 0.006120001431554556, 0.03832479938864708, -0.01814083755016327, -0.03482065349817276, 0.012202814221382141, 0.05554251745343208, -0.0011131957871839404, 0.043073877692222595, 0.020351801067590714, -0.01690608635544777, -0.029994871467351913, 0.04357115551829338, -0.031780388206243515, 0.0030817219521850348, -0.028833622112870216, -0.05507577955722809, -0.0022802778985351324, -0.011457805521786213, -0.027270788326859474, 0.0069580599665641785, 0.06287268549203873, -0.012346569448709488, 0.029742874205112457, -0.0605253167450428, -0.010374963283538818, 0.004409061279147863, 0.04712045192718506, -0.008343764580786228, -0.030444953590631485, 0.04932794347405434, -0.02330007217824459, -0.06635754555463791, -0.009311114437878132, -0.0027956380508840084, -0.007549673784524202, 0.06037005037069321, 0.002198075409978628, 0.07238921523094177, -0.019108546897768974, 0.05193663015961647, 0.0584544911980629, -0.01669703982770443, -0.026409368962049484, 0.03823697566986084, -0.013165593147277832, 0.04213801771402359, 0.01465591974556446, 0.03129670396447182, -0.02476133219897747, 0.00255010137334466, 0.016172902658581734, 0.037162743508815765, -0.02584737353026867, -0.010770143009722233, -0.028328366577625275, -0.02905062399804592, -0.028920521959662437, 0.010830748826265335, 0.03650445491075516, -0.007516337558627129, -0.007318759337067604, -0.018614040687680244, 0.0628291442990303, 0.0031742402352392673, 0.030426131561398506, -0.022363800555467606, 0.023679550737142563, 0.000579583051148802, -0.07131996005773544, 0.061631280928850174, -0.024721777066588402, 0.020790161564946175, 0.021000010892748833, -0.016599958762526512, -0.031933534890413284, 0.025063717737793922, -0.04681311547756195, -0.013922195881605148, 0.003238632110878825, 0.026919256895780563, -0.014443529769778252, -0.045035526156425476, 0.005314597859978676, 0.055626340210437775, 0.006342473439872265, -0.0022654326166957617, -0.02646368369460106, -0.00924087967723608, 0.014900249429047108, -0.022427111864089966, 0.04929092153906822, -0.0031599935609847307, 0.05486655607819557, -0.025074101984500885, 0.011321560479700565, -6.16419760148004e-33, -0.029255766421556473, -0.023601988330483437, 0.0049844104796648026, -0.013598062098026276, 0.012914774939417839, 0.0007356310961768031, -0.018156157806515694, -0.016219347715377808, -0.002242808463051915, -0.01348418090492487, 0.033635661005973816, 0.0032515886705368757, 0.012968352064490318, -0.06974668800830841, 0.002951674163341522, 0.059003498405218124, 0.0012539465678855777, 0.04347415640950203, -0.039155855774879456, -0.004544427152723074, 0.008180469274520874, -0.016189761459827423, 0.02561863325536251, 0.005694480147212744, -0.05999244004487991, 0.008784845471382141, 0.005299846641719341, -0.016170868650078773, -0.04343795403838158, 0.0214685071259737, 0.010360010899603367, -0.07436829805374146, 0.004535366781055927, 0.062299784272909164, -0.025826601311564445, 0.010482784360647202, -0.012901755049824715, -0.041056882590055466, -0.024241352453827858, -0.001168297603726387, -0.0034273916389793158, -0.04905581846833229, 0.06889138370752335, -0.015604491345584393, 0.027179058641195297, -0.017150988802313805, -0.025021113455295563, 0.013835056684911251, 0.013251075521111488, 0.019953330978751183, -0.011901909485459328, 0.04918869584798813, 0.01042688824236393, 0.0574258454144001, -0.03347782790660858, 0.0003449598152656108, -0.0064893378876149654, -0.03360914811491966, 0.027727464213967323, -0.0179872028529644, 0.04627766087651253, -0.007928197272121906, 0.005808770656585693, -0.0456504300236702, -0.02808663249015808, -0.031017040833830833, -0.004298451356589794, -0.008820388466119766, 0.021888988092541695, -0.006213029380887747, -0.024831602349877357, 0.017714204266667366, -0.018549254164099693, -0.010306705720722675, -0.0789577066898346, -0.004268336109817028, -0.009508248418569565, 0.041141532361507416, 0.02925877831876278, 0.06821222603321075, -0.0022003932390362024, 0.010617616586387157, -0.037399351596832275, 0.0013279170962050557, -0.020245853811502457, 0.026545684784650803, -0.00938850175589323, -0.013013266958296299, -0.042922429740428925, -0.009003526531159878, -0.0385817252099514, 0.032797183841466904, 0.006706235930323601, 0.021164068952202797, 0.054163552820682526, 0.0017119433032348752, -0.01901623047888279, 0.0351436510682106, -0.011347671039402485, -0.00017500213289167732, 0.05019176006317139, 0.013166527263820171, 0.0004473954613786191, -0.04597073048353195, 0.06650787591934204, -0.006228188518434763, -0.023555705323815346, 0.01705823466181755, -0.06837261468172073, -0.022014977410435677, -0.021702855825424194, -0.03239252790808678, 0.008237164467573166, 0.017490018159151077, -0.02343290112912655, 0.027089960873126984, -0.017410486936569214, -0.015432276763021946, 0.0032242685556411743, -0.08200318366289139, -0.014058643952012062, 0.0439065583050251, 0.06253401935100555, -0.028176279738545418, -0.0771542489528656, 0.005122121423482895, -0.033022597432136536, -0.015926651656627655, 0.08161364495754242, 0.08719868212938309, -0.025781622156500816, 0.028915148228406906, 3.214651087546372e-07, 0.02274021878838539, 0.07540696114301682, 0.03204704821109772, 0.03805907443165779, -0.029600143432617188, 0.03562505170702934, -0.05885118618607521, 0.017667293548583984, -0.03421330451965332, -0.02658810466527939, -0.010973695665597916, -0.014801045879721642, 0.0032641233410686255, 0.015618182718753815, 0.08438216149806976, 0.00042072258656844497, 0.0035522656980901957, -0.029419904574751854, 0.003113947343081236, -0.006691626738756895, 0.015186450444161892, 0.0010378757724538445, 0.011509849689900875, 0.00020211440278217196, 0.0033926020842045546, -0.040607769042253494, -0.034480080008506775, -0.018427161499857903, 0.05111274495720863, 0.021930091083049774, -0.039616890251636505, -0.019958535209298134, 0.021473931148648262, 0.021542714908719063, -0.016359688714146614, -0.045378427952528, -0.008938494138419628, 0.04131458327174187, 0.014303398318588734, 0.05124346911907196, 0.035009849816560745, 0.01570543274283409, 0.023966995999217033, -0.04300645366311073, 0.04119100794196129, 0.09943374246358871, -0.029145384207367897, -0.10655820369720459, -0.060401514172554016, 0.021138301119208336, -0.040488939732313156, 0.055373501032590866, 0.008238661102950573, 0.03281831368803978, -0.028655126690864563, 0.011496912688016891, -0.041026484221220016, -0.05487607419490814, -0.004991131369024515, -0.02649036981165409, -0.012027598917484283, -0.042391132563352585, 0.02339816838502884, 0.009119446389377117, 0.054309092462062836, -0.07961376011371613, 0.025294844061136246, 4.012657873239864e-34, 0.02723199874162674, -0.08001291751861572, 0.03440966457128525, 0.012620091438293457, 0.017574327066540718, -0.004555428866297007, -0.007843611761927605, -0.06323902308940887, 0.04482540115714073, -0.04714810848236084, -0.026001350954174995], "8f323bf4-8b81-4f6f-a61f-ac1ca7407c49": [0.02566608227789402, -0.0012609332334250212, -0.009073927998542786, -0.07268185913562775, 0.07125452905893326, 0.022682948037981987, -0.03898251801729202, -0.007162619382143021, -0.008372758515179157, -0.05877506360411644, 0.033678844571113586, 0.013381009921431541, 0.0034773757215589285, 0.050847817212343216, 0.022631272673606873, 0.02409549243748188, 0.03431558236479759, -0.010389511473476887, 0.0328657329082489, 0.0602516271173954, -0.04016168415546417, 0.022254468873143196, 0.031057938933372498, -0.009152164682745934, 0.0050560422241687775, -0.018121883273124695, 0.025787901133298874, 0.022286608815193176, 0.016903795301914215, -0.05861623212695122, 0.0331646166741848, 0.020802240818738937, 0.018501438200473785, 0.04126478359103203, 2.1380642465373967e-06, -0.00811045616865158, -4.3109401303809136e-05, -0.0069158547557890415, -0.0030987230129539967, -0.0034329816699028015, -4.693528535426594e-05, -0.04976707324385643, -0.0007989772129803896, 0.031371913850307465, -0.008478059433400631, -0.023406120017170906, 0.027497056871652603, -0.01457060594111681, 0.04150315001606941, 0.04256327450275421, 0.02271791733801365, 0.02842004969716072, 0.010747675783932209, 0.01889580860733986, 0.022133314982056618, 0.019717220216989517, 0.05751238018274307, 0.0743546113371849, -0.006544284988194704, -0.006361758336424828, 0.09323112666606903, 0.0004716215771622956, -0.03382361680269241, -0.020693210884928703, 0.06620821356773376, -0.025859490036964417, 0.006674079690128565, -0.06408574432134628, -0.0018737801583483815, -0.0014702349435538054, 0.011986596509814262, -0.09081651270389557, -0.0334622859954834, -0.04349328950047493, -0.011264810338616371, -0.01702238619327545, -0.019234448671340942, 0.014231274835765362, 0.04817163944244385, -0.025705788284540176, -0.0013960687210783362, -0.031103869900107384, -0.01153880637139082, -0.009345275349915028, -0.023315317928791046, 0.014538362622261047, 0.009949926286935806, -0.03342122584581375, 0.009003574959933758, -0.009638296440243721, 0.019166260957717896, -0.08053208142518997, -0.016056394204497337, 0.017437303438782692, 0.008425520732998848, -0.06491762399673462, -0.0062291887588799, -0.0681571513414383, 0.05542244017124176, 0.021704813465476036, -0.06919942051172256, 0.0006241552764549851, -0.023676328361034393, 0.007603793870657682, -0.016310563310980797, 0.029821772128343582, -0.0004393950221128762, 0.045448631048202515, 0.05147803947329521, 0.03457040712237358, -0.005718403495848179, 0.009049332700669765, -0.020506063476204872, -0.0702771320939064, 0.09139523655176163, 0.022238686680793762, 0.024126579985022545, 0.05292780324816704, -0.02547197788953781, 0.0588487833738327, -0.003450222546234727, -0.019064879044890404, -0.025940312072634697, 0.02191409096121788, 0.007937452755868435, -0.003022512188181281, 0.03612888604402542, 0.0058195143938064575, -0.012914673425257206, 0.08612480014562607, 1.1893295777554158e-05, 0.030824018642306328, 0.028240906074643135, -0.010771388188004494, 0.033406417816877365, 0.056222617626190186, 0.01846313290297985, -0.009821432642638683, -0.01823219284415245, -0.03938392177224159, 0.0503460168838501, 0.008498677052557468, -0.016156228259205818, -0.03734755516052246, -0.10886018723249435, -0.0068457298912107944, -0.009568114764988422, -0.05062128230929375, -0.035026174038648605, -0.04566846042871475, -0.03280780464410782, 0.0034371756482869387, -0.02333146519958973, 0.03291185200214386, -0.03962244838476181, -0.03479563072323799, -0.024178702384233475, -0.08031301945447922, 0.008477739058434963, -0.01637558825314045, 0.04169686511158943, -0.05059533938765526, 0.06825517117977142, -0.04889138787984848, -0.022011486813426018, 0.026003781706094742, 0.06463996320962906, 0.010497775860130787, 0.051486626267433167, 0.0038626526948064566, -0.023030094802379608, -0.006637563928961754, 0.01701788231730461, -0.01676093600690365, -0.032407037913799286, 0.03524760529398918, 0.021622082218527794, -0.04310741648077965, 0.045829497277736664, 0.001771358773112297, -0.0024119087029248476, 0.02273406833410263, -0.003977092448621988, 0.018274158239364624, -0.014477750286459923, -0.0001590086321812123, -0.04159904271364212, 0.06592144072055817, 0.02939796634018421, -0.025433890521526337, -0.07216773182153702, 0.016172071918845177, -0.011610538698732853, -0.023869028314948082, -0.007515009958297014, -0.004975251853466034, -0.01379676815122366, 0.018036872148513794, 0.007953138090670109, -0.021102968603372574, -0.05306503549218178, -0.047710105776786804, 0.037912517786026, 0.013975130394101143, 0.0400591678917408, -0.06740930676460266, -0.07757847011089325, -0.06379717588424683, -0.049261342734098434, 0.0032775532454252243, -0.028308682143688202, -0.0534893199801445, -0.025783734396100044, -0.04547315090894699, 0.01232183538377285, -0.009730185382068157, 0.019143378362059593, -0.03323565050959587, 0.04915967583656311, -0.013248740695416927, 0.023343192413449287, -0.007973657920956612, -0.020610202103853226, 0.049882542341947556, 0.01569519005715847, -0.07018280774354935, -0.001263957703486085, -0.015715528279542923, 0.02402804046869278, 0.012376387603580952, -0.044998664408922195, 0.01763022318482399, -0.006749329157173634, 0.06655342131853104, -0.015608638525009155, 0.006716189906001091, 0.042963676154613495, 0.08426513522863388, 0.03923561051487923, 0.003248856170102954, -0.0378287211060524, -0.004674715921282768, 0.01175460871309042, 0.03203590586781502, -0.024691179394721985, 0.059574227780103683, 0.005082498304545879, 0.040938738733530045, 0.049364425241947174, 0.020966585725545883, 0.04539516568183899, 0.014638799242675304, -0.05989455804228783, 0.02594866417348385, -0.03236820921301842, 0.031740397214889526, -0.02092897705733776, 0.06375925987958908, -0.009971014223992825, -0.05899885296821594, 0.0493307001888752, -0.022085189819335938, 0.033947478979825974, 0.040644221007823944, 0.06869588047266006, 0.03989702835679054, -0.024268126115202904, 0.017362480983138084, 0.007319393567740917, 0.019291583448648453, -0.010935821570456028, 0.0025591349694877863, -0.004029004834592342, -0.025707820430397987, 0.006458204705268145, 0.05393633618950844, -0.04783345386385918, -0.013800784014165401, 0.024078605696558952, 0.03316497057676315, -0.01532223355025053, -0.00145616359077394, -0.04449459910392761, -0.017461800947785378, -0.035504184663295746, 0.043670590966939926, 0.03881845995783806, -0.01892183907330036, -0.08027707785367966, -0.03930439427495003, -0.0034536307211965322, 0.002953451592475176, 0.0269288569688797, -0.024310346692800522, -0.004032251890748739, -0.0018708457937464118, 0.03553321957588196, -0.02125868760049343, -0.013781599700450897, -0.07885485142469406, 0.07276833057403564, 0.0704682469367981, 0.012954048812389374, -0.044359587132930756, 0.05727681145071983, -0.01775871403515339, 0.12144465744495392, -0.013198171742260456, 0.017655258998274803, -0.011927949264645576, -0.040123410522937775, -0.04105527326464653, -0.022570716217160225, 3.928397563868202e-05, 0.0101062823086977, -0.006800164468586445, 0.07168517261743546, -0.05592620000243187, 0.021499639376997948, 0.03553854674100876, 0.03498207405209541, -0.02231055311858654, 0.022716298699378967, -0.01675039529800415, 0.011371506378054619, -0.029422318562865257, -0.04879722371697426, -0.025236714631319046, 0.008351428434252739, 0.05851639062166214, -0.039928000420331955, 0.049957308918237686, -0.04589814320206642, -0.03625410050153732, -0.0269178319722414, 0.026368286460638046, 0.07045784592628479, 0.028370074927806854, 0.01908831112086773, 0.03430110216140747, 0.010295004583895206, 0.05210404098033905, -0.03002319484949112, 0.0015583906788378954, -0.030835255980491638, 0.022097256034612656, -0.05907413735985756, -0.03172824904322624, 0.01997601054608822, 0.03033767081797123, 0.010014449246227741, 0.011913483962416649, 0.0809609517455101, -0.008674818091094494, -0.013924730010330677, 0.01199545431882143, -0.09004679322242737, -0.055292341858148575, -0.054978515952825546, 0.020305633544921875, -0.014624257571995258, 0.004382509272545576, -0.025170063599944115, 0.012710627168416977, -0.083281010389328, -0.033961206674575806, -0.013572640717029572, -0.030342306941747665, 0.007882743142545223, 0.012565665878355503, -0.08378667384386063, -0.03694766014814377, 0.01646221987903118, 0.02300117164850235, 0.003946955781430006, 0.022757679224014282, 0.036713745445013046, -0.04108378663659096, 0.03083229996263981, -0.010204860009253025, 0.02853734791278839, -0.0751480981707573, 0.013757346197962761, -0.0031396944541484118, -0.025075268000364304, -0.007120478432625532, 0.03675289452075958, 0.034067552536726, 0.08849342167377472, 0.007336251437664032, -0.008555353619158268, 0.022201919928193092, -0.07044006884098053, 0.011630364693701267, 0.020275678485631943, -0.02222634106874466, -0.04140184447169304, 0.036405619233846664, -0.012659439817070961, 0.009958240203559399, -0.01867257058620453, -0.06179159879684448, 0.006996141746640205, 0.00960979051887989, -0.02864064648747444, -0.002670182380825281, 0.060093652456998825, 0.009211080148816109, 0.0008918713429011405, 0.0029677245765924454, 0.04275630787014961, 0.045013848692178726, -0.05935027822852135, -0.011949865147471428, 0.04095611348748207, 0.016548410058021545, 0.016899656504392624, 0.03843506798148155, 0.009314964525401592, -0.006135240197181702, -0.04887242615222931, -0.00965957622975111, 0.07445883005857468, -0.003752717049792409, -0.05967897176742554, -0.04124036431312561, -0.006275455001741648, -0.008902106434106827, 0.02363344095647335, 0.0348803885281086, 0.07064549624919891, -0.053441762924194336, -0.00396122457459569, -0.0004725981561932713, -0.017784293740987778, 0.018450450152158737, -0.024699116125702858, -0.04046092927455902, -0.036149755120277405, -0.10813732445240021, 0.02021794766187668, 0.06286778301000595, -0.015403480269014835, -0.00016042645438574255, -0.03678162395954132, 0.01508302427828312, 0.023029664531350136, -0.07284519821405411, 0.005508096888661385, 0.04383010044693947, -0.0032646358013153076, -0.045771438628435135, -0.08785408735275269, 0.036100439727306366, 0.024453291669487953, -0.009844106622040272, -0.027357885614037514, 0.0010474197333678603, -0.033174123615026474, 0.018359646201133728, -0.03353465721011162, 0.0266971904784441, -0.029988329857587814, 0.003677910193800926, -0.015687869861721992, 0.02084416337311268, 0.015242458321154118, -0.02256426401436329, -0.0011066289152950048, 0.015048261731863022, 0.017302153632044792, 0.015755632892251015, -0.030300593003630638, 0.0004067494592163712, -0.04150168597698212, -0.06133166700601578, -0.012472751550376415, -0.007334671448916197, -0.05188889801502228, -0.00982243288308382, 0.0625251978635788, -0.04514915496110916, 0.013113672845065594, -0.05697300657629967, -0.04791995882987976, -0.023272721096873283, 0.04890402778983116, 0.006657101679593325, -0.02654733695089817, 0.045583583414554596, -0.024352092295885086, -0.013857130892574787, 0.00926237553358078, 0.025705603882670403, -0.06440204381942749, 0.03364194929599762, 0.011260254308581352, 0.025594795122742653, -0.0072252810932695866, 0.05387266352772713, 0.04708736389875412, -0.040348295122385025, -0.032331641763448715, 0.010582953691482544, -0.017660101875662804, 0.01373545452952385, -0.014018407091498375, 0.014462136663496494, 0.0035782146733254194, -0.006632934790104628, -0.03674588352441788, 0.013872518204152584, -0.007788906339555979, -0.023731768131256104, -0.04872624948620796, -0.01706220954656601, -0.015437126159667969, -0.003920476883649826, 0.03180265799164772, -0.025016341358423233, -0.025306979194283485, 0.0041726636700332165, 0.0874648243188858, -0.005457985680550337, 0.037666205316782, -0.03431026265025139, 0.004675121977925301, -0.00773019902408123, -0.047495558857917786, 0.02489161118865013, -0.030014129355549812, 0.02436855062842369, -0.013739296235144138, -0.07011435925960541, -0.0015862503787502646, -0.0013401173055171967, -0.03698429837822914, -0.003322563599795103, -0.0026474948972463608, 0.010627253912389278, -0.03703754022717476, -0.038438502699136734, -0.006958923768252134, 0.048952896147966385, -0.03812316805124283, -0.016733255237340927, -0.05067892745137215, 0.02512359991669655, 0.030928902328014374, 0.023066574707627296, 0.030059488490223885, -0.0035286801867187023, 0.03484730049967766, -0.009563541039824486, -0.035868290811777115, -4.7132019049715643e-33, -0.0001630052283871919, -0.05043628439307213, 0.018211305141448975, 0.0003884004836436361, 0.025077063590288162, -0.008244161494076252, -0.017548374831676483, -0.026691893115639687, 0.008692103438079357, -0.029236583039164543, 0.02059241756796837, -0.0015600649639964104, -0.0030377632938325405, -0.0924602672457695, 0.053532924503088, 0.06376968324184418, 0.01915738359093666, 0.0064049032516777515, -0.037915777415037155, -0.010779342614114285, 0.01811104081571102, -0.02873806469142437, 0.03942748159170151, 0.0588543526828289, -0.03746536746621132, 0.030163893476128578, 0.03107435256242752, -0.023132972419261932, -0.05269865691661835, 0.03635108470916748, 0.007803237531334162, -0.06083991378545761, 0.015526742674410343, 0.038208652287721634, -0.034576721489429474, 0.018743770197033882, 0.005287261214107275, -0.0024086488410830498, -0.04661581292748451, -0.030916478484869003, 0.029571235179901123, -0.00023212877567857504, 0.06283710896968842, -0.04010457545518875, 0.0507691316306591, 0.00782559160143137, 0.015059597790241241, 0.010018250904977322, 0.0167735256254673, 0.014627570286393166, -0.05402470752596855, 0.04270694777369499, 0.0017027751309797168, 0.046685971319675446, -0.016240285709500313, -0.02229081653058529, 0.04242582991719246, 0.013451465405523777, 0.0004360666498541832, -0.02759968675673008, 0.0649789497256279, 0.01651982218027115, 0.02405209094285965, -0.03438207134604454, -0.023742252960801125, -0.02076701819896698, -0.04395134001970291, 0.03096245788037777, 0.032617226243019104, 0.021379537880420685, -0.00989506859332323, 0.026952281594276428, -0.027692431584000587, 0.012743416242301464, -0.002410190412774682, 0.010757935233414173, 0.01896984688937664, 0.05299905315041542, 0.0427120216190815, 0.07746859639883041, -0.06104959174990654, 0.01979970559477806, -0.012012180872261524, 0.0038482919335365295, -0.03692244365811348, 0.03241279721260071, 9.619414049666375e-05, 0.01126780267804861, -0.03440985456109047, -0.0045911953784525394, -0.03694497048854828, 0.04902061074972153, 0.025864608585834503, 0.025798674672842026, 0.051555898040533066, 0.05216813087463379, -0.06375349313020706, 0.033442422747612, -0.028125153854489326, -0.034190308302640915, 0.05366230010986328, 0.00833181943744421, 0.03726545721292496, -0.04060470312833786, 0.061999186873435974, 0.021397894248366356, -0.01104829367250204, 0.0349615104496479, -0.05223991349339485, -0.004393354989588261, -0.021850241348147392, -0.016598466783761978, -0.02410990372300148, 0.029345868155360222, -0.030739156529307365, -0.00516093336045742, 0.010971241630613804, -0.006192964036017656, -0.010887011885643005, -0.06975177675485611, -0.04432795196771622, 0.10128336399793625, 0.06018029525876045, -0.01499999314546585, -0.04641225188970566, -0.0001829604007070884, 0.004453587811440229, -0.025116976350545883, 0.08624732494354248, 0.051275208592414856, -0.009909848682582378, 0.021629491820931435, 2.833485837072658e-07, 0.018554367125034332, 0.04019889980554581, 0.03246692940592766, 0.020635271444916725, 0.005470973905175924, 0.062037136405706406, -0.04215645045042038, -0.011775681748986244, -0.014699049293994904, -0.018804244697093964, 0.01708291471004486, -0.06545945256948471, -0.0034159705974161625, 0.02028202824294567, 0.014041125774383545, -0.018660560250282288, -0.035312362015247345, 0.002559275832027197, -0.02063266560435295, -0.07070346176624298, -0.03145412728190422, -0.020197132602334023, 0.02666701190173626, -0.003343758173286915, -0.02856171876192093, -0.017462141811847687, -0.0573258213698864, 0.023309968411922455, 0.06909707188606262, 0.09521796554327011, 0.027899688109755516, -0.011220524087548256, 0.013028938323259354, -0.004468819126486778, -0.04653162509202957, -0.05716199055314064, 0.010509421117603779, 0.029297638684511185, -0.008112308569252491, 0.07161526381969452, -0.01080331765115261, 0.03728621453046799, 0.00869873259216547, -0.02817661315202713, 0.002346302615478635, 0.043801117688417435, -0.021740151569247246, -0.11578944325447083, -0.05226776748895645, 0.005052861757576466, -0.04893311858177185, 0.022356461733579636, 0.010288191959261894, 0.026127854362130165, -0.04981306195259094, 0.036560408771038055, -0.03072397969663143, -0.04237088933587074, 0.021178768947720528, -0.021363869309425354, -0.0401727668941021, -0.02338634990155697, 0.03066694177687168, -0.033378299325704575, 0.06121920421719551, -0.07293903827667236, 0.0198324304074049, 3.500373302554184e-34, 0.023708337917923927, -0.03469618409872055, 0.029212644323706627, 0.016329707577824593, -0.009786875918507576, -0.02239491604268551, 0.011719457805156708, -0.009873999282717705, 0.031724125146865845, -0.010427424684166908, -0.021959275007247925], "9357024f-1e70-4c6e-b046-cc395bfe494d": [0.03266474977135658, -0.03219567611813545, 0.0051678381860256195, -0.08678629249334335, 0.08066518604755402, 0.02513226307928562, -0.04942180588841438, -0.013044404797255993, -0.018021848052740097, 0.007025911472737789, 0.02022755891084671, 0.0046167271211743355, 0.031574852764606476, 0.01223825104534626, 0.030283641070127487, 0.0624658539891243, 0.02317998558282852, -0.02447078563272953, 0.06355153769254684, 0.024455884471535683, -0.04290112107992172, 0.017278853803873062, -0.00535257812589407, -0.04199124500155449, 0.0025612807366997004, -0.009197660721838474, 0.01773165911436081, 0.025011727586388588, 0.0026301259640604258, -0.05674852058291435, 0.011794746853411198, 0.032833654433488846, -0.021296370774507523, 0.04159332811832428, 2.2174115201778477e-06, 0.008620613254606724, 0.012730365619063377, -0.008588070049881935, -0.0009165332885459065, -0.012404981069266796, -0.013737807981669903, -0.06854584068059921, -0.02230745181441307, 0.008466186001896858, 0.018100140616297722, 0.003835227806121111, -0.006833638064563274, 0.040637679398059845, 0.06488989293575287, 0.0549931637942791, 0.027129407972097397, 0.031611260026693344, 0.015387964434921741, 0.009380822069942951, 0.05039960518479347, 0.020960988476872444, 0.019305488094687462, 0.10204299539327621, -0.03226565569639206, -0.022724073380231857, 0.07676897943019867, -0.0014568568440154195, -0.009813178330659866, -0.014749365858733654, 0.04398428648710251, -0.0027440686244517565, 0.04313547909259796, -0.08495646715164185, 0.006401163060218096, 0.007351907901465893, -0.02013767510652542, -0.06878241896629333, -0.006770147010684013, -0.04025809466838837, -0.02732168324291706, -0.026957230642437935, -0.008099649101495743, 0.06587719917297363, 0.04297687113285065, -0.016036761924624443, -0.07828257232904434, -0.03373079001903534, -0.005065438337624073, -0.007562895305454731, -0.0130365751683712, 0.010886145755648613, 0.007506173569709063, -0.054569073021411896, 0.0269540436565876, 0.016102738678455353, -0.060373228043317795, -0.07592867314815521, -0.06407000124454498, 0.022876225411891937, 0.019098887220025063, -0.04924364015460014, 0.0009843482403084636, -0.056989118456840515, 0.08131730556488037, 0.0006684460677206516, -0.0899624228477478, -0.02976308949291706, -0.031982421875, 0.03928124159574509, 0.001782223116606474, 0.048879221081733704, -0.025913355872035027, 0.07208743691444397, 0.05612291023135185, 0.03285115212202072, 0.00925514567643404, 0.019048640504479408, -0.0052277459762990475, -0.05209692195057869, 0.06950131803750992, 0.010104474611580372, 0.07116642594337463, 0.030783072113990784, 0.01729119010269642, 0.06950081139802933, -0.0032202336005866528, -0.02654271014034748, -0.020664220675826073, 0.01018920075148344, 0.006201231852173805, -0.07114079594612122, 0.013452374376356602, 0.027936721220612526, -0.020884845405817032, 0.07647602260112762, -0.006549360696226358, 0.016983244568109512, 0.0045263138599693775, -0.04278169572353363, 0.01468690950423479, 0.03389374166727066, 0.05516195669770241, 0.004903331398963928, 0.01201725099235773, -0.011656292714178562, 0.02394360862672329, -0.04390782117843628, 0.029860004782676697, 0.020403023809194565, -0.05387280136346817, -0.005226192530244589, 0.008215298876166344, -0.09411027282476425, -0.045204561203718185, 0.0020652678795158863, -0.017352404072880745, -0.03995092213153839, -0.04652579873800278, 0.01244752760976553, -0.04796378314495087, -0.021746888756752014, -0.05957914516329765, -0.07726244628429413, -0.006911050528287888, 0.03669799491763115, 0.03149569779634476, -0.028111683204770088, 0.04289868474006653, -0.04272822290658951, 0.025037912651896477, 0.0459594801068306, 0.09850198775529861, 0.03653472289443016, 0.10430566221475601, 0.029413798823952675, -0.01413055695593357, 0.053713977336883545, 0.009742693975567818, -0.029713165014982224, -0.03238128870725632, 0.04046707972884178, 0.01292136125266552, -0.05144253373146057, -0.00819005910307169, 0.02586420811712742, 0.015112470835447311, 0.023606041446328163, -0.04156145080924034, -0.02050778456032276, -0.02866807021200657, -0.02044229954481125, -0.051615387201309204, 0.0007300540455617011, 0.02479591593146324, 0.01897132396697998, -0.06977447867393494, -0.015887757763266563, -0.014397560618817806, -0.04124116897583008, -0.018514908850193024, -0.034762393683195114, 0.012601206079125404, 0.0005899844691157341, 0.0419672429561615, -0.01808646321296692, -0.012433859519660473, -0.019662832841277122, 0.048922546207904816, -0.03170697018504143, 0.02941056713461876, -0.01841573789715767, -0.023285718634724617, -0.05897214263677597, 0.04277847334742546, 0.0003280265082139522, -0.027859516441822052, -0.01397783774882555, -0.007338889874517918, -0.022836321964859962, -0.018390849232673645, -0.02006390690803528, -0.007974808104336262, -0.05271011218428612, 0.0386696495115757, -0.0015714248875156045, 0.019497284665703773, 0.014869053848087788, -0.018424632027745247, 0.0492936410009861, -0.0026415251195430756, -0.03851320222020149, -0.048576220870018005, -0.00942600890994072, 0.05115869268774986, 0.023561561480164528, -0.03360769525170326, -0.0012662927620112896, -0.004017174709588289, 0.08043156564235687, -0.0235222727060318, 0.010316637344658375, 0.02195167727768421, 0.07715719193220139, 0.054046135395765305, -0.015596192330121994, -0.044782985001802444, -0.003368668956682086, 0.02457001619040966, 0.04421132430434227, -0.0457402728497982, 0.007688766811043024, -0.00332334591075778, 0.05135157331824303, 0.025185059756040573, 0.005893188528716564, 0.06156633421778679, 0.026367483660578728, -0.06490458548069, 0.009875853545963764, 0.02711622044444084, 0.03452061489224434, -0.026184357702732086, 0.05264737457036972, -0.030846768990159035, -0.06304719299077988, 0.03591141849756241, -0.019712412729859352, -0.004265625961124897, 0.01585286855697632, 0.05795742943882942, 0.010950114578008652, -0.027086444199085236, 0.059804562479257584, -0.023516787216067314, 0.006592507474124432, -0.03099549189209938, 0.016467120498418808, -0.06345589458942413, -0.01217782311141491, 0.005028863437473774, 0.06886980682611465, -0.009741850197315216, -0.011582119390368462, -0.0025094395969063044, -0.005592320114374161, -0.002189172198995948, 0.03241049870848656, -0.02881462685763836, -0.0061583369970321655, -0.019737346097826958, 0.04731084778904915, 0.03901329264044762, 0.014266536571085453, -0.03563231974840164, -0.04876004531979561, -0.027804169803857803, 0.0232912078499794, 0.028970858082175255, -0.022081146016716957, -0.011629920452833176, -0.00353838037699461, 0.04011514037847519, -0.0766879990696907, 0.017369873821735382, -0.05304231494665146, 0.0492064505815506, 0.042597535997629166, 0.02003268338739872, -0.031103428453207016, 0.05952934920787811, -0.012356403283774853, 0.08874263614416122, 0.004079095087945461, 0.018699945881962776, -0.047912996262311935, 0.0017634627874940634, -0.012752728536725044, -0.0838647186756134, -0.009938476607203484, -0.028482770547270775, -0.039717353880405426, 0.048436541110277176, -0.023933829739689827, 0.016324404627084732, 0.04787278175354004, 0.013854282908141613, 0.009063005447387695, -0.017183000221848488, -0.045982878655195236, -0.01790274679660797, 0.012677978724241257, 0.005705263465642929, 0.004554306622594595, -0.019592611119151115, 0.05571727827191353, -0.033032555133104324, 0.023714512586593628, -0.025553565472364426, 0.02477133646607399, -0.019597865641117096, -0.024457620456814766, 0.058970287442207336, -0.04482676088809967, 0.027466265484690666, -0.0019526728428900242, 0.0017792112194001675, 0.10227752476930618, 0.011437209323048592, -0.04408273100852966, -0.03253768011927605, -0.02575881965458393, -0.03541274741292, -0.00935935415327549, 0.027789484709501266, 0.009119098074734211, 0.0023299085441976786, -0.016192317008972168, 0.03679235652089119, 0.00715295085683465, -0.00967058353126049, -0.026449205353856087, -0.03368541598320007, -0.034041788429021835, -0.011089405976235867, -0.010774169117212296, -0.03812362253665924, 0.020730432122945786, -0.0033153037074953318, 0.0175169724971056, -0.06086622178554535, -0.03294030949473381, -0.042556069791316986, 0.0030973602551966906, 0.02081385813653469, 0.0031712003983557224, -0.08187071233987808, 0.01180228777229786, 0.039227444678545, 0.05652931332588196, -0.0031975258607417345, 0.002492270665243268, 0.009950296021997929, -0.04143508896231651, 0.020367160439491272, -0.04179288074374199, -0.018572529777884483, -0.06615377217531204, 0.013886512257158756, 0.009390364401042461, -0.031145405024290085, 0.0464925542473793, -0.0014789022970944643, 0.01820644922554493, 0.10381507128477097, 0.007158435881137848, 0.0023686091881245375, 0.0001513104944024235, -0.06976611912250519, 0.003871078137308359, 0.008216021582484245, -0.056236524134874344, -0.022536834701895714, 0.03272298723459244, 0.009429189376533031, 0.002423217985779047, -0.021862909197807312, 0.002765925833955407, 0.02832392416894436, 0.05725913122296333, -0.024129152297973633, 0.004432473797351122, 0.047132834792137146, -0.03351304307579994, 0.0019417491275817156, 0.012794656679034233, 0.08035261183977127, 0.0366663783788681, -0.027073528617620468, 0.02221580594778061, 0.03167649358510971, 0.00129156862385571, 0.04147368296980858, 0.040233686566352844, -0.051594823598861694, -0.02210407145321369, -0.05190820246934891, -0.006781664676964283, 0.0693778246641159, -0.02055364102125168, -0.06700074672698975, -0.016253769397735596, 0.03417383134365082, -0.013209790922701359, 0.02990405261516571, 0.013718834146857262, 0.03906237334012985, -0.016158130019903183, 0.008409924805164337, 0.0002744989178609103, 0.007755727972835302, 0.006025189999490976, -0.030000094324350357, 0.0012325852876529098, -0.02932846173644066, -0.08683793991804123, -0.0505136102437973, 0.0018630408449098468, -0.002628358080983162, 0.036137551069259644, -0.04114263132214546, 0.025757091119885445, 0.017948394641280174, -0.025125885382294655, 0.01965143345296383, 0.026239555329084396, -0.005291357170790434, -0.06946060806512833, -0.043318454176187515, 0.0395217090845108, -0.0031821024604141712, -0.009548725560307503, -0.07642839103937149, 0.0047890604473650455, -0.0019296810496598482, 0.05238216370344162, -0.044533565640449524, 0.011490656062960625, -0.05424831807613373, -0.0064826724119484425, -0.021980678662657738, -0.003942480776458979, -0.04726645350456238, -0.08525589108467102, 0.019840894266963005, 0.04152556508779526, 0.0006413012160919607, 0.020765135064721107, -0.03644377738237381, -0.011102518998086452, -0.05330594629049301, -0.058624230325222015, -0.04441013187170029, -0.002195684937760234, -0.03868303820490837, -0.03405199944972992, 0.052514005452394485, 0.008721670135855675, 0.037404194474220276, -0.037395693361759186, -0.022126419469714165, 0.016711652278900146, 0.07033313065767288, 0.007251581642776728, -0.006941633298993111, -0.011416495777666569, 0.014968286268413067, -0.06372953951358795, -0.006288459058851004, 0.044257018715143204, -0.05438648536801338, -0.01375229936093092, 0.02459336817264557, -0.011767948977649212, 0.02592647075653076, 0.041101690381765366, 0.04578319191932678, -0.03943713754415512, -0.03369734436273575, 0.003461225889623165, -0.05689680203795433, -0.008448144420981407, -0.010846857912838459, -0.004370892886072397, 0.0008164418977685273, -0.053895749151706696, -0.014382502064108849, 0.0179792158305645, -0.022914379835128784, 0.01645643264055252, -0.0007357606664299965, -0.023351313546299934, -0.001430319738574326, 0.020882796496152878, 0.06964219361543655, -0.013281852006912231, -0.013006060384213924, -0.036269355565309525, 0.04304581508040428, -0.007449728902429342, 0.0029495987109839916, -0.015807854011654854, -0.027931613847613335, 0.01113093551248312, -0.011064257472753525, 0.007037417031824589, 0.0011775376042351127, 0.016222704201936722, 0.0022325715981423855, -0.004442806821316481, -0.009164838120341301, -0.024023106321692467, -0.048528753221035004, -0.0017383957747370005, -0.017882922664284706, 0.011930599808692932, 0.051810599863529205, -0.024439506232738495, -0.02782360278069973, 0.06455858051776886, -0.029453132301568985, 0.02449628710746765, -0.022704878821969032, 0.016842177137732506, -0.0026960764080286026, 0.002357341116294265, 0.004172062501311302, 0.0011816879268735647, 0.035819463431835175, -0.0024869677145034075, -0.014876033179461956, -4.8276528104134225e-33, 0.0017077631782740355, -0.029020415619015694, 0.02227356843650341, 0.0013923763763159513, 0.00457002455368638, -0.0497143529355526, -0.06624060124158859, 0.0008588317432440817, -0.04060729593038559, -0.018911445513367653, -0.03363190218806267, 0.022338401526212692, 0.009140643291175365, -0.07849732786417007, 0.05859118700027466, 0.046396404504776, -0.00046338103129528463, 0.014317275956273079, -0.022641366347670555, 0.01031037513166666, -0.028451455757021904, -0.03195435553789139, -0.003954796120524406, 0.04290390387177467, -0.026468876749277115, -0.006251061800867319, -0.016983652487397194, -0.03148247301578522, -0.040289562195539474, 0.00419740192592144, -0.010216359049081802, -0.07112637907266617, 0.025402314960956573, 0.025969579815864563, -0.028649425134062767, -0.03018622100353241, 0.01871911995112896, 0.01275616604834795, -0.029000919312238693, 0.0113634979352355, 0.03628510981798172, 0.010327909141778946, 0.046430326998233795, -0.03377625346183777, 0.04075470566749573, -0.012248200364410877, 0.019491516053676605, 0.013561438769102097, -0.023911966010928154, 0.049178265035152435, -0.03658636659383774, 0.042125482112169266, 0.004285722970962524, 0.027986036613583565, 0.02245159074664116, -0.02535826340317726, 0.043192557990550995, 0.03475537896156311, 0.0125490203499794, 0.012763827107846737, 0.06355682015419006, -0.009126009419560432, 0.011316023766994476, -0.09560570120811462, -0.028080787509679794, -0.009337550960481167, -0.050305429846048355, 0.0070631601847708225, 0.03199007362127304, 0.04597165063023567, -0.006864966358989477, 0.0007577573414891958, -0.009313594549894333, 0.0391305573284626, -0.03789185360074043, 0.02359260618686676, 0.024942414835095406, 0.040646180510520935, -0.02579580247402191, 0.124530129134655, -0.04858631268143654, -0.002481966046616435, -0.011088580824434757, 0.005762912333011627, -0.008311852812767029, 0.021015487611293793, 0.0047356970608234406, -0.004072761628776789, -0.01808449625968933, -0.006196469068527222, -0.004791087470948696, 0.036289867013692856, 0.01116704847663641, -0.00413168128579855, 0.0813944935798645, 0.08902297914028168, -0.05323828384280205, 0.0023570270277559757, -0.005300816614180803, -0.05200521647930145, 0.011917822062969208, -0.011447135359048843, 0.06556353718042374, -0.02055479772388935, 0.06488995254039764, 0.03418251499533653, 0.01660444587469101, 0.04923223331570625, -0.01573304459452629, 0.004405261017382145, -0.015646865591406822, -0.0178801529109478, -0.009873203933238983, -0.003645919496193528, -0.021808579564094543, -0.021541692316532135, 0.002435633447021246, 0.020309144631028175, -0.03468329459428787, -0.034085433930158615, -0.02725229039788246, 0.08872241526842117, 0.06343711912631989, -0.007666831836104393, -0.020865943282842636, 0.007522608619183302, 0.03860408812761307, 0.01612159051001072, 0.06466277688741684, 0.053060133010149, 0.004010830074548721, 0.004111042246222496, 2.828225831308373e-07, 0.00143366027623415, 0.046439845114946365, 0.028097184374928474, 0.001936701126396656, -0.005253068637102842, 0.03140346705913544, -0.1128729060292244, -0.020809892565011978, -0.048201583325862885, 0.017042702063918114, 0.06992039829492569, -0.03743189200758934, -0.006425616331398487, 0.017315398901700974, 0.034944772720336914, -0.04254579916596413, -0.0802670270204544, 0.0028630178421735764, -0.01264361385256052, -0.05014457553625107, -0.0446627214550972, -0.01866644062101841, 0.006371838506311178, 0.004852228797972202, 0.0008155345567502081, -0.007545815780758858, -0.050922710448503494, 0.03507032245397568, 0.0639936700463295, 0.057261500507593155, 0.047482673078775406, -0.019639011472463608, -0.00307813985273242, -0.04534738510847092, -0.05406344681978226, -0.05148529261350632, -0.01962154172360897, 0.02816833183169365, 0.01261803600937128, 0.02664550393819809, -0.00010527705308049917, 0.03872590512037277, 0.008705281652510166, -0.03092086687684059, 0.02261384017765522, 0.043632909655570984, -0.0006274809711612761, -0.0654371827840805, -0.023418094962835312, -0.02587958239018917, 0.03973683714866638, 0.0256554763764143, 0.014545815996825695, -0.03559255972504616, -0.029777061194181442, 0.03914734348654747, -0.015320912003517151, -0.020627306774258614, 0.04518076404929161, -0.018428683280944824, -0.03837202116847038, -0.0072223106399178505, 0.015377606265246868, 0.008999585174024105, 0.026679156348109245, -0.08234462887048721, 0.03100695088505745, 2.4763567812809547e-34, 0.02849840186536312, -0.06601252406835556, 0.04773358255624771, -0.04935057833790779, -0.012244552373886108, -0.03267490863800049, 0.047524917870759964, -0.04183162748813629, -0.02337965928018093, -0.0017490419559180737, -0.02443881891667843], "05060b83-66bd-46d0-b5d4-c556fc94bf29": [0.043357040733098984, -0.029002316296100616, -0.030101414769887924, -0.056672725826501846, -0.023695193231105804, 0.00038631079951301217, 0.003638697089627385, 0.02940278872847557, -0.04584484174847603, -0.026820076629519463, 0.060158323496580124, 0.014805695042014122, 0.006518413778394461, 0.07752324640750885, 0.011363472789525986, -0.02661842852830887, 0.05147487297654152, 0.004201672039926052, -0.0045275310985744, 0.03401130810379982, 0.0002977551775984466, 0.0025929375551640987, -0.003097524866461754, 0.009193412959575653, 0.021331027150154114, -0.047729283571243286, 0.027760587632656097, 0.03385308012366295, 0.013406522572040558, -0.05328739061951637, 0.011140130460262299, 0.05192314088344574, -0.03018018789589405, -0.02303260751068592, 2.5697186174511444e-06, -0.0075942762196063995, -0.006413026712834835, 0.013806553557515144, 0.017866220325231552, 0.0036899647675454617, 0.016566568985581398, -0.030346911400556564, -0.010301080532371998, 0.04218823090195656, 0.0198756605386734, -0.016583655029535294, -0.00821975339204073, 0.07237564772367477, 0.02235114760696888, 0.003128897165879607, 0.016957702115178108, -0.02575688436627388, -0.01786072924733162, -0.006568334065377712, 0.08175282180309296, 0.035364020615816116, -0.0514957420527935, 0.11014509201049805, 0.06148255616426468, 0.0416390523314476, 0.0202516820281744, 0.01953919418156147, 0.022838378325104713, -0.0026357301976531744, 0.09019898623228073, 0.017326584085822105, 0.04908544197678566, -0.08948620408773422, 0.014772899448871613, 0.010417623445391655, 0.08808203041553497, -0.03065657429397106, 0.037545327097177505, 0.008565148338675499, -0.06912560015916824, -0.010533666238188744, 0.003999899607151747, -0.007959247566759586, -0.014670453034341335, -0.02840416692197323, -0.046007923781871796, -0.06300722062587738, -0.04805226996541023, -0.032636336982250214, 0.061469949781894684, 0.024411246180534363, -0.02974986843764782, -0.032276131212711334, 0.009588821791112423, -0.006303025409579277, 0.04600639268755913, -0.007362463511526585, -0.01542616356164217, 0.005045820493251085, 0.057354528456926346, -0.0344829335808754, 0.05827461928129196, -0.057969942688941956, 0.11819034814834595, 0.015763623639941216, -0.04585656151175499, 0.016016632318496704, -0.009975511580705643, 0.015265734866261482, -0.0037607986014336348, 0.02536952868103981, 0.009709526784718037, -0.011712136678397655, 0.011171862483024597, 0.06062482297420502, -0.02457795850932598, 0.030663546174764633, -0.028049634769558907, -0.001360420254059136, 0.020588437095284462, -0.011483743786811829, 0.006761533673852682, 0.04251902922987938, 0.04489763081073761, 0.09126634895801544, 0.06033845990896225, 0.018411388620734215, -0.06482613831758499, -0.00531263742595911, 0.021320341154932976, -0.04720205068588257, -0.018157197162508965, -0.00847121886909008, -0.01070927083492279, 0.05542919784784317, -0.006948589347302914, -0.02084699459373951, -0.039304718375205994, 0.02789980173110962, -0.006458763033151627, 0.012549222446978092, 0.03668587654829025, 0.056053176522254944, 0.0035917835775762796, -0.037312667816877365, 0.006870478391647339, 0.026254573836922646, -0.02683495357632637, -0.041412174701690674, -0.03639015182852745, -0.0248595979064703, 0.00821629911661148, 0.02436251752078533, -0.027982063591480255, 0.005888565443456173, 0.015565763227641582, -0.05222100391983986, -0.03951624408364296, 0.03295109048485756, 0.02784973755478859, 0.06639733165502548, -0.01617250218987465, 0.023194169625639915, -0.012971769087016582, 0.03299210965633392, 0.02236413024365902, 0.017793774604797363, -0.0015940044540911913, -0.020982518792152405, -0.03974455967545509, 0.03459106385707855, 0.0733756348490715, 0.041968170553445816, 0.03206914663314819, -0.0017881972016766667, -0.06220265105366707, 0.02194196730852127, -0.03513555973768234, 0.04702877253293991, -0.020428303629159927, 0.00881064124405384, 0.050263214856386185, 0.017540130764245987, -0.026945941150188446, 0.0769837349653244, 0.03030448965728283, -0.0682656466960907, 0.0112735191360116, 0.03272625058889389, -0.012394328601658344, 0.013986472971737385, -0.10054206848144531, 0.040877439081668854, -0.009172421880066395, 0.011022650636732578, -0.06552056223154068, -0.0210915207862854, -0.037981756031513214, -0.0029808145482093096, -0.001262980280444026, 0.012047847732901573, -0.0021278918720781803, -0.05872755125164986, 0.018625767901539803, 0.015401879325509071, -0.020802874118089676, 0.00011079009709646925, 0.04895365610718727, 0.029817279428243637, 0.036757729947566986, -0.05528008192777634, -0.05707651749253273, -0.053960204124450684, 0.022950243204832077, -0.04449179396033287, 0.07029646635055542, -0.013684084638953209, -0.02142781764268875, -0.0168171264231205, -0.07487347722053528, -0.008014090359210968, -0.02016218565404415, 0.006150072440505028, -0.018716514110565186, 0.011570188216865063, -0.031698018312454224, -0.021802833303809166, -0.07058689743280411, 0.04059774801135063, 0.04127122089266777, 0.00544436601921916, -0.00915491208434105, -0.009919684380292892, 0.0366203635931015, 0.027010835707187653, -0.004271148703992367, -0.008379165083169937, 0.013086128979921341, 0.042096901684999466, -0.015023155137896538, 0.010308708995580673, 0.02129422314465046, 0.030910952016711235, -0.011605891399085522, -0.07563915848731995, -0.02822016179561615, 0.03851743042469025, -0.02958500199019909, 0.02687499113380909, -0.06135577708482742, -0.00939952488988638, -0.026629939675331116, 0.03431723266839981, 0.003677939297631383, -0.009062300436198711, -0.04842967167496681, -0.00025172997266054153, -0.025029657408595085, 0.007710118778049946, -0.01873563602566719, 0.00868246890604496, -0.07918582111597061, 0.033768802881240845, -0.017575368285179138, 0.011454105377197266, 0.03751971572637558, -0.01165089849382639, 0.002530964557081461, 0.026678690686821938, 0.11150338500738144, -0.03220751881599426, 0.002432669047266245, -0.02368386648595333, -0.03551093861460686, -0.020252637565135956, -0.0019605359993875027, 0.011697802692651749, -0.006361812353134155, -0.0004062620282638818, -0.01590115949511528, 0.012262022122740746, 4.817794979317114e-05, 0.003695929190143943, -0.057100169360637665, 0.019525663927197456, 0.0017931382171809673, -0.014576020650565624, 0.009273329749703407, 0.021241750568151474, -0.010116583667695522, -0.005808303132653236, 0.030298542231321335, -0.00943774078041315, -0.09193041175603867, 0.029078662395477295, 0.016261262819170952, 0.003195523750036955, 0.036583323031663895, -0.032205380499362946, -0.03585615009069443, 0.03510202839970589, 0.007823999039828777, -0.019214417785406113, -0.027636274695396423, 0.020560869947075844, 0.017703857272863388, 0.033653076738119125, -0.03732758387923241, -0.012841668911278248, 0.02722533419728279, 0.04354133456945419, 0.02327205426990986, -0.02765320986509323, 0.006136327050626278, -0.043066997081041336, -0.016054842621088028, 0.006405423860996962, -0.025781333446502686, -0.01791960932314396, -0.01654464565217495, -0.02116057649254799, 0.04128198325634003, -0.04921926558017731, 0.006587042007595301, 0.04012475162744522, -0.020646408200263977, -0.02224964275956154, 0.019735025241971016, -0.03577476739883423, -0.0373280830681324, -0.1143757700920105, 0.013150866143405437, -0.049507491290569305, 0.014377208426594734, -0.02367764338850975, 0.023288363590836525, 0.009099922142922878, 0.007303602062165737, -0.01806650310754776, -0.02244240790605545, 0.004735748749226332, 0.0282595232129097, -0.006348482798784971, -0.01958443783223629, -0.017239319160580635, -0.0192150566726923, 0.03343166783452034, -0.015560455620288849, 0.012544030323624611, 0.01174701564013958, 0.00821339339017868, -0.046788692474365234, 0.03360091522336006, 0.0016284011071547866, 0.0534324124455452, 0.06478971987962723, 0.03256211429834366, 0.06831680238246918, -0.032084520906209946, 0.03202255442738533, -0.10511647909879684, 0.01195161696523428, -0.07270558178424835, -0.05733228102326393, -0.009515628218650818, 0.020308110862970352, 0.03655403107404709, 0.05532965436577797, 0.03246571496129036, -0.009762943722307682, -0.034384265542030334, 0.03221840038895607, -0.01895339973270893, 0.018225694075226784, 0.017100714147090912, -0.013629741035401821, 0.0025751939974725246, -0.019160687923431396, 0.05649097263813019, 0.05166088789701462, -0.04849279299378395, -0.002335504861548543, -0.02156822569668293, 0.019345764070749283, 0.016281329095363617, 0.009103294461965561, -0.0683959424495697, 0.05665186792612076, -0.04361899569630623, 0.01785571500658989, -0.013269088231027126, 0.00969887338578701, 0.014081130735576153, 0.11073151975870132, 0.004554966930299997, -0.007583115715533495, -0.07705762982368469, 0.010752717033028603, -0.0017081391997635365, -0.01729944720864296, -0.0028230068273842335, -0.027269655838608742, 0.002928853267803788, -0.01094825379550457, -0.007938205264508724, 0.004207871854305267, -0.06438294053077698, -0.04502640292048454, 0.0556802973151207, -0.01222052052617073, 0.02623748779296875, 0.10824423283338547, -0.01570177637040615, 0.034954629838466644, 0.017621682956814766, 0.052596911787986755, -0.00666380999609828, 0.01372795831412077, -0.030085233971476555, 0.03284243121743202, -0.06399229913949966, 0.018121888861060143, 0.019381845369935036, -0.0277695432305336, -0.03666616231203079, -0.014516779221594334, 0.026572197675704956, 0.019491979852318764, -0.06938140839338303, -0.012542782351374626, -0.03785419836640358, 0.05906623229384422, -0.00023314953432418406, 0.023646054789423943, 0.00022164096299093217, 0.03395683690905571, 0.014321960508823395, 0.009492751210927963, 0.04648156091570854, -0.017930161207914352, 0.015483730472624302, -0.07469254732131958, -0.04811235889792442, 0.02202899008989334, -0.06477434188127518, -0.05487725883722305, 0.010979859158396721, 0.051977213472127914, 0.03308245167136192, -0.013014928437769413, 0.05620621144771576, 0.026158485561609268, 0.006064580287784338, -0.018655700609087944, -0.015205413103103638, -0.039881519973278046, -0.04105469956994057, -0.08840537816286087, 0.01472626905888319, -0.0014487465377897024, -0.010490662418305874, -0.03642711788415909, 0.030269699171185493, 0.0313938744366169, 0.0270353052765131, 0.008864243514835835, 0.04539692401885986, -0.05012323334813118, -0.04056286811828613, -0.013356114737689495, -0.012522494420409203, -0.06272584199905396, -0.05333283543586731, -0.005604168400168419, -0.0006317346706055105, 0.006659804377704859, -0.02195204235613346, -0.05005921423435211, -0.03616557642817497, 0.0056410920806229115, -0.06329736858606339, -0.035346876829862595, 0.021318534389138222, -0.015412366017699242, -0.014356246218085289, 0.010302272625267506, -0.002465802477672696, 0.013680225238204002, -0.005695793777704239, -0.019522296264767647, 0.04030483216047287, 0.017733994871377945, -0.007573057431727648, -0.004586259834468365, 0.050047002732753754, -0.0014983604196459055, -0.05229628458619118, 0.011214462108910084, 0.04637347534298897, -0.053966037929058075, 0.01869616098701954, -0.000532923499122262, 0.05597461760044098, 0.01712261140346527, 0.030339548364281654, 0.002446746453642845, -0.024870211258530617, -0.03435559943318367, 0.008379761129617691, -0.043612536042928696, -0.024501457810401917, -0.016118386760354042, 0.05134030058979988, -0.01571715995669365, -0.013156022876501083, -0.004152696579694748, 0.035645991563797, -0.04701802134513855, -0.10085177421569824, 0.025058439001441002, -0.011899965815246105, -0.047387491911649704, 0.05254848673939705, 0.0538681261241436, -0.025878721848130226, 0.0048526679165661335, -0.03777027502655983, 0.0285072959959507, -0.03581760823726654, 0.026994923129677773, -0.0328853577375412, 0.043438613414764404, -0.0013027745299041271, -0.0753726065158844, 0.03698776662349701, -0.03165888041257858, -0.07121613621711731, -0.03950484097003937, -0.033049412071704865, -0.01866859197616577, 0.02814866229891777, -0.0018302729586139321, 0.005353081505745649, -0.04808741435408592, -0.07649268209934235, -0.04679383337497711, -0.020085744559764862, 0.03831693157553673, 0.01994163915514946, 0.027048464864492416, 0.017253927886486053, 0.033522799611091614, 0.022958947345614433, -0.0023975668009370565, -0.0397552065551281, 0.023921554908156395, -0.0719960629940033, -0.024832671508193016, 0.004065627697855234, -0.007438287138938904, -6.141662640090808e-33, -0.011532546952366829, 0.0014930752804502845, 0.02626517042517662, -0.01003943383693695, 0.013910536654293537, -0.023463841527700424, -0.045178525149822235, -0.02762719616293907, -0.027364006265997887, -0.028841665014624596, 0.014055618084967136, 0.01295631006360054, 0.01545026432722807, -0.043563880026340485, 0.037257060408592224, 0.018581613898277283, 0.05941480025649071, 0.00651114946231246, -0.019558770582079887, 0.023163242265582085, -0.059277795255184174, -0.02163979597389698, 0.010952688753604889, 0.022325225174427032, -0.029324347153306007, -0.006207360420376062, 0.005218672566115856, -0.0003547250234987587, 0.005427746567875147, 0.020047372207045555, -0.007889543659985065, -0.04295777156949043, 0.019594231620430946, -0.0015379084507003427, 0.0056361970491707325, -0.013672604225575924, -0.01968843676149845, -0.029824689030647278, -0.02873888984322548, -0.03909297287464142, 0.027792753651738167, 0.020880714058876038, 0.023854127153754234, -0.008534595370292664, -0.022771678864955902, 0.015162559226155281, 0.033908747136592865, 0.024385422468185425, -0.008441205136477947, -0.017713448032736778, -0.08060528337955475, 0.02601012960076332, 0.009976553730666637, 0.0628029927611351, -0.011906957253813744, 0.04168136790394783, 0.0691925659775734, -0.02910131774842739, -0.04724476486444473, -0.03415984287858009, -0.00622808001935482, -0.011306383647024632, 0.04860007017850876, -0.04569259658455849, -0.028017666190862656, 0.016371123492717743, -0.03885054960846901, 0.1004149466753006, 0.01843983121216297, 0.013928120024502277, 0.040891241282224655, -0.0033159125596284866, -0.008639013394713402, -0.0069492575712502, -0.04575320705771446, -0.025802884250879288, -0.02219584584236145, 0.07343818992376328, 0.019039155915379524, 0.1262466013431549, 0.00031807288178242743, -0.010419363155961037, -0.07208395004272461, 0.001358673325739801, 0.014803534373641014, -0.024663880467414856, -0.0026519543025642633, -0.008054484613239765, 0.020984236150979996, 0.024270689114928246, -0.008063413202762604, 0.017340684309601784, -0.033892519772052765, 0.015818780288100243, 0.07787077873945236, 0.0341702438890934, -0.005191939417272806, 0.015657130628824234, -0.019963160157203674, -0.00853288359940052, -0.028245139867067337, -0.019837968051433563, 0.027507631108164787, 0.030827626585960388, 0.029080310836434364, -0.022956889122724533, 0.002028340706601739, -0.010122171603143215, -0.043566685169935226, 0.02967509813606739, -0.012349406257271767, 0.006839929614216089, -0.003304716432467103, 0.001987501047551632, -0.04902254045009613, -0.018898144364356995, 0.032763462513685226, 0.05524396523833275, -0.028922537341713905, -0.07765542715787888, -0.06694544851779938, 0.04877950996160507, 0.04355894401669502, -0.014584331773221493, 0.021977415308356285, 0.005372057668864727, 0.06169174239039421, 0.021997684612870216, 0.10330939292907715, 0.06506576389074326, -0.009480997920036316, 0.010751759633421898, 3.374180721493758e-07, 0.034134894609451294, 0.033819250762462616, 0.015221918933093548, -0.017693569883704185, -0.006384330336004496, 0.0040196143090724945, -0.020448731258511543, 0.0028754950035363436, 0.013399380259215832, -0.0009608598775230348, 0.05685211718082428, -0.012017270550131798, -0.0071325055323541164, 0.051353976130485535, -0.01504588220268488, -0.11670514196157455, 0.011847758665680885, -0.015439938753843307, -0.03256978467106819, 0.0051363613456487656, 0.032699499279260635, -0.04088854044675827, 0.04212254285812378, -0.017453249543905258, -0.019259609282016754, -0.00020867682178504765, -0.015413759276270866, -0.02324507012963295, 0.07243666052818298, 0.08480535447597504, 0.014230822212994099, 0.017066234722733498, 0.010931008495390415, -0.05611131712794304, 0.003562806872650981, -0.08545007556676865, -0.04320688173174858, 0.0740351602435112, 0.016544915735721588, 0.022806288674473763, 4.596830331138335e-05, -0.008773055858910084, -0.022374888882040977, -0.055102430284023285, -0.010060845874249935, -0.004099541809409857, 0.009797136299312115, 0.0219386238604784, -0.007603702135384083, -0.03148328512907028, 0.030442098155617714, 0.014059423469007015, 0.03744269534945488, -0.012500363402068615, -0.027633128687739372, -0.0358201265335083, -0.025263458490371704, 0.005833611823618412, 0.03431835025548935, 0.04431702941656113, -0.013274329714477062, -0.05191320925951004, 0.034320246428251266, 0.05469685420393944, -0.004325553774833679, -0.05139421299099922, -0.003921257331967354, 3.6369329149298574e-34, 0.01738605834543705, -0.07459958642721176, -0.005582595244050026, -0.01574881188571453, -0.0182984359562397, -0.010561345145106316, 0.035720810294151306, -0.030325327068567276, -0.033944204449653625, 0.0025383001193404198, -0.05635397136211395], "76fe5b6a-11e4-4441-b16d-26cc1fa953b5": [-0.006531822495162487, -0.062491439282894135, -0.01777995564043522, -0.07263834029436111, -0.011140258051455021, 0.0015079568838700652, -0.03653959929943085, -0.0035531125031411648, -0.004535524640232325, -0.000318989681545645, 0.06932778656482697, -0.023680493235588074, 0.05985056236386299, 0.07228957861661911, 0.0057264757342636585, -0.005642026197165251, 0.046326324343681335, -0.013337788172066212, -0.008714048191905022, 0.04247428849339485, -0.012743835337460041, -0.018448932096362114, 0.004988713189959526, -0.010956812649965286, -0.03584429249167442, -0.0138970036059618, 0.008290966972708702, 0.04791543260216713, 0.04063188284635544, -0.03238531947135925, -0.021930191665887833, 0.018039995804429054, -0.030028635635972023, 0.03078644908964634, 2.268793195980834e-06, -0.01744905859231949, -0.005693212617188692, 0.027453608810901642, 0.07036786526441574, -0.03814258798956871, 0.0035327384248375893, -0.04175145551562309, -0.004753178916871548, 0.07861536741256714, 0.027388470247387886, -0.03655852749943733, 0.00976624060422182, 0.08914922922849655, 0.10240171104669571, 0.01630851998925209, 0.011489239521324635, -0.01949673891067505, 0.020021013915538788, 0.03077688254415989, -0.0018168677343055606, 0.01849803701043129, 0.0004008027899544686, 0.08535797894001007, 0.03728331997990608, -0.009132267907261848, 0.03315519541501999, -0.008916875347495079, 0.05088673532009125, -0.014257822185754776, 0.05672790855169296, 0.019202545285224915, 0.055582839995622635, -0.056057777255773544, -0.021360496059060097, -0.034653495997190475, 0.007144588511437178, -0.03453633934259415, 0.03861730545759201, 0.01732393354177475, -0.06176016479730606, -0.05791598558425903, 0.0015457025729119778, -0.04863855242729187, 0.01194090023636818, -0.007641110103577375, -0.04262716695666313, -0.08334048837423325, -0.04951406642794609, -0.0519137978553772, 0.006350234150886536, -0.006634270306676626, -0.018249178305268288, -0.04585600644350052, 0.015555507503449917, 0.002796911634504795, 0.002126019448041916, -0.033245015889406204, -0.029134927317500114, 0.023639841005206108, 0.022672994062304497, -0.03122970275580883, 0.024091172963380814, -0.030390094965696335, 0.08547987043857574, 0.03337719663977623, -0.09794244915246964, 0.009926636703312397, 0.016511861234903336, 0.016822926700115204, -0.020397959277033806, 0.05907062813639641, 0.024708056822419167, 0.003902270458638668, -0.007016643416136503, 0.030486557632684708, -0.04423724114894867, 0.027913616970181465, 0.016571173444390297, -0.0036689694970846176, 0.03686976060271263, -0.015784822404384613, 0.0021196624729782343, -0.013250298798084259, 0.030223920941352844, 0.0849638283252716, 0.04918001592159271, -0.0005993548547849059, -0.027159787714481354, 0.005505006294697523, 0.04533061385154724, -0.02431683987379074, 0.0033459446858614683, 0.012486208230257034, -0.019570613279938698, 0.05365439131855965, -0.030593279749155045, -0.022479355335235596, -0.05416278913617134, -0.016202419996261597, -0.009119827300310135, 0.0004932334995828569, 0.017880016937851906, 0.06614027917385101, -0.02200586348772049, -0.03209957107901573, 0.009397856891155243, 0.026990745216608047, -0.018721159547567368, -0.01154364924877882, -0.03952835500240326, -0.05660353973507881, -0.014012778177857399, -0.0036554080434143543, -0.0393512137234211, -0.005410504061728716, 0.024382470175623894, -0.06504275649785995, -0.02749369479715824, 0.04309818893671036, 0.001808841130696237, 0.05841968581080437, 0.0013876863522455096, 0.016264792531728745, -0.011767822317779064, 0.04136897251009941, -0.010007736273109913, 0.0005636943969875574, 0.030471347272396088, -0.0068953270092606544, 0.00325131812132895, 0.05144350975751877, 0.07656440883874893, 0.028624381870031357, 0.052064988762140274, -0.015650298446416855, -0.003022781340405345, 0.060516420751810074, -0.0281606987118721, 0.025347979739308357, -0.032389573752880096, -0.06111246347427368, 0.06022907420992851, -0.02022738941013813, -0.030751030892133713, 0.03734814375638962, 0.015536199323832989, -0.020529111847281456, 0.002437075600028038, -0.012700434774160385, 0.011136304587125778, 0.018981212750077248, -0.07029180228710175, 0.10671749711036682, -0.02319292351603508, 0.008660812862217426, -0.05577731132507324, -0.010992854833602905, -0.03951135277748108, -0.003946446347981691, -0.017088057473301888, 0.01458023115992546, -0.0021696817129850388, -0.024643341079354286, -0.0004914363962598145, -0.017807969823479652, -0.027027364820241928, -0.01876225508749485, 0.03128794953227043, 0.0023943546693772078, 0.015204676426947117, -0.030674012377858162, -0.04323301464319229, -0.0326334610581398, 0.013711516745388508, -0.1145412027835846, 0.007043482735753059, -0.010562810115516186, -0.000802304653916508, -0.02757934480905533, -0.040376413613557816, 0.03467253968119621, -0.02753804810345173, -0.016016794368624687, -0.039531487971544266, 0.018972432240843773, -0.033076148480176926, 0.02251099795103073, -0.04661361128091812, 0.054126475006341934, -0.011193417944014072, 0.013905670493841171, -0.013208677060902119, -0.00824334193021059, 0.011781913228332996, 0.030095312744379044, 0.006840666756033897, -0.007661519106477499, 0.02062784507870674, 0.0461529903113842, -0.010161747224628925, 0.04477332532405853, 0.025277066975831985, 0.018889226019382477, 0.037775974720716476, -0.07825052738189697, -0.040927689522504807, -0.019411960616707802, -0.035129375755786896, 0.003067024052143097, -0.07466267794370651, 0.0005697504966519773, -0.034590888768434525, 0.03978799283504486, 0.014538714662194252, -0.016512829810380936, -0.03733135014772415, -0.0004367407818790525, -0.017426282167434692, -0.0030370166059583426, -0.019237929955124855, -0.025621945038437843, -0.05484246835112572, 0.05538386479020119, 0.00389818730764091, 0.021009303629398346, 0.036738865077495575, -0.03568325564265251, -0.01984649896621704, -0.001909405691549182, 0.0890638530254364, -0.056526049971580505, -0.023027904331684113, -0.05950217321515083, -0.020031139254570007, 0.006440097000449896, 0.025623565539717674, -0.013443476520478725, -0.006043441127985716, -0.004039698280394077, -0.0019260664703324437, 0.012586469762027264, -0.022009877488017082, -0.0012768057640641928, -0.008765516802668571, 0.014137991704046726, 0.02899361029267311, 0.0014623961178585887, 0.005414764862507582, 0.010257109999656677, -0.010490035638213158, 0.025301681831479073, -0.0035904725082218647, -0.011420215480029583, -0.0667935386300087, 0.013694176450371742, 0.03349527344107628, 0.014295274391770363, 0.024605173617601395, -0.02856837771832943, -0.026087773963809013, 0.028463535010814667, 0.07436364144086838, -0.021839173510670662, -0.04218887537717819, -0.015795307233929634, 0.008835697546601295, 0.005185336340218782, -0.0375671349465847, -0.006217669695615768, 0.060914576053619385, 0.03331131488084793, 0.048877567052841187, -0.0003815071831922978, 0.03283154219388962, -0.005302609875798225, -0.025168228894472122, -0.03487301245331764, -0.04262407496571541, -0.025219498202204704, -0.028320088982582092, -0.03156956285238266, 0.08463512361049652, -0.0669589564204216, -0.014301586896181107, 0.009453661739826202, -0.01991565339267254, -0.01059141755104065, 0.009734936989843845, -0.04270865023136139, -0.0007872729911468923, -0.11978708952665329, 0.01176529098302126, -0.041923873126506805, 0.02952580712735653, -0.0010761830490082502, 0.006694498006254435, -0.0328809954226017, -0.022671883925795555, -0.022992325946688652, -0.03713143244385719, -0.01276029460132122, 0.03795944154262543, -0.002240527654066682, -0.03835254907608032, 0.01051237527281046, -0.014871480874717236, 0.058388687670230865, -0.014550317078828812, 0.009596513584256172, -0.0017559926491230726, 0.0003573020803742111, -0.06265755742788315, 0.033862609416246414, 0.03757692128419876, 0.03337583690881729, 0.04448544606566429, -0.01262666191905737, 0.04483893886208534, -0.019790593534708023, 0.051213350147008896, -0.09520212560892105, 0.01896890066564083, -0.029395991936326027, 0.005424552597105503, -0.009483265690505505, -0.011506018228828907, 0.007166155148297548, 0.08407728374004364, 0.06339864432811737, -0.05928492546081543, -0.09037582576274872, 0.028503630310297012, -0.03373093903064728, 0.020902032032608986, 0.03448600322008133, -0.01076405681669712, 0.00436501856893301, 0.008994538336992264, 0.006112921051681042, 0.04249025508761406, -0.017942318692803383, -0.013946915976703167, 0.0052970037795603275, 0.011470233090221882, 0.004562060814350843, 0.0162147618830204, -0.0705484077334404, 0.03931768983602524, -0.02254173718392849, -0.06341081857681274, 0.0073190852999687195, 0.004571937955915928, 0.005655630491673946, 0.052504781633615494, -0.018863439559936523, -0.0023466586135327816, -0.010931960307061672, -0.04938139393925667, -0.0019887180533260107, 0.013318746350705624, -0.04362347722053528, 0.0025810012593865395, 0.0128078768029809, -0.03295597806572914, -0.016433365643024445, -0.011723321862518787, -0.060530342161655426, -0.024017564952373505, 0.019348222762346268, -0.028350843116641045, 0.008630149997770786, 0.1258777379989624, -0.025435101240873337, 0.010166770778596401, -0.022387299686670303, 0.09149955213069916, -0.0011373534798622131, 0.01567215844988823, -0.027517233043909073, 0.01653756946325302, -0.01769547164440155, 0.046240221709012985, 0.03674465790390968, -0.041306156665086746, -0.006346683483570814, -0.05092049762606621, 0.03438205271959305, 0.006520984694361687, -0.02874094992876053, -0.08913660049438477, -0.014907222241163254, 0.07161926478147507, 0.014925358816981316, 0.027640890330076218, 0.013623153790831566, 0.04057811200618744, -0.00835166685283184, 0.030916374176740646, 0.055485229939222336, 0.0029097115620970726, 0.018446188420057297, -0.03160078823566437, -0.016197454184293747, 0.025756001472473145, -0.04680050164461136, -0.03703019767999649, 0.048563260585069656, 0.09721796214580536, 0.04160833731293678, -0.010550493374466896, -0.01686173304915428, 0.015526389703154564, 0.051372356712818146, 0.02098255045711994, 0.008589953184127808, 0.02228030189871788, 0.002501003909856081, -0.01953570917248726, -0.011507906951010227, 0.010872756130993366, -0.0033473928924649954, -0.06018684059381485, -0.002459915354847908, 0.015465783886611462, 0.05248011648654938, 0.004999599419534206, 0.03176470100879669, -0.03849096596240997, -0.04072236269712448, -0.044169120490550995, -0.09143490344285965, -0.062370412051677704, -0.05278328061103821, -0.027926694601774216, 0.0008974906522780657, -0.04246519133448601, 0.002761305309832096, -0.05580546706914902, -0.0242039505392313, -0.032839614897966385, -0.042936623096466064, -0.039045095443725586, 0.03683038055896759, 0.004989515524357557, -0.02064296044409275, -0.0003199575003236532, 0.004105791449546814, 0.01104284729808569, -0.017144206911325455, -0.026128137484192848, -0.0038768795784562826, 0.032077088952064514, 2.2059199181967415e-05, -0.021518731489777565, 0.03817141056060791, 0.012778800912201405, 0.0048502711579203606, 0.013404004275798798, 0.007196458987891674, -0.05405643209815025, -0.0035685542970895767, 0.02499443292617798, 0.02914629876613617, 0.03045201301574707, 0.05172814056277275, 0.0028237737715244293, -0.01662231609225273, -0.020468246191740036, -0.0028541795909404755, -0.027592554688453674, -0.02119489572942257, -0.005256715230643749, 0.03571097552776337, -0.016738204285502434, 0.004725118633359671, 0.018809830769896507, 0.04748186096549034, -0.013478187844157219, -0.04995490610599518, 0.016490483656525612, -0.050495292991399765, -0.027444826439023018, 0.06384946405887604, 0.055119384080171585, -0.008287341333925724, 0.01907089352607727, -0.014636591076850891, 0.0060611022636294365, -0.04440082237124443, 0.0679546371102333, -0.034288689494132996, 0.042996156960725784, -0.01196015253663063, -0.09641417115926743, 0.02562478370964527, -0.041252460330724716, -0.09568870812654495, -0.020782526582479477, 0.007070682477205992, 0.03417831286787987, 0.02553769201040268, 4.759656440000981e-05, -0.0025792124215513468, -0.026904474943876266, -0.08952812105417252, -0.026526493951678276, -0.011155866086483002, 0.058806829154491425, 0.03105848841369152, -0.0010372304823249578, 0.04514836519956589, 0.031938862055540085, 0.0012655011378228664, 0.013631269335746765, 0.03588065132498741, 0.05227789282798767, -0.08219746500253677, 0.059533629566431046, -0.03741474077105522, 0.03099684789776802, -5.664116590701315e-33, -0.004259774927049875, -0.006322608329355717, 0.03664954751729965, -0.04626087844371796, -0.040897518396377563, -0.052838731557130814, -0.021361462771892548, -0.03315326198935509, -0.008703440427780151, -0.005774992052465677, 0.011561090126633644, 0.04447969049215317, 0.005406947340816259, -0.03450003266334534, -0.009063580073416233, 0.0022429751697927713, 0.06228117644786835, 0.0398983396589756, 0.0008785260142758489, -0.0039727650582790375, -0.08709666132926941, 0.010520780459046364, -0.05139588564634323, 0.006664456333965063, -0.031140882521867752, 0.029686924070119858, -0.008890291675925255, 0.0399312824010849, 0.0004984511760994792, 0.03696707636117935, 0.02378835342824459, -0.06332600861787796, 0.015849841758608818, 0.0071039507165551186, -0.0012827753089368343, 0.0036072430666536093, 0.008667812682688236, -0.05541357398033142, -0.007733245845884085, -0.054612353444099426, -0.008075550198554993, 0.01150481030344963, 0.03996143490076065, -0.016413776203989983, 0.007789401337504387, -0.02180953323841095, 0.010340149514377117, 0.03264269977807999, -0.0069216652773320675, -0.010874992236495018, -0.05812670290470123, 0.019200505688786507, 0.012262878939509392, 0.059628620743751526, -0.0007567827124148607, 0.005102160852402449, 0.07843535393476486, -0.025914154946804047, -0.012516994029283524, -0.015084258280694485, 0.015901008620858192, -0.005995957180857658, 0.012433450669050217, -0.047715384513139725, 0.01117695402354002, 0.00021966989152133465, -0.06425540894269943, 0.06336880475282669, 0.03510444238781929, 0.021835921332240105, 0.04371964931488037, 0.03129807114601135, -0.012443965300917625, 0.007535235956311226, -0.059713732451200485, -0.024977149441838264, -0.016591165214776993, 0.07723968476057053, 0.021998481824994087, 0.07570534944534302, -0.06922290474176407, 0.012952967546880245, -0.07255956530570984, 0.007831346243619919, 0.01343374140560627, 0.022786574438214302, 0.0038785699289292097, -0.013889607973396778, 0.0012085454072803259, 0.02942444011569023, -0.013660921715199947, 0.03037966415286064, 0.014486073516309261, 0.002964275423437357, 0.0711803138256073, 0.0241574477404356, -0.022352302446961403, 0.027572857216000557, 0.003202705644071102, 0.034449297934770584, 0.004321135114878416, -0.025567740201950073, 0.05353964492678642, 0.004859502427279949, 0.03619271144270897, -0.03113340400159359, 0.017577815800905228, 0.02524922974407673, -0.02596122957766056, 0.0292787067592144, 0.020754482597112656, 0.04449662193655968, -0.022817641496658325, 0.007130610290914774, -0.05292532965540886, 0.042324986308813095, 0.03535178303718567, 0.02000625804066658, -0.01622559130191803, -0.07255440950393677, -0.0753214880824089, 0.09747955203056335, 0.04792172834277153, -0.037534214556217194, 0.03538506105542183, 0.0008228295482695103, 0.06291695684194565, 0.030198873952031136, 0.05288180336356163, 0.0312756709754467, -0.03147432208061218, 0.0694037452340126, 3.0840610065752116e-07, 0.008484309539198875, 0.02003674954175949, -0.006250346079468727, -0.01004023291170597, 0.012378452345728874, -0.023157507181167603, -0.0545874647796154, -0.0026518760714679956, 0.03898093104362488, 0.016989808529615402, 0.02901933714747429, -0.013685082085430622, -0.02223759889602661, 0.05753325670957565, -0.029494725167751312, -0.07562729716300964, 0.009639768861234188, -0.02824774943292141, -0.024987749755382538, 0.010935666039586067, -0.005727888084948063, -0.011635201051831245, -0.011857245117425919, -0.011768457479774952, -0.012431353330612183, 0.017148563638329506, -0.0178829412907362, 0.036501552909612656, 0.03723369166254997, 0.08735205978155136, 0.005541008431464434, -0.035433296114206314, 0.01608380861580372, -0.03553703427314758, -0.0015023485757410526, -0.030354227870702744, -0.017441943287849426, 0.036902204155921936, -0.015636660158634186, -0.03037058189511299, 0.004242562688887119, 0.016375930979847908, 0.02016475237905979, -0.02855088748037815, 0.030160434544086456, -0.01302797719836235, 0.015712425112724304, -0.05049680173397064, 0.03511283919215202, -0.08492153882980347, 0.026600856333971024, 0.03326215595006943, 0.04858065024018288, 0.02744082733988762, -0.021690739318728447, -0.008809351362287998, -0.014434736222028732, 0.0053109596483409405, 0.003141964552924037, 0.05649210512638092, -0.011767876334488392, -0.05457824841141701, 0.05158645287156105, 0.03486112877726555, -0.015106252394616604, -0.03990023583173752, 0.017151670530438423, 3.2629250508092647e-34, -0.023349110037088394, -0.1023780107498169, 0.008242747746407986, -0.0314488559961319, -0.05326832830905914, -0.017292341217398643, 0.025159690529108047, -0.005456107668578625, -0.03786105290055275, 0.016806112602353096, -0.010365935042500496], "f5ee3b52-aa3e-4bd0-8f27-79c40c81d3c7": [0.03267660364508629, -0.048717200756073, -0.08006346970796585, 0.020725872367620468, -0.0008799128117971122, 0.041054341942071915, 0.011801127344369888, 0.08586319535970688, 0.016555877402424812, -0.011986416764557362, -0.01618499867618084, 0.05302756652235985, 0.01246187835931778, 0.03724593296647072, 0.013491901569068432, -0.012550282292068005, 0.05630116164684296, 0.012308532372117043, 0.002988108666613698, -0.008389503695070744, -0.04786859080195427, 0.014920368790626526, 0.013232997618615627, -0.01048463024199009, 0.09972338378429413, -0.02488640323281288, -0.015406464226543903, 0.008227602578699589, 0.0015905306208878756, -0.04633856937289238, 0.018202241510152817, 0.00440839771181345, -0.00622183084487915, 0.015881288796663284, 1.9951446574850706e-06, -0.008733058348298073, -0.04929925501346588, -0.021656906232237816, -0.02727479301393032, -0.009910167194902897, 0.05089649558067322, 0.03558453917503357, -0.012195790186524391, 0.02342410385608673, 0.007477466482669115, 0.010166549123823643, -0.04438013955950737, 0.07156480848789215, -0.06388159841299057, 0.027537783607840538, 0.038130830973386765, -0.03881805017590523, 0.021700024604797363, -0.00023440574295818806, 0.10880821198225021, -0.024682646617293358, -0.04625304415822029, 0.06091707944869995, 0.057938046753406525, 0.009543177671730518, -0.00030226324452087283, 0.04068787023425102, -0.032702501863241196, 0.01969979517161846, 0.029786041006445885, 0.014706620015203953, 0.05543792247772217, -0.1163129210472107, 0.04063223674893379, 0.042391352355480194, 0.07042103260755539, -0.04544634371995926, 0.032929811626672745, 0.05437930300831795, -0.07067818194627762, 0.04559475556015968, -0.0036693979054689407, 0.030395375564694405, -0.01687360741198063, 0.005068053025752306, -0.01620851457118988, -0.04970494285225868, 0.0138096259906888, 0.0008355356403626502, 0.05425106734037399, -0.01504515577107668, -0.02630876749753952, -0.05054875463247299, 0.06208088621497154, -0.03680507838726044, 0.0523030124604702, -0.004650000017136335, -0.00246327742934227, 0.004998823162168264, 0.04890478029847145, -0.04670614004135132, 0.011670293286442757, -0.047721028327941895, 0.058028072118759155, -0.008322460576891899, 0.0019490326521918178, -0.000738714006729424, -0.01328379474580288, 0.014384266920387745, -0.006818594876676798, 0.04286535084247589, 0.0050369673408567905, -0.05519523471593857, -0.03702961280941963, 0.10199382901191711, -0.015440830960869789, 0.002130890265107155, 0.005297379568219185, -0.0393175408244133, -0.00047861644998192787, -0.03366851061582565, 0.03772018104791641, 0.01890845037996769, 0.02716054581105709, 0.035622671246528625, -0.033068422228097916, -0.008642895147204399, -0.05517258122563362, 0.019598327577114105, -0.0006020231521688402, -0.04556113854050636, 0.03495955839753151, -0.015001591295003891, -0.015013355761766434, -0.006900889798998833, -0.01817215047776699, 0.0045517017133533955, -0.014963402412831783, 0.03707476705312729, 0.009160097688436508, 0.07222802191972733, 0.02746826596558094, -0.03828149288892746, 0.014346091076731682, -0.03752700239419937, 0.05141295865178108, -0.010470859706401825, 0.014961378648877144, -0.018355417996644974, 0.027470067143440247, 0.0033140922896564007, 0.023819200694561005, 0.0337836779654026, 0.025310322642326355, 0.03940432146191597, -0.04507812112569809, 0.04967808350920677, 0.01586882770061493, -0.0008926642476581037, 0.0395471416413784, 0.02347932569682598, -0.03846430405974388, -0.010149875655770302, -0.0006505058845505118, 0.010359716601669788, 0.052891358733177185, 0.03135598450899124, 0.016159767284989357, -0.040813226252794266, -0.011119711212813854, -0.007618259638547897, 0.030029965564608574, -0.007105234079062939, 0.042580194771289825, -0.0004126028507016599, -0.010529117658734322, 0.0173288993537426, -0.034657128155231476, 0.023882314562797546, -0.016318172216415405, 0.043640196323394775, 0.03150731325149536, 0.07416394352912903, -0.045348480343818665, 0.02741899900138378, 0.023981764912605286, -0.012157078832387924, -0.02932777814567089, -0.013821982778608799, -0.12609878182411194, -0.00018643050862010568, -0.029343681409955025, -0.03100203163921833, 0.0230966005474329, -0.012879184447228909, -0.028497561812400818, 0.017658324912190437, 0.05493023991584778, -0.058154355734586716, 0.008548627607524395, 0.015312868170440197, -0.07634447515010834, -0.12097067385911942, -0.015195336192846298, -0.02017577551305294, 0.05952448397874832, -0.0014995156088843942, 0.06155826523900032, 0.05722668766975403, 0.08031702786684036, -0.03395967558026314, 0.007252940908074379, -0.010966292582452297, -0.010408583097159863, 0.005698659457266331, 0.009145245887339115, 0.005122522357851267, -0.005954368971288204, -0.024943463504314423, -0.06132981926202774, -0.0308977197855711, -0.024828895926475525, -0.03706633299589157, -0.0242846067994833, 0.006557937245815992, 0.02589551731944084, -0.09600856155157089, -0.022612040862441063, 0.03185456991195679, 0.003903760574758053, -0.033064454793930054, -0.060817647725343704, 0.007736545521765947, 0.019071906805038452, -0.007493848446756601, -0.02211184985935688, -0.0013302403967827559, 0.019421398639678955, 0.029851097613573074, -0.011667189188301563, -0.032440245151519775, 0.006979824509471655, -0.028495745733380318, 0.0006412467919290066, -0.15957258641719818, 0.01158380787819624, 0.09916336834430695, 0.031515371054410934, 0.03513922542333603, -0.00680138636380434, 0.010300842113792896, -0.021056463941931725, 0.007463205140084028, 0.04092790558934212, 0.025370320305228233, 0.03492318466305733, -0.010569345206022263, 0.05816681683063507, -0.0030495510436594486, -0.002460187766700983, 0.0277649387717247, -0.07105819880962372, -0.00797221902757883, -0.04083624109625816, 0.04812738671898842, 0.0442623533308506, 0.01084727980196476, -0.024120895192027092, 0.04670941084623337, 0.043758247047662735, 0.009741980582475662, -0.015462423674762249, -0.06139485165476799, -0.009529008530080318, 0.0022516860626637936, 0.020374098792672157, 0.013155470602214336, -0.003418976441025734, -0.02584468014538288, 0.020143475383520126, 0.007687571924179792, 0.016264628618955612, -0.00358696305193007, -0.04808430001139641, -0.028903663158416748, -0.02771594747900963, -0.005913433153182268, -0.04653716832399368, -0.012037794105708599, -0.0284157432615757, -0.026469232514500618, 0.015872707590460777, -0.05766018480062485, -0.016808615997433662, -0.0038418425247073174, 0.00021670517162419856, 0.037147488445043564, 0.010347053408622742, -0.016168715432286263, -0.027917705476284027, 0.024163836613297462, -0.007797359488904476, 0.013371617533266544, -0.015525736846029758, 0.05471012368798256, 0.053155168890953064, -0.010677725076675415, -0.025667449459433556, 0.04119407758116722, -0.007919492200016975, 0.021602001041173935, -0.01828003115952015, -0.052512139081954956, -0.022573674097657204, -0.07369764149188995, 0.0463617742061615, 0.02650885283946991, -0.002492154249921441, -0.03810660168528557, -0.010931054130196571, -0.03570616617798805, -0.01553740631788969, -0.027832189574837685, -0.001776130753569305, 0.0651334747672081, 0.00035872586886398494, -0.00023767193488311023, -0.018238799646496773, 0.008230610750615597, 0.015008757822215557, -0.10420577973127365, 0.042493533343076706, -0.006959178019315004, 0.06301604211330414, 0.02460259199142456, 0.025378316640853882, 0.003999932203441858, 0.006291183643043041, -0.030119797214865685, 0.0691596120595932, 0.008276030421257019, -0.030503077432513237, 0.0008200403535738587, 0.006973949261009693, -0.01350829005241394, -0.0057249790988862514, 0.07276759296655655, -0.01142967026680708, 0.015937840566039085, -0.011722533032298088, -0.013202117756009102, -0.002829544711858034, -0.0075110881589353085, -0.0984380841255188, -0.017114464193582535, 0.0793275237083435, 0.010235697031021118, 0.034166693687438965, -0.035601597279310226, -0.020090777426958084, -0.04024728760123253, 0.02213786169886589, -0.008917557075619698, -0.0017628251807764173, -0.05919390916824341, 0.05837348848581314, 0.03453332185745239, -0.0095164580270648, 0.027436459437012672, 0.057729415595531464, 0.04006046801805496, 0.009035737253725529, -0.022636933252215385, -0.011626893654465675, 0.006929393857717514, -0.0906863585114479, 0.010087802074849606, 0.015138437040150166, 0.06858303397893906, 0.019235843792557716, -0.054402559995651245, -0.0013318761484697461, -0.048767685890197754, 0.005815036594867706, -0.022610023617744446, 0.0050276294350624084, -0.02265753783285618, 0.03672470524907112, 0.023692401126027107, 0.046594664454460144, 0.012090682983398438, 0.0355805866420269, 0.038099490106105804, 0.058807436376810074, -0.029754333198070526, 0.01680941879749298, -0.045486629009246826, -0.039965465664863586, -0.011960913427174091, -0.040548939257860184, -0.008989350870251656, -0.00391268590465188, 0.002048823516815901, -0.03405829146504402, 0.01172354444861412, -0.028597958385944366, 0.09025362879037857, 0.024818478152155876, 0.03547552973031998, 0.019434770569205284, -0.003123872447758913, 0.04165910184383392, 0.04948955029249191, -0.0017297887243330479, 0.050487320870161057, 0.0662163496017456, 0.02840585447847843, 0.022218352183699608, -0.007304762490093708, 0.02507593296468258, -0.030121609568595886, 0.04457360506057739, -0.027766678482294083, -0.031937066465616226, -0.017386918887495995, -0.03392022103071213, 0.030119355767965317, 0.021834775805473328, -0.008919198997318745, -0.016115352511405945, -0.03356585279107094, 0.05281810835003853, -0.05468706786632538, 0.027182765305042267, -0.03131212666630745, 0.05479085072875023, -0.009296921081840992, -0.021387752145528793, 0.026304246857762337, 0.052167996764183044, -0.014623337425291538, 0.007589469198137522, -0.07018619775772095, -0.03138658404350281, -0.040839552879333496, -0.01649705320596695, -0.037570398300886154, 0.035073116421699524, 0.036741528660058975, -0.013008678331971169, 0.06433532387018204, 0.02552901953458786, -0.02178213745355606, -0.046880144625902176, -0.04840346798300743, -0.021792681887745857, -0.05911153554916382, -0.057285506278276443, 0.004028934519737959, -0.04460683465003967, 0.005841229576617479, 0.017202602699398994, 0.07305891066789627, -0.017296576872467995, 0.005471924785524607, -0.018278319388628006, 0.049192652106285095, 0.0034095318987965584, -0.021397795528173447, -0.008328028954565525, 0.02117105759680271, -0.018088646233081818, -0.07333630323410034, 0.048200882971286774, 0.03347229212522507, 0.004217949695885181, -0.009833133779466152, 0.005085195414721966, -0.03121228702366352, 0.023255234584212303, -0.09817390143871307, -0.02582370676100254, -0.003947852645069361, -0.047204598784446716, -0.016213173046708107, 0.0029626928735524416, -0.00013177166692912579, 0.014150074683129787, -0.004170703701674938, -0.03147720545530319, 0.045959848910570145, -0.008322254754602909, 0.007973568513989449, 0.0006537918234243989, 0.0071225883439183235, 0.05194518715143204, 0.0008414670592173934, 0.007925821468234062, -0.005301808938384056, 0.025854462757706642, 0.016859613358974457, -0.004492688458412886, 0.027693405747413635, 0.0009732602047733963, 0.03813134878873825, 0.0030970321968197823, -0.04332520440220833, -0.01595648005604744, 0.08369268476963043, -0.04635516181588173, -0.025988593697547913, 0.0005093928775750101, 0.03138994425535202, 0.018621308729052544, -0.0031300990376621485, -0.07480239123106003, 0.0003739359672181308, -0.07027534395456314, -0.025181451812386513, 0.029680272564291954, -0.024123840034008026, -0.012717394158244133, -0.047353338450193405, 0.03779948875308037, 0.009261788800358772, 0.01383295189589262, 0.0031470039393752813, 0.020678121596574783, -0.022045033052563667, 0.022271426394581795, -0.0002232720871688798, 0.030023135244846344, 0.0386526919901371, 0.029167242348194122, 0.05223448574542999, -0.01177093293517828, -0.010800965130329132, 0.050102781504392624, -0.020240239799022675, -0.032218292355537415, -0.01771979033946991, 0.016536816954612732, 0.05102027952671051, 0.023477839305996895, -0.01534970197826624, 0.03412599116563797, -0.025181403383612633, 0.04549381881952286, 0.044883597642183304, 0.044027432799339294, -0.006857800763100386, 0.0448685847222805, 0.044201839715242386, 1.970265884665423e-06, -0.08544371277093887, 0.0022517191246151924, 0.004291018005460501, -0.010852131061255932, 0.0366889052093029, 0.01407618634402752, -5.701133275150694e-33, -0.02436198480427265, -0.018343355506658554, -0.01977451704442501, 0.0536939762532711, -0.005743343848735094, -0.07749535888433456, -0.030052905902266502, -0.04397839307785034, -0.0430154949426651, -0.048896707594394684, -0.026156160980463028, -0.01948103867471218, 0.00933191366493702, -0.043129559606313705, -5.427419091574848e-05, -0.01966472528874874, 0.015100746415555477, 0.017899291589856148, -0.03496192395687103, 0.01889171078801155, -0.025574984028935432, -0.02042923867702484, -0.013955431990325451, 0.01478919293731451, -0.04637898504734039, -0.08717620372772217, -0.02356860600411892, -0.034698277711868286, -0.031002163887023926, 0.028024347499012947, -0.07913025468587875, -0.02211880311369896, -0.003685644594952464, 0.004828186705708504, 0.006462542340159416, 0.03098287247121334, -0.022592974826693535, -0.04692979156970978, 0.015338992699980736, 0.023610375821590424, 0.03637819364666939, -0.05425136163830757, -0.03351578488945961, -0.009661179967224598, 0.016820602118968964, 0.02527584694325924, 0.047195181250572205, 0.0028098635375499725, -0.04553105682134628, 0.01811799220740795, -0.07619626820087433, 0.01774562895298004, -0.010215929709374905, 0.04283033683896065, -0.0019018301973119378, 0.03203526884317398, 0.03693122789263725, -0.06251518428325653, -0.03224208950996399, -0.021646864712238312, 0.05168304964900017, 0.02888992615044117, 0.049873240292072296, 0.007642378099262714, 0.0038513040635734797, 0.03481297940015793, 0.0343790240585804, 0.0698188990354538, 0.010939263738691807, 0.01975635625422001, 0.022303760051727295, -0.016450421884655952, -0.014037777669727802, -0.05529443174600601, -0.04504020884633064, -0.008786928839981556, -0.020196350291371346, 0.023581573739647865, 0.035863108932971954, 0.08938207477331161, -0.003622537711635232, -0.003904099576175213, -0.040209271013736725, -0.009640788659453392, -0.017578573897480965, -0.019499965012073517, -0.03098321333527565, -0.0014854817418381572, 3.4592107112985104e-05, 0.015502061694860458, 0.0057707903906702995, -0.08143111318349838, -0.04301564767956734, 0.013457387685775757, 0.039837077260017395, 0.032371100038290024, 0.013552764430642128, 0.010523942299187183, -0.017573710530996323, -0.057076167315244675, -0.030497409403324127, -0.05533406883478165, -0.015824684873223305, -0.009345466271042824, 0.012930724769830704, -0.035155657678842545, -0.04142025485634804, 0.01046100351959467, -0.02487911470234394, -0.020177507773041725, -0.003957371227443218, -0.07872699946165085, 0.05223113298416138, -0.008947571739554405, -0.007405210752040148, -0.038515519350767136, -0.006391835864633322, -0.01735871098935604, -0.012422270141541958, 0.007406564895063639, -0.025827763602137566, 0.004134812392294407, 0.010005167685449123, -0.01921309530735016, -0.00474365521222353, 0.019373353570699692, -0.02552771382033825, 0.022790828719735146, 0.024622347205877304, -0.037341926246881485, -0.012317151762545109, 0.034720081835985184, 2.7477520347929385e-07, -0.005019227508455515, 0.05401031672954559, 0.01078762486577034, -0.02578120492398739, -0.012909199111163616, -0.027087746188044548, -0.003991986624896526, -0.00578252924606204, -0.020148057490587234, 0.007860051468014717, 0.05842979624867439, 0.026185162365436554, -0.021617425605654716, 0.0203112605959177, -0.013623605482280254, -0.02483481541275978, 0.019388429820537567, -0.038611263036727905, -0.02337268739938736, -0.029964735731482506, 0.049766987562179565, 0.04106074944138527, 0.050006203353405, 0.01253104954957962, -0.028338337317109108, 0.001375994528643787, -0.026427743956446648, -0.05042765289545059, 0.0260765478014946, -0.017381640151143074, 0.06537412852048874, 0.07433881610631943, -0.02830379828810692, -0.07894362509250641, -0.0020660085137933493, 0.007379119284451008, -0.004728289321064949, 0.0018305880948901176, 0.04058738052845001, 0.017925579100847244, 0.023583222180604935, -0.017663046717643738, -0.028424249961972237, -0.029181474819779396, 0.030612044036388397, 0.07735724002122879, 0.039025112986564636, 0.07957412302494049, -0.04338502511382103, -0.01927642710506916, -0.009960399009287357, 0.01823032647371292, 0.013866950757801533, 0.028951125219464302, -0.011809337884187698, -0.03905114531517029, -0.0031967286486178637, -0.019921669736504555, 0.023649316281080246, 0.03197399154305458, -0.056396402418613434, 0.0005064056604169309, 0.0029842699877917767, 0.04505781829357147, 0.00736579205840826, -0.018496030941605568, -0.030271653085947037, 2.848329341217946e-34, 0.040358759462833405, -0.08228551596403122, 0.01002239715307951, -0.08020251244306564, -0.003219028702005744, -0.0060581318102777, 0.01494293101131916, 0.0068033370189368725, 0.010252171196043491, -0.09289346635341644, -0.04654189199209213], "23e852e5-02c3-408e-999f-c6fdea194a32": [0.02721164934337139, -0.03590574860572815, -0.035635244101285934, 0.050563979893922806, -0.05130508914589882, -0.005776022095233202, -0.007897117175161839, 0.0614301972091198, 0.0392741896212101, 0.022724296897649765, -0.08974611014127731, -0.0066244956105947495, 0.014204878360033035, 0.04466455057263374, -0.007838642224669456, -0.001653322484344244, 0.05278073623776436, -0.0007358557195402682, -0.004124615341424942, -0.002053134609013796, -0.024212798103690147, -0.0033520532306283712, -0.04184730723500252, 0.01082813460379839, 0.03986511006951332, -0.03337747976183891, -0.06058678776025772, -0.015000667423009872, 0.015466722659766674, 0.0188913457095623, 0.004219693131744862, 0.04200449213385582, 0.01558065228164196, 0.027008555829524994, 2.1165667476452654e-06, 0.03112257644534111, -0.058276984840631485, -0.018702637404203415, -0.05308958888053894, -0.03702947124838829, 0.003271465888246894, 0.027599768713116646, -0.02258036658167839, 0.0006023747846484184, -0.023331988602876663, 0.025616120547056198, -0.004591898526996374, 0.03791503980755806, -0.08513517677783966, 0.03481274098157883, 0.009580407291650772, 0.023290539160370827, 0.014387615956366062, -0.011222081258893013, 0.07969840615987778, -0.06464096158742905, -0.009397455491125584, 0.06027675047516823, 0.06032665818929672, -0.03667274862527847, 0.05044086277484894, 0.012623803690075874, -0.037008967250585556, -0.01961652562022209, 0.0916280746459961, 0.034100230783224106, -0.07666639238595963, -0.08331537246704102, -0.021232828497886658, -0.0010977790225297213, 0.07402259856462479, -0.01813746616244316, 0.01885734684765339, 0.024298343807458878, -0.03103066422045231, 0.016255389899015427, -0.005463885143399239, -0.010793708264827728, 0.016709662973880768, -0.0006996220909059048, 0.00461330683901906, -0.040839631110429764, 0.019589217379689217, 0.02178294211626053, 0.09383508563041687, -0.011614703573286533, -0.005824950058013201, -0.06186217442154884, -0.021066147834062576, -0.01671646349132061, 0.006273400038480759, 0.019944079220294952, 0.04075240716338158, 0.015213008970022202, 0.006472176406532526, -0.0407111831009388, 0.019660795107483864, 0.0034251150209456682, 0.02209942601621151, 0.006147405132651329, -0.012844639830291271, 0.0018642471404746175, 0.03974512964487076, -0.0040239933878183365, 0.04219558835029602, 0.008466520346701145, 0.022252822294831276, -0.0070011247880756855, -0.07285407930612564, 0.09174598008394241, 0.003930813632905483, 0.02626105770468712, -0.026173539459705353, -0.07253208011388779, -0.04004321247339249, -0.035233452916145325, -0.0062640514224767685, 0.012135054916143417, 0.003579298499971628, 0.025355001911520958, 0.02339845709502697, 0.02680918201804161, -0.034859154373407364, 0.01060805656015873, -0.027341652661561966, -0.08802076429128647, 0.02977116033434868, -0.031794775277376175, -0.04380546882748604, -0.034038253128528595, 0.0010334543185308576, 0.043435029685497284, 0.03605938330292702, 0.050054293125867844, -0.05544649809598923, 0.11486130207777023, -0.012752116657793522, -0.006139223929494619, 0.03306909650564194, -0.018404336646199226, -0.0010631103068590164, 0.022445209324359894, 0.016212552785873413, 0.03579854220151901, 0.05947631970047951, -0.0171299297362566, -0.023044945672154427, 0.05098145827651024, 0.04279172793030739, 0.029119404032826424, -0.01557812187820673, 0.04012696072459221, 0.011720745824277401, 0.045715104788541794, 0.08408554643392563, -0.0049092723056674, -0.05531593784689903, -0.0012215393362566829, 0.009214676916599274, 0.030833257362246513, 0.009956681169569492, 0.05091331526637077, 0.043825913220644, -0.012266789563000202, -0.00114708102773875, -0.0290933009237051, 0.06842401623725891, 0.0272834375500679, 0.027474114671349525, 0.03223835676908493, -0.10928810387849808, -0.03365086019039154, -0.02012578584253788, 0.027544114738702774, -0.036233507096767426, 0.03093663603067398, 0.052081771194934845, 0.016680236905813217, -0.03251313790678978, -0.0294092558324337, -0.07716142386198044, -0.03286103904247284, -0.03686298057436943, 0.03779075667262077, -0.05932559445500374, -0.03841877728700638, 0.06656883656978607, -0.07385285198688507, 0.03816615790128708, -0.024381587281823158, 0.005514464806765318, 0.02378966473042965, 0.029485782608389854, -0.022942692041397095, -0.017279408872127533, -0.03803502768278122, -0.07378533482551575, -0.026903469115495682, -0.010728929191827774, -0.005879687611013651, -0.0037718056701123714, -0.03213367238640785, 0.021526191383600235, 0.09666559845209122, 0.06521645188331604, -0.0006299951346591115, 0.016446510329842567, 0.019985908642411232, -0.04633302986621857, -0.029202667996287346, 0.07227344810962677, -0.01747601106762886, 0.01656762696802616, -0.017692938446998596, -0.028368107974529266, 0.02558846026659012, -0.023835886269807816, -0.0380685031414032, 0.05080009624361992, -0.0038377754390239716, -0.0007068475242704153, -0.07228441536426544, -0.025944164022803307, 0.0020212905947118998, 0.02610376849770546, -0.07035496830940247, -0.08411037176847458, 0.04653589427471161, 0.06925860792398453, -0.011113153770565987, 0.001439563580788672, 7.018497854005545e-05, 0.018605051562190056, 0.0028364071622490883, 0.01719205267727375, -0.03645244613289833, -0.0380336195230484, -0.02855105884373188, -0.006835294421762228, -0.05046301707625389, -0.019512653350830078, 0.030016085132956505, 0.016822852194309235, 0.020143184810876846, 0.0040193526074290276, 0.060137830674648285, 0.009477244690060616, -0.022318795323371887, 0.03486809879541397, 0.04624411463737488, 0.006293626967817545, 5.420123125077225e-05, 0.07463371008634567, -0.00984024815261364, -0.01914318837225437, 0.027629230171442032, -0.02436056174337864, 0.003438313491642475, -0.07585745304822922, 0.07195284217596054, -0.02907571569085121, -0.007546493783593178, 0.010783446952700615, -0.017057370394468307, 0.03266817703843117, 0.010716545395553112, -0.013440954498946667, -0.0695415511727333, -0.0461251325905323, -0.013889828696846962, -0.009655259549617767, 0.017095237970352173, -0.0019767277408391237, -0.017638491466641426, 0.03000587411224842, 0.001161595806479454, -0.004697421099990606, -0.03889435902237892, -0.03456437215209007, -0.01763288676738739, -0.005423189606517553, -0.02613660879433155, -0.054469745606184006, 0.003182634012773633, -0.024687349796295166, -0.053375840187072754, 0.01438477449119091, -0.08648981899023056, -0.015276575461030006, -0.023578524589538574, 0.01350607443600893, 0.003679190296679735, 0.037640105932950974, -0.05689897760748863, -0.02132827788591385, -0.005771464202553034, 0.024754410609602928, 0.009525260888040066, -0.023457791656255722, 0.032181382179260254, 0.06452388316392899, 0.012849237769842148, -0.005749514326453209, 0.007545904256403446, -0.0014743561623618007, 0.055399782955646515, 0.03357041999697685, -0.08787445724010468, 0.011045467108488083, -0.052685752511024475, 0.04187677055597305, 0.024164829403162003, -0.0012854068772867322, -0.010949302464723587, 0.015889210626482964, -0.007894369773566723, -0.03322695568203926, 0.03984071686863899, -0.010355641134083271, 0.08018260449171066, -0.013306890614330769, -0.02044987864792347, -0.02736976556479931, -0.0018689557909965515, 0.005861567333340645, -0.04708543047308922, -0.0245980117470026, 0.016464153304696083, 0.0008574500097893178, -0.004070159513503313, 0.048316217958927155, -0.053700968623161316, 0.005970600992441177, 0.005212357267737389, -0.03549567610025406, 0.036620430648326874, -0.007950765080749989, 0.01448763720691204, 0.017495762556791306, -0.004185679368674755, -0.008976299315690994, 0.029907235875725746, -0.026561306789517403, 0.014885184355080128, -0.027523506432771683, -0.0077356393449008465, -0.020499631762504578, 0.007343234959989786, -0.11722209304571152, 0.04107576236128807, -0.004883624147623777, 0.021160271018743515, -0.001122838817536831, -0.008921614848077297, -0.0040381355211138725, -0.013218405656516552, -0.009515044279396534, 0.06466203927993774, -0.00027171714464202523, 0.00947616808116436, -0.0073785497806966305, -0.006637894082814455, -0.03919418901205063, 0.05757278949022293, 0.023470884189009666, 0.013298646546900272, -0.007092749234288931, 0.008067683316767216, 0.03285418823361397, 0.008455815725028515, -0.05242545157670975, 0.016603540629148483, 0.007990456186234951, 0.010430987924337387, 0.020216092467308044, -0.0505276657640934, -0.010227188467979431, -0.1007029190659523, 0.003911464009433985, -0.07536673545837402, -0.0034887187648564577, -0.01999177411198616, 0.010727054439485073, 0.02307002805173397, 0.04136079549789429, 0.003100283443927765, 0.02391635999083519, -0.004724008496850729, 0.07996682822704315, 0.0062095606699585915, 0.014350760728120804, -0.019206766039133072, -0.03740743547677994, -0.008663000538945198, -0.030048567801713943, -0.014716880396008492, 0.030561426654458046, 0.02305646240711212, -0.018396945670247078, -0.0023427517153322697, -0.05319725722074509, 0.01644207537174225, 0.04827217385172844, 0.027155771851539612, 0.020485596731305122, 0.03791244328022003, 0.026498401537537575, 0.07164978235960007, 0.050874870270490646, 0.04288727045059204, -0.026538141071796417, 0.049688663333654404, 0.019648142158985138, -0.013837344944477081, -0.026240305975079536, -0.01285499520599842, 0.030144227668642998, 0.0034013709519058466, 0.03267766907811165, -0.003350555896759033, -0.054712604731321335, 0.05279851704835892, 0.03245745971798897, -0.020248891785740852, 0.035084761679172516, -0.016111698001623154, 0.12632213532924652, 0.05345730856060982, 0.05224018543958664, -0.040561698377132416, 0.07819618284702301, -0.019130868837237358, -0.02169487066566944, 0.04715908691287041, 0.04243500530719757, 0.02306423895061016, 0.011619707569479942, -0.04703348129987717, -0.027490582317113876, -0.019880667328834534, 0.020752431824803352, -0.0068316650576889515, 0.003406454110518098, 0.005562157370150089, 0.0010053371079266071, 0.02819574624300003, 0.06596460193395615, 0.023335875943303108, -0.024066133424639702, -0.047673940658569336, -0.030584560707211494, -0.06571105122566223, -0.06084449961781502, -0.011167528107762337, -0.04104485735297203, 0.014796707779169083, 0.04002124071121216, 0.07767070829868317, -0.000890315801370889, -0.0096996258944273, -0.0331762321293354, 0.01982533372938633, 0.03050905279815197, 0.024256832897663116, 0.06964563578367233, -0.055559683591127396, -0.06643296033143997, 0.0007349306251853704, -0.007082625292241573, 0.03198042884469032, 0.05141053348779678, 0.02802819386124611, 0.03709080442786217, -0.048209406435489655, 0.04979829117655754, -0.0762384757399559, 0.021598929539322853, -0.04075069725513458, -0.017581820487976074, -0.013216949068009853, 0.005444812122732401, -0.05359688028693199, 0.015548387542366982, -0.028371717780828476, -0.034899115562438965, 0.06024762988090515, -0.009600484743714333, 0.0044810292311012745, 0.009963368065655231, -0.0703921914100647, 0.025329651311039925, -0.01922956295311451, -0.012692786753177643, -0.007622705306857824, -0.0659545511007309, -0.0031088038813322783, 0.047410812228918076, 0.00849108211696148, 0.036739449948072433, -0.0482669398188591, 0.020763248205184937, -0.01963730715215206, 0.013369106687605381, 0.06996576488018036, -0.062449198216199875, -0.02263168804347515, -0.0013033361174166203, 0.03166056051850319, -0.027350783348083496, -0.0027591409161686897, -0.05593444034457207, -0.006784643512219191, -0.015377705916762352, -0.047986775636672974, 0.0573359914124012, 0.00409501139074564, -0.04467492550611496, -0.021903518587350845, -0.016445908695459366, -0.018555322661995888, -0.003951089456677437, -0.011098246090114117, 0.03616883605718613, -0.011616489849984646, -0.0016727637266740203, 0.009968874976038933, 0.018959514796733856, 0.03117750585079193, 0.013749351724982262, 0.03599383682012558, -0.025916723534464836, -0.029066072776913643, 0.04799387976527214, -0.03098602592945099, -0.04431384801864624, -0.01466517336666584, -0.016128504648804665, -0.006194758228957653, 0.025511769577860832, -0.017453202977776527, 0.055765505880117416, 0.005646429490298033, 0.021802131086587906, 0.016339363530278206, -0.03838682919740677, -0.013616158626973629, 0.0337432399392128, 0.03135988861322403, -0.019994700327515602, -0.06947796046733856, -0.015794800594449043, 0.026439238339662552, 0.03424298018217087, 0.04865110293030739, -0.017162950709462166, -6.128731834889778e-33, -0.03590849041938782, -0.058315616101026535, 0.025206655263900757, 0.0013055959716439247, 0.05262836441397667, -0.07191832363605499, 0.011329752393066883, -0.024847744032740593, -0.047418199479579926, -0.049975357949733734, 0.01550666056573391, -0.0025668570306152105, 0.019211972132325172, -0.007872392423450947, 0.023391827940940857, -0.015014457516372204, 0.022600488737225533, -0.0256305281072855, -0.010370694100856781, -0.023749861866235733, -0.04915059730410576, -0.008508535102009773, -0.03903317078948021, 0.03331609442830086, -0.07855025678873062, -0.06793883442878723, -0.00900460034608841, 0.00606246804818511, 0.00747936125844717, -0.02817608416080475, -0.07805000245571136, -0.019556939601898193, -0.023457342758774757, 0.030861666426062584, 0.05330271273851395, 0.06186702847480774, -0.057318225502967834, -0.010254396125674248, -0.006973406299948692, 0.016042057424783707, 0.07069563120603561, -0.05149290710687637, -0.03240286558866501, -0.006868983153253794, 0.0135731166228652, 0.024851933121681213, -0.0011909371241927147, 0.00911651086062193, -0.03451863303780556, 0.10429840534925461, -0.07459994405508041, 0.004364077001810074, -0.024869175627827644, 0.005752654280513525, 0.02851213701069355, -0.010208808816969395, 0.022968672215938568, -0.10255488008260727, -0.05400671064853668, 0.005220161285251379, 0.02116667665541172, -0.0028087571263313293, 0.05579245463013649, -0.014040165580809116, -0.013749565929174423, 0.0437985397875309, 0.04245186969637871, 0.04806157574057579, 0.001409087679348886, -0.024707576259970665, -0.018047183752059937, -0.0035799238830804825, -0.018765173852443695, -0.05751108378171921, -0.008449744433164597, 0.04256962239742279, -0.0010178377851843834, 0.002880556508898735, 0.011435522697865963, 0.006622839253395796, 0.01852072775363922, 0.03169238194823265, -0.0286034494638443, 0.005374893080443144, 0.0331072136759758, 0.0004219736729282886, 0.0057941703125834465, -0.046805620193481445, 0.004239505622535944, 0.040271759033203125, -0.0112564442679286, -0.046098414808511734, -0.04747611656785011, 0.03267524763941765, -0.0012620668858289719, 0.027977604418992996, 0.06641371548175812, -0.035995397716760635, -0.02932058461010456, -0.0039481427520513535, -0.047717683017253876, -0.04900979995727539, -0.008614380843937397, 0.00434414017945528, 0.003753185970708728, -0.009718257002532482, -0.04588394612073898, 0.027689777314662933, 0.020221497863531113, 0.01241196971386671, 0.014920726418495178, -0.054845426231622696, 0.030179684981703758, -0.029107175767421722, 0.03517697751522064, -0.049137793481349945, -0.010828619822859764, -0.011796816252171993, 0.008443242870271206, 0.05241784080862999, 0.009120579808950424, -0.06277026981115341, 0.005757268983870745, -0.001653241110034287, -0.046722203493118286, 0.03549821674823761, -0.05164869874715805, -0.0411120168864727, 0.04963958263397217, -0.014470001682639122, 0.016977032646536827, -0.025139430537819862, 2.834823646935547e-07, 0.007691030390560627, 0.014532738365232944, -0.0283766258507967, -0.01723373308777809, -0.0345933772623539, -0.051503974944353104, -0.016769343987107277, -0.0024640276096761227, -0.015057294629514217, 0.011678863316774368, 0.04277759790420532, 0.018514083698391914, 0.005308127962052822, 0.025824371725320816, 0.027252305299043655, 0.0016327700577676296, -0.045809973031282425, -0.0007154167396947742, -0.018321925774216652, 0.003711351891979575, 0.001445034984499216, 0.058874256908893585, 0.03417082503437996, 0.016851430758833885, -0.03033367730677128, -0.03498465195298195, -0.038461241871118546, -0.06661594659090042, -0.017428196966648102, 0.029519200325012207, 0.025654643774032593, 0.066534623503685, -0.02382141910493374, -0.07014220207929611, -0.040035348385572433, -0.02496354840695858, 0.010802646167576313, 0.03549092635512352, 0.003566574305295944, 0.014405367895960808, 0.048132505267858505, -0.03463016822934151, -0.017595160752534866, 0.03772042319178581, 0.04018828272819519, 0.004015165381133556, 0.03945596143603325, 0.03365299478173256, -0.0013357045827433467, -0.004635130986571312, 0.0075620925053954124, 0.030881915241479874, 0.056392766535282135, 0.03391590341925621, -0.007124683354049921, -0.009025182574987411, -0.011678706854581833, -0.008154145441949368, 0.004534400999546051, 0.028529994189739227, -0.03311857581138611, 0.008733582682907581, -0.018798941746354103, -0.04042315483093262, 0.0072201150469481945, 0.009312202222645283, -0.025014419108629227, 2.5725696163633166e-34, 0.024166416376829147, -0.0018047945341095328, -0.023912757635116577, 0.024910353124141693, 0.018596386536955833, -0.01300845667719841, 0.06400757282972336, 0.018172133713960648, 0.025913236662745476, -0.018051574006676674, -0.014013237319886684], "2219935e-cd84-4325-9c68-e9f3c2e61faa": [0.005803488194942474, 0.008295739069581032, -0.06645901501178741, 0.0066068354062736034, 0.008165447972714901, 0.038768935948610306, 0.023666659370064735, 0.030880821868777275, 0.02110505849123001, 0.00748171703889966, 0.03719911724328995, 0.03485799953341484, -0.006352555472403765, 0.0662166103720665, 0.008309152908623219, -0.026985328644514084, 0.051930274814367294, 0.03749875724315643, -0.02761991135776043, -0.009604866616427898, -0.028405601158738136, 0.024907246232032776, 1.663630064285826e-05, 0.01810700073838234, 0.06801929324865341, -0.004569117445498705, -0.028056688606739044, 0.004225197713822126, 0.036792509257793427, 0.0033885580487549305, 0.01321904081851244, 0.039503272622823715, -0.02432914450764656, -0.01694849692285061, 2.489557573426282e-06, -0.026646794751286507, -0.0394725576043129, -0.02252933941781521, -0.06112480163574219, -0.0021090488880872726, -0.00746262026950717, 0.021322565153241158, -0.030135054141283035, 0.018171658739447594, 0.02323819138109684, 0.019605398178100586, 0.027138302102684975, 0.009497965686023235, -0.03474734351038933, -0.007345070596784353, 0.02598385140299797, -0.00492889666929841, 0.020302478224039078, 0.0011035352945327759, 0.08189573138952255, 0.02437441237270832, -0.018890822306275368, -0.0050216862000525, 0.056758806109428406, -0.0007900006021372974, 0.005622467491775751, 0.03281515836715698, 0.01734279654920101, 0.009937059134244919, 0.059436507523059845, 0.035552557557821274, 0.05223189666867256, -0.11930771917104721, 0.026812028139829636, 0.0377986915409565, 0.11066839098930359, -0.011547244153916836, -0.0024791632313281298, 0.05956397205591202, -0.04058975726366043, 0.02775679901242256, 0.033336341381073, 0.011928379535675049, -0.01744910143315792, -0.002992713823914528, 0.025542002171278, -0.03165975585579872, -0.009646381251513958, 0.024095410481095314, -0.015647834166884422, 0.03442821651697159, 0.010015146806836128, -0.05930321291089058, 0.05020418018102646, -0.041207607835531235, 0.02587057836353779, 0.011990483850240707, -0.0041427006945014, 0.007678868714720011, 0.027941910549998283, -0.032038889825344086, 0.035633429884910583, -0.05573808774352074, 0.04125635698437691, 0.021511461585760117, -0.0036078898701816797, 0.05097784101963043, 0.015682488679885864, 0.008756170980632305, 0.02980012260377407, 0.04507717117667198, -0.009861376136541367, -0.038133904337882996, -0.023731717839837074, 0.049978215247392654, 0.004488787148147821, -0.009159449487924576, -0.0043246690183877945, -0.02008511871099472, -0.028906313702464104, -0.013298607431352139, -0.037225183099508286, 0.044063009321689606, -0.037572868168354034, 0.025348611176013947, 0.011928089894354343, -0.013697697781026363, -0.07202252000570297, 0.02657272294163704, 0.0016798636643216014, -0.034366291016340256, 0.0024589011445641518, -0.02806493267416954, -0.03389729931950569, -0.06123056262731552, -0.023720158264040947, -0.007586199324578047, -0.015224493108689785, -0.00036352899041958153, 0.006222114898264408, 0.0440174899995327, 0.07140703499317169, -0.04170998930931091, 0.04070701450109482, -0.011393911205232143, 0.007287425454705954, 0.05156848952174187, 0.017375027760863304, -0.013102847151458263, 0.03503606095910072, -0.016200002282857895, 0.027750495821237564, -4.361507308203727e-05, -0.005593572277575731, 0.009670151397585869, -0.012588824145495892, 0.02577264793217182, 0.008705375716090202, 0.0021116347052156925, 0.07500118017196655, 0.04847794771194458, -0.011577315628528595, 0.009892127476632595, 0.016193361952900887, -0.011920367367565632, 0.02895873412489891, 0.05832262337207794, 0.0002943633298855275, -0.02203477919101715, 0.012244172394275665, 0.010017022490501404, 0.04186840355396271, 0.0158851221203804, -0.016507182270288467, 0.017352480441331863, -0.024451659992337227, 0.0414309948682785, -0.006961450446397066, 0.017597835510969162, -0.044276513159275055, 0.01819527894258499, 0.04033097252249718, 0.041333526372909546, -0.03950200974941254, 0.016801295801997185, -0.01000165194272995, -0.025362713262438774, -0.019905364140868187, -6.610964192077518e-05, -0.03689602389931679, -0.008625687099993229, 0.011882508173584938, -0.019025932997465134, -0.017492542043328285, -0.0051266769878566265, 0.02777978405356407, 0.00871504656970501, 0.04126103222370148, -0.053014472126960754, 0.015428891405463219, -0.021283363923430443, -0.03371863067150116, -0.07309429347515106, -5.142576992511749e-05, -0.05960473790764809, 0.03861444815993309, -0.045706409960985184, 0.03386013209819794, 0.0739576444029808, 0.03218618035316467, -0.053901929408311844, -0.02958689257502556, -0.002144130179658532, 0.005484960973262787, 0.05986248701810837, 0.025848764926195145, -0.01092594675719738, -0.02492021955549717, -0.023764969781041145, -0.05752997845411301, -0.032186198979616165, -0.017571961507201195, -0.013356046751141548, -0.007582064718008041, 0.05654824525117874, -0.023848455399274826, -0.07843070477247238, -0.0399114266037941, 0.02153237722814083, 0.017485415562987328, -0.00331498752348125, -0.04350752383470535, 0.05397955700755119, 0.01381471287459135, 0.033509086817502975, -0.05203000456094742, 0.008064075373113155, -0.02852747216820717, 0.01659480296075344, -0.041633691638708115, -0.0500183179974556, -0.019799288362264633, 0.03851531445980072, 0.028145799413323402, -0.1632279008626938, 0.022096915170550346, 0.08292168378829956, 0.015995128080248833, 0.0304437056183815, -0.00313234212808311, 0.022937653586268425, 0.005407692398875952, 0.0008917363593354821, 0.02307955175638199, 0.050758376717567444, 0.02139239013195038, -0.020529715344309807, 0.02215304970741272, -0.018049539998173714, -0.01893610693514347, 0.05668621137738228, -0.08223751932382584, -0.016521157696843147, -0.044696420431137085, 0.03726601228117943, 0.05619977414608002, 0.03520672023296356, 0.014879911206662655, 0.030609486624598503, 0.05766943469643593, -0.006050818599760532, -0.0035777511075139046, -0.06787413358688354, -0.019429156556725502, 0.003867404768243432, 0.0067152297124266624, 0.012406053021550179, 0.012368242256343365, -0.012834994122385979, 0.05245613306760788, 0.009450987912714481, -0.00517136137932539, 0.01625140942633152, -0.043081749230623245, -0.028502129018306732, 0.009859113954007626, -0.02120424248278141, -0.02208412066102028, -0.008023812435567379, -0.03063170611858368, -0.006877891719341278, -0.006441387813538313, -0.07252869755029678, -0.02561662718653679, 0.0220778901129961, -0.0039048027247190475, 0.011454986408352852, 0.02224464900791645, -0.008897491730749607, -0.023116011172533035, 0.02345690131187439, 0.022062325850129128, -0.011205780319869518, -0.006132703740149736, 0.10191565006971359, 0.01969928666949272, -0.021106692031025887, -0.05300469323992729, 0.03140920028090477, 0.015404569916427135, 0.05496776103973389, 0.03621122986078262, -0.04876940697431564, 0.0003698814834933728, -0.05080198124051094, -0.007114574778825045, 0.008622412569820881, -0.059166476130485535, -0.00795029941946268, -0.03480013087391853, -0.04751714691519737, -0.06462734937667847, -0.054492272436618805, -0.016052108258008957, 0.040509674698114395, -0.021889466792345047, -0.03631711006164551, 0.001949411234818399, 0.023934662342071533, 0.04014502838253975, -0.13001377880573273, 0.01784244179725647, -0.0065472726710140705, 0.0536615327000618, -0.048074040561914444, 0.029898446053266525, -0.01948607712984085, -0.0047744340263307095, -0.0596475824713707, 0.05529133602976799, 0.0056928847916424274, -0.024415014311671257, 0.04091378301382065, -0.041349876672029495, -0.019241513684391975, -0.03667549416422844, 0.05583959445357323, -0.05058738589286804, 0.05856606736779213, 0.03606488183140755, -0.00864969938993454, -0.02659221924841404, -0.0019509453559294343, -0.0815579816699028, -0.012260865420103073, 0.04646635428071022, 0.033688489347696304, 0.03524002432823181, -0.01690346747636795, 0.014798128046095371, -0.06318512558937073, 0.02261279709637165, 0.0041374280117452145, -0.0038973831105977297, -0.06460718810558319, 0.08661022782325745, 0.03752882778644562, -0.04117249697446823, 0.004716864787042141, 0.06496395170688629, -0.0016116834012791514, 0.0502120703458786, -0.04153938218951225, 0.027979552745819092, 0.016060244292020798, -0.03777623549103737, 0.007195019628852606, -0.02756168134510517, 0.08621846139431, 0.003099014749750495, -0.06204826757311821, -0.0071601588279008865, -0.03365040570497513, 0.0314415842294693, -0.04907645285129547, -0.018178466707468033, -0.08823845535516739, 0.07304218411445618, 0.0088114682585001, 0.029183756560087204, -0.01313685905188322, 0.02581039071083069, 0.009125147946178913, 0.03827597200870514, -0.011250926181674004, 0.014983126893639565, -0.07713962346315384, -0.054552167654037476, 0.04333499073982239, -0.02925373613834381, 0.06600193679332733, 0.053786084055900574, -0.019351240247488022, 0.004450991749763489, 0.04132215678691864, -0.01352392602711916, 0.03447526693344116, -0.022746626287698746, 0.00029651453951373696, -0.029872674494981766, 0.0040933010168373585, 0.0440438874065876, 0.02735026925802231, -0.0209937896579504, -0.0036004637368023396, 0.06870792806148529, -0.019324632361531258, -0.013196861371397972, -0.021279148757457733, 0.014763163402676582, -0.062087032943964005, 0.013850335031747818, -0.06781841814517975, 0.024085072800517082, 0.009358242154121399, -0.045318346470594406, 0.036630623042583466, 0.033735327422618866, -0.05445275455713272, -0.006112305447459221, -0.05098966881632805, 0.024577653035521507, -0.013193067163228989, 0.04137791320681572, -0.008590025827288628, 0.012007609009742737, 0.020261621102690697, -0.04248766973614693, 0.04455399140715599, 0.00842888280749321, -0.032846011221408844, 0.027954110875725746, -0.038595400750637054, -0.06385547667741776, -0.01535079162567854, -0.04614447429776192, 0.002690967172384262, 0.0508672371506691, 0.0453086793422699, -0.08060567080974579, 0.013275416567921638, -0.0011086626909673214, -0.016042493283748627, -0.038098469376564026, -0.08232761174440384, 0.02060347981750965, -0.039365001022815704, -0.06722261011600494, -0.03449082374572754, 0.00764089310541749, -5.962260274827713e-06, -0.0577501505613327, 0.09857672452926636, -0.02513403445482254, 0.03272567316889763, 0.042039867490530014, 0.05638393014669418, -0.012991598807275295, -0.005153950769454241, 0.004711915273219347, 0.04805250093340874, 0.019300758838653564, -0.01242371927946806, 0.033742327243089676, -0.010464722290635109, -0.011409694328904152, -0.021885113790631294, 0.0037592179141938686, -0.03544502705335617, 0.018937556073069572, -0.06107325851917267, 0.01436774805188179, 0.040065646171569824, -0.059860412031412125, -0.005342327989637852, 0.0007281478028744459, -0.034294821321964264, -0.022555988281965256, -0.026788663119077682, -0.039425209164619446, 0.022932620719075203, -0.02461613342165947, 0.014202338643372059, 0.009358671493828297, -0.029907898977398872, 0.02393329329788685, 0.015729069709777832, -0.00994500145316124, 0.00986716989427805, 0.024479271844029427, 0.0033415600191801786, -0.04856257513165474, 0.07428034394979477, -0.03511521965265274, 0.0812217965722084, -0.01141112856566906, -0.0401947945356369, -0.024295808747410774, 0.07358558475971222, -0.05476649850606918, 0.00910230353474617, 0.012084879912436008, 0.055493589490652084, 0.02086223103106022, -0.0032952665351331234, -0.0187528058886528, 0.03589572384953499, -0.030457116663455963, -0.07616904377937317, 0.044851239770650864, -0.00984169915318489, 0.00993756577372551, 0.029245499521493912, 0.015711240470409393, 0.004912644159048796, 0.0005265228683128953, 0.0016959013883024454, 0.018665215000510216, 0.0004716111870948225, 0.038666024804115295, 0.024639511480927467, 0.009041745215654373, 0.04349160194396973, -0.03060661070048809, 0.0093825189396739, -0.04232414811849594, 0.026687966659665108, 0.006817911751568317, 0.018179813399910927, -0.03321677818894386, -0.05887468531727791, -0.01756782829761505, 0.015694303438067436, -0.007372577209025621, -0.0033561955206096172, -0.015211113728582859, -0.03227662295103073, 0.017049212008714676, 0.046185243874788284, -0.0023099498357623816, -0.02186795324087143, 0.02552461251616478, 0.02381259575486183, 0.003910180646926165, -0.09021276980638504, 0.03046012669801712, -0.030695946887135506, -0.050989601761102676, 0.02207919955253601, 0.02120918221771717, -6.453303824909059e-33, -0.022069556638598442, -0.013240205124020576, -0.011596559546887875, 0.043293654918670654, 0.0026318710297346115, -0.058765482157468796, 0.009748025797307491, -0.036046333611011505, -0.050040554255247116, -0.05499694496393204, 0.0075925071723759174, 0.023412223905324936, 0.014901372604072094, -0.022221194580197334, -0.013881812803447247, -0.019747354090213776, 0.00500240596011281, 0.03906181827187538, -0.030378101393580437, 0.0015874541131779552, -0.07686768472194672, -0.03481801971793175, 0.00015544451889581978, 0.006424712482839823, 0.019766297191381454, -0.031552426517009735, -0.0015481492737308145, -0.01529405266046524, -0.027896583080291748, 0.005983899347484112, -0.04238190874457359, -0.007500432897359133, 0.01052265428006649, -0.04423723369836807, 0.02783202938735485, 0.04996879771351814, -0.05064486339688301, -0.03363274037837982, -0.0011493468191474676, -0.0018676533363759518, 0.0027722094673663378, -0.09070274233818054, -0.007969808764755726, 0.03151935338973999, -0.04044029489159584, 0.0014073644997552037, 0.052256129682064056, 0.014978759922087193, 0.028916046023368835, 0.03351534903049469, -0.05241500586271286, 0.01592313125729561, -0.028970330953598022, 0.0753091350197792, -0.05031943321228027, 0.013942306861281395, 0.05495867133140564, -0.0833621546626091, -0.06362634152173996, -0.01343756727874279, 0.03363926336169243, -0.02424910105764866, 0.05412549152970314, 0.005830780137330294, -0.010545890778303146, 0.04693158343434334, 0.039916031062603, 0.07147751748561859, 0.0007876332383602858, 0.000973422487732023, 0.019647322595119476, 0.00017061132530216128, -0.01317477598786354, -0.06244790554046631, -0.05414598435163498, 0.01929079368710518, -0.06466913968324661, 0.08569928258657455, 0.04396679252386093, 0.07461223751306534, -0.010411308147013187, -0.016242820769548416, -0.09788446873426437, -0.006136258132755756, -0.005182518623769283, 0.005154977552592754, -0.03431638330221176, -0.0014390922151505947, 0.03883807733654976, -0.024878567084670067, -0.025432715192437172, -0.06422339379787445, -0.023983485996723175, 0.030384540557861328, 0.019408663734793663, 0.012455425225198269, 0.0226454921066761, -0.027385715395212173, -0.006903339177370071, -0.028112396597862244, -0.026776686310768127, -0.055608972907066345, -0.0033008449245244265, 0.03050093911588192, 0.01466338150203228, 0.010262400843203068, -0.05143784359097481, 0.01912873052060604, -0.05478149279952049, 0.01088161114603281, -0.02696654386818409, -0.038263969123363495, 0.05078929290175438, -0.0060914927162230015, 0.003730777883902192, -0.004445443395525217, 0.03039594739675522, -0.028252821415662766, -0.0024023198056966066, 0.021084627136588097, -0.032475780695676804, 0.0014220454031601548, 0.021098311990499496, 0.004740760661661625, -0.004238056018948555, 0.007268624845892191, -0.0032042968086898327, -0.0003722266701515764, 0.027712278068065643, -0.037439268082380295, -0.006212049629539251, -0.020129544660449028, 3.1873724992692587e-07, 0.010728498920798302, -0.011056624352931976, 0.05075652897357941, 0.010256168432533741, -0.02619428187608719, -0.04095249995589256, -0.019778408110141754, 0.013200907036662102, 0.017199430614709854, 0.007086917757987976, 0.052872736006975174, 0.052668504416942596, -0.021590203046798706, -0.017239885404706, 0.014546357095241547, -0.07603553682565689, -3.4130836866097525e-05, 0.020505391061306, -0.047587886452674866, 0.011714117601513863, 0.058906856924295425, 0.03457922115921974, 0.042587876319885254, 0.021932318806648254, -0.03502238914370537, 0.02660433016717434, -0.020292330533266068, -0.05741230025887489, 0.04685378074645996, 0.0026061953976750374, 0.056348059326410294, 0.04718983545899391, -0.012604583986103535, -0.05785055086016655, 0.026976220309734344, -0.003052754560485482, -0.01880129799246788, 0.04755799472332001, 0.02633107453584671, 0.07247243076562881, 0.025841420516371727, -0.049030691385269165, -0.01971658691763878, 0.014635490253567696, 0.031067613512277603, 0.07381908595561981, 0.02519834414124489, 0.05981922894716263, -0.052944108843803406, 0.0005364749231375754, 0.014474024064838886, 0.017087768763303757, 0.003232239978387952, -0.00522769708186388, -0.0016283780569210649, -0.04091298580169678, 0.02598707005381584, -0.023170124739408493, 0.04192296043038368, 0.0022507021203637123, -0.044936664402484894, -0.04350195825099945, -0.025092242285609245, 0.029902806505560875, 0.0032937831711024046, 0.005147770047187805, -0.045815788209438324, 3.6482194974076745e-34, 0.01598285138607025, -0.055849891155958176, 0.004535243380814791, -0.047529928386211395, 0.004312734119594097, -0.030305666849017143, 0.007323516067117453, -0.012749495916068554, 0.01608322001993656, -0.04485023766756058, -0.052587222307920456], "63f43023-e476-4c1a-ae99-c7774894fb2f": [0.023223649710416794, 0.04757535085082054, -0.03740116208791733, -0.01970231719315052, -0.006404264830052853, 0.033465661108493805, 0.05023163929581642, 0.018124984577298164, 0.024306664243340492, -0.007189290598034859, 0.06349711120128632, -0.0030841019470244646, -0.019727814942598343, 0.05744316428899765, -0.004746987484395504, -0.008973609656095505, 0.014051113277673721, 0.049460429698228836, -0.04559588059782982, -0.00449733529239893, -0.0005897702067159116, 0.017801441252231598, -0.020815307274460793, 0.065594382584095, -0.010179845616221428, 0.02250807173550129, -0.011470507830381393, 0.018828175961971283, 0.05525737628340721, 0.03126627579331398, 0.03130137920379639, 0.014786433428525925, -0.03473968058824539, -0.006918181199580431, 2.3220429739012616e-06, -0.025791844353079796, -0.01610730029642582, 0.015392793342471123, -0.0460534393787384, -0.04197828844189644, -0.004296021535992622, 0.004401013720780611, -0.055511247366666794, 0.03481640666723251, -0.0051265135407447815, -0.004483702126890421, 0.09291479736566544, -0.05197186768054962, -0.008519390597939491, -0.028130028396844864, -0.008483370766043663, 0.0588885098695755, -0.006988775450736284, -0.011990400031208992, 0.05241944268345833, 0.04527534544467926, 0.008376961573958397, -0.04122237488627434, 0.06833957880735397, -0.015700411051511765, 0.0038981297984719276, 0.03969348967075348, 0.013276882469654083, 0.0036670537665486336, 0.0509503073990345, 0.03130510449409485, 0.022592436522245407, -0.08017870783805847, 0.004911196883767843, 0.016270380467176437, 0.09434056282043457, 0.033873435109853745, 0.004391372203826904, 0.07923109084367752, 0.0069205621257424355, -0.002109557157382369, 0.03728882968425751, -0.007428277749568224, -0.039653513580560684, 0.008771795779466629, -0.012319957837462425, 2.3363974833046086e-05, -0.016325009986758232, 0.03361570090055466, -0.016494037583470345, 0.02760649099946022, 0.016214758157730103, -0.03796781972050667, 0.03512464091181755, -0.015853924676775932, 0.051732826977968216, 0.0121281947940588, -0.0005557245458476245, 0.015545167960226536, -0.0043172091245651245, -0.021798014640808105, 0.0351899079978466, -0.03252246230840683, 0.0522250160574913, 0.05542735755443573, -0.007230083458125591, 0.06840150058269501, -0.019322937354445457, 0.022372428327798843, 0.04157184064388275, 0.040957316756248474, -0.04930975288152695, -0.0012357241939753294, 0.012500228360295296, 0.0066808839328587055, -0.01853591948747635, -0.007315929513424635, -0.008681735955178738, 0.014774930663406849, -0.0363953560590744, 0.04463937506079674, -0.060499973595142365, 0.022786393761634827, -0.05969174951314926, 0.02679939568042755, -0.0008875277708284557, 0.015968473628163338, -0.05695072561502457, 0.024185797199606895, 0.010243172757327557, -0.03800986334681511, -0.014774957671761513, -0.007078681141138077, -0.00776655413210392, -0.07009570300579071, -0.012971068732440472, -0.03453879430890083, -0.01330785546451807, -0.03678790479898453, 0.009168406948447227, -0.010549336671829224, 0.06702305376529694, -0.010904663242399693, 0.02483595721423626, 0.00878731720149517, -0.021131303161382675, 0.027933737263083458, 0.0473264642059803, -0.00962897576391697, -0.012553769163787365, -0.023084551095962524, 0.028828000649809837, -0.05121331661939621, -0.0048014153726398945, -0.009013772010803223, -0.01872665248811245, 0.012027738615870476, -0.007851995527744293, -0.003717613173648715, 0.04608142003417015, 0.0642004907131195, 0.01307880412787199, 0.017978781834244728, 0.0341511145234108, -0.026308434084057808, -0.0054376013576984406, 0.022809231653809547, -0.018571939319372177, 0.0037073965650051832, 0.022975284606218338, -0.011540993116796017, 0.0601176992058754, 0.018311990424990654, -0.01288011483848095, 0.04587019607424736, -0.01699001155793667, 0.04683548957109451, 0.005273297429084778, 0.03661870211362839, -0.04029462859034538, 0.03167072311043739, 0.010641667991876602, 0.005097261164337397, -0.014034515246748924, -0.009020504541695118, -0.017474349588155746, -0.06381011754274368, -0.03214462846517563, -0.009143383242189884, 0.05796978622674942, -0.0013911393471062183, 0.007063170894980431, 0.038338713347911835, -0.028851784765720367, -0.013079367578029633, 0.03855578973889351, 0.01674056239426136, 0.014865080825984478, -0.027479534968733788, 0.007497798185795546, -0.028100114315748215, 0.008450946770608425, -0.04578221216797829, 0.007858959957957268, -0.047888774424791336, 0.02290070429444313, -0.10351260006427765, -0.022942671552300453, 0.05128909647464752, -0.007935097441077232, -0.05266505479812622, 0.010609321296215057, -0.04408737272024155, 0.0023550086189061403, 0.07417168468236923, 0.009668820537626743, 0.0033294237218797207, -0.0024889251217246056, 0.005711513105779886, -0.03012227825820446, -0.008812837302684784, -0.01335497573018074, 0.014139728620648384, 0.005963345989584923, 0.08069374412298203, -0.03980039060115814, -0.015611466951668262, -0.023373454809188843, 0.002374885603785515, -0.01996639370918274, 0.041293054819107056, 0.004248508717864752, 0.011064006946980953, 0.01751553826034069, 0.054634418338537216, -0.06735262274742126, 0.025623230263590813, -0.027972279116511345, 0.0008824027027003467, -0.0004176449147053063, -0.02952638640999794, -0.005043637938797474, 0.0581977404654026, 0.03641689568758011, -0.09189452230930328, 0.022016584873199463, 0.08254420012235641, 0.013386939652264118, 0.040205035358667374, 0.0030285113025456667, 0.04837912321090698, 0.052023887634277344, 0.00025183212710544467, -0.026135282590985298, 0.04104635864496231, 0.013133129104971886, -0.01993444189429283, -0.034515295177698135, 0.0010725072352215648, -0.03687070310115814, 0.04774847999215126, -0.12039711326360703, -0.029719717800617218, -0.019440751522779465, 0.0038234610110521317, 0.01874450221657753, -0.0015520036686211824, 0.017487365752458572, 0.011002046056091785, 0.014200658537447453, -0.02676166594028473, 0.024042848497629166, -0.06331485509872437, -0.01014342624694109, 0.011934973299503326, -0.02620586007833481, -0.03107595443725586, 0.02977542206645012, -0.01369001530110836, 0.0025054176803678274, 0.01477445475757122, -0.041748374700546265, 0.043902937322854996, -0.014848969876766205, -0.0193317960947752, 0.025245822966098785, 0.0012572102714329958, -0.009301521815359592, -0.010199414566159248, -0.01285993680357933, 0.014627200551331043, 0.027580199763178825, -0.030698411166667938, 0.00340754515491426, -0.033945173025131226, 0.014799943193793297, -0.011684100143611431, 0.018789805471897125, -0.024530956521630287, -0.010286043398082256, 0.06284745782613754, 0.055771443992853165, -0.017857922241091728, -0.01059708558022976, 0.08660823106765747, -0.01030832901597023, -0.010421286337077618, -0.02676995098590851, 0.0280972421169281, 0.015446794219315052, 0.04982956498861313, 0.04965197294950485, -0.026139093562960625, -0.0063410671427845955, -0.02676287665963173, -0.022668788209557533, -0.003504114458337426, -0.016982242465019226, 0.04716573655605316, -0.02714633382856846, -0.034336455166339874, -0.1213543564081192, -0.06132860109210014, -0.01274911966174841, 0.008827855810523033, -0.04339545965194702, -0.0410805307328701, -0.024785948917269707, 0.029426269233226776, 0.004282698966562748, -0.087130106985569, -0.008618544787168503, -0.010452650487422943, 0.05467289313673973, -0.08005774021148682, 0.024684255942702293, -0.027626821771264076, 0.009935630485415459, -0.005947944708168507, -0.007722149603068829, -0.04341105744242668, -0.024173427373170853, 0.0040786899626255035, -0.04655502364039421, -0.016378361731767654, -0.05667809769511223, -0.013178162276744843, -0.051218416541814804, 0.02232808992266655, 0.03412848338484764, -0.003601379692554474, -0.03691037744283676, 0.030125360935926437, -0.03277493268251419, -0.0034343828447163105, 0.021827880293130875, 0.07006492465734482, 0.006940329913049936, -0.012878385372459888, 0.01668795943260193, -0.07399328052997589, -0.011944563128054142, -0.007811976596713066, 0.027124138548970222, -0.002060237107798457, 0.03844589740037918, 0.02652517892420292, -0.059517811983823776, -0.02593843825161457, 0.031028082594275475, -0.0016003662021830678, 0.05015326663851738, -0.028482580557465553, 0.022114358842372894, 0.014857279136776924, 0.025923028588294983, 0.010967852547764778, -0.03845856711268425, 0.028725065290927887, -0.03309807553887367, -0.05551120638847351, -0.0035379077307879925, -0.03554283082485199, 0.035574667155742645, -0.02427412010729313, -0.021490199491381645, -0.11436737328767776, 0.07985728234052658, -0.005052229855209589, 0.011734582483768463, -0.049088433384895325, 0.0007720886496827006, -0.014210564084351063, 0.05239781364798546, 0.0385441929101944, 0.016574008390307426, -0.05363193154335022, -0.06906677782535553, 0.06396204233169556, 0.014379486441612244, 0.06962312012910843, 0.028437834233045578, -0.03235945105552673, 0.03548227623105049, 0.040795598179101944, 0.027711285278201103, -0.06287524849176407, -0.01417056005448103, -0.0037866435013711452, -0.02438826486468315, 0.03487429767847061, 0.06776203960180283, -0.009055503644049168, -0.020472891628742218, -0.022819774225354195, 0.06468667834997177, -0.002297088038176298, -0.029629148542881012, -0.0038843199145048857, 0.038031309843063354, -0.04265592247247696, -0.014063379727303982, -0.04749193415045738, 0.06011461094021797, -0.021598579362034798, -0.002254131715744734, 0.03623413294553757, 0.023386040702462196, -0.05001019313931465, 0.0007790501695126295, -0.06800574064254761, 0.009666080586612225, 0.04863003268837929, 0.03061630204319954, 0.007827089168131351, -0.008713237009942532, 0.026786955073475838, -0.03904362767934799, 0.081772081553936, -0.016421003267169, -0.03671404719352722, -0.01246330700814724, 0.022650714963674545, -0.03095698356628418, 0.033055905252695084, -0.028022408485412598, 0.053315576165914536, 0.02790728397667408, 0.020573856309056282, -0.0786428451538086, 0.008643845096230507, -0.032460592687129974, -0.008617110550403595, 0.030150333419442177, -0.045966051518917084, 0.05705271661281586, -0.0029738075099885464, -0.07559745758771896, -0.05204154551029205, 0.0037218721117824316, -0.00387785118073225, -0.12162835896015167, 0.02821817249059677, 0.004916835110634565, 0.09466533362865448, 0.05958963558077812, 0.04432316869497299, 0.007558159064501524, 0.015485606156289577, 0.031858671456575394, -0.0025297249667346478, 0.011469398625195026, -0.012408445589244366, -0.0002014851925196126, -0.037055544555187225, 0.00995507463812828, -0.033399343490600586, -0.004372661001980305, 0.017155198380351067, 0.025613971054553986, -0.012791497632861137, 0.009001598693430424, 0.04343307390809059, 0.008577512577176094, 0.0041989111341536045, -0.014975168742239475, -0.0010151820024475455, -0.05402087792754173, -0.003492548130452633, -0.01710180565714836, 0.008013968355953693, 0.006296954583376646, 0.013256121426820755, -0.016704080626368523, -0.05674733221530914, 0.025622891262173653, -0.008266029879450798, -0.046641696244478226, 0.016767093911767006, -0.0056414417922496796, 0.003787875408306718, -0.06559015810489655, 0.10360132902860641, -0.04529193043708801, 0.10489308089017868, 0.023067070171236992, -0.022271590307354927, -0.006922600790858269, 0.056964416056871414, -0.045390643179416656, 0.037176840007305145, 0.0009794806828722358, 0.026362784206867218, 0.024843422695994377, -0.04040239751338959, 0.022935282438993454, 0.03914736583828926, -0.005998888518661261, -0.054314397275447845, 0.02504250593483448, -0.018501073122024536, 0.014328773133456707, 0.08527013659477234, -0.025490442290902138, -0.001961221918463707, -0.00866209901869297, 0.010085237212479115, -0.002823721384629607, -0.008422060869634151, 0.05637243017554283, 0.029686562716960907, -0.025097258388996124, 0.005803645588457584, -0.053994469344615936, -0.006177040282636881, -0.013678583316504955, 0.03872598335146904, 0.02383577823638916, 0.033640917390584946, 0.012389938347041607, -0.06571616232395172, 0.0009421476861461997, -0.01875324547290802, -0.019522394984960556, 0.042441342025995255, -0.0324835367500782, -0.03442136198282242, 0.024766601622104645, -0.007809876464307308, -0.029760239645838737, -0.028476988896727562, -0.0070829144679009914, -0.0316430926322937, 0.0297292061150074, -0.06998593360185623, 0.04263324663043022, -0.01667335256934166, -0.05485747009515762, -0.009668084792792797, 0.06505198776721954, -6.048789770168216e-33, -0.00438696937635541, -0.026799526065587997, 0.003811814356595278, -0.005021486431360245, -0.05822915956377983, -0.00868871808052063, 0.03311920911073685, -0.03365176171064377, -0.04641827568411827, -0.024923795834183693, 0.022976486012339592, 0.031403690576553345, 0.010856897570192814, 0.014340602792799473, -0.025506936013698578, -0.024292530491948128, 0.006633412092924118, 0.06141502782702446, 0.0029416882898658514, -0.021670972928404808, -0.10572416335344315, 0.0016124383546411991, -0.02248626947402954, 0.0014035651693120599, 0.06408876180648804, 0.03612244129180908, 0.004838090855628252, 0.02156667783856392, -0.0266961008310318, -0.012002728879451752, 0.001570801599882543, 0.013842486776411533, 0.006290945690125227, -0.04808107390999794, 0.03617158904671669, 0.08500631898641586, -0.10082939267158508, 0.012800028547644615, 0.005673533771187067, -0.02779918909072876, -0.02632221393287182, -0.08373644948005676, 0.01743350923061371, 0.04467804729938507, -0.0540001206099987, -0.006428329739719629, 0.027612239122390747, -0.027786925435066223, 0.062174856662750244, 0.007963426411151886, -0.014678203500807285, -0.011955474503338337, -0.07592084258794785, 0.08661060035228729, -0.039880651980638504, -0.03364860266447067, 0.025832155719399452, -0.041587673127651215, -0.06693718582391739, -0.038794633001089096, -0.019815577194094658, -0.028048362582921982, 0.04078042134642601, 0.019817572087049484, -0.01732361502945423, 0.004889465868473053, -0.008458510041236877, 0.03732018917798996, -0.03257352113723755, 0.005035026930272579, -0.012281691655516624, -0.01976826600730419, -0.033491380512714386, -0.024433227255940437, -0.041706521064043045, 0.01529217790812254, -0.06739571690559387, 0.06826423108577728, 0.05308285355567932, 0.045287586748600006, 0.007309813052415848, -0.0354844406247139, -0.0367327556014061, 0.0014721374027431011, -0.0492396205663681, 0.02202591858804226, -0.021500304341316223, 0.0006555617437697947, 0.035816602408885956, -0.04341021925210953, -0.0017207239288836718, 0.001344375079497695, -0.01905461959540844, 0.004127919673919678, 0.02450414188206196, -0.04180122911930084, 0.03139210119843483, -0.03417668864130974, 0.013366653583943844, -0.0210594329982996, -0.02840294875204563, 0.020885329693555832, -0.003428942058235407, 0.06895352154970169, 0.039864134043455124, 0.01871403679251671, -0.016608642414212227, -0.0037893925327807665, -0.08368268609046936, 0.0337979681789875, -0.011113124899566174, 0.04849386215209961, 0.04265241324901581, -0.021122241392731667, -0.01988028734922409, -0.00897985976189375, 0.025343187153339386, -0.0031935092993080616, 0.0033427169546484947, 0.030280405655503273, -0.011189828626811504, -0.0028216084465384483, -0.02204377017915249, 0.0022292095236480236, -0.057259224355220795, -0.0025213395711034536, 0.034266699105501175, 0.04286164790391922, 0.03555399924516678, -0.00557111157104373, 0.02204076200723648, -0.059505026787519455, 2.7910434141631413e-07, -0.008626122958958149, -0.028129536658525467, 0.04208201915025711, -0.048934996128082275, -0.02372124046087265, -0.071302130818367, -0.0030976003035902977, 0.048337627202272415, 0.028329599648714066, 0.024907683953642845, 0.022291043773293495, 0.03710223361849785, -0.007425243500620127, -0.059387657791376114, -0.007041226141154766, -0.12704813480377197, -0.05545530095696449, 0.044891372323036194, -0.03205779194831848, 0.06740983575582504, 0.004555469378829002, 0.030503293499350548, 0.013159030117094517, 0.021753059700131416, -0.022406982257962227, 0.05858699604868889, -0.015509691089391708, -0.06392380595207214, 0.051495060324668884, 0.008365302346646786, 0.014532605186104774, 0.0162225142121315, 0.004692324437201023, -0.020243559032678604, 0.02613210491836071, -0.010250105522572994, -0.041509147733449936, 0.04614447057247162, 0.00601772777736187, 0.10025124996900558, -0.033574845641851425, -0.038888540118932724, 0.010019104927778244, 0.03247435390949249, 0.03104599192738533, 0.03916968032717705, -0.009654269553720951, 0.008100084960460663, -0.04857819527387619, -0.04090485721826553, 0.024589329957962036, 0.005182594992220402, 0.001967917662113905, -0.031950611621141434, 0.018566805869340897, -0.03319968283176422, 0.020133743062615395, -0.011968803592026234, 0.03640049323439598, -0.04178488627076149, 0.005891135428100824, -0.06509046256542206, -0.013031909242272377, -0.0005159505526535213, -0.019133636727929115, -0.04176531359553337, -0.017080487683415413, 3.132599231912796e-34, -0.0004015581216663122, -0.012133445590734482, -0.016935154795646667, -0.00428882846608758, 0.008759730495512486, -0.03770248219370842, 0.02268793247640133, -0.021565362811088562, 0.0032978856470435858, 0.011774412356317043, -0.011613346636295319], "b8c9a66f-86ef-4958-b219-f27093a055b8": [0.003497019177302718, 0.06314970552921295, -0.04243537783622742, -0.009804688394069672, -0.021106986328959465, 0.024534495547413826, 0.060620229691267014, 0.021307164803147316, 0.007255000993609428, -0.006789023522287607, 0.058237917721271515, 0.011328823864459991, 0.01657373644411564, 0.05985591560602188, 0.00520100025460124, -0.009054522030055523, 0.023464208468794823, 0.05104827508330345, -0.029688259586691856, -0.017106546089053154, -0.00802634283900261, 0.02867087535560131, -0.014866197481751442, 0.05349556729197502, 0.015894198790192604, -0.0106497248634696, 0.02238181047141552, 0.005455837585031986, 0.029629580676555634, 0.032042425125837326, 0.053967323154211044, 0.019144542515277863, -0.04974645748734474, -0.029263027012348175, 2.3085287921276176e-06, -0.029883727431297302, -0.0033183246850967407, 0.013035190291702747, -0.036282457411289215, 0.021694215014576912, -0.019219178706407547, -0.039764221757650375, -0.0427669957280159, 0.021858496591448784, 0.0008024077978916466, -0.01961645483970642, 0.07177981734275818, -0.02534615993499756, 0.0010803593322634697, -0.026570601388812065, -0.0040135569870471954, 0.05353821814060211, -0.02229747362434864, -0.020429080352187157, 0.018001161515712738, 0.009030448272824287, -0.014604585245251656, -0.0509234219789505, 0.016431452706456184, -0.011168559081852436, -0.006967253051698208, 0.0126859862357378, -0.006580435670912266, -0.03415174037218094, 0.03892938792705536, 0.05665553733706474, 0.030381103977560997, -0.08357267826795578, 0.008632762357592583, 0.016987670212984085, 0.09244151413440704, 0.028386954218149185, 0.005422201938927174, 0.07018700242042542, 0.008230127394199371, -0.009379216469824314, 0.029233820736408234, 0.015137541107833385, -0.050201982259750366, -0.00940811075270176, 0.02063816785812378, 0.028127292171120644, -0.03102334402501583, 0.056106213480234146, -0.024712324142456055, 0.024035075679421425, -0.01145033910870552, -0.024397600442171097, 0.03778573498129845, -0.012151209637522697, 0.04291493073105812, -0.007615832611918449, 0.009956342168152332, 0.018673686310648918, 0.019831135869026184, -0.017201829701662064, 0.036706581711769104, -0.01745590753853321, 0.03197503462433815, 0.016545290127396584, -0.006437173578888178, 0.0709514170885086, -0.011579537764191628, 0.03817884624004364, 0.03963649272918701, 0.05664754658937454, -0.04195781424641609, -0.018199387937784195, 0.017620228230953217, 0.020696207880973816, 0.023836784064769745, -0.0056602805852890015, 0.02457539737224579, 0.012263909913599491, -0.0410982221364975, 0.0339219830930233, -0.05798603594303131, 0.04963715746998787, -0.07734405994415283, 0.03234180063009262, 0.01067378930747509, -0.006900036707520485, -0.05147191137075424, 0.023890353739261627, 0.008752036839723587, -0.01007669698446989, -0.025988781824707985, -0.0015938496217131615, 0.012325774878263474, -0.04596782475709915, -0.020612725988030434, -0.039555586874485016, 0.0015314663760364056, -0.0018398790853098035, 0.01455522421747446, 0.016755592077970505, 0.06543799489736557, 0.012995616532862186, 0.06197963282465935, -0.004466023296117783, -0.01685747131705284, 0.01963214948773384, 0.03243851661682129, 0.015104834921658039, 0.002689823042601347, 0.0038440246134996414, -0.005754427053034306, -0.03144804388284683, -0.0005344778182916343, -0.008211527951061726, 0.005101704504340887, 0.012096335180103779, 0.007599585223942995, -0.00722164660692215, 0.045693911612033844, 0.05890445038676262, 0.03284037113189697, -0.005358627997338772, 0.02851448953151703, -0.006927798502147198, 0.008306868374347687, 0.03138793259859085, -0.02357841283082962, 0.010486778803169727, 0.02856578677892685, 0.010506008751690388, 0.034159064292907715, 0.03611791133880615, -0.03453719988465309, 0.025787537917494774, -0.005974718369543552, 0.04670683294534683, -0.0009427567711099982, 0.04304211214184761, -0.031854551285505295, 0.03646990284323692, 0.048107050359249115, 0.03500761091709137, -0.05421237275004387, 0.0038925623521208763, -0.012243850156664848, -0.06552429497241974, 0.00671032490208745, 0.017802134156227112, 0.05318154767155647, -0.009250625967979431, 0.017276989296078682, -0.010351407341659069, -0.032809119671583176, -0.04029133915901184, 0.025940697640180588, 0.006569343153387308, -6.29275236860849e-05, -0.030071930959820747, 0.022329196333885193, -0.0302170030772686, -0.016142655164003372, -0.04972652718424797, 0.01828817091882229, -0.037612926214933395, 0.024722691625356674, -0.09013956785202026, 0.003187374444678426, 0.052275046706199646, -0.00013787161151412874, -0.01874854601919651, 0.0029569421894848347, -0.027928104624152184, -0.006793607957661152, 0.049584317952394485, 0.03737800940871239, 0.003977038431912661, -0.03416786715388298, -0.0021603708155453205, -0.01650884747505188, 0.005849379580467939, -0.00042682705679908395, 0.022929446771740913, -0.011689472943544388, 0.0812818855047226, -0.038073331117630005, -0.03625643625855446, -0.03564102202653885, -0.001317267888225615, 0.03287774324417114, 0.0483800433576107, 0.0027264580130577087, 0.011904407292604446, 0.0004384287167340517, 0.03966711089015007, -0.061925116926431656, 0.02556171640753746, -0.02679295279085636, 0.0008839307120069861, -0.0065307398326694965, -0.003568507032468915, -0.010629895143210888, 0.0813806802034378, 0.00927741453051567, -0.092662513256073, 0.025743136182427406, 0.07029424607753754, -0.004226741846650839, 0.05060324817895889, 0.049409981817007065, 0.03169440105557442, 0.03052503988146782, -0.003264990635216236, -0.037616971880197525, 0.02183554880321026, 0.01665526255965233, -0.01427255105227232, -0.013172922655940056, -0.007414681371301413, -0.032828375697135925, 0.011503221467137337, -0.07744097709655762, -0.006502570118755102, -0.06993639469146729, 0.017772721126675606, 0.047479670494794846, 0.011928512714803219, 0.020280292257666588, 0.013050775043666363, 0.016284920275211334, -0.03602023422718048, -0.007756754755973816, -0.054245561361312866, -0.024339718744158745, 0.01266787201166153, -0.014472965151071548, -0.0012456643162295222, -0.00938116293400526, -0.013249247334897518, 0.005921255797147751, 0.020320899784564972, -0.06935134530067444, 0.04532913863658905, -0.029764076694846153, 0.008421274833381176, 0.030262963846325874, 0.031239934265613556, -0.02836787886917591, -0.020609011873602867, -0.022785410284996033, 0.015184738673269749, 0.0785318911075592, -0.07396752387285233, -0.021818049252033234, 0.010596233420073986, -0.02238166145980358, -0.010492777451872826, 0.010477506555616856, -0.006873264443129301, -0.006915556266903877, 0.029752815142273903, 0.03648464381694794, 0.021664420142769814, 0.012722264975309372, 0.1145852729678154, -0.02545001730322838, -0.0027284238021820784, -0.04255680367350578, -0.004906781017780304, 0.020352914929389954, 0.048358019441366196, 0.047361649572849274, -0.021610641852021217, -0.004068569280207157, -0.04585590586066246, -0.01669023558497429, -0.009708967991173267, -0.019516315311193466, 0.057965926826000214, -0.03431734815239906, -0.026309747248888016, -0.09128708392381668, -0.04490276426076889, -0.022970980033278465, 0.060044705867767334, -0.009048132225871086, -0.05022915080189705, -0.03912105783820152, 0.02214176021516323, 0.013125203549861908, -0.08882651478052139, -0.013979483395814896, -0.013018164783716202, 0.09338542073965073, -0.10837854444980621, 0.02192321978509426, -0.0333000011742115, -0.016336342319846153, -0.02260773442685604, 0.023626578971743584, 0.0037018752191215754, -0.019883843138813972, -0.000652835879009217, -0.027770735323429108, 0.004398237448185682, -0.06083384528756142, 0.012037021107971668, -0.037468891590833664, 0.006943087093532085, 0.032989177852869034, -0.018686914816498756, -0.04314574971795082, 0.009003181010484695, -0.05599403381347656, -0.008625446818768978, 0.0016193755436688662, 0.057509005069732666, -0.014898604713380337, -0.015891067683696747, 0.02206992730498314, -0.06569600105285645, -0.02517121657729149, -0.012425591237843037, -0.019144678488373756, -0.034064847975969315, 0.03164897486567497, 0.019661547616124153, -0.03835194930434227, 0.012777680531144142, 0.040214408189058304, -0.00756381219252944, 0.04824245721101761, -0.024854028597474098, 0.03107907436788082, 0.012299695983529091, -0.012457441538572311, -0.01362207718193531, -0.04908803850412369, 0.06101933494210243, -0.019897250458598137, -0.06630260497331619, 0.007346592843532562, -0.012921354733407497, 0.028828486800193787, -0.019137714058160782, 0.0025033822748810053, -0.08712545037269592, 0.10843319445848465, 0.006785758305341005, 0.0370808020234108, -0.03846372663974762, -0.02963026985526085, -0.03334679454565048, 0.007550722919404507, 0.020058156922459602, 0.002656486351042986, -0.03586120903491974, -0.06246323138475418, 0.03400499373674393, -3.5918648791266605e-05, 0.06190072372555733, 0.0308525450527668, -0.03619592636823654, 0.030667362734675407, 0.040209751576185226, 0.04054988920688629, -0.07007842510938644, -0.015811793506145477, 0.0333864688873291, -0.012913204729557037, 0.04674900695681572, 0.04969470575451851, 0.025217639282345772, -0.05252934247255325, -0.02543216571211815, 0.07059147953987122, -0.0014044289710000157, -0.0303437989205122, -0.020972132682800293, 0.06462414562702179, -0.05679848790168762, -0.020538080483675003, -0.046552639454603195, 0.05712165683507919, 0.018957452848553658, 0.02962033450603485, 0.03315950557589531, 0.004186130128800869, -0.05699678510427475, -0.00932222232222557, -0.05656329542398453, 0.03458145633339882, -0.007711526472121477, 0.03096088394522667, -0.02015991322696209, -0.018449172377586365, 0.02168530784547329, -0.035300131887197495, 0.07444923371076584, -0.016952866688370705, -0.04746486246585846, -0.018834345042705536, 0.02414204552769661, -0.005387493409216404, 0.00613766023889184, -0.075718954205513, 0.048437800258398056, 0.02659693732857704, 0.006629509851336479, -0.11004018783569336, -0.02471747435629368, -0.0034689358435571194, -0.023571668192744255, -0.0048443228006362915, 0.00019987720588687807, 0.041455838829278946, -0.006840210873633623, -0.03398069366812706, -0.05456835404038429, 0.03441993519663811, -0.02051270380616188, -0.12361050397157669, 0.031745728105306625, -0.0021743036340922117, 0.07097233086824417, 0.021834099665284157, 0.05263076350092888, -0.028586165979504585, 0.0099492147564888, 0.041637200862169266, 0.0117669478058815, 0.05056721344590187, -0.02383527345955372, -0.001613799249753356, -0.011896158568561077, 0.03487730026245117, -0.03686118125915527, -0.0059937890619039536, -0.016573000699281693, 0.03347364813089371, -0.008039262145757675, -0.010836920700967312, 0.03866197168827057, -0.03442387282848358, 0.00671877758577466, -0.01994623988866806, -0.017951885238289833, -0.026256602257490158, -0.026727093383669853, -0.027641672641038895, -0.006863577291369438, -0.022496970370411873, 0.011669854633510113, -0.009467215277254581, -0.07995866239070892, 0.03989375755190849, 0.0027539064176380634, -0.01902843452990055, 0.04303624853491783, -0.002404364524409175, 0.0003424353781156242, -0.08238866180181503, 0.08415897935628891, -0.051400866359472275, 0.08228950947523117, -0.011861850507557392, -0.012416320852935314, -0.012612138874828815, -0.0035565400030463934, -0.04848486930131912, 0.038103871047496796, 0.011307991109788418, 0.052858948707580566, 0.011264733038842678, 0.002457088092342019, 0.023635927587747574, 0.03749673813581467, -0.015256094746291637, -0.07778266072273254, 0.04689786583185196, -0.020238226279616356, -0.024072179570794106, 0.06993141770362854, -0.004929194226861, -0.003506413660943508, -0.004937995225191116, 0.021984752267599106, 0.022136984393000603, -0.011897719465196133, 0.07099754363298416, 0.02743358165025711, -0.02179596945643425, 0.011559132486581802, -0.023667078465223312, -0.0017578888218849897, -0.0048148236237466335, 0.03456750139594078, -0.0066163972951471806, 0.049753639847040176, 0.012867163866758347, -0.062287550419569016, -0.028121598064899445, -0.030399542301893234, -0.005648300051689148, 0.014539284631609917, -0.036211006343364716, -0.01761232689023018, 0.01580060087144375, -0.018956299871206284, -0.03196609765291214, -0.035353343933820724, -0.0011368975974619389, -0.005312956869602203, 0.024603262543678284, -0.03359277546405792, 0.041301846504211426, -0.038638364523649216, -0.06468572467565536, 0.006157608702778816, 0.008737873286008835, -6.19041920702704e-33, -0.0114549295976758, -0.036577045917510986, -0.010895555838942528, 0.022669827565550804, -0.04919762536883354, 0.029178792610764503, 0.013239393942058086, -0.0401587076485157, -0.08151090145111084, -0.05471188575029373, -0.001620677998289466, 0.05709311366081238, 0.011266352608799934, 0.008040879853069782, -0.014984016306698322, -0.020659124478697777, 0.02444315329194069, 0.031605422496795654, -0.020273953676223755, -0.02890644036233425, -0.07395050674676895, 0.009970086626708508, 0.022404754534363747, -0.029085511341691017, 0.11504638940095901, 0.01756739430129528, -0.013811113312840462, -0.000640261685475707, 0.010313555598258972, -0.015153363347053528, 0.02051837556064129, 0.0019167859572917223, -0.004901612643152475, -0.043560516089200974, 0.024713262915611267, 0.08241596817970276, -0.08183161914348602, 0.002774496329948306, -0.0053014191798865795, -0.023845113813877106, 0.002091533737257123, -0.059144165366888046, 0.02270512282848358, 0.05560646951198578, -0.060271620750427246, -0.05186387151479721, 0.020883940160274506, -0.006316753104329109, 0.05412362888455391, -0.00046666557318530977, 0.0001311195082962513, 0.010625570081174374, -0.07732608169317245, 0.1159702017903328, -0.05060967430472374, 0.02067672461271286, 0.029735716059803963, -0.02617648057639599, -0.10119488835334778, 0.011530008167028427, -0.01356546115130186, -0.0014109082985669374, 0.03947066143155098, -0.01729653589427471, 0.002719680080190301, 0.018421268090605736, 0.03168988600373268, 0.05041827633976936, -0.02201511710882187, -0.008140726946294308, 0.01968013495206833, -0.0007753923418931663, -0.027491750195622444, -0.04316586256027222, -0.03569117188453674, -0.0054509905166924, -0.09010443091392517, 0.043662093579769135, 0.06694871187210083, 0.06992684304714203, 0.02034972980618477, -0.034247025847435, -0.07423602789640427, -0.012153424322605133, -0.024427395313978195, -0.0185578390955925, -0.02314108982682228, -0.010547311045229435, 0.025775812566280365, -0.02622997760772705, 0.005432176869362593, -0.012808511964976788, -0.023331940174102783, -0.006083897780627012, 0.02957366779446602, -0.03387680649757385, 0.021499747410416603, -0.007609923370182514, 0.005851102992892265, -0.035951461642980576, -0.04813426733016968, -0.013207081705331802, -0.0134921008720994, 0.09642910957336426, 0.04254838451743126, 0.022265758365392685, -0.013622754253447056, 0.0018710762960836291, -0.07978811115026474, 0.013379018753767014, -0.021516909822821617, 0.023212585598230362, 0.026214024052023888, -0.004160773940384388, -0.024335037916898727, -0.007155288476496935, 0.031451113522052765, -0.03377104178071022, 0.024143259972333908, 0.06521594524383545, -0.00939144566655159, -0.0023628652561455965, -0.027178756892681122, 0.003389307763427496, -0.05467990040779114, -0.01662479341030121, 0.013326247222721577, 0.035052839666604996, 0.042880602180957794, -0.020832616835832596, 0.00697757862508297, -0.0703924372792244, 2.862671522052551e-07, -0.009890936315059662, 0.011143074370920658, 0.02004369907081127, -0.016346432268619537, 0.0002939169353339821, -0.051188889890909195, 0.006102394312620163, 0.03930586576461792, 0.0571482852101326, 0.05630345270037651, 0.0085380170494318, 0.03992840275168419, -0.030074557289481163, -0.06005563214421272, 0.020101910457015038, -0.09336454421281815, -0.07049208134412766, -0.00923419650644064, -0.0419652983546257, 0.0486735999584198, -0.00019175054330844432, 0.012753975577652454, 0.040929846465587616, 0.013458563014864922, -0.03513924404978752, -0.001414550468325615, 0.0002537553373258561, -0.0691337063908577, 0.01661265641450882, 0.0033021452836692333, 0.05496102198958397, 0.03417352959513664, -0.016130289062857628, 0.0011840168153867126, 0.02457059547305107, -0.007623033132404089, -0.021270710974931717, 0.025537343695759773, 0.017245600000023842, 0.09335492551326752, -0.01939513348042965, -0.05968356132507324, -0.0020760102197527885, 0.007275805342942476, 0.05124813690781593, 0.044154245406389236, -0.030093887820839882, 0.009110826998949051, -0.03034019283950329, -0.03405475243926048, 0.017618583515286446, -0.000379542529117316, -0.008771900087594986, -0.03948354721069336, 0.008323922753334045, -0.020454781129956245, 0.030788226053118706, -0.012854182161390781, 0.03738847374916077, -0.00273116584867239, -0.0061762225814163685, -0.08973590284585953, -0.008184160105884075, 0.04969089850783348, 0.02962918020784855, -0.0007812688709236681, -0.022172575816512108, 3.2268589555806176e-34, 0.005960881244391203, 0.0039474270306527615, -0.0328221470117569, -0.017500055953860283, -0.0030543431639671326, -0.016765939071774483, 0.029196780174970627, -0.022312352433800697, 0.0048210639506578445, 0.018425924703478813, -0.02797677181661129], "3a824442-4ed5-4847-96d3-dc2ca1324cfa": [0.0240310151129961, 0.023867176845669746, -0.0258758757263422, -0.045527853071689606, 0.010140216909348965, 0.048826489597558975, 0.031656354665756226, 0.05309755355119705, -0.018167631700634956, -0.007912864908576012, -0.030604703351855278, 0.04268740490078926, -0.00979410856962204, 0.06211047247052193, -0.014896361157298088, -0.0030649194959551096, 0.045575860887765884, 0.015863940119743347, -0.04636424407362938, -0.037729062139987946, -0.013398495502769947, 0.010717371478676796, 0.0009601351339370012, -0.01725163869559765, 0.07630956918001175, -0.016227740794420242, -0.027958005666732788, 0.022360246628522873, 0.000681490171700716, 0.0007240437553264201, 0.001497624907642603, 0.041798993945121765, -0.0068044764921069145, 0.05665026605129242, 1.9188310034223832e-06, 0.004016354214400053, -0.08255313336849213, -0.04341680929064751, -0.032658305019140244, -0.07896203547716141, 0.07470439374446869, 0.019411813467741013, -0.006693820934742689, 0.010835138149559498, -0.0031516614835709333, 0.00527942506596446, -0.06099693849682808, -0.004050102550536394, -0.026362715288996696, 0.054246775805950165, 0.01573891006410122, -0.024741971865296364, 0.005543913226574659, -0.014161685481667519, 0.04020904004573822, -0.032441072165966034, -0.027594713494181633, 0.06377623230218887, 0.07557110488414764, 0.020940329879522324, 0.024127891287207603, 0.01817059889435768, -0.010354382917284966, 0.04996877536177635, 0.10757657885551453, 0.04977673664689064, 0.03601686283946037, -0.11826056241989136, 0.020173989236354828, 0.02594587951898575, 0.07692546397447586, -0.018408050760626793, 0.028633560985326767, 0.047734905034303665, -0.04162749648094177, 0.029249422252178192, 0.018975652754306793, 0.026845717802643776, 0.013708362355828285, 0.010416588746011257, -0.04296230897307396, -0.12017431110143661, -0.05193556100130081, 0.026980485767126083, 0.06554340571165085, -0.020656149834394455, -0.005678260698914528, -0.04788452386856079, 0.04582841694355011, -0.03721257671713829, 0.04947492852807045, -0.021093824878335, 0.03165377303957939, 0.032646700739860535, 0.06526751071214676, -0.03715066239237785, -0.006798532325774431, -0.013350684195756912, 0.009179700165987015, 0.017926789820194244, 0.051810260862112045, -0.010169409215450287, 0.009144842624664307, 0.017599839717149734, -0.027567626908421516, 0.06596014648675919, -0.02565815858542919, -0.048333361744880676, -0.044746484607458115, 0.09395192563533783, -0.018996519967913628, 0.0038531997706741095, -0.036393992602825165, -0.012951916083693504, -0.041100677102804184, -0.021156111732125282, 0.030629709362983704, -0.010566922836005688, 0.07343418151140213, 0.03157935291528702, 0.021736714988946915, -0.002713714726269245, -0.057832855731248856, -0.03958730027079582, -0.05401691421866417, -0.06581323593854904, 0.014641666784882545, 0.0340714231133461, -0.02725853957235813, -0.013720777817070484, 0.01749017834663391, 0.01206416916102171, 0.009312928654253483, 0.04760333150625229, 0.03271987661719322, 0.046441853046417236, 0.02419273741543293, -0.015893973410129547, 0.010875359177589417, -0.01554029155522585, 0.06604917347431183, 0.01709028333425522, -0.020068611949682236, -0.02087360993027687, 0.016363682225346565, 0.02384551428258419, 0.04450337216258049, 0.0375017449259758, 0.008289426565170288, 0.03437818959355354, -0.02348700910806656, -0.03138327598571777, -0.017397627234458923, 0.0007009977707639337, 0.02380070649087429, 0.020853137597441673, -0.07181227952241898, -0.025984348729252815, -0.03472929075360298, -0.012102008797228336, -0.013072771020233631, 0.03789849206805229, 0.04461224749684334, -0.037136223167181015, -0.027387088164687157, -0.048953890800476074, 0.011791704222559929, 0.01157050859183073, 0.0023455300834029913, -0.0035169697366654873, -0.018173828721046448, 0.022747917100787163, -0.005942533258348703, 0.08053608983755112, -0.0351201593875885, -0.005412157159298658, 0.047144483774900436, 0.027282893657684326, -0.04536818340420723, 0.004427168983966112, -0.011888460256159306, -0.055384498089551926, -0.02589874342083931, -0.007779936771839857, -0.07168617099523544, -0.022174512967467308, -0.03535516932606697, 0.012999285012483597, 0.03832505643367767, -0.0057649132795631886, -0.0476885586977005, -0.0233603548258543, -0.018212541937828064, -0.08677414804697037, 0.03680642694234848, 0.007408722769469023, -0.032871365547180176, -0.07944215834140778, -0.033007554709911346, -0.0580388642847538, -0.021422525867819786, -0.004065753426402807, 0.04665346071124077, 0.05939370393753052, 0.04271382465958595, 0.036549195647239685, -0.019229138270020485, -0.002065950306132436, 0.016176385805010796, -0.012650489807128906, 0.04983874037861824, -0.008230587467551231, 0.0070416308008134365, -0.054636478424072266, -0.06751176714897156, -0.01814739592373371, -0.02532951533794403, -0.035238783806562424, 0.014282743446528912, 0.010534499771893024, 0.011190354824066162, -0.08490469306707382, 0.032916609197854996, 0.029882261529564857, -0.008303609676659107, -0.056517619639635086, -0.04784978926181793, 0.010340613313019276, 0.044494904577732086, -0.022215813398361206, -0.027652166783809662, -0.02202727645635605, -0.0030416471417993307, -0.008604464121162891, -0.027104152366518974, -0.004159801173955202, -0.0005997638218104839, 0.050306953489780426, -0.018929729238152504, -0.07796189934015274, 0.04114709049463272, 0.030019603669643402, 0.012292093597352505, 0.01302459929138422, -0.04251275956630707, 0.014365000650286674, -0.0443543866276741, 0.024538224563002586, 0.029586276039481163, 0.027085455134510994, 0.027043232694268227, -0.012443958781659603, 0.07935728132724762, 0.009565705433487892, 0.0014595940010622144, 0.0003419140412006527, -0.09105780720710754, -0.015389547683298588, -0.018300749361515045, 0.028434760868549347, -0.02931947633624077, -0.0031192959286272526, -0.018320640549063683, -0.02897282876074314, 0.02296256832778454, 0.019324323162436485, 0.005798760335892439, -0.0567457415163517, 0.007238289341330528, 0.012098977342247963, -0.017455071210861206, 0.039801131933927536, 0.010540682822465897, -0.021303938701748848, -0.006331530399620533, 0.005038356874138117, 0.06873361021280289, -0.025267591699957848, -0.008574825711548328, -0.013140284456312656, -0.05771202594041824, -0.014877545647323132, -0.0073021650314331055, 0.02520815283060074, -0.022998416796326637, -0.014485080726444721, -0.022184180095791817, -0.03692558780312538, -0.037854768335819244, 0.01263407152146101, -0.0013619920937344432, 0.034931983798742294, 0.028166523203253746, 0.029399527236819267, -0.030852023512125015, -0.018290294334292412, 0.07835644483566284, 0.028461728245019913, -0.05429748073220253, 0.05554376170039177, 0.05590130016207695, 0.028154470026493073, -0.003502523759379983, 0.013101642951369286, 0.07880610227584839, 0.03540220111608505, 0.0130621874704957, -0.03805847093462944, -0.003513230010867119, -0.035613544285297394, -0.004397583659738302, 0.025303993374109268, -0.030359460040926933, -0.026130223646759987, -0.03811643272638321, -0.026373928412795067, -0.023609371855854988, -0.01583654060959816, -0.02279064618051052, 0.0537707582116127, 0.003940590191632509, -0.042859822511672974, -0.014189603738486767, 0.0005052410997450352, 0.04322850704193115, -0.11862825602293015, -0.0202491357922554, 0.039018891751766205, 0.052562613040208817, 0.03530037775635719, 0.025215407833456993, -6.248426507227123e-05, 0.046518631279468536, -0.008583519607782364, 0.00959442462772131, 0.01697707362473011, -0.02585994452238083, -0.07634742558002472, -0.002115868730470538, -0.005995179060846567, -0.017669647932052612, 0.07206300646066666, -0.004469991661608219, 0.04282304644584656, -0.045483559370040894, -0.03724588453769684, -0.04518355429172516, -0.008633862249553204, -0.04171408712863922, 0.005065497010946274, 0.08813782036304474, 0.06350396573543549, 0.03875388950109482, -0.0017676865682005882, 0.014876443892717361, -0.007545911241322756, 0.005931648891419172, 0.01988867111504078, -0.05339570343494415, -0.03764782100915909, 0.015465802513062954, 0.019025901332497597, 0.03726517781615257, 0.025581009685993195, 0.016077406704425812, -0.0004225543234497309, 0.018944816663861275, -0.027912043035030365, -0.017324062064290047, -8.390128641622141e-05, -0.006654731929302216, 0.031537484377622604, -0.030278097838163376, 0.02329169027507305, 0.0007792358519509435, -0.03376863896846771, -0.0349162220954895, -0.006331125274300575, -0.041311487555503845, -0.04611263424158096, 0.026694366708397865, -0.07290815562009811, 0.009763140231370926, 0.02385525219142437, 0.004697851836681366, 0.009510349482297897, 0.002464000368490815, 0.03729240223765373, 0.05494340509176254, -0.0807306170463562, 0.002505259122699499, -0.013358768075704575, -0.06093263626098633, -0.012719652615487576, -0.0008746815728954971, -0.00865806546062231, -0.018491540104150772, -0.021504102274775505, -0.03245583176612854, 0.039092548191547394, -0.011391125619411469, 0.04374542459845543, 0.011245005764067173, -0.028408609330654144, 0.0230269655585289, 0.0294361412525177, 0.07702373713254929, 0.02348584681749344, 0.0004186496080365032, 0.001297087874263525, 0.06550890952348709, 0.04609102010726929, 0.03493383899331093, 0.02362819015979767, 0.013935034163296223, 0.0029382281936705112, 0.05321270227432251, 0.028122711926698685, -0.005087141878902912, -0.034431617707014084, -0.07319271564483643, -0.0004209516919218004, -0.0032311799004673958, -0.016226287931203842, -0.013324271887540817, -0.013463320210576057, 0.02668916992843151, 0.008464676328003407, 0.06131936237215996, -0.028147075325250626, -0.01353551633656025, -0.009765717200934887, -0.00616881251335144, 0.02484206110239029, 0.013834268786013126, 0.060368213802576065, 0.01044442132115364, -0.06692789494991302, 0.00048304913798347116, -0.03808310627937317, -0.005079247523099184, 0.022073986008763313, 0.019653182476758957, 0.005724045448005199, -0.0836995467543602, 0.026388242840766907, 0.03803626447916031, -0.03240460902452469, -0.03743821382522583, -0.04814121499657631, 0.00356198288500309, -0.05133675038814545, -0.04129853844642639, 0.010460803285241127, -0.002096060663461685, -0.00838575977832079, -0.007267514243721962, 0.10510113835334778, 0.019261620938777924, 0.07781903445720673, -0.05061754584312439, 0.03798616677522659, -0.057888977229595184, 0.012374276295304298, -0.004615809768438339, 0.06046023592352867, 0.029775191098451614, -0.10785011947154999, 0.026563655585050583, 0.03258814662694931, 0.027364583685994148, -0.018195511773228645, 0.0012775082141160965, -0.056129150092601776, 0.004942646250128746, -0.06586772203445435, 0.01637263223528862, 0.0008811875013634562, -0.06057635322213173, 0.0033176362048834562, 0.02528831921517849, -0.0172189399600029, 0.024515556171536446, 0.017418401315808296, -0.01737445779144764, 0.03810586780309677, 0.08324721455574036, 0.0023438946809619665, 0.016388634219765663, -0.05370219796895981, 0.05019983649253845, -0.01830139197409153, 0.0076195253059268, -0.02236497774720192, 0.03392792493104935, -0.02851260080933571, -0.025496717542409897, 0.005275559611618519, -0.011165335774421692, 0.09038535505533218, 0.03755989670753479, -0.047200825065374374, -0.03439370170235634, 0.0979188084602356, -0.08161715418100357, -0.002771807601675391, -0.027624372392892838, 0.044124048203229904, -0.03423361852765083, -0.0176547858864069, -0.057450003921985626, 0.023470716550946236, -0.031997617334127426, -0.010980499908328056, 0.023612719029188156, 0.022547118365764618, -0.03389989957213402, -0.030309028923511505, 0.03844877704977989, -0.016317272558808327, -0.01735367812216282, -0.023518770933151245, 0.00962129607796669, -0.04506033658981323, 0.03950685262680054, -0.01538141630589962, 0.02993372268974781, 0.026751970872282982, 0.0454535149037838, 0.04450344666838646, -0.07595768570899963, 0.0020770502742379904, 0.022570116445422173, 0.018765972927212715, -0.048549167811870575, 0.02472417987883091, 1.6877226016731584e-07, 0.021061794832348824, -0.013550653122365475, -0.01212204061448574, 0.060216162353754044, 0.014135152101516724, 0.050594836473464966, 0.01741168275475502, 0.016360990703105927, -0.027641862630844116, 0.05521921068429947, 0.04129563271999359, -0.013037425465881824, -0.03329738602042198, 0.003351584542542696, 0.01896555721759796, -0.015342507511377335, 0.038538858294487, 0.027184894308447838, -5.303007297522601e-33, -0.0017020237864926457, -0.010332712903618813, -0.022576995193958282, 0.04492480680346489, 0.027049032971262932, -0.03449340909719467, -0.028604373335838318, -0.01910770870745182, -0.08244937658309937, -0.018547818064689636, -0.004222572315484285, -0.0027268235571682453, 0.026943905279040337, -0.017559776082634926, 0.015406412072479725, 0.005651240237057209, 0.014772244729101658, 0.008755759336054325, 0.0016201285179704428, 0.012553954496979713, -0.03190647438168526, 0.0037937152665108442, -0.03462553024291992, 0.0156906358897686, -0.012188036926090717, -0.047460779547691345, -0.013207485899329185, -0.0036568569485098124, -0.025341009721159935, 0.012943497858941555, -0.05733344331383705, -0.0316656194627285, -0.020906107500195503, 0.014333193190395832, 0.027168668806552887, 0.033461663872003555, -0.024270780384540558, -0.029452115297317505, -0.010411513969302177, 0.018622182309627533, 0.01840548776090145, -0.05491933226585388, 0.027161069214344025, 0.010600685141980648, 0.013177034445106983, 0.04542504623532295, 0.01762055978178978, 0.04341641813516617, -0.04811432957649231, 0.047065846621990204, -0.05522282049059868, 0.020085977390408516, 0.023859761655330658, 0.052567869424819946, -0.0055061765015125275, 0.0112312538549304, 0.010028335265815258, -0.03667791560292244, -0.01868823543190956, -0.006160813849419355, -0.009057878516614437, 0.0030480455607175827, 0.04454600065946579, -0.06949520856142044, -0.006811894476413727, 0.02912127412855625, 0.009184983558952808, -0.0035049282014369965, -0.018514780327677727, -0.007263388484716415, -0.003579548094421625, -0.018841059878468513, -0.05418362095952034, -0.08293474465608597, -0.04538032039999962, 0.03224803879857063, 0.012652398087084293, -0.011364802718162537, 0.04882863536477089, 0.07846276462078094, -0.02121656946837902, 0.02182953618466854, -0.03744623437523842, 0.005605857819318771, 0.02969079650938511, -0.06308584660291672, -0.03681395202875137, -0.004573826678097248, -0.01933438889682293, 0.028733516111969948, -0.04323709011077881, -0.08457958698272705, -0.010022975504398346, 0.038701947778463364, 0.033819060772657394, -0.0034312300849705935, 0.05082959681749344, -0.013736866414546967, 0.011087780818343163, -0.0020885318517684937, -0.041133105754852295, -0.02620553784072399, -0.02453184500336647, 0.01370102446526289, 0.029208242893218994, -0.03287237510085106, -0.03944511339068413, 0.03775646537542343, -0.04399814084172249, 0.01172300148755312, -0.010865049436688423, -0.057878900319337845, 0.01946241408586502, -0.005818803329020739, -0.020350703969597816, -0.028740370646119118, 0.011416125111281872, 0.04093988612294197, -0.012352772057056427, -0.013499123044312, -0.015820616856217384, -0.040041349828243256, 0.02855263277888298, -0.04175729677081108, -0.007527900394052267, 0.008140881545841694, -0.04769554361701012, 0.033910542726516724, 0.06252865493297577, 0.011221847496926785, -0.0161763746291399, 0.02993760257959366, 2.9114639232830086e-07, 0.013319466263055801, 0.04594098776578903, 0.010875081643462181, -0.03866280987858772, -0.030140548944473267, -0.03502419590950012, -0.020245758816599846, -0.0008893141057342291, -0.0123673090711236, 0.0048309797421097755, 0.007793854456394911, 0.05105801671743393, 0.009224941954016685, 0.06774117797613144, -0.008362441323697567, -0.042457956820726395, -0.025249579921364784, 0.011488753370940685, -0.026346249505877495, 0.008522544987499714, 0.06744591891765594, 0.014642048627138138, 0.000717806164175272, 0.04726925492286682, -0.02310551144182682, 0.01010190136730671, -0.041560251265764236, -0.015440759249031544, 0.0331980437040329, -0.028472214937210083, 0.04092714563012123, 0.020206021144986153, -0.04095139354467392, -0.04259394481778145, -0.013646015897393227, 0.006775783374905586, -0.01300893910229206, 0.04646292328834534, 0.009112326428294182, 0.05960894376039505, 0.06411049515008926, -0.026519935578107834, -0.029606839641928673, 0.013911092653870583, 0.02047557570040226, 0.0016433430137112737, 0.03361571580171585, 0.019570408388972282, -0.021276770159602165, 0.0002193582768086344, 0.026089943945407867, 0.03688986226916313, 0.06262315809726715, -0.04032439365983009, 0.013346998021006584, 0.007984897121787071, -0.08366282284259796, -0.018502650782465935, 0.05220213159918785, 0.0725640282034874, -0.03363806754350662, -0.007116046268492937, -0.0196139607578516, -0.011987067759037018, 0.013620131649076939, -0.04284018650650978, 0.008238592185080051, 2.865669719602498e-34, -0.01841658726334572, -0.041187796741724014, -0.0013589110458269715, 0.0011394575703889132, -0.015936125069856644, -0.011121281422674656, 0.022339485585689545, 0.01182333193719387, 0.025860914960503578, -0.10290122777223587, -0.03401978686451912], "47dc984f-45b2-460d-bf79-5ee6e0a84bfd": [0.02178139239549637, 0.051524754613637924, -0.0028165748808532953, -0.0706753060221672, -0.012977305799722672, 0.031506627798080444, 0.06220246106386185, 0.04722052067518234, -0.040869515389204025, 0.029009688645601273, -0.014536336064338684, 0.03236650303006172, -0.01292854268103838, 0.02537887543439865, 0.010844186879694462, -0.03124936856329441, 0.018791964277625084, -0.01360893715173006, -0.035874538123607635, -0.044716089963912964, 0.002102077240124345, -0.0021074789110571146, 0.01727507822215557, 0.01949221082031727, 0.031543273478746414, -0.012878015637397766, 0.000562086293939501, 0.00560346944257617, 0.022823218256235123, 0.06437110155820847, 0.010648997500538826, 0.08348563313484192, -0.010628794319927692, 0.08214754611253738, 1.8054568045045016e-06, 0.028784319758415222, -0.01900043711066246, -0.031007634475827217, -0.020463040098547935, -0.08338500559329987, 0.07053403556346893, -0.0035590948536992073, 0.015669383108615875, 0.027835803106427193, -0.025014201179146767, -0.022414354607462883, -0.03169507160782814, -0.027932653203606606, -0.01768413558602333, 0.02161479741334915, 0.003997479565441608, 0.016453944146633148, -0.04020994156599045, -0.00811555702239275, 0.05501174554228783, 0.014911175705492496, -0.013718447647988796, 0.08317217230796814, 0.0809812992811203, 0.026136375963687897, 0.04346271976828575, 0.02880716510117054, 0.03155970945954323, 0.01769903674721718, 0.14507842063903809, 0.03491467237472534, 0.031194578856229782, -0.08538885414600372, -0.01884019561111927, -0.012540647760033607, 0.010486843064427376, -0.01843149960041046, 0.03143195062875748, 0.017149239778518677, -0.01628616265952587, -0.0012121794279664755, 0.008704631589353085, 0.05096529796719551, 0.013109998777508736, 0.0011405711993575096, -0.09176365286111832, -0.08111663162708282, -0.09376112371683121, 0.05807656794786453, 0.08593740314245224, -0.06104642525315285, 0.0158676877617836, -0.01709742657840252, 0.02241797186434269, 0.00928779412060976, 0.011852300725877285, -0.04545466974377632, 0.045550387352705, 0.022736914455890656, 0.0745086520910263, -0.018663639202713966, 0.010293331928551197, -0.023903027176856995, 0.05455441027879715, 0.007448956370353699, 0.008057787083089352, 0.0023787207901477814, -0.01752043142914772, 0.019203856587409973, 0.012299686670303345, 0.05179921165108681, -0.06750614196062088, -0.005206397734582424, 0.0025667715817689896, 0.06695815175771713, -0.038569703698158264, -0.0018658514600247145, -0.04317184537649155, 0.004756635520607233, -0.0608171783387661, -0.03576488047838211, 0.018092336133122444, 0.02076008729636669, 0.10075392574071884, 0.04434524103999138, 0.04241730272769928, 0.014636100269854069, -0.04865371435880661, -0.06615803390741348, -0.007442559581249952, -0.06463993340730667, -0.02914762869477272, 0.041703250259160995, -0.013719137758016586, -0.008142204955220222, 0.0009347034501843154, 0.021778222173452377, 0.019419552758336067, 0.0032027794513851404, 0.02758641541004181, -0.00841399747878313, 0.04789064824581146, 0.007194987498223782, 0.05885184928774834, -0.04951071739196777, 0.028148356825113297, 0.0365835577249527, -0.04803226515650749, -0.022474396973848343, 0.009636551141738892, 0.02719050645828247, -0.01622055098414421, -0.008495287969708443, -0.03518092259764671, 0.010644988156855106, 0.03894194960594177, -0.050948575139045715, -0.06196979060769081, -0.012041746638715267, 0.020343001931905746, 0.043336089700460434, -0.061663128435611725, -0.05654318630695343, -0.008096455596387386, 0.014282644726336002, -0.01956150308251381, 0.01570069044828415, 0.038133807480335236, -0.018559206277132034, -0.02625117637217045, -0.0673551931977272, 0.08730483800172806, 0.04675106331706047, 0.04749438539147377, 0.014626456424593925, -0.03603161871433258, 0.06037081032991409, -0.02155718207359314, 0.07936817407608032, -0.009774516336619854, -0.02560116909444332, 0.0531172901391983, -0.03610679507255554, -0.07447228580713272, 0.00188718200661242, 0.01346337515860796, -0.08568236976861954, -0.019688937813043594, 0.010174833238124847, 0.05058708041906357, -0.023899896070361137, -0.010305603966116905, 0.03262880817055702, 0.0002968264452647418, 0.03567545861005783, -0.0627877414226532, -0.025157829746603966, -0.06073678284883499, -0.06467752903699875, 0.037482306361198425, -0.037624605000019073, -0.0014678912702947855, -0.054130669683218, -0.011550050228834152, -0.06080848351120949, 0.009031902067363262, -0.037178363651037216, 0.018100079149007797, 0.03870163485407829, 0.013843528926372528, 0.01026584580540657, -0.028513649478554726, -0.023597896099090576, 0.013269704766571522, 0.02425377257168293, 0.0012728910660371184, 0.002538680797442794, 0.04094182699918747, -0.05310744792222977, -0.04287118464708328, -0.01562343630939722, -0.025460271164774895, -0.00025300608831457794, -0.001520840567536652, 0.02702317386865616, 0.007207357790321112, -0.05990859493613243, 0.05467839166522026, 0.02608521655201912, 0.00999689195305109, -0.004891776014119387, -0.0369938500225544, 0.02075066789984703, 0.04267533868551254, 0.034702032804489136, -0.03202453628182411, 0.00048698767204768956, -0.028107337653636932, -0.03160566836595535, -0.033337969332933426, 0.037835489958524704, 0.029546549543738365, 0.10327614843845367, 0.03249895200133324, -0.04608496278524399, 0.05001389607787132, -0.01269497536122799, -0.008710053749382496, 0.006066265050321817, -0.026595942676067352, -0.021551258862018585, -0.04881901666522026, 0.028839606791734695, -0.006645525805652142, -0.0036100244615226984, 0.020347565412521362, 0.004272800404578447, 0.022105498239398003, 0.017045363783836365, 0.0003629000566434115, 0.011263405904173851, -0.07903338968753815, 0.03758843243122101, -0.024481013417243958, 0.029544489458203316, -0.02253309264779091, -0.010417824611067772, -0.004208307713270187, -0.029393978416919708, 0.0017305078217759728, -0.024289891123771667, 0.0006587211391888559, -0.0031838512513786554, -0.03173748776316643, 0.012108953669667244, -0.01422127429395914, 0.026810212060809135, -0.039113812148571014, 0.0029997769743204117, -0.043302204459905624, 0.031073851510882378, 0.0017865390982478857, -0.028471365571022034, 0.010328062810003757, 0.012903042137622833, -0.02807057835161686, 0.027319835498929024, -0.019748922437429428, 0.005189425777643919, -0.03316398710012436, 0.00424005463719368, -0.00010915951133938506, -0.02481560781598091, -0.04753633216023445, -0.04424228146672249, 0.0005232629482634366, 0.02846846729516983, 0.06046826392412186, 0.04305853322148323, -0.00635062949731946, -0.013510346412658691, 0.13859771192073822, -0.004126943647861481, -0.039110999554395676, -0.019576361402869225, 0.05849946662783623, 0.005676622968167067, 0.005044073332101107, -0.011832295916974545, 0.07383638620376587, 0.005204446613788605, 0.057105135172605515, -0.010960781946778297, -0.024472301825881004, -0.06194053590297699, 0.017127638682723045, 0.004068288020789623, -0.06768982857465744, 0.022831592708826065, -0.021405775099992752, -0.05373573303222656, 0.011963685974478722, -0.011026550084352493, 0.00479168863967061, 0.023652760311961174, 0.01322105061262846, -0.04562051594257355, -0.010046080686151981, -0.0438699871301651, -0.0006311372853815556, -0.024966957047581673, -0.004394191782921553, -0.002806433942168951, 0.05495094880461693, -0.0032371145207434893, -0.018593380227684975, -0.028325140476226807, 0.01568461023271084, 0.008502645418047905, -0.04564128443598747, 0.0005273736896924675, 0.007955409586429596, -0.10090520232915878, 0.01679239235818386, -0.025296691805124283, -0.020367015153169632, 0.0302561167627573, 0.014999102801084518, -0.004761402495205402, -0.049697790294885635, -0.03314351290464401, -0.06853275746107101, 0.023489847779273987, 0.009061484597623348, 0.03069530799984932, 0.07577083259820938, 0.046316102147102356, 0.06096857786178589, 0.036488380283117294, 0.01339028961956501, -0.0435364730656147, 0.00450856750831008, 0.019801544025540352, -0.08833789080381393, -0.03140071779489517, -0.02570863626897335, 0.011901757679879665, 0.06606867164373398, 0.03526916727423668, -0.021316124126315117, -0.0394839383661747, 0.02637574076652527, -0.0228902455419302, -0.0009177292231470346, -0.03666107356548309, 0.017420506104826927, 0.04237724095582962, -0.019580889493227005, 0.03295956924557686, 0.024083971977233887, -0.03000793792307377, -0.018720248714089394, -0.05281124636530876, -0.017878172919154167, -0.050695665180683136, 0.022929299622774124, -0.08038345724344254, 0.033022984862327576, 0.004870865028351545, -0.03204715624451637, -0.009717860259115696, -0.03160121664404869, 0.0262161772698164, 0.05306326225399971, -0.06069556623697281, 0.0029613340739160776, -0.012384525500237942, -0.05005806311964989, -0.03772715479135513, 0.0179003719240427, -0.010492957197129726, -0.035178061574697495, -0.00824112817645073, -0.007458451669663191, 0.048416875302791595, 0.01701238565146923, -0.00709445821121335, 0.03262488916516304, -0.01764713227748871, -0.019518213346600533, -0.0018873242661356926, 0.03319603577256203, -0.00020062312250956893, 0.047628406435251236, -0.05000912398099899, 0.016698434948921204, 0.05001536011695862, 0.026661431416869164, -0.010633300989866257, 0.0348743312060833, -0.016536666080355644, 0.01829448901116848, 0.03293200582265854, 0.035205114632844925, -0.07817305624485016, -0.047481220215559006, -0.03460897505283356, 0.00927736610174179, -0.027440272271633148, 0.01093378011137247, -0.0021768505685031414, 0.03876771777868271, 0.01336941123008728, 0.02591867372393608, -0.017457133159041405, -0.0434863343834877, -0.001300659729167819, 0.03341984376311302, 0.025800274685025215, 0.01071133092045784, 0.06966409832239151, -0.05814950913190842, -0.015692204236984253, 0.04056389257311821, -0.03075426071882248, -0.050142884254455566, 0.05833824351429939, 0.03465814143419266, -0.0033955341205000877, -0.07569126784801483, -0.047762420028448105, 0.042677558958530426, -0.031300388276576996, -0.01245960034430027, -0.02125038020312786, -0.007960590533912182, -0.015831198543310165, -0.02536736987531185, 0.018672484904527664, -0.050076570361852646, -0.003023609984666109, -0.04176678508520126, 0.02927258610725403, 0.03001815639436245, 0.06151691824197769, -0.035042207688093185, 0.032693035900592804, -0.07915584743022919, 0.02658822201192379, -0.00585101917386055, 0.01566840149462223, 0.014555157162249088, -0.09749674052000046, 0.04211997240781784, 0.021856844425201416, 0.04593168571591377, -0.011083164252340794, -0.008728839457035065, -0.03240342438220978, -0.05533793568611145, -0.007326263468712568, 0.037502143532037735, 0.02479824610054493, -0.051782868802547455, -0.014549697749316692, 0.017088361084461212, -0.003165686735883355, -0.0040673804469406605, 0.01294921524822712, -0.026496849954128265, 0.04387744516134262, 0.10927785933017731, 0.028063107281923294, 0.009984780102968216, -0.03475566208362579, 0.03741469234228134, -0.047467563301324844, -0.013607824221253395, 0.009812681935727596, 0.003584416816011071, -0.04388115182518959, -0.018306486308574677, -0.0026196471881121397, -0.00413361145183444, 0.07423895597457886, 0.013086612336337566, -0.01924504153430462, -0.040168676525354385, 0.04260830581188202, -0.07929880172014236, -0.01838691718876362, -0.011416452005505562, 0.03217734023928642, -0.04353906959295273, -0.013321519829332829, -0.03163569048047066, 0.022449610754847527, -0.0019745260942727327, -0.03874194622039795, 0.028624435886740685, 0.01215940061956644, -0.028753507882356644, 0.024135231971740723, 0.03585849702358246, -0.0014451169408857822, -0.019242946058511734, -0.025653891265392303, 0.023485643789172173, -0.009672006592154503, 0.03364761546254158, -0.07721322029829025, -0.00021525305055547506, -0.01107568759471178, -0.010075516998767853, 0.03450074791908264, -0.0725797638297081, -0.0060910978354513645, 0.029565665870904922, 0.005278030410408974, -0.03347701579332352, 0.021251123398542404, -0.0378500297665596, -0.021044896915555, -0.047728534787893295, -0.04029183089733124, 0.015031704679131508, -0.012205404229462147, 0.04696796089410782, 0.017902430146932602, -0.04234667122364044, 0.030854100361466408, 0.062400154769420624, 0.026856767013669014, 0.013288392685353756, 0.00046128849498927593, 0.03018740937113762, 0.030039535835385323, 0.017815202474594116, 0.03112580068409443, 0.02021353878080845, -5.166572811010443e-33, 0.02672896906733513, -0.0013711556093767285, 0.009122512303292751, 0.006526032462716103, 0.02191322296857834, 0.0021441723220050335, -0.033174753189086914, -0.012508098036050797, -0.06424946337938309, -0.023516956716775894, 0.006485778838396072, 0.02116737887263298, 0.03799179568886757, -0.04363124072551727, 0.0421302393078804, 0.023887941613793373, 0.011283321306109428, 0.015080871991813183, 0.004126713145524263, -0.014129125513136387, -0.014138486236333847, 0.006616823375225067, 0.005638005677610636, 0.011424736119806767, 0.002132401568815112, -0.019379470497369766, 0.01262720674276352, 0.01755269430577755, 0.022044289857149124, -0.004060972481966019, -0.05887031927704811, -0.00881241261959076, -0.036900777369737625, 0.03717292472720146, 0.03201556205749512, 0.03223380073904991, -0.04852209612727165, -0.010738079436123371, 0.013244506902992725, 0.005845314357429743, 0.011839368380606174, -0.045221224427223206, 0.04797157272696495, -0.0033356391359120607, 0.0008164374739862978, 0.018640266731381416, -0.005543527193367481, 0.0577191561460495, -0.03600287064909935, 0.07916390895843506, -0.04052986577153206, 0.039840005338191986, 0.022505711764097214, 0.03386024385690689, 0.0045303404331207275, -0.030090641230344772, 0.005592722911387682, -0.02639199048280716, -0.01132777240127325, 0.008673777803778648, -0.029933659359812737, -0.01837090402841568, 0.024374935775995255, -0.11848828196525574, -0.009687480516731739, 0.023049067705869675, -0.017176879569888115, 0.012461853213608265, -0.02711593732237816, 0.025395456701517105, -0.011005684733390808, -0.016629433259367943, -0.015093129128217697, -0.056095678359270096, -0.035494059324264526, 0.02864358015358448, 0.015268966555595398, -0.004386140499264002, 0.050706587731838226, 0.08973798900842667, 0.000634554133284837, 0.02331884205341339, -0.004341076128184795, 0.030273091048002243, 0.02900826558470726, -0.02943592704832554, -0.02965129353106022, -0.02310209907591343, -0.03056458756327629, 0.03570667654275894, -0.024492941796779633, -0.03991995379328728, 0.005223073065280914, 0.036919135600328445, 0.08323463797569275, 0.011643961071968079, 0.016973385587334633, -0.0027160372119396925, 0.039252862334251404, 0.02707359567284584, -0.007692102342844009, -0.0006727575673721731, -0.027720138430595398, 0.008418199606239796, 0.006539622321724892, -0.02774970419704914, -0.05110084265470505, 0.022090798243880272, -0.027384016662836075, 0.03395815193653107, -0.012243377976119518, -0.03162346035242081, -0.007872489280998707, -0.013341393321752548, -0.012158557772636414, -0.01591125875711441, 0.008785204030573368, 0.05894505977630615, -0.023622097447514534, -0.037874940782785416, -0.020489679649472237, 0.0459558442234993, 0.009473969228565693, -0.05477649345993996, 0.017083952203392982, -0.008309849537909031, -0.008383904583752155, 0.04256914556026459, 0.0708378478884697, 0.010847879573702812, 0.009138590656220913, -0.022738484665751457, 2.6849005507756374e-07, 0.0280875526368618, 0.07350562512874603, 0.008122268132865429, -0.031470488756895065, -0.019604139029979706, -0.05621173232793808, -0.014178665354847908, 0.002194784814491868, -0.05076971277594566, 0.004063177853822708, -0.00474724592640996, 0.031810320913791656, 0.010319671593606472, 0.04505477100610733, 0.03898581489920616, -0.08504867553710938, -0.05245039612054825, 0.012066603638231754, -0.010871675796806812, 0.04242800176143646, -0.015021237544715405, 0.016239115968346596, 0.02275111712515354, 0.03746766597032547, -0.013091262429952621, -0.012847840785980225, -0.0017298554303124547, 0.05515487864613533, 0.07734968513250351, 0.013736607506871223, 0.007056757342070341, -0.03670094907283783, -0.027784638106822968, -0.05921902135014534, 0.014504234306514263, -0.019200343638658524, -0.025670520961284637, 0.03499751165509224, -0.006261084228754044, 0.04765952005982399, 0.014666561037302017, -0.025395646691322327, -0.04552460461854935, 0.008949906565248966, -0.022088857367634773, -0.0361783541738987, -0.013333502225577831, 0.020106449723243713, 0.014491081237792969, -0.008187104016542435, 0.03687119856476784, 0.018363840878009796, 0.047113679349422455, -0.05371243879199028, -0.016398906707763672, 0.0012633518781512976, -0.05647085979580879, -0.027468815445899963, 0.05322565138339996, 0.002852750476449728, -0.06946973502635956, -0.019206618890166283, -0.009971940889954567, -0.009488769806921482, 0.009582526981830597, -0.06309691071510315, 0.005856269039213657, 2.048709410975662e-34, -0.005657881498336792, -0.013303397223353386, -0.020600315183401108, 0.028976932168006897, -0.017944766208529472, -0.0037767745088785887, 0.04035886377096176, -0.006941412575542927, 0.03917316719889641, -0.06285390257835388, -0.04401865229010582], "ae06d6a1-33fc-4b36-ae30-afcb8ed34d06": [0.012277035973966122, 0.0030943702440708876, -0.005314765032380819, 0.015631619840860367, 0.009081789292395115, 0.02951473370194435, -0.013477989472448826, 0.08585576713085175, -0.0161411315202713, 0.02275945618748665, 0.006696443539112806, 0.05865667760372162, 0.05353797227144241, -0.011145728640258312, 0.0087718041613698, 0.05033458024263382, 0.0177538450807333, 0.01867099478840828, -0.014670553617179394, 0.0024832256603986025, -0.003893574234098196, 0.017243532463908195, -0.04739182069897652, 0.016764389351010323, 0.0361967608332634, -0.026160066947340965, 0.0029446177650243044, -0.010913843289017677, 0.033065315335989, -0.04297575727105141, 0.042246054857969284, 0.02891620062291622, -0.047396767884492874, -0.033467214554548264, 2.1080732039990835e-06, -0.01760130748152733, -0.02991701290011406, -0.02466193400323391, -0.0824866071343422, 0.034992966800928116, 0.04506871849298477, 0.05470588803291321, 0.000985655002295971, 0.021210545673966408, 0.020298637449741364, -0.019318995997309685, -0.0024699303321540356, 0.03619548678398132, -0.007231095805764198, 0.011607769876718521, -0.007804924622178078, -0.03480524197220802, -0.024799101054668427, -0.03283724561333656, 0.04293232411146164, -0.1149420365691185, -0.00748120853677392, 0.02381969802081585, -0.0088100116699934, -0.040365710854530334, -0.005274337250739336, 0.027079304680228233, -0.024323726072907448, -0.007455667480826378, 0.09990078210830688, 0.00974293239414692, 0.009869408793747425, -0.06449895352125168, 0.014830300584435463, -0.00656351400539279, 0.06117689236998558, -0.013923988677561283, 0.01212951261550188, 0.03688158839941025, -0.051570892333984375, 0.00677818339318037, 0.03474961966276169, 0.03808296471834183, -0.015584675595164299, -0.016646580770611763, 0.023378675803542137, -0.010458774864673615, -0.01192476972937584, 0.05371939390897751, 0.018382666632533073, -0.05928824841976166, -0.021676860749721527, -0.029922088608145714, 0.08299243450164795, 0.005635983310639858, 0.060345932841300964, 0.0037342479918152094, -0.009299155324697495, 0.01893158257007599, 0.0883665531873703, -0.024555066600441933, 0.04450448229908943, -0.017486881464719772, 0.04500966891646385, 0.020468221977353096, 0.035407647490501404, -0.004181839991360903, -0.02680659294128418, 0.02438509464263916, -0.007329912390559912, 0.08016987890005112, -0.04905007779598236, -0.008723077364265919, -0.031094815582036972, 0.10462360084056854, 0.027178648859262466, 0.004532171878963709, -0.023821616545319557, -0.02610892429947853, -0.00424653897061944, -7.539371290476993e-05, -0.02065577171742916, -0.020662685856223106, 0.0016620662063360214, 0.06463582068681717, 0.05054810270667076, -0.007273427676409483, -0.026879223063588142, 0.02124522067606449, 0.01343555934727192, -0.07946669310331345, 0.06143542379140854, -0.002223697956651449, -0.0011172088561579585, 0.005166355986148119, -0.004998397082090378, 0.02641681395471096, 0.008971411734819412, 0.034813571721315384, -0.0036762135569006205, 0.0028633710462599993, 0.024086816236376762, -0.008637828752398491, 0.00497946422547102, -0.03838811069726944, 0.039833489805459976, 0.04834040626883507, 0.057064373046159744, 0.019921177998185158, -0.026267731562256813, 0.00872041005641222, 0.006372814066708088, 0.04771044850349426, 0.052226483821868896, 0.028669487684965134, -0.05281536653637886, -0.007820064201951027, 0.00021674302115570754, -0.015412255190312862, -0.00217695371247828, 0.011280781589448452, 0.04374532029032707, -0.048436544835567474, 0.003682886017486453, 0.023571684956550598, -0.0011901125544682145, 0.03805612772703171, 0.03118741884827614, -0.03482801467180252, 0.024261195212602615, -0.029277246445417404, -0.0050503769889473915, -0.013841794803738594, 0.006117828190326691, -0.013748404569923878, -0.006586122792214155, -0.010490492917597294, -0.057758890092372894, 0.08081607520580292, -0.06630492955446243, -0.0019877010490745306, 0.06443945318460464, -0.05639573931694031, -0.05370720103383064, -0.03424268215894699, 0.023474205285310745, -0.06575378030538559, 0.0013147586723789573, -0.02101801335811615, -0.07417627424001694, 0.0077769518829882145, -0.0033453789073973894, -0.07552597671747208, -0.003671386744827032, -0.0430159866809845, -0.04909031465649605, -0.00784147810190916, 0.002975319279357791, -0.030509769916534424, 0.010290191508829594, -0.0006262140232138336, -0.05267368629574776, -0.08263888955116272, 0.005637019407004118, -0.05169220268726349, -0.008363260887563229, -0.05837821215391159, 0.06848971545696259, 0.10449205338954926, 0.036143217235803604, 0.018192211166024208, 0.0011780756758525968, 0.006096416153013706, -0.03274966776371002, 0.02063663676381111, 0.031785331666469574, -0.02119612507522106, 0.03681396320462227, -0.027854932472109795, -0.05453944578766823, -0.014936632476747036, -0.012280070222914219, -0.0017713508568704128, 0.01776059716939926, -0.014203867875039577, 0.0041210646741092205, -0.078833669424057, 0.019792696461081505, 0.016197575256228447, 0.03653886914253235, -0.07306019216775894, -0.039461370557546616, 0.021370140835642815, 0.0205168966203928, -0.021725939586758614, -0.003915442619472742, -0.00038922211388126016, 0.005578077398240566, 0.03469309210777283, 0.02365453913807869, 0.005504707805812359, 0.028978636488318443, 0.019459960982203484, -0.012083266861736774, -0.07363198697566986, 0.011424888856709003, 0.03811424970626831, -0.003018271643668413, 0.0432966947555542, -0.05139724910259247, -0.014209250919520855, 0.008195145055651665, -0.030178632587194443, -0.016058843582868576, 0.04600159078836441, 0.004561591427773237, -0.007541818544268608, 0.03565418720245361, 0.002849714132025838, 0.016843123361468315, 0.0096126152202487, -0.049607302993535995, -0.042132697999477386, -0.01829778030514717, 0.05314541235566139, -0.01547695230692625, -0.0014189159264788032, 0.009295684285461903, -0.006344348192214966, 0.04980609193444252, 0.028791796416044235, 0.02403292804956436, -0.027345800772309303, -0.01218237541615963, 0.02195151336491108, -0.019878411665558815, 0.00660118879750371, -0.04869077727198601, -0.01829046569764614, 0.034772053360939026, 0.012068156152963638, -0.03703830763697624, 0.015667196363210678, -0.061588481068611145, -0.002545309020206332, -0.05646199360489845, 0.01661044918000698, -0.013268806971609592, -0.008255347609519958, 0.003209499642252922, -0.017716804519295692, 0.012173086404800415, -0.05431019887328148, -0.06167205795645714, 0.03761931136250496, 0.048989295959472656, -0.031744200736284256, 0.003090326441451907, -0.0372900664806366, -0.04661335051059723, -0.0049334983341395855, -0.02416360192000866, 0.03299214690923691, -0.022720802575349808, 0.04717867448925972, 0.0018981663743034005, -0.010648108087480068, -0.010299568064510822, -0.010347411967813969, 0.03266453742980957, 0.017988810315728188, 0.0321929007768631, -0.03582455590367317, -0.0070586856454610825, -0.05903441086411476, -0.027048571035265923, 0.028104128316044807, -0.019068067893385887, -0.006669596303254366, 0.026606490835547447, -0.03539862111210823, 0.009881448931992054, 0.052389152348041534, 0.007285289466381073, 0.09384777396917343, 0.04114919155836105, -0.008752589114010334, -0.05147714167833328, 0.017124777659773827, 0.006035604514181614, -0.08448941260576248, 0.014312412589788437, 0.019004328176379204, 0.06314323842525482, -0.0287335067987442, 0.038082391023635864, 0.027140695601701736, -0.020985206589102745, 0.010196994990110397, -0.024446934461593628, 0.05174354836344719, -0.02076149731874466, -0.004783574491739273, 0.03267132490873337, -0.021652158349752426, -0.0022877315059304237, 0.0678555965423584, -0.02178611047565937, -0.0019933951552957296, 0.038583118468523026, -0.007366146892309189, -0.04916859418153763, 0.01815393567085266, -0.08037888258695602, -0.014616687782108784, 0.03735168278217316, 0.05153266713023186, 0.04648792743682861, -0.019264526665210724, -0.00934163574129343, -0.008107529021799564, -0.04140673950314522, 0.025650935247540474, -0.020569032058119774, -0.06789574772119522, -0.0030328992288559675, 0.016498392447829247, 0.01903100125491619, 0.055747102946043015, 0.05884534865617752, 0.01202736608684063, 0.016932295635342598, -0.01871190406382084, 0.04587274417281151, 0.029674826189875603, -0.056071799248456955, -0.024517305195331573, -0.04541565477848053, 0.03117878921329975, -0.004045495297759771, 0.005032573826611042, -0.013291613198816776, -0.011891758069396019, -0.027175184339284897, -0.023692982271313667, -0.02187085710465908, -0.04392404109239578, 0.08493216335773468, 0.03741136193275452, 0.049908485263586044, 0.03015844151377678, 0.04761546850204468, 0.01886766031384468, 0.04023398086428642, 0.015208330005407333, 0.04102688282728195, -0.049503885209560394, -0.01663418486714363, 0.0029206308536231518, -0.015475282445549965, -0.04369537532329559, -0.03440925106406212, -0.0009740445530042052, 0.01687377318739891, -0.0033191489055752754, -0.00893401075154543, 0.016012953594326973, 0.013858167454600334, 0.028304550796747208, 0.01724310591816902, 0.006594207137823105, 0.02050989307463169, -0.007167207542806864, -0.04283127561211586, -0.02587142027914524, 0.05235990136861801, -0.06940962374210358, -0.02801617793738842, 0.014021383598446846, 0.014782273210585117, -0.00545861292630434, 0.008962451480329037, 0.024442952126264572, 0.006324106827378273, -0.07038188725709915, -0.06997402012348175, 0.014997963793575764, 0.04123860225081444, -0.02074970304965973, 0.010852967388927937, -0.025018025189638138, 0.07463909685611725, -0.02802160009741783, 0.03558653965592384, -0.051581960171461105, 0.021712524816393852, -0.019472887739539146, 0.0256341602653265, 0.008458158001303673, 0.03200356289744377, 0.07125194370746613, 0.016972193494439125, -0.04050488397479057, -0.025010472163558006, -0.047261014580726624, -0.016694549471139908, -0.022648373618721962, 0.05260367691516876, -0.017875121906399727, -0.04570939764380455, 0.03894468769431114, 0.02552913874387741, -0.03897375985980034, 0.022911489009857178, -0.10722701251506805, 0.023125657811760902, -0.04633837193250656, -0.012185046449303627, -0.03533560037612915, 0.003912664018571377, -0.02734936960041523, -0.01727469451725483, 0.06842915713787079, -0.029863111674785614, -0.008396301418542862, -0.004177980124950409, 0.05419120192527771, 0.0014042967231944203, -0.020954467356204987, 0.07553922384977341, -0.018793771043419838, 0.016468388959765434, -0.06902685761451721, 0.007297584321349859, 0.02449292503297329, -0.005797865800559521, -0.003947666846215725, -0.015520184300839901, -0.05038673058152199, 0.059790775179862976, -0.059208329766988754, 0.019640246406197548, 0.03130333870649338, -0.07709585875272751, 0.014911376871168613, 0.023214221000671387, -0.03695926070213318, 0.023533595725893974, 0.014375421218574047, -0.03754177689552307, 0.018719054758548737, 0.021282624453306198, -0.0028631207533180714, 0.02482733689248562, -0.051210541278123856, 0.052231695502996445, 0.003122380468994379, -0.007721451576799154, -0.08231042325496674, -0.03625902906060219, 0.0006480953306891024, 0.024827301502227783, 0.0007496820762753487, -0.030279314145445824, 0.04074767231941223, -0.003358645597472787, -0.032946135848760605, 0.036843426525592804, 0.022012749686837196, -0.07043363898992538, -0.03725101798772812, 0.007637219037860632, 0.05825922265648842, -0.0076804510317742825, 0.02018572762608528, -0.0449504554271698, -0.011271935887634754, -0.010255576111376286, -0.04814130812883377, 0.05494023859500885, 0.0006974306888878345, -0.03404012322425842, -0.027738096192479134, 0.001006630016490817, -0.031915102154016495, 0.02154787816107273, 0.008639414794743061, 0.06508045643568039, -0.020587719976902008, 0.02803598716855049, 0.0319424644112587, 0.021520420908927917, 0.02225727215409279, -0.02587166242301464, 0.06303314864635468, 0.024210136383771896, 0.0022365471813827753, -0.018092425540089607, 0.01888277381658554, -0.03620730713009834, -0.08763308078050613, -0.012957391329109669, -0.03117774799466133, 0.017188021913170815, -0.011713078245520592, 0.040820274502038956, -0.05624629557132721, 0.05278549715876579, 0.027969183400273323, 0.04999754950404167, -0.03311683237552643, 0.04311257600784302, 0.03520543873310089, -0.004129283595830202, -0.04959261417388916, 0.016588181257247925, 0.028612004593014717, -0.008921446278691292, 0.0289146825671196, 0.012086499482393265, -5.990269253280467e-33, -0.01650788076221943, 0.010449143126606941, 0.0008255823631770909, 0.07511638849973679, 0.02956146001815796, 0.010106520727276802, -0.031050261110067368, -0.04425409808754921, -0.016063446179032326, -0.048157963901758194, -0.00872748252004385, 0.029333366081118584, 0.02390596829354763, -0.006158762611448765, 0.007925075478851795, -0.043860726058483124, 0.037636324763298035, 0.012462521903216839, -0.014084015972912312, -0.0004748374631162733, -0.059861741960048676, -0.02479085512459278, 0.010554882697761059, 0.014256362803280354, 0.016963673755526543, -0.0033144166227430105, -0.020260628312826157, 0.013122078031301498, -0.004470543470233679, -0.015093839727342129, -0.04429169371724129, -0.05891844257712364, -0.024852601811289787, 0.01702856458723545, 0.05594612658023834, 0.00882856734097004, -0.03874525427818298, -0.013773233629763126, 0.009306036867201328, 0.01754104346036911, -0.01872636377811432, -0.08453980088233948, 0.02235626056790352, -0.0317990817129612, -0.035297513008117676, 0.012904845178127289, 0.009683093056082726, 0.0009170333505608141, 0.010126689448952675, -0.04584610089659691, -0.04947460815310478, 0.019506419077515602, -0.01963379606604576, 0.05191769078373909, -0.003698755521327257, 0.006857018452137709, -0.003139452775940299, -0.08043161779642105, -0.031438544392585754, -0.032837532460689545, -0.020115531980991364, -0.01783222146332264, 0.015678992494940758, -0.04574085399508476, -0.03432917594909668, -0.033790700137615204, -0.020478375256061554, 0.07592098414897919, -0.016666822135448456, -0.03180290758609772, 0.02181863598525524, -0.00021357079094741493, -0.00031079401378519833, -0.07515107840299606, 0.004180341958999634, -0.006230298429727554, -0.05106886848807335, 0.023426352068781853, 0.03883683308959007, 0.12923955917358398, -0.004881666507571936, 0.0026388978585600853, -0.01934432052075863, 0.027404816821217537, -0.018495000898838043, -0.042862772941589355, -0.026740554720163345, 0.025772444903850555, 0.040803708136081696, 0.012804137542843819, 0.025638462975621223, -0.06967487931251526, -0.0690692588686943, 0.0033545761834830046, 0.028138455003499985, -0.011881961487233639, 0.08570139855146408, 0.010886094532907009, -0.011765966191887856, -0.009892133995890617, -0.06439061462879181, -0.011624986305832863, -0.01166739221662283, 0.02810743637382984, 0.02304915152490139, 0.015778325498104095, -0.006311819422990084, 0.01305880956351757, -0.04127385839819908, 0.050554309040308, -0.003142624394968152, -0.057867828756570816, 0.022315630689263344, 0.017625555396080017, 0.0338313914835453, -0.026798570528626442, 0.0043873051181435585, -0.1241544708609581, -0.013521788641810417, 0.019399192184209824, -0.025612784549593925, -0.015363762155175209, 0.022245800122618675, -0.01648370362818241, 0.0019898179452866316, 0.020823098719120026, -0.019237402826547623, -0.006817256566137075, 0.059277817606925964, -0.020692957565188408, 0.0273014884442091, 0.025333816185593605, 2.8626737957893056e-07, -0.004191681742668152, 0.02842242829501629, 0.0052464609034359455, 0.003798465011641383, -0.045916881412267685, -0.07810788601636887, -0.04416964203119278, -0.040751468390226364, -0.05065302923321724, 0.007182252127677202, 0.020927894860506058, -0.008938036859035492, 0.015067577362060547, -0.01712724007666111, 0.033272139728069305, -0.070821113884449, 0.04111570864915848, -0.01776045933365822, -0.013274505734443665, -0.007391932420432568, 0.00028482580091804266, 0.012123029679059982, 0.05602383241057396, -0.0160695668309927, -0.033944740891456604, -0.004287367686629295, -0.015460413880646229, -0.031343135982751846, 0.02181115932762623, -0.045656219124794006, 0.08606305718421936, 0.09310923516750336, -0.003915826324373484, -0.018036246299743652, -0.012200367636978626, -0.006790508516132832, 0.01868639886379242, 0.07142896205186844, 0.023525338619947433, 0.07838204503059387, 0.022426383569836617, -0.08604412525892258, 0.0034569590352475643, -0.014530058950185776, 0.019556045532226562, 0.08916325867176056, 0.0387938991189003, -0.01101135928183794, -0.02224944718182087, -0.008866840973496437, 0.025601597502827644, 0.05747490003705025, 0.032525110989809036, -0.012989310547709465, 0.010853379033505917, -0.013577984645962715, -0.0190568957477808, -0.012352287769317627, 0.021635431796312332, 0.06460949778556824, -0.0021111194510012865, 0.0024211646523326635, 0.042894501239061356, 0.06259190291166306, 0.01978849433362484, -0.07626671344041824, -0.02257639355957508, 3.09025618052175e-34, 0.028654206544160843, -0.06842746585607529, -0.03237137943506241, -0.03994946926832199, -0.0035568515304476023, -0.02863178215920925, 0.042117103934288025, 0.0424518883228302, -0.0043844198808074, -0.059580039232969284, -0.008773932233452797], "c348e27e-07a9-4eb0-96bf-ba067c1b993f": [0.019995154812932014, -0.02472207322716713, -0.026657991111278534, -0.0019036420853808522, -0.004814572632312775, 0.06291477382183075, 0.06059509143233299, 0.03941687196493149, 0.08150489628314972, -0.002096735406666994, 0.0502675399184227, 0.02924901619553566, 0.005216413643211126, 0.01379005704075098, 0.03208165988326073, -0.00276347273029387, 0.010430365800857544, 0.048512231558561325, -0.028898485004901886, 0.0013676660601049662, -0.004200950730592012, 0.04583694413304329, 0.008865476585924625, 0.026919197291135788, 0.03144603222608566, -0.011388561688363552, 0.06072807312011719, 0.018958214670419693, 0.06349873542785645, 0.008583970367908478, 0.007407717406749725, -0.0036044614389538765, -0.04615296050906181, -0.0058474731631577015, 2.468877482897369e-06, 0.0004540924564935267, -0.003285682061687112, 0.015895040705800056, -0.03141322359442711, -0.05144326016306877, 0.04136132076382637, -0.07118506729602814, -0.035295456647872925, 0.05092500150203705, 0.03980332612991333, 0.018100736662745476, 0.014573674649000168, 0.01983480341732502, 0.01564038172364235, -0.0017437124624848366, -0.0011448466684669256, 0.045279309153556824, -0.032914433628320694, -0.0018898398848250508, 0.04804416373372078, -0.023920485749840736, -0.01260168943554163, 0.008528629317879677, 0.028780564665794373, -0.031115105375647545, 0.017736773937940598, 0.03311101719737053, -0.04222194105386734, -0.001617449801415205, -0.007686267141252756, 0.01369533222168684, 0.03281236067414284, -0.10683564841747284, 0.05158558487892151, 0.021285291761159897, 0.04982893168926239, 0.02330629527568817, 0.0042268382385373116, 0.05309923738241196, -0.006713402457535267, -0.0004753836547024548, 0.047227125614881516, 0.03288523480296135, -0.07474767416715622, -0.027111468836665154, 0.01754911243915558, 0.017252396792173386, -0.029619820415973663, 0.009987404569983482, 0.048453278839588165, -0.03415622562170029, -0.01955326460301876, -0.04328480362892151, 0.07039767503738403, -0.016900930553674698, 0.052144307643175125, 0.03106311894953251, 0.05077037960290909, 0.008898526430130005, 0.05002720654010773, -0.036211561411619186, 0.004718581680208445, -0.0033223789650946856, 0.04346046596765518, -0.03654921054840088, -0.011147174052894115, 0.06726454943418503, -0.058215465396642685, -0.003093097824603319, 0.044965051114559174, 0.032798659056425095, -0.0395703986287117, -0.061374481767416, -0.03545297682285309, 0.0904863029718399, 0.03423135355114937, 0.021480092778801918, 0.025068076327443123, -0.05996666103601456, 0.0001718223065836355, 0.02674020454287529, -0.02521941438317299, 0.052757903933525085, -0.026027478277683258, 0.04197603464126587, 0.019413549453020096, -0.0010294688399881124, -0.0564870648086071, 0.011393093504011631, 0.033226367086172104, -0.050444286316633224, -0.010382498614490032, -0.03597385436296463, -0.03531447798013687, -0.04911474138498306, -0.0032405175734311342, -0.005333254113793373, -0.003303318051621318, 0.0257602296769619, 0.027543293312191963, 0.0867176428437233, 0.04823564738035202, -0.03143075481057167, -0.013797436840832233, -0.026639696210622787, -0.007306918501853943, 0.0041762180626392365, 0.027924448251724243, 0.026406479999423027, 0.017611270770430565, -0.04315422102808952, -0.008552690036594868, 0.022347528487443924, 0.0497642382979393, 0.03449508175253868, -0.05641689524054527, 0.022392677143216133, -0.03077572211623192, -0.02030082978308201, 0.03042738139629364, 0.05102875456213951, 0.02279501222074032, -0.022533416748046875, -0.013307069428265095, 0.0068482933565974236, 0.03380706161260605, 0.013803064823150635, 0.014360385946929455, -0.01250548381358385, -0.01754266396164894, -0.03391294553875923, 0.05294222757220268, 0.004866692703217268, -0.0375923290848732, 0.010031274519860744, -0.012698085978627205, 0.02627016231417656, -0.044180724769830704, 0.034980859607458115, -0.01789647899568081, -0.0127162616699934, 0.017017178237438202, 0.06326810270547867, -0.06231282278895378, 0.023218665271997452, -0.06078594550490379, -0.05334107577800751, -0.025441186502575874, 0.0031617179047316313, -0.08907229453325272, -0.011096883565187454, -0.004660874605178833, -0.0017282901098951697, -0.01700587384402752, -0.03712428733706474, -0.021330930292606354, -0.007971844635903835, 0.01624876633286476, -0.027077164500951767, 0.0064217448234558105, -0.024304263293743134, -0.03043031319975853, -0.09707240015268326, -0.009158069267868996, -0.027997277677059174, 0.014610080048441887, -0.0540710873901844, 0.01760539598762989, 0.14346326887607574, 0.022096963599324226, -0.026284022256731987, -0.019052311778068542, -0.0499570332467556, 0.019536800682544708, 0.03977755829691887, -0.00659371679648757, 0.009708658792078495, 0.004657857120037079, -0.01721862144768238, -0.04762953519821167, -0.012908435426652431, -0.021852903068065643, -0.006924503482878208, -0.038678791373968124, 0.012389583513140678, -0.022123273462057114, -0.028847388923168182, -0.06193847209215164, 0.0028854815755039454, 0.04690274968743324, -0.060256633907556534, -0.010740079917013645, 0.02653004415333271, 0.021864213049411774, 0.042789358645677567, -0.036148909479379654, 0.01563819870352745, -0.009042367339134216, -0.0005407662247307599, -0.0108717642724514, 0.0059434217400848866, -0.05320857837796211, 0.008064663037657738, 0.0037981783971190453, -0.07743428647518158, 0.010751718655228615, 0.07454830408096313, 0.004204269964247942, 0.05876908823847771, -0.016616402193903923, 0.009534109383821487, -0.04055413231253624, -0.019692929461598396, -0.028548063710331917, 0.028811337426304817, 0.028595272451639175, -0.00530290836468339, 0.02746010385453701, -0.02069137431681156, 0.005989574361592531, -0.03244684264063835, -0.05131780728697777, -0.0210612453520298, -0.0501672737300396, 0.02073480188846588, 0.016518069431185722, -0.01392483338713646, 0.0025514832232147455, -0.001945912605151534, 0.0608990415930748, -0.005491718649864197, 0.020848652347922325, -0.08434923738241196, -0.006091376766562462, -0.0031326289754360914, -0.023020099848508835, -0.008594673126935959, -0.016993217170238495, -0.026828808709979057, 0.02687377668917179, -0.007526386063545942, -0.0364837571978569, 0.022096101194620132, -0.0019813403487205505, -0.0258929543197155, -0.02134000137448311, 0.013778388500213623, -0.026681412011384964, -0.01976006105542183, -0.021632403135299683, -0.050415221601724625, 0.017575783655047417, -0.09274427592754364, -0.03716684505343437, 0.029442233964800835, -0.000851227028761059, 0.016002994030714035, -0.013000823557376862, -0.04102114215493202, -0.017941748723387718, 0.013004659675061703, 0.042411282658576965, 0.0701327919960022, 0.00730375200510025, 0.08767111599445343, 0.021315647289156914, 0.018351061269640923, 0.017549388110637665, 0.015024968422949314, 0.003133638994768262, 0.016976000741124153, 0.020755965262651443, -0.07017149776220322, -0.049923259764909744, -0.06317319720983505, 0.04779066890478134, 0.015602593310177326, -0.03043418750166893, 0.010954465717077255, -0.02937988005578518, -0.01678636111319065, -0.06977477669715881, -0.0357995443046093, -0.017170393839478493, 0.023324932903051376, 0.031177537515759468, -0.05648612231016159, -0.01868261955678463, 0.026816288009285927, 0.012862909585237503, -0.09074728190898895, -0.011553693562746048, 0.035206615924835205, 0.0912884995341301, -0.04836641252040863, 0.0318288616836071, 0.024044236168265343, -0.036172665655612946, 0.06513438373804092, 0.015736866742372513, 0.03325384855270386, -0.05102914571762085, -0.06850279122591019, -0.0379142165184021, -0.0225839726626873, -0.03163554146885872, 0.024346884340047836, -0.02282451093196869, -0.004103484563529491, -1.530143345007673e-05, -0.014092758297920227, -0.0563555546104908, 0.042353205382823944, -0.11412210017442703, -0.03112916275858879, 0.06373940408229828, 0.03803059086203575, 0.021343201398849487, -0.02647719345986843, 0.018427062779664993, -0.08180685341358185, -0.024787234142422676, -0.0032113981433212757, 0.022585982456803322, -0.045387692749500275, 0.03458036854863167, 0.02696824260056019, -0.03236757218837738, 0.0026118047535419464, 0.08680345118045807, -0.009083948098123074, 0.014419189654290676, 0.013177827000617981, 0.022741738706827164, -0.0008505475125275552, -0.01850571669638157, 0.006689177826046944, -0.05480489879846573, 0.06932104378938675, -0.007605807855725288, -0.02081780694425106, 0.010000651702284813, -0.03756007179617882, -0.051832713186740875, 0.001130314776673913, -0.024015143513679504, -0.018047837540507317, 0.0629662424325943, 0.009884942322969437, 0.05560236796736717, -0.023543888702988625, -0.008115112781524658, 0.02283840999007225, 0.08778300881385803, 0.014556057751178741, -0.004054735880345106, -0.017761509865522385, -0.07783254981040955, 0.05903485044836998, -0.02652743086218834, 0.009403130039572716, 0.023859713226556778, -0.03736604005098343, 0.00512283481657505, 0.0025156803894788027, 0.024902468547225, -0.019135208800435066, -0.011814680881798267, 0.05842882767319679, -0.015544758178293705, 0.016879016533493996, 0.08450828492641449, 0.022897377610206604, -0.005052673164755106, 0.04491705819964409, 0.0195186547935009, -0.011735869571566582, -0.0041808513924479485, 0.009804720059037209, 0.08969444781541824, -0.0653897374868393, 0.002031827811151743, -0.007675526197999716, 0.042990945279598236, -0.04094573110342026, 0.01806582510471344, 0.03627437353134155, 0.015192982740700245, -0.01208000723272562, -0.031422823667526245, -0.024800514802336693, 0.1020008847117424, 0.004541771952062845, 0.0522792749106884, -0.03229540213942528, 0.013049217872321606, 0.05058777332305908, -0.022761331871151924, 0.026413826271891594, 0.032526880502700806, -0.019785434007644653, 0.004369496367871761, -0.04143813997507095, -0.022714169695973396, -0.024302080273628235, -0.043895576149225235, 0.033025871962308884, 0.03878080099821091, -0.0038923004176467657, -0.0901445746421814, 0.0013995632762089372, 0.04109993204474449, -0.010867101140320301, -0.026480279862880707, -0.02762310951948166, 0.061610810458660126, -0.022607998922467232, -0.0037484413478523493, -0.028336748480796814, 0.04340837150812149, 0.006491323467344046, -0.05539115145802498, 0.08342389762401581, 0.01757052354514599, 0.04509072005748749, 0.04813682660460472, 0.0420156829059124, -0.03230027109384537, 0.004597211256623268, 0.03609195724129677, 0.0403888076543808, 0.053902409970760345, -0.06747578829526901, 0.024320729076862335, 0.03680174797773361, 0.02460564486682415, -0.017535926774144173, -0.020062657073140144, -0.013835178688168526, 0.05309509113430977, -0.034850697964429855, 0.0036458601243793964, 0.034260343760252, -0.024179110303521156, -0.007079956121742725, -0.00767176179215312, -0.05513162538409233, -0.013468814082443714, -0.040169402956962585, -0.04347245767712593, -0.0007155570783652365, -0.013397403061389923, -0.019431540742516518, 0.010199134238064289, 0.010266339406371117, 0.05226471275091171, -0.029218267649412155, -0.01760575920343399, -0.02051539346575737, -0.06928005814552307, 0.02069724351167679, -0.036131009459495544, 0.03957653045654297, -0.028129594400525093, 0.04509919136762619, -0.025919316336512566, -0.030839351937174797, -0.0314193032681942, 0.048567455261945724, -0.03946731239557266, 0.00570913590490818, -0.005275703966617584, 0.07873713225126266, -0.009218958206474781, 0.027970105409622192, -0.014039305970072746, 0.04414559528231621, -0.043415747582912445, -0.07492807507514954, 0.002648581052199006, -0.06890460103750229, -0.04619449004530907, -0.003260262543335557, 0.017864461988210678, 0.020083973184227943, 0.002650326583534479, 0.012592867948114872, 0.023082943633198738, -0.022598138079047203, 0.028670120984315872, 0.0453401543200016, -0.011099581606686115, 0.0176115483045578, -0.03677939996123314, 0.02342972345650196, -0.03593204542994499, 0.021336253732442856, 0.04197925329208374, -0.015947816893458366, -0.02534671314060688, -0.06988926976919174, -0.0028065345250070095, 0.027804551646113396, 0.006783538963645697, -0.03769385814666748, -0.009808147326111794, -0.031043630093336105, 0.030198588967323303, 0.010004728101193905, 0.04174371063709259, -0.02925637923181057, 0.03258749097585678, 0.020706048235297203, 0.01911226101219654, -0.04541733115911484, -0.00805746577680111, 0.020217251032590866, -0.007929802872240543, 0.060004692524671555, 0.007329832762479782, -6.477045872059792e-33, -0.022584857419133186, -0.0048936717212200165, -0.008662490174174309, 0.03104991652071476, 0.001815247000195086, -0.04840351268649101, 0.01619538478553295, -0.01832258701324463, -0.06023140996694565, -0.044980138540267944, 0.023443933576345444, 0.05189807340502739, 0.013489404693245888, -0.026211438700556755, -0.020106511190533638, -0.02592846006155014, -7.021602505119517e-05, 0.023576529696583748, 0.017004942521452904, 0.004600208252668381, -0.041186556220054626, -0.0033348258584737778, 0.022654559463262558, -0.02926589921116829, 0.030536135658621788, 0.0053882477805018425, -0.035636819899082184, 0.013452297076582909, 0.01933385618031025, 0.005346329417079687, -0.05288081616163254, 0.011107375845313072, 0.0017143136356025934, 0.05395883321762085, 0.04292799532413483, 0.0880860984325409, -0.03710611164569855, -0.028699075803160667, 0.006802847143262625, -0.024818023666739464, -0.005303062964230776, -0.05969788879156113, -0.013215106911957264, 0.008236436173319817, -0.007980911992490292, -0.039942868053913116, 0.02540135569870472, -0.013859198428690434, 0.002807646756991744, -0.039765968918800354, -0.07521281391382217, 0.01050646509975195, -0.03739500418305397, 0.030857007950544357, -0.05604316666722298, 0.022537915036082268, 0.0323510617017746, -0.04864433407783508, -0.0630650743842125, -0.04765889048576355, 0.004946283530443907, -0.015361974015831947, 0.0029833305161446333, -0.03982887044548988, -0.009681539610028267, 0.021786484867334366, -0.0314817801117897, 0.06912197172641754, 0.009505609050393105, 0.04308097064495087, 0.027828900143504143, 0.0054700942710042, 0.0075552999041974545, -0.04533702880144119, -0.06496517360210419, -0.04313221946358681, -0.05437503755092621, 0.03618503734469414, 0.06944233924150467, 0.05376698449254036, 0.03022931143641472, -0.025876721367239952, -0.056149739772081375, -0.017968181520700455, -0.0071132550947368145, -0.02802317962050438, -0.04103294387459755, -0.015403594821691513, 0.02386004850268364, 0.00818772055208683, -0.022390348836779594, -0.04511890187859535, -0.05933435633778572, 0.03040982037782669, 0.09439777582883835, -0.004201048519462347, 0.05696127936244011, -0.02387372776865959, 0.012362999841570854, -0.05892866849899292, -0.07131120562553406, -0.03005182184278965, -0.01764979586005211, 0.03054528869688511, 0.019958527758717537, -0.022002626210451126, -0.009129833430051804, 0.0037664591800421476, -0.06774482876062393, 0.013684823177754879, -0.006835489999502897, 0.020851925015449524, 0.03538232669234276, 0.004622735548764467, -0.008845734409987926, -0.03852234035730362, 0.021295621991157532, 0.009662555530667305, 0.019414439797401428, 0.009205399081110954, -0.03966160863637924, 0.024056950584053993, 0.02069726027548313, -0.024996662512421608, -0.01446298323571682, -0.010925918817520142, 0.014742803759872913, 0.021534409373998642, 0.07737788558006287, -0.03828413039445877, 0.004538973793387413, -0.01752394251525402, 3.09952298493954e-07, -0.025985129177570343, 0.032816436141729355, 0.013719727285206318, -0.038805268704891205, 0.01636434532701969, -0.016257494688034058, 0.01925835758447647, 0.02629399485886097, 0.02227327600121498, 0.012279125861823559, 0.041954927146434784, -0.014814510941505432, -0.0007460816414095461, 0.007902354001998901, 0.045915257185697556, -0.07308156788349152, 0.015912026166915894, -0.04444324970245361, -0.022711724042892456, -0.013745296746492386, 0.05538317561149597, 0.0539972148835659, 0.0438169464468956, -0.00582299055531621, -0.017478972673416138, -0.026451852172613144, -0.013521946035325527, -0.04491477832198143, 0.0111231105402112, -0.041976459324359894, 0.03730678930878639, 0.05017770826816559, -0.01656576618552208, -0.059543952345848083, 0.03197282552719116, -0.0059822299517691135, -0.02484586462378502, 0.06851475685834885, 0.014425781555473804, 0.0735580176115036, 0.008511513471603394, -0.061257150024175644, 0.014148769900202751, 0.007401801645755768, 0.04008263349533081, 0.03559247404336929, -0.003892027772963047, 0.06391438841819763, -0.021485716104507446, -0.04353111609816551, 0.018355559557676315, 0.000482434086734429, -0.024396877735853195, 0.012488785199820995, 0.022450914606451988, -0.005386556498706341, 0.014965538866817951, -0.006200568750500679, 0.04833688586950302, -0.01104376744478941, -0.010632949881255627, -0.04792235419154167, 0.03932320326566696, 0.025988733395934105, -0.03420159965753555, -0.009230227209627628, -0.018173515796661377, 3.4436458278111717e-34, 0.015115255489945412, -0.0044040740467607975, -0.02966541424393654, -0.06607159972190857, 0.0003231197770219296, 0.019965238869190216, 0.029168181121349335, 0.016318941488862038, -0.007456774823367596, -0.029979504644870758, -0.04113508760929108], "542517e7-3531-412e-8101-736be1fcdfe0": [-0.01463437732309103, -0.006509443279355764, -0.013238241896033287, -0.03274235501885414, 0.029243718832731247, 0.030139273032546043, 0.022374015301465988, 0.04901304841041565, 0.10725972801446915, 0.030566249042749405, 0.061285458505153656, 0.034783005714416504, -0.0033424170687794685, 0.033606745302677155, 0.03676611930131912, -0.035839203745126724, 0.0034670995082706213, 0.034704871475696564, -4.4284224713919684e-05, -0.012016180902719498, 0.0207050908356905, 0.024910200387239456, -0.06187300384044647, 0.027974700555205345, 0.024710064753890038, 0.009319336153566837, 0.06026255339384079, -0.013316040858626366, 0.08432213217020035, 0.0004659297992475331, -0.027809204533696175, -0.02111075073480606, -0.07787498086690903, 0.008414131589233875, 2.045923110927106e-06, 0.014840585179626942, -0.01052920799702406, -0.026865411549806595, -0.012448889203369617, -0.0829802080988884, 0.009059864096343517, -0.03875966742634773, -0.01610681042075157, 0.03595087304711342, 0.001794962678104639, -0.013651775196194649, 0.08820134401321411, -0.004273329395800829, 0.04721388965845108, -0.019110288470983505, -0.04543711617588997, 0.00979431252926588, -0.018613917753100395, -0.008868829347193241, 0.001250777393579483, -0.07501059770584106, 0.012891296297311783, -0.0052811806090176105, 0.02258053794503212, -0.037061478942632675, 0.03054097481071949, 0.024867059662938118, -0.0486845038831234, 0.03393964841961861, 0.024643827229738235, 0.05346362292766571, 0.023199059069156647, -0.027965495362877846, -0.001493831630796194, 0.02513793483376503, 0.02625335194170475, 0.01948854885995388, 0.007809031754732132, 0.012200258672237396, -0.010203738696873188, -0.024405386298894882, 0.07535151392221451, 0.011890402995049953, -0.05303620174527168, 0.014367645606398582, 0.05635255575180054, -0.003185518551617861, -0.011053460650146008, -0.0025034926366060972, 0.001010699081234634, -0.024195529520511627, 0.014711382798850536, 0.023320801556110382, 0.0722731277346611, -0.004476485308259726, 0.001081492635421455, 0.0027442341670393944, 0.023723900318145752, 0.05408533662557602, 0.015991322696208954, -0.013176553882658482, -0.03285638242959976, -0.018114618957042694, 0.03127298131585121, -0.013815591111779213, 0.001508973422460258, 0.018764374777674675, -0.09232421964406967, 0.010365954600274563, 0.02759719453752041, 0.00012800777039956301, -0.0957515686750412, -0.039046574383974075, -0.02184242568910122, 0.06622453033924103, 0.03214835375547409, 0.0024649715051054955, -0.016384784132242203, 0.022236233577132225, 0.02298392727971077, 0.022873908281326294, -0.04628484696149826, 0.04434972628951073, -0.03424805402755737, 0.022401655092835426, 0.04402304068207741, -0.027734559029340744, -0.03156178817152977, 0.00011556053505046293, 0.031126778572797775, -0.06119093298912048, -0.014463396742939949, -0.031811658293008804, -0.035284947603940964, -0.09061049669981003, -0.0007813538541086018, -0.011271579191088676, 0.01325801108032465, -0.02687392197549343, 0.035519104450941086, 0.018549714237451553, 0.05786760896444321, -0.05747424438595772, -0.019233934581279755, 0.015138508751988411, -0.01396703440696001, 0.041710712015628815, 0.055307161062955856, 0.027878480032086372, -0.00817310344427824, -0.03125722333788872, -0.02271699346601963, 0.011036080308258533, 0.06916429847478867, 0.0020124525763094425, -0.03912996128201485, -0.010615278035402298, -0.04663889482617378, -0.028880294412374496, -0.039054594933986664, 0.0057029868476092815, 0.03592899441719055, 0.0008066336158663034, 0.005994743667542934, -0.038464829325675964, -0.03922201320528984, 0.00766707630828023, 0.0056252810172736645, 0.01720239967107773, 0.0349419042468071, -0.030370717868208885, 0.04689496010541916, -0.015991197898983955, 0.0016912509454414248, 0.04572923853993416, -0.008677558973431587, 0.0069533055648207664, -0.04448561370372772, 0.03681802377104759, -0.012386561371386051, -0.05753322318196297, 0.05780690163373947, -0.0038808195386081934, -0.05807076767086983, -0.03972647711634636, -0.021351151168346405, -0.0642336755990982, 0.007858609780669212, -0.0025269160978496075, -0.03561636060476303, -0.008210014551877975, 0.008679118938744068, -0.001218173187226057, -0.03033222071826458, -0.015682382509112358, 0.03399397060275078, -0.03617288917303085, -0.021506503224372864, -0.02118888683617115, 0.02473320998251438, -0.03564722463488579, 0.015830418094992638, -0.021267345175147057, -0.015173753723502159, 0.011431926861405373, -0.017498252913355827, -0.11395980417728424, -0.02634432539343834, 0.07901265472173691, -0.011938772164285183, -0.06017133221030235, -0.020475812256336212, -0.019075674936175346, -0.06613443791866302, 0.04965014383196831, -0.029677612707018852, -0.028317980468273163, 0.05134822055697441, -0.03486957401037216, -0.004248723387718201, -0.011332514695823193, -0.016037698835134506, 0.01688571274280548, -0.022946881130337715, 0.0013949358835816383, -0.05618072673678398, 0.007199103478342295, 0.05616439878940582, 0.021637221798300743, 0.00993435364216566, -0.04905141517519951, 0.010495148599147797, -0.010179794393479824, 0.03808962181210518, 0.0425122007727623, -0.021232832223176956, 0.03985574096441269, 0.00568715063855052, 0.0034587893169373274, 0.0362420417368412, 0.016647137701511383, -0.05305727198719978, -0.020758526399731636, -0.010733767412602901, -0.030053183436393738, 0.05437837168574333, 0.0399547815322876, 0.005304587073624134, -0.00010672019561752677, -0.0638992041349411, -0.03800445422530174, 0.028259065002202988, -0.015320478938519955, -0.03381243348121643, 0.020767325535416603, 0.040394898504018784, -0.03537331148982048, -0.011649942956864834, -0.005679348949342966, 0.0011856227647513151, -0.05056661367416382, -0.10845598578453064, -0.06756624579429626, -0.057047244161367416, 0.009955398738384247, -0.042142000049352646, 0.011116626672446728, 0.010743485763669014, -0.03696763515472412, 0.033293455839157104, 0.000784489035140723, 0.02718261256814003, -0.12251460552215576, 0.01541219837963581, 0.040765441954135895, -0.009953024797141552, 0.024028325453400612, -0.008276509121060371, -0.0043306779116392136, -0.029890112578868866, -0.023744704201817513, -0.02193453721702099, 0.050439029932022095, 0.0065823812037706375, -0.02140314131975174, -0.01608492061495781, 0.02037668414413929, 0.019354067742824554, -0.02000931091606617, -0.004292782861739397, -0.03721370920538902, -0.003200845792889595, -0.03974151238799095, -0.026090877130627632, -0.034923892468214035, 0.041569702327251434, 0.040209390223026276, -0.06110449880361557, -0.013413862325251102, -0.00800483301281929, 0.002763432450592518, 0.054757487028837204, 0.0369439423084259, -0.05618834123015404, -0.011160539463162422, -0.0015660746721550822, 0.02723374404013157, -0.019254520535469055, 0.00017335647135041654, 0.030715690925717354, 0.024776412174105644, 0.007404062431305647, -0.046505000442266464, -0.013146166689693928, -0.0057252333499491215, -0.008557170629501343, 0.03261394426226616, -0.033033158630132675, 0.03355938568711281, 0.01172176655381918, 0.021565372124314308, -0.018015841022133827, 0.02117745392024517, 0.0024944196920841932, 0.03336497023701668, 0.045401208102703094, -0.039838239550590515, -0.022340990602970123, 0.01706179603934288, 0.0010248319013044238, -0.06212955340743065, -0.013041127473115921, -0.009615343064069748, 0.024645283818244934, -0.0064476062543690205, -0.02001548372209072, 0.024091698229312897, -0.04603585600852966, 0.042061254382133484, -0.04878230765461922, -0.012126597575843334, 0.0014414112083613873, -0.023081829771399498, -0.04420783370733261, 0.029139256104826927, -0.0211858619004488, 0.02167702466249466, -0.017833177000284195, -0.008229292929172516, -0.026307960972189903, -0.010594268329441547, -0.008564119227230549, 0.04225356876850128, -0.031178120523691177, -0.03562477231025696, 0.058075085282325745, 0.06958295404911041, 0.006450282409787178, 0.027609828859567642, -0.003826729953289032, -0.0508628748357296, -0.019262120127677917, -0.009859788231551647, 0.0010078893974423409, 0.008170993998646736, -0.02424960769712925, 0.005819487385451794, -0.0370936281979084, 0.04136228561401367, 0.02847328968346119, -0.02137039043009281, 0.0162979569286108, -0.013930527493357658, -0.0022533098235726357, 0.010694745928049088, 0.004512771498411894, 0.022824816405773163, -0.05323314666748047, 0.013346271589398384, -0.00046255896450020373, 0.007579992525279522, -0.004565739072859287, -0.03231794014573097, -0.04319240152835846, 0.0016064186347648501, -0.047264620661735535, -0.003127731615677476, 0.030087783932685852, -0.00501159718260169, -0.008956411853432655, 0.00014633267710451037, 0.02933667041361332, 0.009074455127120018, 0.06917465478181839, 0.004147734027355909, 0.019421275705099106, 0.004639392253011465, 0.02178915962576866, 0.04714738577604294, 0.017253529280424118, -0.010990878567099571, -0.0363779179751873, -0.019548742100596428, 0.019224412739276886, 0.04111601784825325, 0.006532424129545689, -0.07989740371704102, 0.04734873026609421, 0.0310103427618742, 0.049153126776218414, 0.03965511918067932, 0.049043189734220505, 0.021804077550768852, -0.04964238032698631, -0.03192109242081642, 0.031955476850271225, 0.006957648787647486, -0.03632042929530144, 0.015301491133868694, 0.1472654640674591, -0.02056659571826458, 0.01563447341322899, -0.04469782114028931, 0.045488011091947556, -0.06666462123394012, 0.012903135269880295, -0.006868612952530384, -0.003362981602549553, -0.029709579423069954, 0.034742143005132675, 0.01686190813779831, 0.0745931938290596, 0.010590082965791225, -0.005322536453604698, -0.03183036670088768, 0.009332109242677689, -0.003472045063972473, 0.0660470575094223, 0.011612705886363983, -0.03566163778305054, -0.01424497552216053, 0.020597949624061584, 0.03673752397298813, -0.004889965057373047, -0.024145374074578285, -0.02107488363981247, 0.029080945998430252, -0.006020470056682825, -0.017501771450042725, -0.10188768059015274, 0.008769994601607323, 0.03427422046661377, -0.0139828035607934, 0.03444398194551468, -0.0274319089949131, 0.046773649752140045, -0.017678266391158104, -0.003448881907388568, -0.02790077216923237, -0.006502930074930191, -0.015599846839904785, -0.07745315879583359, 0.055788181722164154, 0.01062244176864624, 0.06742698699235916, 0.04145342484116554, 0.0178852379322052, -0.012295487336814404, 0.012435661628842354, 0.0746079757809639, 0.031543366611003876, 0.007738239131867886, -0.08146489411592484, -0.03126870095729828, 0.0471620112657547, 0.058124840259552, -0.01769128255546093, 0.018032383173704147, 0.028947779908776283, 0.008955463767051697, -0.0288409274071455, 0.047602780163288116, 0.08390500396490097, 0.0157439187169075, -0.005878522526472807, 0.020726097747683525, -0.05125243216753006, -0.032959889620542526, 0.0463559664785862, -0.02972816675901413, 0.0035731929820030928, -0.00513941515237093, 0.020015988498926163, -0.03039630874991417, -0.005100627895444632, 0.023010684177279472, -0.045047856867313385, -0.02967551164329052, -0.1058453842997551, -0.11144743859767914, -0.03135726973414421, 0.037368789315223694, 0.04249047860503197, -0.025708936154842377, 0.05590289458632469, 0.007438432890921831, -0.04501749947667122, 0.019404761493206024, 0.018733631819486618, -0.0292044784873724, 0.04763873666524887, 0.017385002225637436, 0.0689670592546463, -0.0198394563049078, 0.0061071282252669334, 0.00048550934297963977, 0.01674558036029339, -0.024524301290512085, -0.11474896222352982, 0.043755512684583664, -0.04051412269473076, -0.024709079414606094, 0.038222745060920715, 0.017092136666178703, -0.007743363734334707, 0.026885773986577988, 0.040119703859090805, 0.01666865684092045, -0.010230431333184242, 0.03093249350786209, 0.02582487091422081, -0.026711294427514076, -0.010291052050888538, -0.05302218720316887, 0.07488810271024704, -0.016920920461416245, 0.00241260789334774, 0.01109679602086544, 0.028018753975629807, -0.02026437595486641, -0.07830986380577087, -0.052918314933776855, -0.01682455651462078, -0.03787142038345337, -0.01715707778930664, 0.00393292959779501, -0.029113290831446648, 0.021043749526143074, -0.05044672638177872, -0.03188162297010422, -0.021967628970742226, 0.06003522872924805, -0.0228745024651289, 0.030915705487132072, -0.07415209710597992, -0.02450130693614483, 0.06502804160118103, -0.0025176384951919317, 0.04829435795545578, 0.017352892085909843, -5.5651711904307724e-33, -0.007956994697451591, 0.0683768093585968, 0.02642165496945381, 0.016070306301116943, 0.01917835883796215, -0.003948849625885487, 0.012493238784372807, -0.019383246079087257, -0.03274187073111534, -0.06867218017578125, 0.03959131985902786, 0.08342423290014267, 0.01214811485260725, -0.004372835624963045, -0.012183614075183868, -0.034267958253622055, 0.014567460864782333, 0.012871409766376019, 0.022915922105312347, 0.017872944474220276, -0.07880272716283798, -0.0011133565567433834, 0.044288456439971924, 0.0020497969817370176, 0.07802063971757889, 0.07394852489233017, 0.03378146141767502, 0.006541947368532419, 0.021672163158655167, -0.01679062657058239, -0.04647349566221237, 0.020952828228473663, 0.02228795550763607, 0.0435185506939888, 0.05641813203692436, 0.07852964103221893, -0.006331264972686768, -0.010297097265720367, -0.013582717627286911, 0.005834740120917559, -0.038342006504535675, -0.0975780040025711, -0.007697977125644684, -0.02799307554960251, -0.032180335372686386, -0.051011428236961365, -0.010326380841434002, -0.05251280963420868, 0.037320587784051895, -0.02305142767727375, 0.0067945802584290504, 0.02460217848420143, -0.020009825006127357, 0.038161177188158035, -0.06891488283872604, -0.018621519207954407, -0.023387184366583824, -0.0028292539063841105, 0.031243519857525826, 0.010290790349245071, -0.022724388167262077, -0.023218493908643723, -0.01616602949798107, -0.08213062584400177, 0.00942651554942131, -0.023821474984288216, -0.002254188759252429, 0.022191695868968964, -0.022528214380145073, 0.0038416003808379173, 0.013361778110265732, -0.015245220623910427, 0.007885534316301346, -0.05839450657367706, -0.006422479636967182, 0.04777013137936592, -0.03734559938311577, 0.023075075820088387, 0.04090128093957901, 0.056545842438936234, 0.03228433057665825, 0.018146924674510956, 0.017819954082369804, 0.030484016984701157, -0.05500033125281334, -0.01782134920358658, -0.02179926447570324, -0.0041910563595592976, 0.002295255195349455, -0.00474086869508028, 0.02985205501317978, -0.0007815122953616083, -0.029279226437211037, -0.007547259330749512, 0.09813548624515533, -0.07539916783571243, 0.06249336153268814, -0.0008603157475590706, -0.000526782067026943, -0.008519420400261879, -0.007842253893613815, 0.006581400521099567, 0.007779074367135763, 0.06112474575638771, 0.033649053424596786, 0.005169758573174477, 0.008344082161784172, -0.03312930464744568, -0.08185281604528427, 0.010907141491770744, 0.008263765834271908, 0.03459758311510086, -0.01166077796369791, 0.06250941753387451, 0.02341817505657673, -0.03462059795856476, 0.009979698807001114, -0.035710226744413376, 0.011348312720656395, 0.005013446789234877, -0.09431616961956024, -0.023309534415602684, -0.02077537216246128, -0.024835288524627686, -0.006165234837681055, 0.02512304112315178, -0.019543487578630447, 0.029049070551991463, 0.0518060140311718, -0.02701674774289131, 0.06425584852695465, -0.0254602562636137, 2.631782933804061e-07, -0.055776119232177734, 0.05756532773375511, -0.009157530963420868, -0.014854220673441887, -0.021955473348498344, -0.022597048431634903, 0.012779283337295055, -0.0249115452170372, -0.017088910564780235, 0.026144525036215782, 0.003216813551262021, -0.02760440669953823, -0.005563895218074322, -0.028381552547216415, 0.07415302097797394, -0.03961922228336334, -0.007242521736770868, -0.012576114386320114, -0.003274591639637947, -0.008626126684248447, 0.040021929889917374, 0.030828725546598434, 0.00728752464056015, -0.014697187580168247, 0.01678084395825863, -0.0017125408630818129, 0.008817791007459164, 0.014225843362510204, -0.0052823256701231, -0.028265397995710373, 0.00026227705529890954, 0.04253730922937393, -0.005031526554375887, -0.02180316671729088, -0.001882959040813148, -0.0005330381682142615, -0.03938496112823486, 0.08458461612462997, -0.07530855387449265, 0.0529257133603096, 0.01404013391584158, -0.027449846267700195, 0.02828090637922287, 0.03782713785767555, 0.03907447308301926, 0.04553767666220665, -0.05144356191158295, 0.002773498184978962, -0.026299824938178062, -0.03547811135649681, 0.049356937408447266, 0.021069303154945374, -0.0004987577558495104, 0.005050598178058863, 0.01476718857884407, -0.013073566369712353, 0.0010811006650328636, -0.016489369794726372, 0.015025830827653408, 0.0428193137049675, -0.009073402732610703, -0.02847905084490776, 0.040113020688295364, 0.026852644979953766, -0.01953943446278572, -0.11147032678127289, -0.016814151778817177, 2.396792114530854e-34, 7.603935955557972e-05, 0.01945442706346512, -0.051857031881809235, -0.016619307920336723, -0.014969274401664734, -0.009285639971494675, 0.05224742740392685, 0.06251391768455505, 0.0012331323232501745, -0.027532368898391724, -0.00016481796046718955], "c17d5b9f-b642-4903-b56b-8ec46fa02441": [0.023719366639852524, -0.033778779208660126, -0.023933768272399902, -0.023593634366989136, 0.03311046585440636, -0.005102458409965038, 0.06270882487297058, 0.008549612946808338, 0.10262340307235718, 0.02378513664007187, -0.01241419930011034, 0.03593818470835686, -0.01677275262773037, -0.0030343111138790846, -0.003944613505154848, -0.04237893968820572, -0.011776543222367764, 0.036318112164735794, 0.025759680196642876, 0.017673002555966377, 0.03502802923321724, 0.016937773674726486, -0.03907763957977295, 0.025909701362252235, 0.012857113964855671, 0.006737837567925453, 0.057424284517765045, 0.031096654012799263, 0.08247482776641846, 0.03617104887962341, -0.01359438057988882, -0.008182990364730358, -0.03866402432322502, 0.04216407611966133, 2.104717395923217e-06, 0.06413128226995468, -0.032539933919906616, -0.02486833743751049, 0.02741444855928421, -0.13685807585716248, -0.014474648050963879, -0.07109072059392929, -0.012816241942346096, 0.046885088086128235, 0.028411442413926125, 0.0175795815885067, 0.090214304625988, 0.012369471602141857, 0.08273185044527054, 0.011001212522387505, -0.00504826195538044, 0.06686599552631378, -0.009659355506300926, -0.016510823741555214, -0.013150675222277641, -0.042355719953775406, 0.0030720264185220003, 0.007514243014156818, 0.0451568104326725, -0.029686706140637398, 0.0027885865420103073, -0.010699204169213772, -0.03758726641535759, 0.017488673329353333, -0.00044433982111513615, 0.017344428226351738, 0.02094391919672489, -0.022703850641846657, 0.011025193147361279, 0.04768044874072075, 0.049711428582668304, 0.027911726385354996, 0.019984109327197075, 0.02952926605939865, -0.013000589795410633, 0.003689028788357973, 0.03525114804506302, 0.017146408557891846, -0.0711648240685463, 0.029411299154162407, 0.04302414506673813, 0.014049846678972244, -0.03510008379817009, 0.018577735871076584, 0.04061948508024216, -0.05996779352426529, 0.00816764310002327, -0.03403034806251526, 0.06715231388807297, 0.0024578296579420567, -0.027458662167191505, 0.01617003045976162, 0.055947598069906235, 0.046687573194503784, -0.07637355476617813, -0.014171168208122253, -0.029975080862641335, -0.06771060079336166, -0.027164610102772713, 0.05594920367002487, -0.023828033357858658, 0.05199046805500984, -0.07361224293708801, 0.016398394480347633, 0.05182931572198868, 0.023656204342842102, -0.0468999519944191, 0.0011982829309999943, -0.013091384433209896, 0.022707948461174965, -0.016458654776215553, 0.0027378140948712826, -9.460875298827887e-05, -0.01885349303483963, 0.030599284917116165, 0.006258837878704071, -0.08167813718318939, 0.005289238877594471, -0.06506059318780899, -7.495690806536004e-05, 0.021992098540067673, -0.02407844178378582, -0.010007284581661224, 0.04043231159448624, 0.04538784176111221, -0.0397748164832592, -0.013664771802723408, -0.04191279411315918, -0.009462270885705948, -0.09188906848430634, -0.005837412551045418, 0.012076129205524921, -0.027213070541620255, -0.002814609557390213, 0.013033054769039154, 0.025803176686167717, 0.03619806468486786, -0.04868694022297859, -0.019286789000034332, 0.010522536933422089, -0.03293490409851074, -0.004743338096886873, 0.081468865275383, 0.06480641663074493, 0.0016806473722681403, -0.056233812123537064, -0.0058487351052463055, -0.0034033574629575014, 0.05737116187810898, 0.012532084248960018, -0.017946792766451836, 0.008624779060482979, -0.07183241099119186, -0.031379587948322296, 0.00010985955304931849, 0.0358714796602726, 0.01529706735163927, -0.006365110632032156, -0.05459978058934212, -0.035575877875089645, -0.026026468724012375, 0.0002180307055823505, 0.047655876725912094, -0.013492153026163578, 0.0022394279949367046, -0.06155620142817497, 0.05467760190367699, -0.014826980419456959, -0.04297464340925217, 0.08111219108104706, -0.009961867704987526, 0.03262639790773392, -0.037676937878131866, 0.052509237080812454, -0.016774188727140427, -0.04377507418394089, 0.03915239870548248, 0.021406525745987892, -0.02468927949666977, -0.024673249572515488, -0.010458980686962605, -0.05039483681321144, -0.03279062733054161, 0.057278987020254135, -0.008907722309231758, -0.016925886273384094, -0.009914710186421871, -0.017802342772483826, -0.0064995125867426395, -0.047380369156599045, 0.014020842500030994, -0.008555016480386257, -0.07486143708229065, -0.00559993926435709, 0.020840821787714958, -0.0568707250058651, 0.004204475786536932, -0.054394952952861786, -0.03629216551780701, -4.633038770407438e-06, -0.018359210342168808, -0.03663185238838196, -0.03432459384202957, 0.11378493160009384, -0.012058048509061337, -0.06937722861766815, -0.014131074771285057, -0.025665130466222763, 0.0016473723808303475, 0.056044142693281174, -0.06534018367528915, -0.0026974063366651535, 0.0026094906497746706, -0.0407913401722908, -0.02180924080312252, 0.03147127479314804, -0.02829747460782528, 0.004933371674269438, -0.037423666566610336, 0.05283373221755028, -0.04683345928788185, -0.03243020549416542, 0.02146564982831478, 0.03136586770415306, 0.005736171267926693, -0.03319992497563362, 0.02235105261206627, -0.02321232110261917, 0.06615719944238663, 0.05126846209168434, -0.06358060240745544, 0.048208534717559814, -0.015297235921025276, 0.006425009109079838, 0.003997012507170439, 0.055283013731241226, -0.06978744268417358, 0.01658279448747635, 0.0030053993687033653, -0.04198664799332619, 0.007810609415173531, 0.06325937062501907, 0.010023629292845726, 0.013809298165142536, -0.0400247648358345, -0.016647351905703545, 0.057579901069402695, 0.017195984721183777, -0.0174251701682806, 0.021914809942245483, 0.01813429221510887, -0.01839972659945488, -0.015735719352960587, 0.003771332325413823, 0.03512047603726387, -0.016879361122846603, -0.08816556632518768, -0.039550404995679855, -0.026255019009113312, -0.004951889626681805, -0.03751066327095032, -0.007551154121756554, 0.03766324371099472, -0.04979328811168671, 0.04171416163444519, -0.027885161340236664, 0.0011361942160874605, -0.0822572261095047, -0.00904298946261406, 0.008280979469418526, -0.05383758991956711, -0.0076095410622656345, -0.05178176239132881, -0.033170435577631, -0.0268333088606596, 0.001989077078178525, 0.004758166149258614, 0.03209161385893822, 0.03657118231058121, -0.036281704902648926, 0.012516673654317856, 0.01899115927517414, -0.0051935771480202675, -0.031086182221770287, -0.014138061553239822, -0.03649740293622017, -0.015906019136309624, -0.04059210047125816, 0.014075168408453465, -0.019237196072936058, 0.0022594553884118795, 0.037079282104969025, -0.042361706495285034, -0.0272498931735754, -0.0007250854396261275, 0.013969926163554192, 0.07791461795568466, 0.006112854462116957, -0.046119462698698044, 0.005358472932130098, -0.014408859424293041, -0.008843887597322464, 0.004770023748278618, 0.009791870601475239, 0.05206938832998276, -0.02384788729250431, 0.0319015309214592, -0.01945056952536106, -0.020441576838493347, 0.0037493957206606865, 0.010275953449308872, 0.021611876785755157, -0.00926272477954626, 0.02325308881700039, 0.00573891494423151, 0.05005503073334694, -0.010794607922434807, -0.009768773801624775, 0.04203517735004425, 0.009137829765677452, 0.021848728880286217, -0.02011214569211006, 0.00843554176390171, -0.012791185639798641, -0.01715143956243992, -0.05476175621151924, -0.018162673339247704, 0.021401097998023033, 0.02630133368074894, -0.03670602664351463, -0.003855018178001046, 0.02800673432648182, -0.02075580134987831, 0.045626360923051834, -0.04223956540226936, -0.06009849160909653, -0.00013884525105822831, -0.0470215305685997, -0.08075615018606186, 0.011869905516505241, -0.008778147399425507, 0.008384445682168007, -0.02837684564292431, 0.030270809307694435, -0.012721164152026176, -0.009626786224544048, -0.007288428023457527, 0.039795394986867905, -0.054347921162843704, -0.02897980436682701, 0.05455214902758598, 0.06150808930397034, 0.030588310211896896, -0.012355753220617771, 0.01897428184747696, -0.04392162337899208, -0.006489534862339497, -0.035584088414907455, 0.05271332710981369, -0.022183110937476158, 0.006598517298698425, 0.029386144131422043, -0.07503948360681534, -0.05549434944987297, 0.020032094791531563, -0.057826004922389984, 0.00038093485636636615, -0.013496831059455872, -0.014306113123893738, 0.022800376638770103, 0.019811896607279778, 0.0029175912495702505, -0.02910008653998375, 0.04902414605021477, -0.007143598049879074, -0.05912061408162117, -0.018186287954449654, -0.08382681757211685, -0.0820797011256218, -0.005786193069070578, -0.044740237295627594, 0.008525182493031025, 0.026751825585961342, -0.04429901763796806, 0.04873396083712578, -0.03041684441268444, -0.015995891764760017, 0.030155159533023834, 0.08527301251888275, 0.009267616085708141, -0.02216634526848793, -0.015049121342599392, -0.04823670536279678, 0.05397609993815422, 0.023295026272535324, -0.002033473225310445, -0.006322870962321758, -0.04679174721240997, 0.02174236811697483, 0.0549798347055912, 0.005147116724401712, -0.061010781675577164, 0.014212081208825111, 0.06032446026802063, -0.015400588512420654, 0.05430131033062935, 0.037611570209264755, -0.032519396394491196, -0.02755195088684559, -0.0281762033700943, 0.007733005564659834, 0.023853685706853867, 0.015812229365110397, 0.017047325149178505, 0.050553396344184875, -0.05222809687256813, 0.019729413092136383, -0.04971889406442642, 0.06795889139175415, -0.07788609713315964, 0.02378152497112751, 0.030475759878754616, 0.021313315257430077, 0.01565498299896717, -0.0019410416716709733, -0.009387279860675335, 0.09950533509254456, 0.05060525983572006, 0.019154729321599007, 0.003389158518984914, 0.022850539535284042, 0.0073008425533771515, 0.03050994873046875, 0.06867551803588867, 0.03887230530381203, -0.0015883018495514989, -0.0167424026876688, 0.008245743811130524, -0.017686016857624054, 0.0027645942755043507, -0.02150193229317665, 0.041217099875211716, 0.02469640038907528, -0.03146011754870415, -0.05919330567121506, -0.010500642471015453, 0.030299125239253044, -0.044073816388845444, 0.02927566133439541, 0.028948578983545303, 0.04730101674795151, -0.023240623995661736, -0.003947906661778688, 0.006699291989207268, -0.009471474215388298, -0.0017289139796048403, -0.030042069032788277, 0.0749930739402771, 0.036465853452682495, 0.05415691062808037, 0.06823388487100601, 0.010199197567999363, -0.042658619582653046, 0.029312487691640854, 0.04548349976539612, -0.009802495129406452, 0.006639353930950165, -0.07453657686710358, -0.032221850007772446, 0.021849000826478004, 0.04952043667435646, -0.0047494638711214066, -0.0020225609187036753, 0.02827957086265087, 0.04107438400387764, 0.022773731499910355, 0.04688039422035217, 0.04550584778189659, 0.00900516752153635, -0.0014056314248591661, 0.0069403136149048805, -0.016198884695768356, -0.04605283588171005, 0.037515923380851746, -0.013124673627316952, -0.012944646179676056, -0.0013220054097473621, 0.0016252541681751609, -0.031001590192317963, -0.006921643391251564, 0.05609988793730736, -0.056589704006910324, -0.012810242362320423, -0.1038355678319931, -0.0696459636092186, -0.019895454868674278, 0.016004962846636772, 0.028140079230070114, -0.05498985946178436, 0.035928383469581604, -0.003430524142459035, -0.0343758724629879, -0.008221961557865143, 0.007842429913580418, -0.020772915333509445, 0.04758515954017639, -0.0016139931976795197, 0.0665958970785141, -0.011236011050641537, 0.001577582210302353, 0.021284619346261024, 0.017942368984222412, 0.002862616442143917, -0.09314784407615662, -0.00980213563889265, -0.05074792355298996, 0.030864614993333817, 0.06762196123600006, -0.040699005126953125, 0.0040970160625875, 0.038857195526361465, 0.04436434432864189, 0.018422380089759827, -0.016575811430811882, 0.034039050340652466, 0.033228497952222824, -0.043333958834409714, 0.008267904631793499, -0.03250254690647125, -0.004637091886252165, -0.03659648820757866, 0.024061456322669983, 0.053604856133461, 0.0031082178466022015, -0.0490495041012764, -0.05077217519283295, -0.07207579910755157, 0.005924164317548275, 0.006332619581371546, 0.014007367193698883, 0.01762082614004612, -0.01353082712739706, 0.026114962995052338, -0.04512307047843933, -0.048027750104665756, -0.020631074905395508, 0.020205164328217506, 0.0036168901715427637, 0.02458939515054226, -0.04586896300315857, -0.025836102664470673, 0.02545991912484169, 0.03217366337776184, 0.03847869485616684, 0.0026658172719180584, -5.1110571515569834e-33, 0.009553887881338596, 0.023174656555056572, 0.02799207717180252, -0.026151807978749275, -0.011729435063898563, -0.03135557845234871, 0.0097553301602602, -0.023409554734826088, -0.035973601043224335, -0.029714373871684074, 0.056996919214725494, 0.08763308078050613, 0.008401989936828613, -0.0203570444136858, 0.008154164999723434, -0.00843185093253851, 0.008250040002167225, 0.02261008508503437, 0.02212551049888134, -0.01866140030324459, -0.0827401652932167, 0.03261244297027588, 0.041423819959163666, -0.03711315244436264, 0.01865798979997635, 0.04481068626046181, 0.009482486173510551, 0.032486442476511, -0.002978578442707658, -0.013373678550124168, -0.014849872328341007, 0.038197025656700134, 0.03114091232419014, 0.043072111904621124, -0.0067093344405293465, 0.03998575732111931, -0.03339139372110367, 0.003049086080864072, -0.0034294184297323227, -0.009037984535098076, -0.03650477156043053, -0.04177343100309372, 0.01118140947073698, -0.03531314805150032, 0.018760597333312035, -0.028132354840636253, 0.008013134822249413, -0.050097350031137466, 0.02187158353626728, -0.0018455161480233073, 0.011037556454539299, -0.003056742250919342, -0.027567192912101746, 0.012090341188013554, -0.07468391209840775, -0.005551447626203299, -0.004636707715690136, -0.035429660230875015, -0.028750667348504066, -0.02958049438893795, -0.0011835242621600628, 0.0032608855981379747, -0.02030618116259575, -0.047783493995666504, -0.021738380193710327, 0.00871722400188446, -0.007693082094192505, 0.045862648636102676, -0.025740407407283783, 0.009721947833895683, -0.008423210121691227, 0.008131569251418114, -0.006032279692590237, -0.06353476643562317, -0.042442429810762405, 0.025963520631194115, 0.006335408892482519, -0.0023641204461455345, 0.05297679454088211, 0.03387461602687836, 0.021641528233885765, -0.003226782428100705, 0.019706476479768753, 0.008198807016015053, -0.04897080361843109, -0.0020338345784693956, -0.03627371788024902, -0.022553743794560432, 0.005960631649941206, 0.0007627691957168281, 0.02199956588447094, -0.06527173519134521, -0.02176421508193016, 0.01382424682378769, 0.1475496143102646, -0.061071500182151794, 0.03342584893107414, 0.04009252041578293, 0.0116162970662117, 0.0002639603626448661, -0.04524272307753563, -0.03220074996352196, -0.0036543013993650675, 0.03921854868531227, 0.05069160461425781, -0.01894143596291542, 0.006239057052880526, -0.022392988204956055, -0.03311045095324516, 0.010359345003962517, 0.02785986289381981, 0.06041868031024933, 0.024954482913017273, 0.03327776491641998, -0.019515816122293472, -0.0018883850425481796, -0.007516448386013508, 0.011952943168580532, 0.02424005977809429, -0.007248908281326294, -0.04111679643392563, 0.03485308960080147, -0.0058084880001842976, -0.044229745864868164, -0.03221927210688591, -0.047675494104623795, 0.017085282132029533, 0.043298300355672836, 0.05752132833003998, -0.010453709401190281, 0.044801268726587296, -0.030050912871956825, 2.6961106414091773e-07, -0.01959480531513691, 0.029073024168610573, -0.005391382612287998, -0.02232440933585167, 0.004814342595636845, -0.06490446627140045, 0.03125659003853798, 0.030241433531045914, -0.03381537273526192, 0.019571861252188683, -0.004483597353100777, -0.003345308592543006, -0.007222050800919533, -0.04605993255972862, 0.03673066943883896, -0.06940028071403503, -0.03262729570269585, 0.036711160093545914, -0.002341087209060788, 0.03442506119608879, 0.010256007313728333, 0.03405565023422241, 0.028321335092186928, 0.0027555301785469055, -0.030505094677209854, 0.0075890920124948025, -0.005819168407469988, 0.010725082829594612, 0.03621022775769234, 0.039706598967313766, 0.054997075349092484, 0.025653086602687836, -0.03168376535177231, -0.011476341634988785, 0.03471026197075844, -0.03588435426354408, -0.032663773745298386, 0.061828456819057465, -0.03148685023188591, 0.08567012846469879, 0.006411658599972725, 0.03443581610918045, 0.0027842565905302763, 0.06218533590435982, 0.00929507426917553, -0.022379225119948387, -0.0533406101167202, 0.049083124846220016, -0.05890696123242378, -0.0880458876490593, 0.03497611731290817, -0.0015041935257613659, 0.0026725903153419495, 0.01983555592596531, -0.008272998966276646, 0.026094110682606697, 0.0017484845593571663, -0.011568039655685425, 0.04540396109223366, -0.02383096143603325, -0.01531859952956438, -0.02120942622423172, 0.01660033129155636, -0.04527142643928528, -0.04011496156454086, -0.0698404312133789, -0.017025502398610115, 2.138358992736353e-34, 0.011956118047237396, 0.051180899143218994, -0.026588574051856995, 0.022517995908856392, 0.00999356433749199, 0.003947653342038393, -0.02230210043489933, 0.04181690141558647, -0.010742491111159325, 0.007486157119274139, -0.025508549064397812]}, "text_id_to_ref_doc_id": {"75cf5ad8-bf0e-4b67-b3dd-ed3272881b09": "93c225056acbb5484fe7994c647f755f93adf958", "d0a13454-b117-45a1-a7f3-c088eaae7dce": "cf380f2bc01891cffe4e2b991e3427cc023b8c89", "3c7bf40c-c5e4-40db-80b2-dbb4e0f11289": "fd1b5253d191ca0839c393826ddf12f23b54dd1d", "672cbc89-3888-483a-a14c-7e3ed578d4b4": "f841571dd12d2ae66ee9a9e7a07f95e82355010a", "e11b64d8-ec6b-4956-8a57-ad499b1eb9b7": "a394749d72c4f3795a384330295b06c9846db26c", "721230de-13e8-4aa4-be8f-e6bfc5b79200": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "91d01686-e2e1-4e30-8f24-54bc362bfde6": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "72f60be5-209a-4251-9961-999d7847be69": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "b22dd272-77eb-482f-b515-14e76a55a8b7": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "c8d40a5f-08f1-49b4-aec3-74fe69681315": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "f5f01aab-661a-4766-9639-edcb7719160c": "a296d4feb5a490599d60d8bed68961c31624c8fb", "052be6ea-fc41-49cb-a5fe-5309172d18fc": "a296d4feb5a490599d60d8bed68961c31624c8fb", "b6b0ec4b-ec86-4351-b63f-6bd042d13ec2": "9e31d5beddf2be8d558ea581d08d793a8dd542a9", "4855e3ee-b3fc-46fc-a437-576b42bb2b5e": "54ee33ee0e3a07ea15165101dcbc06495eced766", "f020b5d1-5ac0-4c4d-83f6-ab67bc6dfb48": "54ee33ee0e3a07ea15165101dcbc06495eced766", "c27977c8-8d38-420a-ae8a-cd48bd5d0f77": "54ee33ee0e3a07ea15165101dcbc06495eced766", "2a44316f-12b9-4af9-9413-39ce6f9a126d": "54ee33ee0e3a07ea15165101dcbc06495eced766", "cd8d3ab6-1259-40a0-a44b-7f679fee56d4": "3ad4a616007ca5441cfcd229f6688e3d939bc374", "f215f5cf-5057-4b73-a09c-a6ef0b073beb": "3ad4a616007ca5441cfcd229f6688e3d939bc374", "b5bdd873-3d71-45d3-b88d-06193ffb2cd0": "3716e2551f49aa2261c6160f8a03d7939eed0a76", "ff919679-c51e-4f38-bf87-f5cabb8b85bb": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8", "f32ce356-37da-4a43-a12d-8bf950636c30": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8", "176c89b9-abf7-4e55-bb1c-7af2ccf0f82b": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8", "e3729547-1eca-467b-9bb0-fe1804f9a874": "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae", "b33cd473-ff1c-4fd5-9e29-3957daf45389": "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae", "142c2d96-ae16-4cf2-9256-dd7251e34c94": "53f966366a793fd602bd41df877eb4dff3ffce6a", "4acae13b-0545-456d-b97b-aa278ff7ef96": "53f966366a793fd602bd41df877eb4dff3ffce6a", "5ae511d6-d49d-4ddd-80eb-25edd5a56437": "53f966366a793fd602bd41df877eb4dff3ffce6a", "99d4167f-919f-4a15-bc13-70656440d6a8": "53f966366a793fd602bd41df877eb4dff3ffce6a", "c9459fc0-9e0f-456d-8450-323acb47ce30": "53f966366a793fd602bd41df877eb4dff3ffce6a", "eabb7bb4-3083-4b5f-9f00-68211f7e32b9": "53f966366a793fd602bd41df877eb4dff3ffce6a", "9a202e7f-1c69-4845-aca0-5fd6aa403053": "53f966366a793fd602bd41df877eb4dff3ffce6a", "53c234b1-1bef-41e7-8d0f-81e4a2e21a09": "53f966366a793fd602bd41df877eb4dff3ffce6a", "5e4128d2-0246-49c5-97ae-50b5363f547d": "53f966366a793fd602bd41df877eb4dff3ffce6a", "2b3d28a7-49c8-4f38-92b2-5e2f22c35763": "53f966366a793fd602bd41df877eb4dff3ffce6a", "d08eb6d7-705b-4369-ab85-17f47f9090b5": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ed3797f6-6391-46b7-8c12-723d805edd3f": "53f966366a793fd602bd41df877eb4dff3ffce6a", "4c2e522d-d8b6-4793-ba0f-38d61ef86ec4": "53f966366a793fd602bd41df877eb4dff3ffce6a", "2ece4974-14ce-450b-be09-73076b3913e2": "53f966366a793fd602bd41df877eb4dff3ffce6a", "a1aee0ee-beab-4caf-b3f6-a6c22e8e9e0f": "53f966366a793fd602bd41df877eb4dff3ffce6a", "77848f07-e6f1-4e28-b5e8-2a1e6f01a8a2": "53f966366a793fd602bd41df877eb4dff3ffce6a", "52f57058-d56a-4d99-b021-e100acbf7d99": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ec0b6f9e-fa47-4006-942f-74d62306946c": "53f966366a793fd602bd41df877eb4dff3ffce6a", "2f45fac7-da65-4dbc-975c-4c0385a61c5a": "53f966366a793fd602bd41df877eb4dff3ffce6a", "3feceeca-3eb9-43ae-95e8-61c9cf5c6d57": "7400df9edd9c4071fcbab15b4862891105a2e1bd", "84900df3-9ac3-4d8b-a692-cfb617fe1e84": "63768c9127a41b6c46ab497d2341cfbcde106d65", "3603f85b-d8fd-4081-8258-ca892ef85005": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "60b8c530-ba1a-41bc-9d6b-3991791bc2b6": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "22d5c08c-b3b9-4ae9-86cd-af3e8edb4af1": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "7e725ce8-52cb-49c5-8e0a-bd6d4c21728d": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "5e5445b6-8ec1-4ab0-ace9-d2f41365a640": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "06acc6e2-25e8-4bf3-9fae-e254fa4a09da": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "35af2b14-e6e5-48fd-9926-2ad98a0ee79a": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "2dbabf73-3621-4277-810f-def259b60568": "355608b3e4baabc116162490b302ac19818f0c72", "308301a6-2983-480c-b771-15de12d77e0f": "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34", "9f03394b-9689-4c1e-a008-2f40d8c0ee0e": "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34", "fce3078e-c270-459f-a637-5009e3c264e1": "aac8d6e30090f116e25aadfb09076acb7c3a5346", "0efe9dfa-f503-40c3-b065-20103e991baf": "aac8d6e30090f116e25aadfb09076acb7c3a5346", "02041b0f-2b6e-4ef5-9bff-b504d45e83c7": "aac8d6e30090f116e25aadfb09076acb7c3a5346", "2d448858-f9d3-4100-99b4-5f915b545d92": "f7c1d6d16f4411a8515fce7ca22798085eb99e00", "83517c70-7306-4404-b05e-67fb691d01a8": "f7c1d6d16f4411a8515fce7ca22798085eb99e00", "fe552232-5b34-4657-b842-1fd039e24eb2": "f7c1d6d16f4411a8515fce7ca22798085eb99e00", "60f9d284-345d-448e-b593-0fbe326aa09a": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "80badcbb-374e-4a2f-82e0-22acbf1ee2a8": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "b0ac2673-089e-43a9-b004-cb55670d5613": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "ff718593-9a32-4079-8566-b2eeccec373d": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "a0611aa2-9601-457a-9a45-7ebdea9de014": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "f0d8f067-0996-400a-9679-3f8393fc11ff": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "ddf0d0fa-a27a-4231-966b-2d71c5f40d99": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "5aadd0c8-686f-46f2-8311-14f79994b627": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "f7f09540-e847-4d0c-a813-b6e580bedcb4": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043", "fc8c1d05-99cf-471d-a569-8b4398a28a04": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043", "a5af40e6-1d06-41d6-9640-9b0b047b263a": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043", "8a8133a4-4245-4942-8cb0-db3cb28c44f9": "3fb6caa127af57616062f5efa38208b722a42221", "2b17d74a-862c-435b-a4fe-b602778b2680": "710a44b3fd231bdb2ce3cf1f5884505969def43e", "d27c338e-31f3-4279-a7e5-01daae284dbc": "988753b83c1f32468cb2f580dec2e0ea17c5adcd", "baacf820-88ef-4e27-ab64-5a55a04f1e5f": "988753b83c1f32468cb2f580dec2e0ea17c5adcd", "14a40177-16bb-46f1-96fd-b86f287158c0": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "fb1a7658-c476-4a44-b85d-212669923fd8": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "94bd70b1-fb83-4c4e-ab35-b1a16a0234b7": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "b86b8e65-d3fc-4e3b-afe2-48afa23b7a68": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "a25ada4b-5845-43aa-9c0c-cfd763e4a100": "c5690b32682b3b73911668d58fead0852a6cf8d6", "fef485ab-1d16-4402-9c80-2d89b39599c8": "c5690b32682b3b73911668d58fead0852a6cf8d6", "25c15c1c-6042-434d-81ab-116505771d66": "a719156971fa8ebb242749926fbf38be72a44d13", "0009b835-6867-4034-a974-e0495b55ed3e": "334a4c021df569ebc7001eeac252ffa542373d53", "b2588806-3af9-4149-a5a3-95083eb352c0": "334a4c021df569ebc7001eeac252ffa542373d53", "16330a08-ad08-496f-a14e-a56c8d8495eb": "334a4c021df569ebc7001eeac252ffa542373d53", "d2150194-dd47-4b24-90d6-24a9ec1930e2": "334a4c021df569ebc7001eeac252ffa542373d53", "2e92bb78-357e-455b-ab5c-e1e12e4b2da4": "334a4c021df569ebc7001eeac252ffa542373d53", "bc877115-e3e0-4648-bef9-5e10d81a353d": "334a4c021df569ebc7001eeac252ffa542373d53", "939e982a-94d2-49b3-b029-926d0ad796e3": "334a4c021df569ebc7001eeac252ffa542373d53", "655b725c-a52f-4e96-93c4-361714c23830": "334a4c021df569ebc7001eeac252ffa542373d53", "9263bd46-63d4-4010-9ef1-ebeb7c96e88f": "334a4c021df569ebc7001eeac252ffa542373d53", "5d83bd6f-d55e-4a3d-b92a-95d2730cec7e": "334a4c021df569ebc7001eeac252ffa542373d53", "214b63dc-17e6-4093-9efe-b50dac8331a0": "334a4c021df569ebc7001eeac252ffa542373d53", "d04e9b9a-1e28-42c4-ac2a-e59e84cf019b": "334a4c021df569ebc7001eeac252ffa542373d53", "f4a27cf4-d22f-47b2-bd5e-7cfd3cf286e4": "334a4c021df569ebc7001eeac252ffa542373d53", "4139f092-9cd1-46db-ba5a-5a5759ae4bb1": "334a4c021df569ebc7001eeac252ffa542373d53", "2c693769-1efc-4102-8d1e-253fcede566b": "334a4c021df569ebc7001eeac252ffa542373d53", "202a5ff9-6f89-4301-a80f-0577d6989b87": "334a4c021df569ebc7001eeac252ffa542373d53", "2977a99a-b5bc-4548-8003-77766a64b591": "334a4c021df569ebc7001eeac252ffa542373d53", "9950c23a-f73d-423f-b120-fc886fdc8843": "334a4c021df569ebc7001eeac252ffa542373d53", "35db1781-d829-46cd-b2df-e30df000dc0d": "8da5941d9e553fec1734e42037111a37668471e4", "9ef54c37-488c-41f4-b826-cf988eb9e138": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb", "584f6865-e808-41c0-8032-05e75d746feb": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb", "36f72676-0d86-4d9b-b3c5-18d5cbe0ad06": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb", "1fdb1412-26d8-4077-955c-b338014f395c": "eea6eb21a653228f12ee4e03bc10e04179d63ea5", "139ccd73-c4b8-4a69-9349-3584a45b27f6": "3452b76140b3029de5af4930db29caa5e943513d", "478492af-909f-4927-afa3-a22f69624c18": "3452b76140b3029de5af4930db29caa5e943513d", "80a01e0f-9042-4493-92d6-a07003cd87a9": "3452b76140b3029de5af4930db29caa5e943513d", "95e4556b-baf0-40be-a66b-4d2b0eebafb3": "3452b76140b3029de5af4930db29caa5e943513d", "32f9cd78-e1aa-43d6-ad05-0c482996ffb4": "3452b76140b3029de5af4930db29caa5e943513d", "b0534a2e-7f2a-493d-895f-0ba89a3d940b": "3452b76140b3029de5af4930db29caa5e943513d", "a84349e5-52b8-4073-9487-497ca07f95ee": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "59036fe2-a102-4943-b9bf-17e525a18467": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "f3d35cee-3ccb-41d8-ad38-ff273e598cb5": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "b6473046-4e60-4cac-89fb-ccb09390f1ec": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "3abae02f-f871-4edb-b3f1-81da237825da": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "decbaa19-7313-463e-babe-625487666fb0": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "e8cd1844-095b-484b-9dad-c95abf3c4373": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "470778ec-4e10-4cb1-9924-88d00b6c258c": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "f6d6b5c8-11e1-49ba-9933-781cd71025df": "9800b627994c5343abeec748c5811347d67f934a", "93ec1759-4667-466e-8bea-d4739b5b8f0b": "9800b627994c5343abeec748c5811347d67f934a", "c1000392-16cf-421a-b25f-5c240de81979": "9800b627994c5343abeec748c5811347d67f934a", "91a3f525-e557-44a9-8cff-fffa910a2207": "9800b627994c5343abeec748c5811347d67f934a", "ea6366c9-d607-441d-b084-f601bb402466": "9800b627994c5343abeec748c5811347d67f934a", "a45cd662-89ef-4e64-9475-caae4a08d1f7": "9800b627994c5343abeec748c5811347d67f934a", "65522fe5-fb80-43d0-8032-255f08e75db4": "9800b627994c5343abeec748c5811347d67f934a", "201432b8-c6a7-4e53-9ae1-5e5e225aaca1": "9800b627994c5343abeec748c5811347d67f934a", "5c092d4a-1a6a-42fa-9c88-2c89a652a0c3": "9800b627994c5343abeec748c5811347d67f934a", "0670d79d-270b-40e6-8027-86d4c763781c": "9800b627994c5343abeec748c5811347d67f934a", "9339280a-09ea-42e5-b8f0-5ae819759d6f": "9800b627994c5343abeec748c5811347d67f934a", "6cb2c28c-4858-4f80-b7af-c763074c72db": "9800b627994c5343abeec748c5811347d67f934a", "8cb68461-551d-44b1-bd45-789feee27927": "9800b627994c5343abeec748c5811347d67f934a", "72157987-ccc4-4b00-b6a9-4206c1635c62": "9800b627994c5343abeec748c5811347d67f934a", "d0309d4e-01b1-4bc1-94c9-af1c07a0a294": "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6", "05a15588-4b09-40af-8e2e-e3cfc444a25d": "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6", "af06e711-3177-4400-bb92-291df03e30dd": "3572fbb8f0bfccfb953996dc8599e300641c5280", "b9b977cf-0c14-4e1e-bc45-e7620f4d37f2": "3db69996a4f564759314b78f68e574789fa6e81f", "a2d3b1f4-ad42-4e85-9984-240e9e1ad08d": "246a8e452680dcd30e6b1492db1ece74b14b8843", "a130bafd-4da5-4b34-8ec6-a49e3f6f5d97": "246a8e452680dcd30e6b1492db1ece74b14b8843", "4a91eaf3-2fa4-4374-a2aa-f9bc3cd25988": "246a8e452680dcd30e6b1492db1ece74b14b8843", "8e3d6776-d318-4d99-bd67-b95466d95eb5": "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609", "13693d9f-add0-4831-b24e-18baf9b8be19": "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609", "70b4a312-c669-4439-89e1-6db8aaadb025": "2eb3fa13f1a8f4a51bb717fb851b558b1c945567", "50dccdcb-69c2-41fa-9490-9234095132f3": "40e5ef8b88305799557e778421610c28154b50cb", "56f95194-e0bf-4d86-bef9-c4112ef570db": "f9f40be4347c262e85e6a9312f4253889db82a4b", "e8716438-9709-458f-84d4-b7d3fbde4130": "b00d7c4c21f6e6a325f524411155361fe4ffe408", "5152f868-b29a-47d3-b9d8-b00239673c47": "3ce2d5776d7d6d036e7c745b3343f6720d64905c", "998a3b4c-d069-4bed-a7aa-9874021d7572": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "d692095e-53cf-4583-969f-34d0abcb3eb9": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "5d95abb7-0902-4779-8d44-fedef73fd58d": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "ef58638f-76af-4f77-a459-560c3d95561b": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "91aec09e-c299-451a-bee5-36cc906bf2ce": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "0f6df599-a7d7-4b74-99f7-cddd754c7717": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "ce949a35-c420-4642-8f65-2ad80b27fe15": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "0067c7fe-dbac-4676-b633-bbd243898fd9": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "93687e9e-a133-4f4a-97eb-6a7c6561d8b8": "a15c80d71605c1b52b365259257c75172230e2b3", "e71be8f0-fe30-480b-9e5c-86141c78d8a4": "a15c80d71605c1b52b365259257c75172230e2b3", "8f323bf4-8b81-4f6f-a61f-ac1ca7407c49": "a15c80d71605c1b52b365259257c75172230e2b3", "9357024f-1e70-4c6e-b046-cc395bfe494d": "a15c80d71605c1b52b365259257c75172230e2b3", "05060b83-66bd-46d0-b5d4-c556fc94bf29": "83a937e7909e283792af66260c897d102991d7b9", "76fe5b6a-11e4-4441-b16d-26cc1fa953b5": "83a937e7909e283792af66260c897d102991d7b9", "f5ee3b52-aa3e-4bd0-8f27-79c40c81d3c7": "a40d10bf89b5a47ee2ebb0eaeeb3ad970d275a3c", "23e852e5-02c3-408e-999f-c6fdea194a32": "386340d84f9bce8c984e5f9d344c16803f180779", "2219935e-cd84-4325-9c68-e9f3c2e61faa": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a", "63f43023-e476-4c1a-ae99-c7774894fb2f": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a", "b8c9a66f-86ef-4958-b219-f27093a055b8": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a", "3a824442-4ed5-4847-96d3-dc2ca1324cfa": "c4771fb05fdcbcee999cbfb17856c814cbfa41f4", "47dc984f-45b2-460d-bf79-5ee6e0a84bfd": "c4771fb05fdcbcee999cbfb17856c814cbfa41f4", "ae06d6a1-33fc-4b36-ae30-afcb8ed34d06": "dbdb7680a1e21622af2403e7a3739e148903b38a", "c348e27e-07a9-4eb0-96bf-ba067c1b993f": "84273d25a134f3eb42173957fb52d64eb533bc2d", "542517e7-3531-412e-8101-736be1fcdfe0": "84273d25a134f3eb42173957fb52d64eb533bc2d", "c17d5b9f-b642-4903-b56b-8ec46fa02441": "84273d25a134f3eb42173957fb52d64eb533bc2d"}, "metadata_dict": {"75cf5ad8-bf0e-4b67-b3dd-ed3272881b09": {"file_path": "content/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/_index.md", "_node_type": "TextNode", "document_id": "93c225056acbb5484fe7994c647f755f93adf958", "doc_id": "93c225056acbb5484fe7994c647f755f93adf958", "ref_doc_id": "93c225056acbb5484fe7994c647f755f93adf958"}, "d0a13454-b117-45a1-a7f3-c088eaae7dce": {"file_path": "content/docs/communications/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/communications/_index.md", "_node_type": "TextNode", "document_id": "cf380f2bc01891cffe4e2b991e3427cc023b8c89", "doc_id": "cf380f2bc01891cffe4e2b991e3427cc023b8c89", "ref_doc_id": "cf380f2bc01891cffe4e2b991e3427cc023b8c89"}, "3c7bf40c-c5e4-40db-80b2-dbb4e0f11289": {"file_path": "content/docs/communications/social_media.md", "file_name": "social_media.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/communications/social_media.md", "_node_type": "TextNode", "document_id": "fd1b5253d191ca0839c393826ddf12f23b54dd1d", "doc_id": "fd1b5253d191ca0839c393826ddf12f23b54dd1d", "ref_doc_id": "fd1b5253d191ca0839c393826ddf12f23b54dd1d"}, "672cbc89-3888-483a-a14c-7e3ed578d4b4": {"file_path": "content/docs/contributing/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/_index.md", "_node_type": "TextNode", "document_id": "f841571dd12d2ae66ee9a9e7a07f95e82355010a", "doc_id": "f841571dd12d2ae66ee9a9e7a07f95e82355010a", "ref_doc_id": "f841571dd12d2ae66ee9a9e7a07f95e82355010a"}, "e11b64d8-ec6b-4956-8a57-ad499b1eb9b7": {"file_path": "content/docs/contributing/advanced.md", "file_name": "advanced.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/advanced.md", "_node_type": "TextNode", "document_id": "a394749d72c4f3795a384330295b06c9846db26c", "doc_id": "a394749d72c4f3795a384330295b06c9846db26c", "ref_doc_id": "a394749d72c4f3795a384330295b06c9846db26c"}, "721230de-13e8-4aa4-be8f-e6bfc5b79200": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md", "_node_type": "TextNode", "document_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "ref_doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d"}, "91d01686-e2e1-4e30-8f24-54bc362bfde6": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md", "_node_type": "TextNode", "document_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "ref_doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d"}, "72f60be5-209a-4251-9961-999d7847be69": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md", "_node_type": "TextNode", "document_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "ref_doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d"}, "b22dd272-77eb-482f-b515-14e76a55a8b7": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md", "_node_type": "TextNode", "document_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "ref_doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d"}, "c8d40a5f-08f1-49b4-aec3-74fe69681315": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md", "_node_type": "TextNode", "document_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "ref_doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d"}, "f5f01aab-661a-4766-9639-edcb7719160c": {"file_path": "content/docs/contributing/creating_a_page.md", "file_name": "creating_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/creating_a_page.md", "_node_type": "TextNode", "document_id": "a296d4feb5a490599d60d8bed68961c31624c8fb", "doc_id": "a296d4feb5a490599d60d8bed68961c31624c8fb", "ref_doc_id": "a296d4feb5a490599d60d8bed68961c31624c8fb"}, "052be6ea-fc41-49cb-a5fe-5309172d18fc": {"file_path": "content/docs/contributing/creating_a_page.md", "file_name": "creating_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/creating_a_page.md", "_node_type": "TextNode", "document_id": "a296d4feb5a490599d60d8bed68961c31624c8fb", "doc_id": "a296d4feb5a490599d60d8bed68961c31624c8fb", "ref_doc_id": "a296d4feb5a490599d60d8bed68961c31624c8fb"}, "b6b0ec4b-ec86-4351-b63f-6bd042d13ec2": {"file_path": "content/docs/contributing/discussions_and_issues.md", "file_name": "discussions_and_issues.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/discussions_and_issues.md", "_node_type": "TextNode", "document_id": "9e31d5beddf2be8d558ea581d08d793a8dd542a9", "doc_id": "9e31d5beddf2be8d558ea581d08d793a8dd542a9", "ref_doc_id": "9e31d5beddf2be8d558ea581d08d793a8dd542a9"}, "4855e3ee-b3fc-46fc-a437-576b42bb2b5e": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md", "_node_type": "TextNode", "document_id": "54ee33ee0e3a07ea15165101dcbc06495eced766", "doc_id": "54ee33ee0e3a07ea15165101dcbc06495eced766", "ref_doc_id": "54ee33ee0e3a07ea15165101dcbc06495eced766"}, "f020b5d1-5ac0-4c4d-83f6-ab67bc6dfb48": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md", "_node_type": "TextNode", "document_id": "54ee33ee0e3a07ea15165101dcbc06495eced766", "doc_id": "54ee33ee0e3a07ea15165101dcbc06495eced766", "ref_doc_id": "54ee33ee0e3a07ea15165101dcbc06495eced766"}, "c27977c8-8d38-420a-ae8a-cd48bd5d0f77": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md", "_node_type": "TextNode", "document_id": "54ee33ee0e3a07ea15165101dcbc06495eced766", "doc_id": "54ee33ee0e3a07ea15165101dcbc06495eced766", "ref_doc_id": "54ee33ee0e3a07ea15165101dcbc06495eced766"}, "2a44316f-12b9-4af9-9413-39ce6f9a126d": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md", "_node_type": "TextNode", "document_id": "54ee33ee0e3a07ea15165101dcbc06495eced766", "doc_id": "54ee33ee0e3a07ea15165101dcbc06495eced766", "ref_doc_id": "54ee33ee0e3a07ea15165101dcbc06495eced766"}, "cd8d3ab6-1259-40a0-a44b-7f679fee56d4": {"file_path": "content/docs/contributing/getting_started.md", "file_name": "getting_started.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/getting_started.md", "_node_type": "TextNode", "document_id": "3ad4a616007ca5441cfcd229f6688e3d939bc374", "doc_id": "3ad4a616007ca5441cfcd229f6688e3d939bc374", "ref_doc_id": "3ad4a616007ca5441cfcd229f6688e3d939bc374"}, "f215f5cf-5057-4b73-a09c-a6ef0b073beb": {"file_path": "content/docs/contributing/getting_started.md", "file_name": "getting_started.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/getting_started.md", "_node_type": "TextNode", "document_id": "3ad4a616007ca5441cfcd229f6688e3d939bc374", "doc_id": "3ad4a616007ca5441cfcd229f6688e3d939bc374", "ref_doc_id": "3ad4a616007ca5441cfcd229f6688e3d939bc374"}, "b5bdd873-3d71-45d3-b88d-06193ffb2cd0": {"file_path": "content/docs/contributing/recognising_contributions.md", "file_name": "recognising_contributions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/recognising_contributions.md", "_node_type": "TextNode", "document_id": "3716e2551f49aa2261c6160f8a03d7939eed0a76", "doc_id": "3716e2551f49aa2261c6160f8a03d7939eed0a76", "ref_doc_id": "3716e2551f49aa2261c6160f8a03d7939eed0a76"}, "ff919679-c51e-4f38-bf87-f5cabb8b85bb": {"file_path": "content/docs/contributing/reviewing_changes.md", "file_name": "reviewing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/reviewing_changes.md", "_node_type": "TextNode", "document_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8", "doc_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8", "ref_doc_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8"}, "f32ce356-37da-4a43-a12d-8bf950636c30": {"file_path": "content/docs/contributing/reviewing_changes.md", "file_name": "reviewing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/reviewing_changes.md", "_node_type": "TextNode", "document_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8", "doc_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8", "ref_doc_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8"}, "176c89b9-abf7-4e55-bb1c-7af2ccf0f82b": {"file_path": "content/docs/contributing/reviewing_changes.md", "file_name": "reviewing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/reviewing_changes.md", "_node_type": "TextNode", "document_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8", "doc_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8", "ref_doc_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8"}, "e3729547-1eca-467b-9bb0-fe1804f9a874": {"file_path": "content/docs/contributing/style_guide.md", "file_name": "style_guide.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/style_guide.md", "_node_type": "TextNode", "document_id": "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae", "doc_id": "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae", "ref_doc_id": "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae"}, "b33cd473-ff1c-4fd5-9e29-3957daf45389": {"file_path": "content/docs/contributing/style_guide.md", "file_name": "style_guide.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/style_guide.md", "_node_type": "TextNode", "document_id": "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae", "doc_id": "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae", "ref_doc_id": "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae"}, "142c2d96-ae16-4cf2-9256-dd7251e34c94": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "4acae13b-0545-456d-b97b-aa278ff7ef96": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "5ae511d6-d49d-4ddd-80eb-25edd5a56437": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "99d4167f-919f-4a15-bc13-70656440d6a8": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "c9459fc0-9e0f-456d-8450-323acb47ce30": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "eabb7bb4-3083-4b5f-9f00-68211f7e32b9": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "9a202e7f-1c69-4845-aca0-5fd6aa403053": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "53c234b1-1bef-41e7-8d0f-81e4a2e21a09": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "5e4128d2-0246-49c5-97ae-50b5363f547d": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "2b3d28a7-49c8-4f38-92b2-5e2f22c35763": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "d08eb6d7-705b-4369-ab85-17f47f9090b5": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "ed3797f6-6391-46b7-8c12-723d805edd3f": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "4c2e522d-d8b6-4793-ba0f-38d61ef86ec4": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "2ece4974-14ce-450b-be09-73076b3913e2": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "a1aee0ee-beab-4caf-b3f6-a6c22e8e9e0f": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "77848f07-e6f1-4e28-b5e8-2a1e6f01a8a2": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "52f57058-d56a-4d99-b021-e100acbf7d99": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "ec0b6f9e-fa47-4006-942f-74d62306946c": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "2f45fac7-da65-4dbc-975c-4c0385a61c5a": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md", "_node_type": "TextNode", "document_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "3feceeca-3eb9-43ae-95e8-61c9cf5c6d57": {"file_path": "content/docs/employee_processes/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/_index.md", "_node_type": "TextNode", "document_id": "7400df9edd9c4071fcbab15b4862891105a2e1bd", "doc_id": "7400df9edd9c4071fcbab15b4862891105a2e1bd", "ref_doc_id": "7400df9edd9c4071fcbab15b4862891105a2e1bd"}, "84900df3-9ac3-4d8b-a692-cfb617fe1e84": {"file_path": "content/docs/employee_processes/annual_appraisals.md", "file_name": "annual_appraisals.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/annual_appraisals.md", "_node_type": "TextNode", "document_id": "63768c9127a41b6c46ab497d2341cfbcde106d65", "doc_id": "63768c9127a41b6c46ab497d2341cfbcde106d65", "ref_doc_id": "63768c9127a41b6c46ab497d2341cfbcde106d65"}, "3603f85b-d8fd-4081-8258-ca892ef85005": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md", "_node_type": "TextNode", "document_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "60b8c530-ba1a-41bc-9d6b-3991791bc2b6": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md", "_node_type": "TextNode", "document_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "22d5c08c-b3b9-4ae9-86cd-af3e8edb4af1": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md", "_node_type": "TextNode", "document_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "7e725ce8-52cb-49c5-8e0a-bd6d4c21728d": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md", "_node_type": "TextNode", "document_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "5e5445b6-8ec1-4ab0-ace9-d2f41365a640": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md", "_node_type": "TextNode", "document_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "06acc6e2-25e8-4bf3-9fae-e254fa4a09da": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md", "_node_type": "TextNode", "document_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "35af2b14-e6e5-48fd-9926-2ad98a0ee79a": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md", "_node_type": "TextNode", "document_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "2dbabf73-3621-4277-810f-def259b60568": {"file_path": "content/docs/how_we_work/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/_index.md", "_node_type": "TextNode", "document_id": "355608b3e4baabc116162490b302ac19818f0c72", "doc_id": "355608b3e4baabc116162490b302ac19818f0c72", "ref_doc_id": "355608b3e4baabc116162490b302ac19818f0c72"}, "308301a6-2983-480c-b771-15de12d77e0f": {"file_path": "content/docs/how_we_work/acronyms_and_abbreviations.md", "file_name": "acronyms_and_abbreviations.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/acronyms_and_abbreviations.md", "_node_type": "TextNode", "document_id": "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34", "doc_id": "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34", "ref_doc_id": "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34"}, "9f03394b-9689-4c1e-a008-2f40d8c0ee0e": {"file_path": "content/docs/how_we_work/acronyms_and_abbreviations.md", "file_name": "acronyms_and_abbreviations.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/acronyms_and_abbreviations.md", "_node_type": "TextNode", "document_id": "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34", "doc_id": "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34", "ref_doc_id": "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34"}, "fce3078e-c270-459f-a637-5009e3c264e1": {"file_path": "content/docs/how_we_work/code_audits.md", "file_name": "code_audits.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/code_audits.md", "_node_type": "TextNode", "document_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346", "doc_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346", "ref_doc_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346"}, "0efe9dfa-f503-40c3-b065-20103e991baf": {"file_path": "content/docs/how_we_work/code_audits.md", "file_name": "code_audits.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/code_audits.md", "_node_type": "TextNode", "document_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346", "doc_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346", "ref_doc_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346"}, "02041b0f-2b6e-4ef5-9bff-b504d45e83c7": {"file_path": "content/docs/how_we_work/code_audits.md", "file_name": "code_audits.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/code_audits.md", "_node_type": "TextNode", "document_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346", "doc_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346", "ref_doc_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346"}, "2d448858-f9d3-4100-99b4-5f915b545d92": {"file_path": "content/docs/how_we_work/defining-done.md", "file_name": "defining-done.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/defining-done.md", "_node_type": "TextNode", "document_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00", "doc_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00", "ref_doc_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00"}, "83517c70-7306-4404-b05e-67fb691d01a8": {"file_path": "content/docs/how_we_work/defining-done.md", "file_name": "defining-done.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/defining-done.md", "_node_type": "TextNode", "document_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00", "doc_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00", "ref_doc_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00"}, "fe552232-5b34-4657-b842-1fd039e24eb2": {"file_path": "content/docs/how_we_work/defining-done.md", "file_name": "defining-done.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/defining-done.md", "_node_type": "TextNode", "document_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00", "doc_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00", "ref_doc_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00"}, "60f9d284-345d-448e-b593-0fbe326aa09a": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md", "_node_type": "TextNode", "document_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "80badcbb-374e-4a2f-82e0-22acbf1ee2a8": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md", "_node_type": "TextNode", "document_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "b0ac2673-089e-43a9-b004-cb55670d5613": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md", "_node_type": "TextNode", "document_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "ff718593-9a32-4079-8566-b2eeccec373d": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md", "_node_type": "TextNode", "document_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "a0611aa2-9601-457a-9a45-7ebdea9de014": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md", "_node_type": "TextNode", "document_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "f0d8f067-0996-400a-9679-3f8393fc11ff": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md", "_node_type": "TextNode", "document_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "ddf0d0fa-a27a-4231-966b-2d71c5f40d99": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md", "_node_type": "TextNode", "document_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "5aadd0c8-686f-46f2-8311-14f79994b627": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md", "_node_type": "TextNode", "document_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "f7f09540-e847-4d0c-a813-b6e580bedcb4": {"file_path": "content/docs/how_we_work/line-management.md", "file_name": "line-management.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/line-management.md", "_node_type": "TextNode", "document_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043", "doc_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043", "ref_doc_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043"}, "fc8c1d05-99cf-471d-a569-8b4398a28a04": {"file_path": "content/docs/how_we_work/line-management.md", "file_name": "line-management.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/line-management.md", "_node_type": "TextNode", "document_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043", "doc_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043", "ref_doc_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043"}, "a5af40e6-1d06-41d6-9640-9b0b047b263a": {"file_path": "content/docs/how_we_work/line-management.md", "file_name": "line-management.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/line-management.md", "_node_type": "TextNode", "document_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043", "doc_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043", "ref_doc_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043"}, "8a8133a4-4245-4942-8cb0-db3cb28c44f9": {"file_path": "content/docs/how_we_work/meeting_record.md", "file_name": "meeting_record.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/meeting_record.md", "_node_type": "TextNode", "document_id": "3fb6caa127af57616062f5efa38208b722a42221", "doc_id": "3fb6caa127af57616062f5efa38208b722a42221", "ref_doc_id": "3fb6caa127af57616062f5efa38208b722a42221"}, "2b17d74a-862c-435b-a4fe-b602778b2680": {"file_path": "content/docs/how_we_work/open_access.md", "file_name": "open_access.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/open_access.md", "_node_type": "TextNode", "document_id": "710a44b3fd231bdb2ce3cf1f5884505969def43e", "doc_id": "710a44b3fd231bdb2ce3cf1f5884505969def43e", "ref_doc_id": "710a44b3fd231bdb2ce3cf1f5884505969def43e"}, "d27c338e-31f3-4279-a7e5-01daae284dbc": {"file_path": "content/docs/how_we_work/project_tracking.md", "file_name": "project_tracking.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/project_tracking.md", "_node_type": "TextNode", "document_id": "988753b83c1f32468cb2f580dec2e0ea17c5adcd", "doc_id": "988753b83c1f32468cb2f580dec2e0ea17c5adcd", "ref_doc_id": "988753b83c1f32468cb2f580dec2e0ea17c5adcd"}, "baacf820-88ef-4e27-ab64-5a55a04f1e5f": {"file_path": "content/docs/how_we_work/project_tracking.md", "file_name": "project_tracking.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/project_tracking.md", "_node_type": "TextNode", "document_id": "988753b83c1f32468cb2f580dec2e0ea17c5adcd", "doc_id": "988753b83c1f32468cb2f580dec2e0ea17c5adcd", "ref_doc_id": "988753b83c1f32468cb2f580dec2e0ea17c5adcd"}, "14a40177-16bb-46f1-96fd-b86f287158c0": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md", "_node_type": "TextNode", "document_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "doc_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "ref_doc_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45"}, "fb1a7658-c476-4a44-b85d-212669923fd8": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md", "_node_type": "TextNode", "document_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "doc_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "ref_doc_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45"}, "94bd70b1-fb83-4c4e-ab35-b1a16a0234b7": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md", "_node_type": "TextNode", "document_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "doc_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "ref_doc_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45"}, "b86b8e65-d3fc-4e3b-afe2-48afa23b7a68": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md", "_node_type": "TextNode", "document_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "doc_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "ref_doc_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45"}, "a25ada4b-5845-43aa-9c0c-cfd763e4a100": {"file_path": "content/docs/how_we_work/snark_hunts.md", "file_name": "snark_hunts.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/snark_hunts.md", "_node_type": "TextNode", "document_id": "c5690b32682b3b73911668d58fead0852a6cf8d6", "doc_id": "c5690b32682b3b73911668d58fead0852a6cf8d6", "ref_doc_id": "c5690b32682b3b73911668d58fead0852a6cf8d6"}, "fef485ab-1d16-4402-9c80-2d89b39599c8": {"file_path": "content/docs/how_we_work/snark_hunts.md", "file_name": "snark_hunts.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/snark_hunts.md", "_node_type": "TextNode", "document_id": "c5690b32682b3b73911668d58fead0852a6cf8d6", "doc_id": "c5690b32682b3b73911668d58fead0852a6cf8d6", "ref_doc_id": "c5690b32682b3b73911668d58fead0852a6cf8d6"}, "25c15c1c-6042-434d-81ab-116505771d66": {"file_path": "content/docs/join_us/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/_index.md", "_node_type": "TextNode", "document_id": "a719156971fa8ebb242749926fbf38be72a44d13", "doc_id": "a719156971fa8ebb242749926fbf38be72a44d13", "ref_doc_id": "a719156971fa8ebb242749926fbf38be72a44d13"}, "0009b835-6867-4034-a974-e0495b55ed3e": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "b2588806-3af9-4149-a5a3-95083eb352c0": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "16330a08-ad08-496f-a14e-a56c8d8495eb": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "d2150194-dd47-4b24-90d6-24a9ec1930e2": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "2e92bb78-357e-455b-ab5c-e1e12e4b2da4": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "bc877115-e3e0-4648-bef9-5e10d81a353d": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "939e982a-94d2-49b3-b029-926d0ad796e3": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "655b725c-a52f-4e96-93c4-361714c23830": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "9263bd46-63d4-4010-9ef1-ebeb7c96e88f": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "5d83bd6f-d55e-4a3d-b92a-95d2730cec7e": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "214b63dc-17e6-4093-9efe-b50dac8331a0": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "d04e9b9a-1e28-42c4-ac2a-e59e84cf019b": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "f4a27cf4-d22f-47b2-bd5e-7cfd3cf286e4": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "4139f092-9cd1-46db-ba5a-5a5759ae4bb1": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "2c693769-1efc-4102-8d1e-253fcede566b": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "202a5ff9-6f89-4301-a80f-0577d6989b87": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "2977a99a-b5bc-4548-8003-77766a64b591": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "9950c23a-f73d-423f-b120-fc886fdc8843": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md", "_node_type": "TextNode", "document_id": "334a4c021df569ebc7001eeac252ffa542373d53", "doc_id": "334a4c021df569ebc7001eeac252ffa542373d53", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "35db1781-d829-46cd-b2df-e30df000dc0d": {"file_path": "content/docs/onboarding/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/_index.md", "_node_type": "TextNode", "document_id": "8da5941d9e553fec1734e42037111a37668471e4", "doc_id": "8da5941d9e553fec1734e42037111a37668471e4", "ref_doc_id": "8da5941d9e553fec1734e42037111a37668471e4"}, "9ef54c37-488c-41f4-b826-cf988eb9e138": {"file_path": "content/docs/onboarding/buddy_system.md", "file_name": "buddy_system.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/buddy_system.md", "_node_type": "TextNode", "document_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb", "doc_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb", "ref_doc_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb"}, "584f6865-e808-41c0-8032-05e75d746feb": {"file_path": "content/docs/onboarding/buddy_system.md", "file_name": "buddy_system.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/buddy_system.md", "_node_type": "TextNode", "document_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb", "doc_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb", "ref_doc_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb"}, "36f72676-0d86-4d9b-b3c5-18d5cbe0ad06": {"file_path": "content/docs/onboarding/buddy_system.md", "file_name": "buddy_system.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/buddy_system.md", "_node_type": "TextNode", "document_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb", "doc_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb", "ref_doc_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb"}, "1fdb1412-26d8-4077-955c-b338014f395c": {"file_path": "content/docs/onboarding/new_joiners/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/_index.md", "_node_type": "TextNode", "document_id": "eea6eb21a653228f12ee4e03bc10e04179d63ea5", "doc_id": "eea6eb21a653228f12ee4e03bc10e04179d63ea5", "ref_doc_id": "eea6eb21a653228f12ee4e03bc10e04179d63ea5"}, "139ccd73-c4b8-4a69-9349-3584a45b27f6": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md", "_node_type": "TextNode", "document_id": "3452b76140b3029de5af4930db29caa5e943513d", "doc_id": "3452b76140b3029de5af4930db29caa5e943513d", "ref_doc_id": "3452b76140b3029de5af4930db29caa5e943513d"}, "478492af-909f-4927-afa3-a22f69624c18": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md", "_node_type": "TextNode", "document_id": "3452b76140b3029de5af4930db29caa5e943513d", "doc_id": "3452b76140b3029de5af4930db29caa5e943513d", "ref_doc_id": "3452b76140b3029de5af4930db29caa5e943513d"}, "80a01e0f-9042-4493-92d6-a07003cd87a9": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md", "_node_type": "TextNode", "document_id": "3452b76140b3029de5af4930db29caa5e943513d", "doc_id": "3452b76140b3029de5af4930db29caa5e943513d", "ref_doc_id": "3452b76140b3029de5af4930db29caa5e943513d"}, "95e4556b-baf0-40be-a66b-4d2b0eebafb3": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md", "_node_type": "TextNode", "document_id": "3452b76140b3029de5af4930db29caa5e943513d", "doc_id": "3452b76140b3029de5af4930db29caa5e943513d", "ref_doc_id": "3452b76140b3029de5af4930db29caa5e943513d"}, "32f9cd78-e1aa-43d6-ad05-0c482996ffb4": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md", "_node_type": "TextNode", "document_id": "3452b76140b3029de5af4930db29caa5e943513d", "doc_id": "3452b76140b3029de5af4930db29caa5e943513d", "ref_doc_id": "3452b76140b3029de5af4930db29caa5e943513d"}, "b0534a2e-7f2a-493d-895f-0ba89a3d940b": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md", "_node_type": "TextNode", "document_id": "3452b76140b3029de5af4930db29caa5e943513d", "doc_id": "3452b76140b3029de5af4930db29caa5e943513d", "ref_doc_id": "3452b76140b3029de5af4930db29caa5e943513d"}, "a84349e5-52b8-4073-9487-497ca07f95ee": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md", "_node_type": "TextNode", "document_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "59036fe2-a102-4943-b9bf-17e525a18467": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md", "_node_type": "TextNode", "document_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "f3d35cee-3ccb-41d8-ad38-ff273e598cb5": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md", "_node_type": "TextNode", "document_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "b6473046-4e60-4cac-89fb-ccb09390f1ec": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md", "_node_type": "TextNode", "document_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "3abae02f-f871-4edb-b3f1-81da237825da": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md", "_node_type": "TextNode", "document_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "decbaa19-7313-463e-babe-625487666fb0": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md", "_node_type": "TextNode", "document_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "e8cd1844-095b-484b-9dad-c95abf3c4373": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md", "_node_type": "TextNode", "document_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "470778ec-4e10-4cb1-9924-88d00b6c258c": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md", "_node_type": "TextNode", "document_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "f6d6b5c8-11e1-49ba-9933-781cd71025df": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "93ec1759-4667-466e-8bea-d4739b5b8f0b": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "c1000392-16cf-421a-b25f-5c240de81979": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "91a3f525-e557-44a9-8cff-fffa910a2207": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "ea6366c9-d607-441d-b084-f601bb402466": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "a45cd662-89ef-4e64-9475-caae4a08d1f7": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "65522fe5-fb80-43d0-8032-255f08e75db4": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "201432b8-c6a7-4e53-9ae1-5e5e225aaca1": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "5c092d4a-1a6a-42fa-9c88-2c89a652a0c3": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "0670d79d-270b-40e6-8027-86d4c763781c": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "9339280a-09ea-42e5-b8f0-5ae819759d6f": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "6cb2c28c-4858-4f80-b7af-c763074c72db": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "8cb68461-551d-44b1-bd45-789feee27927": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "72157987-ccc4-4b00-b6a9-4206c1635c62": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md", "_node_type": "TextNode", "document_id": "9800b627994c5343abeec748c5811347d67f934a", "doc_id": "9800b627994c5343abeec748c5811347d67f934a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "d0309d4e-01b1-4bc1-94c9-af1c07a0a294": {"file_path": "content/docs/onboarding/society_of_research_software_engineering.md", "file_name": "society_of_research_software_engineering.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/society_of_research_software_engineering.md", "_node_type": "TextNode", "document_id": "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6", "doc_id": "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6", "ref_doc_id": "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6"}, "05a15588-4b09-40af-8e2e-e3cfc444a25d": {"file_path": "content/docs/onboarding/society_of_research_software_engineering.md", "file_name": "society_of_research_software_engineering.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/society_of_research_software_engineering.md", "_node_type": "TextNode", "document_id": "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6", "doc_id": "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6", "ref_doc_id": "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6"}, "af06e711-3177-4400-bb92-291df03e30dd": {"file_path": "content/docs/regular_events/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/_index.md", "_node_type": "TextNode", "document_id": "3572fbb8f0bfccfb953996dc8599e300641c5280", "doc_id": "3572fbb8f0bfccfb953996dc8599e300641c5280", "ref_doc_id": "3572fbb8f0bfccfb953996dc8599e300641c5280"}, "b9b977cf-0c14-4e1e-bc45-e7620f4d37f2": {"file_path": "content/docs/regular_events/coffee_chats.md", "file_name": "coffee_chats.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/coffee_chats.md", "_node_type": "TextNode", "document_id": "3db69996a4f564759314b78f68e574789fa6e81f", "doc_id": "3db69996a4f564759314b78f68e574789fa6e81f", "ref_doc_id": "3db69996a4f564759314b78f68e574789fa6e81f"}, "a2d3b1f4-ad42-4e85-9984-240e9e1ad08d": {"file_path": "content/docs/regular_events/drop-in_sessions.md", "file_name": "drop-in_sessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/drop-in_sessions.md", "_node_type": "TextNode", "document_id": "246a8e452680dcd30e6b1492db1ece74b14b8843", "doc_id": "246a8e452680dcd30e6b1492db1ece74b14b8843", "ref_doc_id": "246a8e452680dcd30e6b1492db1ece74b14b8843"}, "a130bafd-4da5-4b34-8ec6-a49e3f6f5d97": {"file_path": "content/docs/regular_events/drop-in_sessions.md", "file_name": "drop-in_sessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/drop-in_sessions.md", "_node_type": "TextNode", "document_id": "246a8e452680dcd30e6b1492db1ece74b14b8843", "doc_id": "246a8e452680dcd30e6b1492db1ece74b14b8843", "ref_doc_id": "246a8e452680dcd30e6b1492db1ece74b14b8843"}, "4a91eaf3-2fa4-4374-a2aa-f9bc3cd25988": {"file_path": "content/docs/regular_events/drop-in_sessions.md", "file_name": "drop-in_sessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/drop-in_sessions.md", "_node_type": "TextNode", "document_id": "246a8e452680dcd30e6b1492db1ece74b14b8843", "doc_id": "246a8e452680dcd30e6b1492db1ece74b14b8843", "ref_doc_id": "246a8e452680dcd30e6b1492db1ece74b14b8843"}, "8e3d6776-d318-4d99-bd67-b95466d95eb5": {"file_path": "content/docs/regular_events/lightning_talks.md", "file_name": "lightning_talks.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/lightning_talks.md", "_node_type": "TextNode", "document_id": "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609", "doc_id": "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609", "ref_doc_id": "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609"}, "13693d9f-add0-4831-b24e-18baf9b8be19": {"file_path": "content/docs/regular_events/lightning_talks.md", "file_name": "lightning_talks.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/lightning_talks.md", "_node_type": "TextNode", "document_id": "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609", "doc_id": "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609", "ref_doc_id": "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609"}, "70b4a312-c669-4439-89e1-6db8aaadb025": {"file_path": "content/docs/regular_events/lunchtime_tech_talks.md", "file_name": "lunchtime_tech_talks.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/lunchtime_tech_talks.md", "_node_type": "TextNode", "document_id": "2eb3fa13f1a8f4a51bb717fb851b558b1c945567", "doc_id": "2eb3fa13f1a8f4a51bb717fb851b558b1c945567", "ref_doc_id": "2eb3fa13f1a8f4a51bb717fb851b558b1c945567"}, "50dccdcb-69c2-41fa-9490-9234095132f3": {"file_path": "content/docs/regular_events/open_source_hacksessions.md", "file_name": "open_source_hacksessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/open_source_hacksessions.md", "_node_type": "TextNode", "document_id": "40e5ef8b88305799557e778421610c28154b50cb", "doc_id": "40e5ef8b88305799557e778421610c28154b50cb", "ref_doc_id": "40e5ef8b88305799557e778421610c28154b50cb"}, "56f95194-e0bf-4d86-bef9-c4112ef570db": {"file_path": "content/docs/regular_events/reading_groups.md", "file_name": "reading_groups.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/reading_groups.md", "_node_type": "TextNode", "document_id": "f9f40be4347c262e85e6a9312f4253889db82a4b", "doc_id": "f9f40be4347c262e85e6a9312f4253889db82a4b", "ref_doc_id": "f9f40be4347c262e85e6a9312f4253889db82a4b"}, "e8716438-9709-458f-84d4-b7d3fbde4130": {"file_path": "content/docs/technical_practices/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/_index.md", "_node_type": "TextNode", "document_id": "b00d7c4c21f6e6a325f524411155361fe4ffe408", "doc_id": "b00d7c4c21f6e6a325f524411155361fe4ffe408", "ref_doc_id": "b00d7c4c21f6e6a325f524411155361fe4ffe408"}, "5152f868-b29a-47d3-b9d8-b00239673c47": {"file_path": "content/docs/technical_practices/change_logs.md", "file_name": "change_logs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/change_logs.md", "_node_type": "TextNode", "document_id": "3ce2d5776d7d6d036e7c745b3343f6720d64905c", "doc_id": "3ce2d5776d7d6d036e7c745b3343f6720d64905c", "ref_doc_id": "3ce2d5776d7d6d036e7c745b3343f6720d64905c"}, "998a3b4c-d069-4bed-a7aa-9874021d7572": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md", "_node_type": "TextNode", "document_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "d692095e-53cf-4583-969f-34d0abcb3eb9": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md", "_node_type": "TextNode", "document_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "5d95abb7-0902-4779-8d44-fedef73fd58d": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md", "_node_type": "TextNode", "document_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "ef58638f-76af-4f77-a459-560c3d95561b": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md", "_node_type": "TextNode", "document_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "91aec09e-c299-451a-bee5-36cc906bf2ce": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md", "_node_type": "TextNode", "document_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "0f6df599-a7d7-4b74-99f7-cddd754c7717": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md", "_node_type": "TextNode", "document_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "ce949a35-c420-4642-8f65-2ad80b27fe15": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md", "_node_type": "TextNode", "document_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "0067c7fe-dbac-4676-b633-bbd243898fd9": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md", "_node_type": "TextNode", "document_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "93687e9e-a133-4f4a-97eb-6a7c6561d8b8": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md", "_node_type": "TextNode", "document_id": "a15c80d71605c1b52b365259257c75172230e2b3", "doc_id": "a15c80d71605c1b52b365259257c75172230e2b3", "ref_doc_id": "a15c80d71605c1b52b365259257c75172230e2b3"}, "e71be8f0-fe30-480b-9e5c-86141c78d8a4": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md", "_node_type": "TextNode", "document_id": "a15c80d71605c1b52b365259257c75172230e2b3", "doc_id": "a15c80d71605c1b52b365259257c75172230e2b3", "ref_doc_id": "a15c80d71605c1b52b365259257c75172230e2b3"}, "8f323bf4-8b81-4f6f-a61f-ac1ca7407c49": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md", "_node_type": "TextNode", "document_id": "a15c80d71605c1b52b365259257c75172230e2b3", "doc_id": "a15c80d71605c1b52b365259257c75172230e2b3", "ref_doc_id": "a15c80d71605c1b52b365259257c75172230e2b3"}, "9357024f-1e70-4c6e-b046-cc395bfe494d": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md", "_node_type": "TextNode", "document_id": "a15c80d71605c1b52b365259257c75172230e2b3", "doc_id": "a15c80d71605c1b52b365259257c75172230e2b3", "ref_doc_id": "a15c80d71605c1b52b365259257c75172230e2b3"}, "05060b83-66bd-46d0-b5d4-c556fc94bf29": {"file_path": "content/docs/technical_practices/software_dev_best_practice.md", "file_name": "software_dev_best_practice.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/software_dev_best_practice.md", "_node_type": "TextNode", "document_id": "83a937e7909e283792af66260c897d102991d7b9", "doc_id": "83a937e7909e283792af66260c897d102991d7b9", "ref_doc_id": "83a937e7909e283792af66260c897d102991d7b9"}, "76fe5b6a-11e4-4441-b16d-26cc1fa953b5": {"file_path": "content/docs/technical_practices/software_dev_best_practice.md", "file_name": "software_dev_best_practice.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/software_dev_best_practice.md", "_node_type": "TextNode", "document_id": "83a937e7909e283792af66260c897d102991d7b9", "doc_id": "83a937e7909e283792af66260c897d102991d7b9", "ref_doc_id": "83a937e7909e283792af66260c897d102991d7b9"}, "f5ee3b52-aa3e-4bd0-8f27-79c40c81d3c7": {"file_path": "content/docs/working_at_the_turing/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/_index.md", "_node_type": "TextNode", "document_id": "a40d10bf89b5a47ee2ebb0eaeeb3ad970d275a3c", "doc_id": "a40d10bf89b5a47ee2ebb0eaeeb3ad970d275a3c", "ref_doc_id": "a40d10bf89b5a47ee2ebb0eaeeb3ad970d275a3c"}, "23e852e5-02c3-408e-999f-c6fdea194a32": {"file_path": "content/docs/working_at_the_turing/booking_a_meeting_room.md", "file_name": "booking_a_meeting_room.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/booking_a_meeting_room.md", "_node_type": "TextNode", "document_id": "386340d84f9bce8c984e5f9d344c16803f180779", "doc_id": "386340d84f9bce8c984e5f9d344c16803f180779", "ref_doc_id": "386340d84f9bce8c984e5f9d344c16803f180779"}, "2219935e-cd84-4325-9c68-e9f3c2e61faa": {"file_path": "content/docs/working_at_the_turing/edi.md", "file_name": "edi.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/edi.md", "_node_type": "TextNode", "document_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a", "doc_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a", "ref_doc_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a"}, "63f43023-e476-4c1a-ae99-c7774894fb2f": {"file_path": "content/docs/working_at_the_turing/edi.md", "file_name": "edi.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/edi.md", "_node_type": "TextNode", "document_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a", "doc_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a", "ref_doc_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a"}, "b8c9a66f-86ef-4958-b219-f27093a055b8": {"file_path": "content/docs/working_at_the_turing/edi.md", "file_name": "edi.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/edi.md", "_node_type": "TextNode", "document_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a", "doc_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a", "ref_doc_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a"}, "3a824442-4ed5-4847-96d3-dc2ca1324cfa": {"file_path": "content/docs/working_at_the_turing/equipment.md", "file_name": "equipment.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/equipment.md", "_node_type": "TextNode", "document_id": "c4771fb05fdcbcee999cbfb17856c814cbfa41f4", "doc_id": "c4771fb05fdcbcee999cbfb17856c814cbfa41f4", "ref_doc_id": "c4771fb05fdcbcee999cbfb17856c814cbfa41f4"}, "47dc984f-45b2-460d-bf79-5ee6e0a84bfd": {"file_path": "content/docs/working_at_the_turing/equipment.md", "file_name": "equipment.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/equipment.md", "_node_type": "TextNode", "document_id": "c4771fb05fdcbcee999cbfb17856c814cbfa41f4", "doc_id": "c4771fb05fdcbcee999cbfb17856c814cbfa41f4", "ref_doc_id": "c4771fb05fdcbcee999cbfb17856c814cbfa41f4"}, "ae06d6a1-33fc-4b36-ae30-afcb8ed34d06": {"file_path": "content/docs/working_at_the_turing/expenses.md", "file_name": "expenses.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/expenses.md", "_node_type": "TextNode", "document_id": "dbdb7680a1e21622af2403e7a3739e148903b38a", "doc_id": "dbdb7680a1e21622af2403e7a3739e148903b38a", "ref_doc_id": "dbdb7680a1e21622af2403e7a3739e148903b38a"}, "c348e27e-07a9-4eb0-96bf-ba067c1b993f": {"file_path": "content/docs/working_at_the_turing/wellbeing.md", "file_name": "wellbeing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/wellbeing.md", "_node_type": "TextNode", "document_id": "84273d25a134f3eb42173957fb52d64eb533bc2d", "doc_id": "84273d25a134f3eb42173957fb52d64eb533bc2d", "ref_doc_id": "84273d25a134f3eb42173957fb52d64eb533bc2d"}, "542517e7-3531-412e-8101-736be1fcdfe0": {"file_path": "content/docs/working_at_the_turing/wellbeing.md", "file_name": "wellbeing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/wellbeing.md", "_node_type": "TextNode", "document_id": "84273d25a134f3eb42173957fb52d64eb533bc2d", "doc_id": "84273d25a134f3eb42173957fb52d64eb533bc2d", "ref_doc_id": "84273d25a134f3eb42173957fb52d64eb533bc2d"}, "c17d5b9f-b642-4903-b56b-8ec46fa02441": {"file_path": "content/docs/working_at_the_turing/wellbeing.md", "file_name": "wellbeing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/wellbeing.md", "_node_type": "TextNode", "document_id": "84273d25a134f3eb42173957fb52d64eb533bc2d", "doc_id": "84273d25a134f3eb42173957fb52d64eb533bc2d", "ref_doc_id": "84273d25a134f3eb42173957fb52d64eb533bc2d"}}} diff --git a/data/llama_index_indices/handbook/docstore.json b/data/llama_index_indices/handbook/docstore.json index c8ebd56f..7ea2adb8 100644 --- a/data/llama_index_indices/handbook/docstore.json +++ b/data/llama_index_indices/handbook/docstore.json @@ -1 +1 @@ -{"docstore/metadata": {"e8ff93ab-6b4c-46a4-9bea-e54d3508987a": {"doc_hash": "15b5c30a51cb56cc0f8aef9a21d5b3fe9540cc61decc853eb191120dd1c1ed39"}, "cfb5a5b5-d72d-40da-bd3c-a26cf598c742": {"doc_hash": "bb160b351072984821329e3dccc01108ffd0d52e320a2e34a79366f4380ff3e4"}, "818f387d-a522-4212-8a2d-3fa821940cc2": {"doc_hash": "acf72fec2b10597c7ebd19741dc641af71346b6f7c0f6f16e2fea379cca8aa5c"}, "7bc907be-6161-46a0-ae00-0279ce879d4f": {"doc_hash": "8b91442b19b0c04b06abfad82264ca93377090496db7ecaa9e0fea3a7ce87b49"}, "082e5499-fe3f-4bbb-8c20-036125497c60": {"doc_hash": "22dfb1589aba2ea8422191f9cf01d15b35593cb541c5cc5028448d88fa94b2b6"}, "0b40b2c9-ab5d-43eb-8e72-87de4c8439cf": {"doc_hash": "7a1f282fa82b5cfca49ec86fd7d1a60ffba39b470edef33a2ec71552b9e4a803"}, "520c5124-2147-4dab-bf3e-4cb029c7f436": {"doc_hash": "377af2447f73132bee0e9289429e46ef1378e5788e5d79bcf66eab654604770e"}, "dd808e38-620c-4cdb-abc4-75ad9a42b39c": {"doc_hash": "bec05483d06bf19213ddab5fcc8b5b5e9b3c7423d717733be4fe0aa1dff4e621"}, "4672ee2d-fc36-403b-a2f4-0d7b47e54c90": {"doc_hash": "62bdba179f5a5de7e2af6f54114f7815f27fd2a04a147510214999fe823ab176"}, "3e2c2087-2447-4036-89c6-c3b476ba1980": {"doc_hash": "72955dd9a83694e754e2286e4e7ec7adb9ced870d795b3a5db92a14082de4d8d"}, "992e554d-6658-4f10-89c8-5de9396afd51": {"doc_hash": "289dca7f46b829a4c7112a67257adee1c0233cf9f3d97659fc1aa298cdad82c0"}, "439c3118-d6dd-4617-82d9-97ad4cf51bbd": {"doc_hash": "4035f8253070bc0c00bdb78a5316e20af0e21c2508cb6619a6aeb5413f6733a0"}, "71c71cdb-ad88-4a6c-91a5-3604f6c5df22": {"doc_hash": "26bae2c2963aafecfa270625ba66c915cf7fcf55c465282c0598f9020396f2a6"}, "d9440e1a-d8f3-45c1-ac9b-8d14f09b0870": {"doc_hash": "6d4d80ba889adac7dbbf4b084df960a442e7333356db9e62a2aff25ca03fd614"}, "a96a9396-e221-4b06-a82d-dc66c66148ef": {"doc_hash": "14a6ae432a9e870eda8bdac6066cec1b1aebfdc112b26b24e56b04faa57feb61"}, "7f100d62-022a-451a-a1f4-967e62be7b04": {"doc_hash": "bbd732561186a55870828de158dca4eaacbeb1133781abc310c870cca0e8206b"}, "95a412e4-efb9-4a7a-8bdb-696965069c19": {"doc_hash": "c0daed071aec0c243993d208301d990d818dc6dc374f9afc40321aacbb58b36a"}, "d8d61bab-9e58-4ade-9a14-a63b787c2bc3": {"doc_hash": "b0cf17f86d4011ee201f97965f34d447124617ae835293faa1c07c11df99dfde"}, "dbfd79ac-e69a-4052-8034-864e7fe1d39f": {"doc_hash": "ad368dd9aae70755fbdd7bf2c7c2ce72dc571c3a91c3503366407e23e1aa66d3"}, "3c9873c6-3747-431b-9944-534e0ddcd516": {"doc_hash": "0e514c0081bc3d3defc4fd22e544b2fa0c8160848610b4232f3bdd62a588dab5"}, "f57c0ea5-b736-4da2-aec2-a68e49a4c0dc": {"doc_hash": "5be3e44ceda78dbe4de244dd3611d47dd929fb129c0006fdd98188765ea1cc4b"}, "5451e9d2-0048-4479-a6c9-7f48daf2a749": {"doc_hash": "e50e42f3558137686a1843ae30f3477d7961cd980d53eba113fd03fefd847535"}, "f2a907fb-94af-401e-8dcd-33a3d4eec19e": {"doc_hash": "174d9ead8bc2b06133fe0b66c34278af157ae3211b93fb4ba893eea81f7a9fcc"}, "0079133c-3da0-4592-8734-17c3465013d6": {"doc_hash": "79a4ba262d41746f6d604aeb06389780e75f99bb266ef41fc702586dd27b5163"}, "7fb7e47d-1abf-4d13-9103-3ceafd2848bc": {"doc_hash": "f41b05448951acb22787ced25cc32c1388108bf230a40b6c296f79a6d8738799"}, "2bbccd4a-6b45-45d0-a32c-c265b6acddcc": {"doc_hash": "ca022c443def50fd9891dd9ac6bc57117cfbed7d6ffa6fb884034dcb56053e81"}, "e9557c23-59b2-468d-b8ae-b75b5199b39a": {"doc_hash": "23a784c90a2d8da2bc758468979bd2729b75ae50e5842e9a1b84cbb341edcaa8"}, "99e45a31-eb27-4ffe-98b0-60fd18b1a669": {"doc_hash": "edfe439e98900c023be3ac00c114ffec9bbbd2b4263e480745efa728e5af410e"}, "0db2f055-dd75-4980-92b5-9ee77654d811": {"doc_hash": "7815b228021dfe6287b08371c4e5e39c43b642fc4c4a0c8aecdb5557f875feae"}, "dd11122d-735a-4af6-bd95-9e13b16acda1": {"doc_hash": "8de19a3a3de64a5ec335f8cf9751ea13ec2280a39b167593dc39ff342a3eb837"}, "335ba292-7f04-43bf-a9fd-519f00b4ece3": {"doc_hash": "bc50b80655afa9fcd85c6076af522c9a6a726fbddf95ba4ddf55f62a3ac69952"}, "23cd1224-aad4-4c6e-b162-9a9141da109a": {"doc_hash": "90cedaff2defa45c628c1ee8afbb43509ef1d089c96de5f48c73893af74a79de"}, "7564a474-3a18-40d0-aaf6-812b2e7f18c2": {"doc_hash": "3e6571cf05eb998761c2965a6115e4a9066c49399672832c3d109a6e437e0e17"}, "450392e8-3be5-46b5-878b-acaae44a33cb": {"doc_hash": "369c7e82462e5cbc394b7359e613ff2b5020258e517c7e154e3e8591b6a66e1d"}, "55900417-1001-4f91-a88d-a3b59c7beb56": {"doc_hash": "be7ba423a6147bbb3c4018f2cf6cee65f2f19c349452d95c035a89df19750d46"}, "3bdd822d-8d17-490b-8945-8cb3fc25e078": {"doc_hash": "7339996eb8f50c59da4fb3c2cf3d710f2895eb461baca0415c0f7a9050141638"}, "15973cde-a6c5-42d5-b091-b5fef2ab54be": {"doc_hash": "56b3d6e5dd831a7026c59a5191ca025f714396b3ac32cf099428abdc3e1d28b8"}, "c74a421a-2a64-4026-89a4-8e28cccb5930": {"doc_hash": "11e3c2d3408b28eabffed75a95d10cd57ef1e1826e11dc70af3c072e2ea10d4c"}, "fcd6893a-2299-4252-a491-58ea3ab2027d": {"doc_hash": "15b5c30a51cb56cc0f8aef9a21d5b3fe9540cc61decc853eb191120dd1c1ed39", "ref_doc_id": "e8ff93ab-6b4c-46a4-9bea-e54d3508987a"}, "0136ae18-ab5b-403a-8e88-2246e8600382": {"doc_hash": "bb160b351072984821329e3dccc01108ffd0d52e320a2e34a79366f4380ff3e4", "ref_doc_id": "cfb5a5b5-d72d-40da-bd3c-a26cf598c742"}, "2918ad37-92c2-4140-93ff-faef72f2d9a8": {"doc_hash": "acf72fec2b10597c7ebd19741dc641af71346b6f7c0f6f16e2fea379cca8aa5c", "ref_doc_id": "818f387d-a522-4212-8a2d-3fa821940cc2"}, "574bcc25-d760-4690-9e9c-734ca1a2faca": {"doc_hash": "8b91442b19b0c04b06abfad82264ca93377090496db7ecaa9e0fea3a7ce87b49", "ref_doc_id": "7bc907be-6161-46a0-ae00-0279ce879d4f"}, "d9b75cc2-4b54-4de9-834d-ac8d43513af6": {"doc_hash": "22dfb1589aba2ea8422191f9cf01d15b35593cb541c5cc5028448d88fa94b2b6", "ref_doc_id": "082e5499-fe3f-4bbb-8c20-036125497c60"}, "62bb3d89-c999-4a68-9f10-63b27f8fe51f": {"doc_hash": "7a1f282fa82b5cfca49ec86fd7d1a60ffba39b470edef33a2ec71552b9e4a803", "ref_doc_id": "0b40b2c9-ab5d-43eb-8e72-87de4c8439cf"}, "62ad20de-4bd1-4ce4-b188-02ee3afa832c": {"doc_hash": "377af2447f73132bee0e9289429e46ef1378e5788e5d79bcf66eab654604770e", "ref_doc_id": "520c5124-2147-4dab-bf3e-4cb029c7f436"}, "75867960-b912-4f6e-9246-f0037fe39a38": {"doc_hash": "bec05483d06bf19213ddab5fcc8b5b5e9b3c7423d717733be4fe0aa1dff4e621", "ref_doc_id": "dd808e38-620c-4cdb-abc4-75ad9a42b39c"}, "18541b6e-100d-427b-9e3e-efe271e15ab8": {"doc_hash": "62bdba179f5a5de7e2af6f54114f7815f27fd2a04a147510214999fe823ab176", "ref_doc_id": "4672ee2d-fc36-403b-a2f4-0d7b47e54c90"}, "c56de485-bf90-4d6c-92ad-bee5e4906542": {"doc_hash": "72955dd9a83694e754e2286e4e7ec7adb9ced870d795b3a5db92a14082de4d8d", "ref_doc_id": "3e2c2087-2447-4036-89c6-c3b476ba1980"}, "7e68274e-9ab6-471e-9185-c944c59cfaa8": {"doc_hash": "289dca7f46b829a4c7112a67257adee1c0233cf9f3d97659fc1aa298cdad82c0", "ref_doc_id": "992e554d-6658-4f10-89c8-5de9396afd51"}, "33eadcb9-33ef-4e1c-bee7-03bfbc864821": {"doc_hash": "4035f8253070bc0c00bdb78a5316e20af0e21c2508cb6619a6aeb5413f6733a0", "ref_doc_id": "439c3118-d6dd-4617-82d9-97ad4cf51bbd"}, "64015259-4712-473b-83aa-101859b847e3": {"doc_hash": "26bae2c2963aafecfa270625ba66c915cf7fcf55c465282c0598f9020396f2a6", "ref_doc_id": "71c71cdb-ad88-4a6c-91a5-3604f6c5df22"}, "9755dfce-542c-4fd4-9159-be398121c20a": {"doc_hash": "6d4d80ba889adac7dbbf4b084df960a442e7333356db9e62a2aff25ca03fd614", "ref_doc_id": "d9440e1a-d8f3-45c1-ac9b-8d14f09b0870"}, "3d62184d-17c2-489c-a1d6-6a328080a6b1": {"doc_hash": "14a6ae432a9e870eda8bdac6066cec1b1aebfdc112b26b24e56b04faa57feb61", "ref_doc_id": "a96a9396-e221-4b06-a82d-dc66c66148ef"}, "2c432e8c-1357-4d82-bb70-f06d795ffb78": {"doc_hash": "bbd732561186a55870828de158dca4eaacbeb1133781abc310c870cca0e8206b", "ref_doc_id": "7f100d62-022a-451a-a1f4-967e62be7b04"}, "112a5e73-1b8e-4e1c-8d4d-d86c9fffc995": {"doc_hash": "c0daed071aec0c243993d208301d990d818dc6dc374f9afc40321aacbb58b36a", "ref_doc_id": "95a412e4-efb9-4a7a-8bdb-696965069c19"}, "a6ae574c-ce44-46ea-8bcd-51daeadd4e33": {"doc_hash": "b0cf17f86d4011ee201f97965f34d447124617ae835293faa1c07c11df99dfde", "ref_doc_id": "d8d61bab-9e58-4ade-9a14-a63b787c2bc3"}, "e08d3482-69bf-47bb-baf8-38dfe358b0c3": {"doc_hash": "ad368dd9aae70755fbdd7bf2c7c2ce72dc571c3a91c3503366407e23e1aa66d3", "ref_doc_id": "dbfd79ac-e69a-4052-8034-864e7fe1d39f"}, "2bc907a2-81b3-4f00-996a-0d1337ddd0f4": {"doc_hash": "0e514c0081bc3d3defc4fd22e544b2fa0c8160848610b4232f3bdd62a588dab5", "ref_doc_id": "3c9873c6-3747-431b-9944-534e0ddcd516"}, "129527e9-ec4e-4f68-95fd-03240a7507b2": {"doc_hash": "5be3e44ceda78dbe4de244dd3611d47dd929fb129c0006fdd98188765ea1cc4b", "ref_doc_id": "f57c0ea5-b736-4da2-aec2-a68e49a4c0dc"}, "d1108f8f-6c82-40ca-bf1d-eba84831d72a": {"doc_hash": "e50e42f3558137686a1843ae30f3477d7961cd980d53eba113fd03fefd847535", "ref_doc_id": "5451e9d2-0048-4479-a6c9-7f48daf2a749"}, "db89096e-87c7-4a7c-ac4d-67f67d6012a3": {"doc_hash": "174d9ead8bc2b06133fe0b66c34278af157ae3211b93fb4ba893eea81f7a9fcc", "ref_doc_id": "f2a907fb-94af-401e-8dcd-33a3d4eec19e"}, "718228f9-61dc-44bb-997e-c9d8c401bf75": {"doc_hash": "79a4ba262d41746f6d604aeb06389780e75f99bb266ef41fc702586dd27b5163", "ref_doc_id": "0079133c-3da0-4592-8734-17c3465013d6"}, "046ac25e-3976-4a1d-9914-e2b860979f2a": {"doc_hash": "f41b05448951acb22787ced25cc32c1388108bf230a40b6c296f79a6d8738799", "ref_doc_id": "7fb7e47d-1abf-4d13-9103-3ceafd2848bc"}, "56594030-d0ed-4a20-9a89-3ffcf1198824": {"doc_hash": "ca022c443def50fd9891dd9ac6bc57117cfbed7d6ffa6fb884034dcb56053e81", "ref_doc_id": "2bbccd4a-6b45-45d0-a32c-c265b6acddcc"}, "9a70dfba-f343-4b28-84c1-b30fe537b95d": {"doc_hash": "23a784c90a2d8da2bc758468979bd2729b75ae50e5842e9a1b84cbb341edcaa8", "ref_doc_id": "e9557c23-59b2-468d-b8ae-b75b5199b39a"}, "caaf5123-07a6-4538-9dc0-fa7c6e01133a": {"doc_hash": "edfe439e98900c023be3ac00c114ffec9bbbd2b4263e480745efa728e5af410e", "ref_doc_id": "99e45a31-eb27-4ffe-98b0-60fd18b1a669"}, "5adbe930-f5b1-45f1-9d06-982bd4fcc751": {"doc_hash": "7815b228021dfe6287b08371c4e5e39c43b642fc4c4a0c8aecdb5557f875feae", "ref_doc_id": "0db2f055-dd75-4980-92b5-9ee77654d811"}, "d22f3c5b-84ac-45ca-901e-1d2530796bb6": {"doc_hash": "8de19a3a3de64a5ec335f8cf9751ea13ec2280a39b167593dc39ff342a3eb837", "ref_doc_id": "dd11122d-735a-4af6-bd95-9e13b16acda1"}, "30be9a9c-d226-4133-8642-6ca620cc0d21": {"doc_hash": "bc50b80655afa9fcd85c6076af522c9a6a726fbddf95ba4ddf55f62a3ac69952", "ref_doc_id": "335ba292-7f04-43bf-a9fd-519f00b4ece3"}, "ff8d6def-994a-4295-8f10-af0a6592d856": {"doc_hash": "90cedaff2defa45c628c1ee8afbb43509ef1d089c96de5f48c73893af74a79de", "ref_doc_id": "23cd1224-aad4-4c6e-b162-9a9141da109a"}, "a84215e5-c9cc-43b8-a1c2-617a59aa35ac": {"doc_hash": "6b716d227290bbdfb6281f5c33934d169b4ec346c7abfbddd909addc40eecb91", "ref_doc_id": "7564a474-3a18-40d0-aaf6-812b2e7f18c2"}, "69222f1d-a8bf-45eb-bd90-448ede12b0db": {"doc_hash": "0b5842f6997fd0bb6afa13196f05f386df21d41c947f4b549ebc509c25177f85", "ref_doc_id": "7564a474-3a18-40d0-aaf6-812b2e7f18c2"}, "dc58742e-6237-4a06-ab34-f8694a76f6d0": {"doc_hash": "369c7e82462e5cbc394b7359e613ff2b5020258e517c7e154e3e8591b6a66e1d", "ref_doc_id": "450392e8-3be5-46b5-878b-acaae44a33cb"}, "b4e15cd8-6566-4705-b0b2-cc656777a66c": {"doc_hash": "be7ba423a6147bbb3c4018f2cf6cee65f2f19c349452d95c035a89df19750d46", "ref_doc_id": "55900417-1001-4f91-a88d-a3b59c7beb56"}, "8d1f0547-7a86-4547-80d0-4749c7cd3e2d": {"doc_hash": "7339996eb8f50c59da4fb3c2cf3d710f2895eb461baca0415c0f7a9050141638", "ref_doc_id": "3bdd822d-8d17-490b-8945-8cb3fc25e078"}, "eb1611e0-048f-4d40-8759-18ea8bb446ee": {"doc_hash": "56b3d6e5dd831a7026c59a5191ca025f714396b3ac32cf099428abdc3e1d28b8", "ref_doc_id": "15973cde-a6c5-42d5-b091-b5fef2ab54be"}, "98b1e8d2-1971-4141-be92-0609195c2280": {"doc_hash": "11e3c2d3408b28eabffed75a95d10cd57ef1e1826e11dc70af3c072e2ea10d4c", "ref_doc_id": "c74a421a-2a64-4026-89a4-8e28cccb5930"}}, "docstore/data": {"fcd6893a-2299-4252-a491-58ea3ab2027d": {"__data__": {"text": "Contributing This section contains a guide for contributing to the handbook. It is not a comprehensive guide to Hugo or any of the other tools used. Instead it is aimed to be a user-focused guide explaining how add to or edit the handbook without dwelling on the details of the underlying technologies. For those interesting in learning more, links will be liberally placed throughout for further reading. ", "doc_id": "fcd6893a-2299-4252-a491-58ea3ab2027d", "embedding": null, "doc_hash": "15b5c30a51cb56cc0f8aef9a21d5b3fe9540cc61decc853eb191120dd1c1ed39", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/"}, "node_info": {"start": 0, "end": 406, "_node_type": "1"}, "relationships": {"1": "e8ff93ab-6b4c-46a4-9bea-e54d3508987a"}}, "__type__": "1"}, "0136ae18-ab5b-403a-8e88-2246e8600382": {"__data__": {"text": "Advanced Using Data Through using templates Hugo can build page content from datafiles . This is particularly useful for when you want to display structured data in a page and when it would be easier to maintain a datafile rather than a Markdown or HTML document. Creating Shortcodes It is possible to create your own shortcodes . These should be placed in layouts/shortcodes/\n. If you feel the need to use HTML or want to create page content from a datafile (like a YAML file or csv) then a shortcode is probably the right answer. You should refer to Hugo\u2019s templates and functions documentation for resources to help writing a shortcode. Partial Templates Whole page templates are built from of a number of smaller partial templates . This approach reduces repeated code in templates and help keep making changes simple. The theme defines a number of dummy partial templates for us to overwrite. For example, the Creative Commons notice at the bottom of each page was added by editing layouts/partial/docs/inject/footer.html\n. ", "doc_id": "0136ae18-ab5b-403a-8e88-2246e8600382", "embedding": null, "doc_hash": "bb160b351072984821329e3dccc01108ffd0d52e320a2e34a79366f4380ff3e4", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/advanced/"}, "node_info": {"start": 0, "end": 1029, "_node_type": "1"}, "relationships": {"1": "cfb5a5b5-d72d-40da-bd3c-a26cf598c742"}}, "__type__": "1"}, "2918ad37-92c2-4140-93ff-faef72f2d9a8": {"__data__": {"text": "Recognising Contributions We aim to recognise all contributions to the handbook, not just those made through commits. For that purpose we use All Contributors to help manage a record of who has contributed to the book and how. Use the \u2018add\u2019 command in an issue or pull-request comment to ask @all-contributors to add a contributor @all-contributors please add @ for See the bot usage documentation for full details and more examples. A list of contribution types (and the related emoji) can be seen here . ", "doc_id": "2918ad37-92c2-4140-93ff-faef72f2d9a8", "embedding": null, "doc_hash": "acf72fec2b10597c7ebd19741dc641af71346b6f7c0f6f16e2fea379cca8aa5c", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/recognising_contributions/"}, "node_info": {"start": 0, "end": 532, "_node_type": "1"}, "relationships": {"1": "818f387d-a522-4212-8a2d-3fa821940cc2"}}, "__type__": "1"}, "574bcc25-d760-4690-9e9c-734ca1a2faca": {"__data__": {"text": "Editing a Page If you followed the instructions in the Getting Started section to checkout the repository and serve the handbook locally you can edit a page locally. However, as you may have noticed, at the bottom of each page is a link to edit the page in the GitHub web editor if you would prefer. This may be easy for making small changes. Pages Each page is a Markdown file with YAML front matter followed by the page contents in Markdown. Front Matter The front matter is used to define various pieces of metadata related to a page. The front matter appears at the top of a content file. In the handbook we format front matter as YAML, preceded and followed by three hyphens. --- title : \"Example Page\"\nweight : 1\n--- The full YAML specification is long and comprehensive. The most important thing to understand here is that the front matter YAML consists of keys and values separated by a hyphen. For example, in the expression weight: 1 , weight is the key with a value of 1 . If you created a page using hugo new then some boilerplate front matter with explanatory comments should already be present. If you are editing an existing page there should already be front matter. Most of the time, the only keys you will need to consider are title and weight . title The title of a page as it appears in the navigation menu weight Determines the order of pages in the navigation menu. Smaller numbers appear first The Hugo documentation details a set of predefined front matter keys . Other valid fields related to the handbook theme are documented in the theme\u2019s README . Content After the front matter is the content section. --- title: \"Example Page\" weight: 1 ---\n| content section | The content section is formatted in Markdown. Markdown Guide outlines the basic and extended . Not all of the extended Markdown syntax may be implemented by Hugo\u2019s Markdown renderer Shortcodes Shortcodes\nare templates (which can be parametrised) and included the content section. They can be particularly useful for including more complex features than Markdown\u2019s simple syntax will allow. Using a shortcode is preferable to including raw HTML in a content file. Shortcodes can called in Markdown content files the following way {{% shortcode parameter %}} Some shortcodes may have an opening and closing tag, similar to HTML {{% shortcode %}} content to process {{% /shortcode %}} Hugo Shortcodes Hugo has a set of useful built-in shortcodes . In particular figure gist highlight param ref and relref Theme Shortcodes The theme has a number of shortcodes which may be helpful. In particular hints expand KaTeX tabs Repository Shortcodes Shortcodes can be included in the handbooks repository. For more information see Creating Shortcodes repo_link Create a link to a file or directory in the handbook\u2019s repository. {{% repo_link path=\"README.md\" text=\"README\" %}} path Path to the file or directory relative to the root of the repository text Text of the link (can include Markdown formatting) ", "doc_id": "574bcc25-d760-4690-9e9c-734ca1a2faca", "embedding": null, "doc_hash": "8b91442b19b0c04b06abfad82264ca93377090496db7ecaa9e0fea3a7ce87b49", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/editing_a_page/"}, "node_info": {"start": 0, "end": 2986, "_node_type": "1"}, "relationships": {"1": "7bc907be-6161-46a0-ae00-0279ce879d4f"}}, "__type__": "1"}, "d9b75cc2-4b54-4de9-834d-ac8d43513af6": {"__data__": {"text": "Reviewing Changes The review process helps to ensure high quality and catch problems in contributions. When acting as a reviewer, you should see your position as sharing your knowledge and working with the contributors to achieve the best possible result. Reviewing should not be an adversarial process. Recognising Contributions When reviewing a pull request you should try to make sure everyone\u2019s work is recognised. See the Recognising Contributions page for how to do this. Code Quality As a reviewer, one of your jobs is to ensure the quality of the codebase remains high. The CI process will help to assess pull requests by subjecting each commit to a series of tests. Some tests are required to pass and will block merging until they do. Other tests are allowed to fail. This is because these tests check external hyperlinks which can fail for reasons out of our control. For example, a website being offline or a rate limiting API. However, you should always aim to have all tests passing and investigate why any test fails. In particular, a genuinely incorrect link should not be ignored. You should always clone the branch, build the handbook locally (using hugo server --minify ) and inspect the changes using your browser. Not all bugs will be caught by CI and not all changes will be obvious in the source files. Reviewing the Pull Request Use the GitHub review system\nto check the diffs of all source files. You should make use of line comments\nwhere you have comments or questions about particular lines of sections. This gives context so that everyone knows where the problem is or what the question refers to. Line comments can also be used to suggest changes (using the \u00b1 button). You should do this when you have a simple solution. This is an excellent way to share knowledge. When you are finished, submit your review\nmaking sure to choose \u201ccomment\u201d, \u201capprove\u201d or \u201crequest changes\u201d as appropriate. Changes If you request changes, the pull request will enter an iterative process where the contributors make adjustments you repeat the review process. The contributors may accept your proposed changes, make their own changes or push back against changes. All of these may be appropriate. It is important to work together with the contributors to resolve any conversations. All conversations must be resolved before merging. Merging Update your review status to \u201capprove\u201d when you are happy with the state of the pull request. When all reviewers are satisfied, merge the pull request. ", "doc_id": "d9b75cc2-4b54-4de9-834d-ac8d43513af6", "embedding": null, "doc_hash": "22dfb1589aba2ea8422191f9cf01d15b35593cb541c5cc5028448d88fa94b2b6", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/reviewing_changes/"}, "node_info": {"start": 0, "end": 2503, "_node_type": "1"}, "relationships": {"1": "082e5499-fe3f-4bbb-8c20-036125497c60"}}, "__type__": "1"}, "62bb3d89-c999-4a68-9f10-63b27f8fe51f": {"__data__": {"text": "Adding New Content How Hugo Arranges Content Pages are build from content files in the content/\ndirectory. Hugo automatically gives pages a URL based on the organisation of files in the content/ directory. In Hugo, the first directory after content/ is significant and defines the content type . All handbook pages should be nested in the content/docs/ directory. Sections may be created in content/docs/ (to any depth) by creating a directory containing a content file called _index.md . It is important that the index file exists for Hugo to correctly assign pages to sections and for the theme to arrange pages in the tree-like menu. Creating a New Page To create a new handbook page use the hugo new command. hugo new content/docs/.md If you wanted to create this page, you would type hugo new content/docs/contributing/creating_a_page.md Hugo will create a new Markdown document at the path you specified. Hugo provides a convenient way to generate new pages from templates called Archetypes . You can see the archetypes in the archetypes/ directory\n. Because your document is in the docs directory, Hugo will look for an archetype called docs.md\nto use as a template. Now you can edit your page with your favourite text editor. For example vim content/docs/contributing/creating_a_page.md Creating a Section We can also use the hugo new command to create a new section, both the directory and index file. For example hugo new content/docs/new_section/_index.md vim content/docs/new_section/_index.md If you only want a section to organise some pages and not to have a page of its own, you can simply leave the content section of _index.md (after the YAML front matter) empty. ", "doc_id": "62bb3d89-c999-4a68-9f10-63b27f8fe51f", "embedding": null, "doc_hash": "7a1f282fa82b5cfca49ec86fd7d1a60ffba39b470edef33a2ec71552b9e4a803", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/creating_a_page/"}, "node_info": {"start": 0, "end": 1696, "_node_type": "1"}, "relationships": {"1": "0b40b2c9-ab5d-43eb-8e72-87de4c8439cf"}}, "__type__": "1"}, "62ad20de-4bd1-4ce4-b188-02ee3afa832c": {"__data__": {"text": "Contributing Changes Once you have made changes, you will need to contribute them back to the remote repository. This page explains the process of pushing your changes back to the remote, and how your contribution will be checked in the CI and review process. The handbook users the GitHub flow workflow. In short create a branch make changes open pull request review merge to main This workflow should help changes be deployed quickly. When making commits, it is a good idea to follow Tim Pope\u2019s recommendations\nfor good commit messages. Creating a Branch You should make your changes on a new branch, and not on main . This will make it easier to merge changes from many contributors. Try to pick a branch name which is short and describes the change you are making. The changes on one branch or pull request should address a single issue and be self-contained. Don\u2019t try to solve more than one unrelated problem at once. Sticking to this practice will help ensure pull requests are small and easy to review. Otherwise, you might end up having to make many changes during review, have difficultly keeping your branch up to date or upset the reviewers. Opening a Pull Request When you think your changes are ready to be merged, open a pull request. If you don\u2019t want your changes to be merged yet but would like some feedback, you can open a draft pull request. When you open a pull request you will be presented with a template. Complete the sections and answer the questions as best you can. In particular, make sure to reference any issues your work closes or is related to. Continuous Integration A series of tests will be automatically conducted on each commit and pull request. The tests are defined in ci.yaml\n. The following tests are required to pass before merging a pull request A Markdown linter A Hugo build There are other test that are not required before merging, although you should aim to pass all tests. Those are A Markdown link checker A HTML proofer (including link checking) on the output of Hugo Keeping Your Branch up to Date The branch protection rules applied to main will prevent merging out-of-date branches. This means if your branch doesn\u2019t include the changes from the HEAD\nof origin/main it won\u2019t be possible to merge it. If your branch isn\u2019t up to date, you can fix it with a merge or rebase. Merging Merging\nthe changes from origin/main is probably the simpler way to get your branch up to date. It will leave the Git history a bit messier which can bother some people. Ensure you have the latest changes on origin/main in your local repository git fetch Merge origin/main into your branch. If your branch was called my_branch you would run git switch my_branch git merge origin/main Git will notify you of any conflicts. If there are conflicts you should fix them before running git merge --continue to commit. After you are done you can push your changes. Rebasing Rebasing your branch on top of origin/main can make conflicts more difficult or confusing to deal with. Ensure you have the latest changes on origin/main in your local repository git fetch Apply your commits on top of origin/main . If your branch was called my_branch you would run git switch my_branch git rebase origin/main If you want to tidy up your commits or messages you might want to use git rebase -i . Git will notify you of any conflicts. If there are conflicts you will need to fix them iteratively, running git rebase --continue to apply each commit. When the rebase is done, you will need to force push your changes as you have rewritten the history of your branch. git push -f Rewriting history is considered impolite on a branch where you are working collaboratively. It can cause problems when the state of a remote changes unexpectedly. The Review Process Currently reviews are not required and pull requests may be merged by anyone with write access once all required CI checks pass. If you like you can enable auto-merge\nso that the merge happens automatically when this is the case. However, if you\u2019d like your changes reviewed you can suggest reviewers when, or after, opening your pull request. If a reviewer then requests any changes or makes any comments, these should be resolved before the pull request is merged. ", "doc_id": "62ad20de-4bd1-4ce4-b188-02ee3afa832c", "embedding": null, "doc_hash": "377af2447f73132bee0e9289429e46ef1378e5788e5d79bcf66eab654604770e", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/contributing_changes/"}, "node_info": {"start": 0, "end": 4244, "_node_type": "1"}, "relationships": {"1": "520c5124-2147-4dab-bf3e-4cb029c7f436"}}, "__type__": "1"}, "75867960-b912-4f6e-9246-f0037fe39a38": {"__data__": {"text": "Discussions and Issues Contributing does not only mean adding code or writing pages. Being involved in reporting issues and discussing ideas are important and valuable aspects to contributing. The handbook uses both issues and discussions on GitHub. Discussions The handbook Discussions\nare the best place for informal talk about the handbook. You should feel welcome to create a discussion on any relevant topic, without the formality of an issue. Good examples of discussions are Any questions Possible bugs (does anyone else have this problem?) Chapter suggestions Looking for collaborators Community support Any other on-topic talk Issues The issue tracker is best used for development work. This is because issues integrate well with GitHub development tools like projects, pull requests, assignments and so on. Each issue should ideally represent a well-defined, self-contained piece of work suitable to become a single pull request. Good examples of issues are Bug reports with technical detail Developed chapter proposals Feature requests (such as new shortcodes) Specific ideas for changes When opening an issue, pick a suitable template (if any) to make the process easier. ", "doc_id": "75867960-b912-4f6e-9246-f0037fe39a38", "embedding": null, "doc_hash": "bec05483d06bf19213ddab5fcc8b5b5e9b3c7423d717733be4fe0aa1dff4e621", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/discussions_and_issues/"}, "node_info": {"start": 0, "end": 1184, "_node_type": "1"}, "relationships": {"1": "dd808e38-620c-4cdb-abc4-75ad9a42b39c"}}, "__type__": "1"}, "18541b6e-100d-427b-9e3e-efe271e15ab8": {"__data__": {"text": "Style Guide Semantic Line Breaks It is encouraged to use Semantic Line Breaks when writing for the handbook. This improves the readability of source files and make diffs clearer. The Semantic Line Breaks specification explains the rules and reasoning. The most important rules are, A semantic line break MUST occur after a sentence, as punctuated by a period (.), exclamation mark (!), or question mark (?). A semantic line break SHOULD occur after an independent clause as punctuated by a comma (,), semicolon (;), colon (:), or em dash (\u2014). A semantic line break MAY occur after a dependent clause in order to clarify grammatical structure or satisfy line length constraints. Markdown Whenever possible, the handbook\u2019s prose should be written in Markdown rather than HTML. However, it is completely reasonable use HTML when it is needed. When it is advantageous, data should be stored in data files and processed using shortcodes rather than presented in raw Markdown. Style Enforcement Markdown styling is enforced by markdownlint using the configuration .mdl_style.rb\n. An explanation of the rules can be found here . You can optionally install markdownlint locally to check your changes before submitting a pull request. Make sure you install the Ruby version ( mdl ) and not the Node.js version ( markdownlint-cli ) contained in the homebrew repositories, since the configuration is only good for the former. Once installed and assuming you\u2019re in the repository root, you can lint a specific file you\u2019ve made changes to like this: mdl -s .mdl_style.rb Alternatively run it over the entire handbook content like this: mdl -s .mdl_style.rb ./content ", "doc_id": "18541b6e-100d-427b-9e3e-efe271e15ab8", "embedding": null, "doc_hash": "62bdba179f5a5de7e2af6f54114f7815f27fd2a04a147510214999fe823ab176", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/style_guide/"}, "node_info": {"start": 0, "end": 1665, "_node_type": "1"}, "relationships": {"1": "4672ee2d-fc36-403b-a2f4-0d7b47e54c90"}}, "__type__": "1"}, "c56de485-bf90-4d6c-92ad-bee5e4906542": {"__data__": {"text": "Getting Started Install dependencies To contribute to the handbook you will need Git Hugo (You will need the extended version with Sass/SCSS support) Your favourite text editor Optionally markdownlint ; see the Style Guide\nfor more details. Clone the repository Clone the repository with one of the following options (depending on how you authenticate with GitHub):\nSSH authentication git clone --recurse-submodules git@github.com:alan-turing-institute/REG-handbook.git cd REG-handbook\nHTTPS authentication git clone --recurse-submodules https://github.com/alan-turing-institute/REG-handbook.git cd REG-handbook The --recurse-submodules flag is important as the handbook\u2019s theme is included as a Git submodule Serve the handbook locally While working on the handbook, it will be useful to preview your changes locally. To do this use Hugo\u2019s server command hugo server --minify In the output of this command will be a line similar to Web Server is available at http://localhost:1313/REG-handbook/ ( bind address 127.0.0.1 )\nwhich contains the URL of the locally served site. Navigate to this address in your browser to preview the handbook. The Hugo server will monitor the files in the repository and automatically rebuild the site whenever you make changes. This is a useful tool to immediately view your changes. ", "doc_id": "c56de485-bf90-4d6c-92ad-bee5e4906542", "embedding": null, "doc_hash": "72955dd9a83694e754e2286e4e7ec7adb9ced870d795b3a5db92a14082de4d8d", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/getting_started/"}, "node_info": {"start": 0, "end": 1315, "_node_type": "1"}, "relationships": {"1": "3e2c2087-2447-4036-89c6-c3b476ba1980"}}, "__type__": "1"}, "7e68274e-9ab6-471e-9185-c944c59cfaa8": {"__data__": {"text": "Projects This section describes how we coordinate our project work. It does not go into details of how individual projects are managed, but how REG coordinates its commitments to the range of projects it\u2019s involved in. ", "doc_id": "7e68274e-9ab6-471e-9185-c944c59cfaa8", "embedding": null, "doc_hash": "289dca7f46b829a4c7112a67257adee1c0233cf9f3d97659fc1aa298cdad82c0", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/projects/"}, "node_info": {"start": 0, "end": 219, "_node_type": "1"}, "relationships": {"1": "992e554d-6658-4f10-89c8-5de9396afd51"}}, "__type__": "1"}, "33eadcb9-33ef-4e1c-bee7-03bfbc864821": {"__data__": {"text": "Project Tracking This page describes some of the tools we use for tracking projects and other tasks within the team. Hut23 GitHub Repo The Hut23 repo is the central hub for most team matters and admin. Project Tracker : Board shows all upcoming, current and completed projects. There\u2019s an issue for each project (see below). Depending on the project status, it will be in one column or another. In order to assign REG team members to projects, we use emojis to vote for the projects that we would be interested in taking part. You should react to all projects on the \u201cFinding people\u201d column, but also on the \u201cAwaiting go/no-go\u201d column. The voting system is as follows: \ud83d\udc4d Would be okay working on this project \ud83d\udc4e Would rather not work on this project \ud83d\ude04 Would really like to work on this project Issues : Each project has an issue following a common template, including a general description of a project and its current status, for example. There are also issues for service areas and other activities/organisational issues for the team. Project Repos All repos in the Turing organisation that REG have worked on should have the hut23 tag. So if you\u2019re looking for something from a previous project searching for these tags may be a good place to start. Additionally, they should have a tag of the format hut23-123 , where 123 is the issue number for that project in the Hut23 repo. Forecast & Wimbledon We use Forecast to track everyone\u2019s allocations to projects. You can see which projects & service areas everyone in the team is currently involved in, as well as what they were allocated to in the past and will be allocated to in the future. \u201c Wimbledon planner \u201d is an online version of a poster we previously had in the office to display the information in Forecast. It\u2019s easier to see allocations for a longer period, and you can click project names to take you directly to the issue describing that project in the Hut23 repo. ", "doc_id": "33eadcb9-33ef-4e1c-bee7-03bfbc864821", "embedding": null, "doc_hash": "4035f8253070bc0c00bdb78a5316e20af0e21c2508cb6619a6aeb5413f6733a0", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/projects/project_tracking/"}, "node_info": {"start": 0, "end": 1932, "_node_type": "1"}, "relationships": {"1": "439c3118-d6dd-4617-82d9-97ad4cf51bbd"}}, "__type__": "1"}, "64015259-4712-473b-83aa-101859b847e3": {"__data__": {"text": "Regular Events Coffee Chats Coffee Chats REG Events Lunchtime tech talks Lightning talks Reading groups Outward-facing Events Drop-in Sessions ", "doc_id": "64015259-4712-473b-83aa-101859b847e3", "embedding": null, "doc_hash": "26bae2c2963aafecfa270625ba66c915cf7fcf55c465282c0598f9020396f2a6", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/regular_events/"}, "node_info": {"start": 0, "end": 143, "_node_type": "1"}, "relationships": {"1": "71c71cdb-ad88-4a6c-91a5-3604f6c5df22"}}, "__type__": "1"}, "9755dfce-542c-4fd4-9159-be398121c20a": {"__data__": {"text": "Coffee Chats The team has two optional, daily coffee chats at 08:45 and 13:45. The chats usually happen in Gather but there is also a Zoom room in case Gather is unavailable. Details for both rooms can be found here . ", "doc_id": "9755dfce-542c-4fd4-9159-be398121c20a", "embedding": null, "doc_hash": "6d4d80ba889adac7dbbf4b084df960a442e7333356db9e62a2aff25ca03fd614", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/regular_events/coffee_chats/"}, "node_info": {"start": 0, "end": 218, "_node_type": "1"}, "relationships": {"1": "d9440e1a-d8f3-45c1-ac9b-8d14f09b0870"}}, "__type__": "1"}, "3d62184d-17c2-489c-a1d6-6a328080a6b1": {"__data__": {"text": "Drop-in Sessions The group runs regular, informal, community-led sessions for students and researchers. At the sessions they can ask the group about specific technical problems, or seek general technical advice. The sessions offer a friendly, welcoming, non-judgemental environment to receive advice or assistance without concern about being judged on technical knowledge, expertise or understanding. As our organisers and helpers know, many of us working with software in the research community have been trained in domains where computing has not traditionally been a key element. There can be lots to learn in terms of new jargon and technical skills and we all have to start somewhere. We can help with: General programming problems \u2014 including helping to identify and fix bugs. Cloud computing questions \u2014 including how to get started on Azure. Software sustainability \u2014 best practices for testing, managing and packaging your code. Reproducible research \u2014 ensuring software is developed to support long-term reproducibility, including techniques for packaging and archiving code. High Performance Computing (HPC) \u2014 support and advice on the HPC resources available at the Turing. Joining sessions Our weekly sessions run for one hour from 13:30-14:30 every Tuesday and are hosted on Zoom . Everyone is welcome to drop-in at any time. There is no need to register in advance. ", "doc_id": "3d62184d-17c2-489c-a1d6-6a328080a6b1", "embedding": null, "doc_hash": "14a6ae432a9e870eda8bdac6066cec1b1aebfdc112b26b24e56b04faa57feb61", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/regular_events/drop-in_sessions/"}, "node_info": {"start": 0, "end": 1381, "_node_type": "1"}, "relationships": {"1": "a96a9396-e221-4b06-a82d-dc66c66148ef"}}, "__type__": "1"}, "2c432e8c-1357-4d82-bb70-f06d795ffb78": {"__data__": {"text": "Lightning Talks Lightning Talks are a meeting series within the tech talk slots in which people give short 10 minute talks. The main goals are to: Regularly share what we\u2019re working on. Find overlaps between projects or problems someone else in the team could help with. Generate ideas for future tech talks. Do all this without a big time commitment, both for presenters and attendees. The talks can be on any topic, including but not limited to: A project (including one that hasn\u2019t started yet). A tool or technique you use. Something you\u2019d like help with. Informal talks or discussions without slides or much preparation are encouraged and very welcome! Talk Format Each slot will be 10 minutes with a few minutes after for questions. We will be fairly strict with time to make sure everyone on the agenda gets to present. You can choose whatever format you like (slides, markdown, notebook, freestyle\u2026), but remember that it\u2019s a short slot which lends itself to concise, high-level overviews of a topic. For example, if your talk is on a project you may wish to cover the following: Background: The domain area, context, problem etc. . Goals: What are the aims of the project? Status: What\u2019s been done so far, example results (if any). Tools & Techniques: What you\u2019re using, what you\u2019ve learnt, what you\u2019d like help with. Summary: who\u2019s working on the project, dates, GitHub link etc. . If you\u2019d like to prepare slides, there\u2019s a PowerPoint template and examples from previous talks under here that can help you get started. Sign Up To sign up to present a Lightning Talk, please add yourself to the signup list Previous Talks You can find a list of previous talks and their slides here . ", "doc_id": "2c432e8c-1357-4d82-bb70-f06d795ffb78", "embedding": null, "doc_hash": "bbd732561186a55870828de158dca4eaacbeb1133781abc310c870cca0e8206b", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/regular_events/lightning_talks/"}, "node_info": {"start": 0, "end": 1694, "_node_type": "1"}, "relationships": {"1": "7f100d62-022a-451a-a1f4-967e62be7b04"}}, "__type__": "1"}, "112a5e73-1b8e-4e1c-8d4d-d86c9fffc995": {"__data__": {"text": "Reading Groups As part of projects or for general interest, members of the team create reading groups to learn about a topic. Reading groups may meet on weekly basis to discuss a chapter from a book, a paper, or to work together on implementing something. A list of current reading groups and information about them can be found on the Data Science Skills wiki . Material for the reading groups is stored in the Data Science Skills repository There are also Turing Interest Groups and many other informal groups around the Turing. ", "doc_id": "112a5e73-1b8e-4e1c-8d4d-d86c9fffc995", "embedding": null, "doc_hash": "c0daed071aec0c243993d208301d990d818dc6dc374f9afc40321aacbb58b36a", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/regular_events/reading_groups/"}, "node_info": {"start": 0, "end": 531, "_node_type": "1"}, "relationships": {"1": "95a412e4-efb9-4a7a-8bdb-696965069c19"}}, "__type__": "1"}, "a6ae574c-ce44-46ea-8bcd-51daeadd4e33": {"__data__": {"text": "Lunchtime Tech Talks The Research Engineering team meets for Lunchtime Tech Talks most Tuesdays over lunch. The talks start at 12:30. At a tech talk someone (usually someone in REG) presents or discusses something, such as about a project or data science/computer science/software engineering topic. They can also be opportunities to look for help and input. We encourage talks at the beginning of projects (before it\u2019s certain what exactly you\u2019ll be doing) or to discuss a problem you\u2019re unsure how to solve. We also have shorter format lightning talks , where several people give a shorter talk. The Data Science Skills wiki contains the talks schedule, calendar invitation instructions and information on signing up for a talk. ", "doc_id": "a6ae574c-ce44-46ea-8bcd-51daeadd4e33", "embedding": null, "doc_hash": "b0cf17f86d4011ee201f97965f34d447124617ae835293faa1c07c11df99dfde", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/regular_events/lunchtime_tech_talks/"}, "node_info": {"start": 0, "end": 731, "_node_type": "1"}, "relationships": {"1": "d8d61bab-9e58-4ade-9a14-a63b787c2bc3"}}, "__type__": "1"}, "e08d3482-69bf-47bb-baf8-38dfe358b0c3": {"__data__": {"text": "Contributors In this table we try to capture everyone who has contributed to the project and how they have contributed. The table is generated and maintained using All Contributors . Andy Smith \ud83d\udd8b \ud83d\udc40 \ud83e\udd14 \ud83d\udcbb \ud83c\udfa8 Christina Last \ud83d\udd8b David Beavan \ud83e\udd14 \ud83d\udc40 David Llewellyn-Jones \ud83d\udd8b \ud83e\udd14 \ud83d\udc1b \ud83d\udcd6 \ud83d\udc40 David Salvador Jasin \ud83d\udd8b Federico Nanni \ud83d\udd8b \ud83e\udd14 Gabriel \ud83d\udd8b \ud83e\udd14 Isabel Fenton \ud83d\udc40 Jack Roberts \ud83d\udd8b James Robinson \ud83d\udd8b Jim Madge \ud83d\udcbb \ud83d\udd8b \ud83d\udcd6 \ud83d\udc40 \ud83e\udd14 \ud83d\ude87 \ud83d\udc1b Jonathan Yong \ud83d\udd8b \ud83e\udd14 Katriona Goldmann \ud83d\udd8b \ud83d\udc40 Levan Bokeria \ud83d\udc1b \ud83d\udd8b Lydia France \ud83d\udd8b Malvika Sharan \ud83e\udd14 Markus Hauru \ud83d\udd8b \ud83e\udd14 Martin O'Reilly \ud83e\udd14 Oscar T Giles \ud83e\udd14 Radka Jersakova \ud83d\udd8b Tim Hobson \ud83d\udd8b helenashowell \ud83d\udd8b \ud83e\udd14 martin \ud83d\udd8b nbarlowATI \ud83e\udd14 ", "doc_id": "e08d3482-69bf-47bb-baf8-38dfe358b0c3", "embedding": null, "doc_hash": "ad368dd9aae70755fbdd7bf2c7c2ce72dc571c3a91c3503366407e23e1aa66d3", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributors/"}, "node_info": {"start": 0, "end": 630, "_node_type": "1"}, "relationships": {"1": "dbfd79ac-e69a-4052-8034-864e7fe1d39f"}}, "__type__": "1"}, "2bc907a2-81b3-4f00-996a-0d1337ddd0f4": {"__data__": {"text": "How We Work ", "doc_id": "2bc907a2-81b3-4f00-996a-0d1337ddd0f4", "embedding": null, "doc_hash": "0e514c0081bc3d3defc4fd22e544b2fa0c8160848610b4232f3bdd62a588dab5", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/how_we_work/"}, "node_info": {"start": 0, "end": 12, "_node_type": "1"}, "relationships": {"1": "3c9873c6-3747-431b-9944-534e0ddcd516"}}, "__type__": "1"}, "129527e9-ec4e-4f68-95fd-03240a7507b2": {"__data__": {"text": "Meeting Records When a synchronous meeting is unavoidable, it is critical to produce a clear and thorough record. The meeting record is important as a reference for what happened at the meeting. In particular, any decisions made or actions assigned need to be clearly recorded for future reference. A good record will also be invaluable to anyone who was not able to attend an in person meeting. Meeting Record Template Below is a suggested template for a meeting record document. The template uses Pandoc\nMarkdown . Parts of the template are already filled with explanations of how they should be used. --- title: Short meeting title date: yyyy-mm-dd author: - List of authors of the this record abstract: | Summary of meeting purpose. Should help readers decide whether they need to read the record. keywords: [] # Pandoc LaTeX variables papersize: a4 fontfamily: fourier fontsize: 12pt colorlinks: true ---\n# Meeting Record\n## Agenda\n1. Itemised Agenda 1. Should be agreed in advance\n## Present\n- List of people present\n## Notes\n- Summary of discussion points - Use subsections if appropriate\n## Decisions\n- Record any decisions made during the meeting\n## Actions\n| Owner | Action | |-------|--------| | | | For printing or wider distribution, a meeting record following the template may be converted to pdf using Pandoc, pandoc meeting_record.md -o meeting_record.pdf A Pandoc YAML metadata block at the top of the template contains metadata about the meeting and helps the record render into a good looking pdf document. How To Use Create the meeting record document before the meeting. Use a collaborative text editor like HackMD so that all attendees may edit the document. Circulate the document to allow others to add and agree on agenda items. Distribute the record or store in a location visible to everyone who may need to read it. The template may also be used to avoid a meeting entirely. The document can be completed collaboratively and asynchronously while achieving the same result. ", "doc_id": "129527e9-ec4e-4f68-95fd-03240a7507b2", "embedding": null, "doc_hash": "5be3e44ceda78dbe4de244dd3611d47dd929fb129c0006fdd98188765ea1cc4b", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/how_we_work/meeting_record/"}, "node_info": {"start": 0, "end": 2015, "_node_type": "1"}, "relationships": {"1": "f57c0ea5-b736-4da2-aec2-a68e49a4c0dc"}}, "__type__": "1"}, "d1108f8f-6c82-40ca-bf1d-eba84831d72a": {"__data__": {"text": "Repo Audits As required we conduct audits of GitHub repositories created during projects. The aim is to check that the documentation is clear, installation is easy etc. Audits should be conducted by people who have not worked on the project. Past experience These comments from running the first round of these in June 2021: Installation is a big barrier for software with complex build requirements. We tried looking at two web app projects (Counterfactual Covid 19 and CROP) and despite Docker images being available we weren\u2019t able to get them to build correctly. We might have had more success if all we needed to do was a pip or CRAN install. First lesson: installation is ALWAYS harder than you think, and we need to get more fresh eyes on build instructions if we want our software to be easily usable. Second Lesson: Not having someone on hand from the project can be a big barrier, as we suspect there may have just been some small tweaks or changes that would fix our problem. One suggestion was to have a mix of unsupervised hacking and more knowledgeable feedback, maybe by having the person working on the project show up an hour in. If we can\u2019t get someone who knows the project well to attend, at least have them available on Slack in case we get stuck. At the very least, we were able to document our issues on the repo, and in at least one case the project was able to make fixes. One suggestion is to encourage \u201cGood First Issue\u201d tags or \u201cHacktoberfest\u201d-type tags that would help people know what simple things could be tackled in a few hours if they succeed in installing the software. I have found that it isn\u2019t always straightforward to come up with such issues (I tried thinking of some for a previous iteration of the activity, but always got stuck when I realized I didn\u2019t have a clue what to do and explaining the problem was hard enough), and in projects that are currently running it isn\u2019t always easy to leave these uncompleted when you have more time to work on a project. One idea was to have a HackMD document, similar to the one that suggests project meetings for new joiners to shadow, that lists all repos with such issues in one place, making it easier to find something fruitful to work on if these audits continue to be spontaneous. An alternative is to make these non-spontaneous and schedule them in advance. We\u2019ve kicked around the thought of scheduling lightning talks for all projects \u2014 perhaps we could better leverage people\u2019s brains if we gave a lightning talk intro on Tuesday and then guided people through installing and hacking on the software the next day? New joiners to projects inevitably spend a bunch of time doing exactly what we were trying to do in these sessions. Can we leverage the time investment of the new joiner by doubling up other team members to do this? Should new joiners to the team be encouraged to do this for a couple of weeks before being assigned to a project? I had a few new joiners on one of the audit sessions, and they said it was a good way to learn more about the team and our projects. ", "doc_id": "d1108f8f-6c82-40ca-bf1d-eba84831d72a", "embedding": null, "doc_hash": "e50e42f3558137686a1843ae30f3477d7961cd980d53eba113fd03fefd847535", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/how_we_work/code_audits/"}, "node_info": {"start": 0, "end": 3070, "_node_type": "1"}, "relationships": {"1": "5451e9d2-0048-4479-a6c9-7f48daf2a749"}}, "__type__": "1"}, "db89096e-87c7-4a7c-ac4d-67f67d6012a3": {"__data__": {"text": "Defining Project Doneness This working document was produced as part of Accelerating AI in the Arts and Humanities (AAAH). As a Research Software Engineer, we often join a collaborative project when a code base already exists. Defining the aims of a collaboration can be challenging, and when there is limited time it is important to apply attention in the right places. The following document is designed to help: Showcase what is important to us as RSEs Assessing the current status of an existing repo Define clear objectives Determine where to put effort Provide a common framework and language for collaborators Clearly define when the collaboration is done! The framework includes objectives that focus on improving the impact and legacy of the software, expanding communities of practice, and providing a confident codebase for future research. For each project discuss with collaborators which \u201cLevel\u201d in each of the following categories is a MINIMUM aim for defining done. Remember, time is a resource and so consider where efforts should be prioritised. Reach and Robustness Level 01. Internal users : Identify how users already use the tool and its current issues. Level 02. Best practices : Address minimum code best practices with view to robustness and accessibility Level 03. External users : Identify how similar external users could use the tool and current barriers Level 04. Generalise : Identify how the tool could be made general and current barriers to that Level 05. Proof of concept : Demonstrate its use outside its original intended purpose/audience. Functionality Level 01. Standard use : Install the tool, try out a standard use case, write a demo if one doesn\u2019t exist Level 02. Known Limitations : Understand and report. Level 03. Advanced use : Try out normal range but more advanced use cases, with edge cases. Level 04. New features : Identifying features for new functionality. Level 05. Enhancements : Fix functionality bugs and add features. Documentation Level 01. Follow docs : Follow the existing starting point of documentation (no help!) Level 02. What\u2019s missing : Identify what documentation is missing: e.g. installation, optional arguments, licensing, diagrams/screenshots, future work, etc. Level 03. Write docs : Write the documentation in markdown files Level 04. Published : Release the documentation on GitPages etc Level 05. Walkthrough : Write walkthroughs/demos (also gifs or videos) Testing Level 01. Continous Integration Start the automated infrastructure Level 02. Defining Positive/Negative Cases Conversation about what are the expected outcomes/how the tool works Level 03. Automated User Tests End-to-end tests that check expected outcomes from above, black box Level 04. Fine-grain Tests/Unit Tests Focus on critical/pain points, remove brittleness, modularise and reuseable components Level 05. Error Reporting Focus on negative cases, informative error communication for external collaboration Open Release Level 01. Find barriers : Identify minimum criteria that need to be solved before public release e.g. authorship, sensitivity, licensing, publicity, timings Level 02. Solve barriers : Address the minimum criteria and milestone efforts Level 03. Release : Make the repo public. Level 04. Distribute : Release the repo on PiPY or CRAN or equivalent, include DOI Level 05. Publisise : Publish the repo with JOSS, and/or publicly present the work. ", "doc_id": "db89096e-87c7-4a7c-ac4d-67f67d6012a3", "embedding": null, "doc_hash": "174d9ead8bc2b06133fe0b66c34278af157ae3211b93fb4ba893eea81f7a9fcc", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/how_we_work/defining-done/"}, "node_info": {"start": 0, "end": 3413, "_node_type": "1"}, "relationships": {"1": "f2a907fb-94af-401e-8dcd-33a3d4eec19e"}}, "__type__": "1"}, "718228f9-61dc-44bb-997e-c9d8c401bf75": {"__data__": {"text": "Knowledge Sharing This page lists the tools, resources and activities that REG has to promote general communication as well as sharing and gaining knowledge across the team (and the Turing as a whole), and some thoughts on what we could try to improve this. If you\u2019re looking to learn something new, get help with a problem, share something cool you\u2019ve been doing, or find out what others in the team are doing, the list below may give an idea of where to look/what to try. If you\u2019d like to organise something the best options are usually to post to Slack and the Hut23 mailing list (see below). Daily Github Hut23 Repo We use GitHub (and a couple of related tools) extensively for tracking projects and other tasks within the team. There is a separate page describing how we use them . Coffee Breaks We have coffee breaks on Gather twice daily. See the Regular Events page for details. If the times aren\u2019t convenient and you fancy a break then try posting on Slack and the chances are that there\u2019ll be others that fancy a break too. Slack Slack is our main tool for informal messaging and announcements (there\u2019s some info on how to join on here ). It\u2019s also a good place to ask for help. Channels of interest include: #hut23 : Our channel for the REG team (ask someone to add you if you don\u2019t have access) #tps : Channel for the tools, practices and systems (TPS) community at the Turing #askaway : Place to ask general questions ( e.g. that don\u2019t fit in a specific channel) #interesting-events , #general , #social , #random : General chat and announcement about what\u2019s happening around the Turing. We use Geekbot , which is a Slack App. We use this in two different ways (both are voluntary): A virtual daily standup: Geekbot asks what you\u2019re planning to do each day, what you\u2019ve achieved and if there is anything you are stuck on. This can be useful for your own planning, but also helps give an overview of the range of other work and skills within the team. Ice breaker-style questions a few times a week. To join in with the use of Geekbot, you will need to first add the Geekbot app to Slack and then join these slack channels #hut23standup and #hut23standup-tasks . Weekly Tech Talks See here . Reading Groups See here . Approximately Monthly REG Team Meetings Roughly once a month we have an all-REG meeting where we welcome new joiners and a few people briefly present news from around REG or the Turing. This is usually followed by a discussion on a topic of interest for the wider team. If you don\u2019t have the calendar invites (new joiners might not initially) ask someone else in the team to forward them to you. Turing Events The main focus of this page is what we do in REG, but there are many things happening around the Turing that REG members are also encouraged to attend, including: Turing Catchups & Town Halls \u2014 Regular meetings open to all staff with updates from around the institute. New starters may not have the calendar invites initially \u2014 ask others in the team to forward the details if you\u2019re unsure. Turing Events - often public talks & workshops. REG Newsletter We have a monthly REG newsletter which is usually sent around about a week before the monthly team meeting. It contains short project updates and other news/updates from around the team and the institute. It comes to the Hut23 mailing list (see above). If you have something you\u2019d like to be included contact the newsletter owner . Hut23 Mailing List You should automatically be added to the Hut23@turing.ac.uk mailing list when you join REG (if not ask your line manager about it). This is often the best way to contact everyone in the team when organising events, or for other news/communication that should be a bit more permanent/formal than Slack and doesn\u2019t fit in an issue in the Hut23 repo. Less frequently or ad-hoc Data study Groups Data study groups (DSGs) are week-long hack sessions on different projects that happen a few times a year. Participants are drawn from across the Turing and REG people have previously joined both as team members and project PIs. Turing courses and training There are professional and academic training opportunities around the Turing. There\u2019s some info on Mathison . Additionally, REG also runs a yearly research software engineering course . Remote Co-working Occasionally a few REG members get together on Zoom to Gather to do our work (not necessarily to work on the same thing, but to see each other and have a quick chat whilst we\u2019re working). During the COVID lockdowns, we organised these sessions regularly. Now they only occur on an ad-hoc basis. If you\u2019d like to work in this way, feel free to ask on Slack. Some project teams also choose to work in this way. Hack Sessions & REG Collaborative Time If there\u2019s something you\u2019d like to work on collaboratively feel free to organise a hack session (typically these would be longer but less frequent than a reading group, and perhaps more focused on implementing rather than reading). In the past several of us have got together to work on contributions for Hacktoberfest . Repo Audits A few of us plan to get together to help check whether documentation, usage and installation instructions are clear for a project (for example), or to review the code. See this page for more details. Project retrospective - Snark Hunts A \u201cSnark Hunt\u201d is one way in which we\u2019ve previously organised project retrospectives. We\u2019re open to trying other ideas too. Snark hunts are facilitated discussions after a project has finished where the project team, together with others from REG that didn\u2019t work on the project, answer/ask questions relating to the experience of working on it \u2014 what went well, what could have been better etc. . We don\u2019t do it for every project, but they can be a good opportunity to reflect and to get ideas for what we should do differently/do more of in the future. For more info, see here: Snark Hunt concept Snark Hunt template and example questions Previous Snark Hunts Working on Other Projects Working on different projects with different people causes a natural sharing of knowledge around the team. Beyond the usual project allocation process, there may be other ways to get involved with another project for a short time (some of these are speculative and not currently common practice in REG): Rotating between projects: Where a team member has been on a project for a long time, they may wish to change. Team members should ask to rotate to a different project in the next set of project allocations. Gaps between projects: Occasionally there are short gaps between one project finishing and another starting. These can be opportunities to get involved in something different for a while. One example could be to try a project with the ARC team (though I don\u2019t think anyone in REG has done this yet). Projects may also want to get into the habit of creating \u201cHacktoberfest\u201d style issues that newcomers could quickly get up to speed with and get involved if they have a gap in allocations. Shadowing projects: Especially for new starters, we\u2019ve started to encourage the idea of shadowing projects for a short while, to get an idea of how we work. ", "doc_id": "718228f9-61dc-44bb-997e-c9d8c401bf75", "embedding": null, "doc_hash": "79a4ba262d41746f6d604aeb06389780e75f99bb266ef41fc702586dd27b5163", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/how_we_work/knowledge_sharing/"}, "node_info": {"start": 0, "end": 7161, "_node_type": "1"}, "relationships": {"1": "0079133c-3da0-4592-8734-17c3465013d6"}}, "__type__": "1"}, "046ac25e-3976-4a1d-9914-e2b860979f2a": {"__data__": {"text": "Common Technical Practices This section contains a section of common technical practices within REG. For many of the topics in this section, there may be many possible ways to achieve the same goal \u2014 which are debated at length elsewhere. The intention of this section is not to claim that any of the methods here are the \u201cbest\u201d (however defined). Merely that they are good enough to allow the reader to focus on other, more interesting, unique or important, aspects of their project. ", "doc_id": "046ac25e-3976-4a1d-9914-e2b860979f2a", "embedding": null, "doc_hash": "f41b05448951acb22787ced25cc32c1388108bf230a40b6c296f79a6d8738799", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/technical_practices/"}, "node_info": {"start": 0, "end": 485, "_node_type": "1"}, "relationships": {"1": "7fb7e47d-1abf-4d13-9103-3ceafd2848bc"}}, "__type__": "1"}, "56594030-d0ed-4a20-9a89-3ffcf1198824": {"__data__": {"text": "Python Tools and Practices Python is a widely used language within REG. Below are some useful tools to help you configure your repo (with links to examples). Some of the topics discussed below are not exclusive to Python. As more content is added to the manual they should be separated out into their own pages. Autoformatters / Linters There are many widely used autoformatter and linters for Python, which can be used as standalone tools or call from .pre-commit , continuous integration tools etc. : isort Sorts your import statements correctly. The order isort \u201csorts\u201d imports in the following order: standard library imports ( e.g. import os ). related third party imports ( e.g. import pandas ). local application/library specific imports ( e.g. from .my_python_file import MyClass ). You should put a blank line between each group of imports. the configuration of isort can be specified in a pyproject.toml file, where isort is using the [tool.isort] section. black A highly opinionated code formatter, which enforces control of minutiae details of your code. The configuration of black can be specified in a pyproject.toml file, where black is using the [tool.black] section. flake8 A wrapper for three other tools: PyFlakes \u2014 checks syntax, without checking the style. pycodestyle \u2014 checks compliance with PEP8 Ned Batchelder\u2019s McCabe script \u2014 checks the cyclomatic complexity of code. Configuration can be specified in a .flake8 configuration file in the root directory of your project. It is possible to use all of these in combination. The ARC group have a template repo with suggested configuration files which you can copy/adapt as required. Type Checkers Type checking is optional in Python but is generally recommended. There are several tools which can perform type checking: mypy \u2014 This type-checker has the distinction of including Guido van Rossum in its core development team. pyright \u2014 By Microsoft. pytype \u2014 By Google. Automation (Pre-Commit & Actions) A convenient way to incorporate many of these tools and checks into your workflow is to use pre-commit . Below is an example. You could adapt this to your needs, or create your own from the many hooks described in the documentation . # See https://pre-commit.com for more information\n# See https://pre-commit.com/hooks.html for more hooks\nrepos : - repo : https://github.com/pre-commit/pre-commit-hooks\n rev : v4.2.0\n hooks : - id : trailing-whitespace\n- id : end-of-file-fixer\n- id : check-yaml\n- id : check-xml\n- id : check-json\n- id : pretty-format-json\n args : [-- no - ensure-ascii, --no-sort-keys, --autofix]\n files : \".+json\"\n- id : check-added-large-files\n- repo : https://github.com/psf/black\n rev : 22.3.0\n hooks : - id : black\n# files: \"*.py\"\n exclude : \".+/ignore_this_legacy_file.py\"\n- repo : https://github.com/pre-commit/mirrors-autopep8\n rev : 'v1.6.0' # Use the sha / tag you want to point at\n hooks : - id : autopep8\n- repo : https://github.com/pre-commit/mirrors-mypy\n rev : 'v0.960' # Use the sha / tag you want to point at\n hooks : - id : mypy\n exclude : \".+/ignore_this_legacy_file.py\"\n- repo : https://github.com/pre-commit/mirrors-isort\n rev : v5.10.1\n hooks : - id : isort\nThis example checks: There is no trailing whitespace at the end of each line. There is exactly one blank line at the end of the file. Any yaml files in the repo are formatted correctly. Any xml files in the repo are formatted correctly. Any json files in the repo are formatted correctly and \u201cpretty printed\u201d. If any large files have been added to the repo without using git-lfs Any python code (except the file named \u201cignore_this_legacy_file.py\u201d), is formatted according to \u201c black\u2019s \u201d uncompromising standard. Any python code (except the file named \u201cignore_this_legacy_file.py\u201d), is formatted according to \u201c pep8\u2019s \u201d standard. Any python code is tested for type safeness (That is declaring types is optional, but if types are declared they must be correct). The import statements in any python code are correctly ordered. If any of these tests fail or need to alter any files, the commit will fail. This prevents you from accidentally forgetting to check your changes before you commit them. If you wish to run the checks in pre-commit without attempting to commit your changes: pre-commit run --all-files There are many other possible checks available with pre-commit , which you can incorporate according to the needs of your project. The pre-commit documentation provides much more detail. Testing tools Some suggested testing tools: A test framework pytest or the less fashionable unittest . Coverage reporting pytest-cov (a plugin for pytest ) or coverage . A tool for testing code examples in your documentation doctest . This list of tools does not include a discussion on developing a testing strategy . Developing a testing strategy is a separate discussion, though it is not possible to make optimal use of these tools without a strategy. ", "doc_id": "56594030-d0ed-4a20-9a89-3ffcf1198824", "embedding": null, "doc_hash": "ca022c443def50fd9891dd9ac6bc57117cfbed7d6ffa6fb884034dcb56053e81", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/technical_practices/python/"}, "node_info": {"start": 0, "end": 4937, "_node_type": "1"}, "relationships": {"1": "2bbccd4a-6b45-45d0-a32c-c265b6acddcc"}}, "__type__": "1"}, "9a70dfba-f343-4b28-84c1-b30fe537b95d": {"__data__": {"text": "Configuring Your Editor Many people will configure their editor to suit their own needs and preferences. It is possible to do this so that there are common standards between collaborators in the code base, while allowing for differences in individuals\u2019 configurations. Some of the topics discussed below are heavily focused on python development. In due course we should generalise this to cover other languages. General Some common, particular formatting/encoding options can be configured for a range of editors/IDEs by using EditorConfig in your repo. A .editorconfig needs to be placed in the root of your repo. Many (but not all) editors support EditorConfig files allowing different members of your project team to use their own favourite editor while maintaining common coding standards. Some editors support EditorConfig natively; others require a plugin to support EditorConfig. There is some overlap in functionality between EditorConfig and Flake8. Crudely EditorConfig applies standards to files as they are created/edited, while Flake8 checks all files (irrespective of origin) on demand. Both tools need to be set up en ensure that they are mutually compatible. However, since the configurations for both Flake8 and EditorConfig rarely change after the initial setup of the project, this is not a problem in practice. VS code VS Code Python documentation ARC suggested config (Turing members only) Extensions Focusing on Python only, useful extensions include: Python \u2014 adds core functionality for linting/navigating/debugging/etc. Pylance Jupyter Python Indent \u2014 improves editor behaviour for matching indentation across lines autoDocstring \u2014 auto-generate template docstrings IntelliCode \u2014 improved auto-completion/code suggestions Black formatter (pre-release) \u2014 auto-format code with black isort (pre-release) \u2014 auto-format code with isort Python Type Hint \u2014 helps with completing type-hints The black and isort pre-release packages are currently designed to work with the Python pre-release version. This is likely to be consolidated/improved in the future. Settings VS Code Settings are stored in: Global user settings: ~/Library/Application Support/Code/User/settings.json . Project-specific (Workspace) settings: /.vscode/settings.json . You can also customise most settings via the Code -> Preferences -> Settings menu. For Python specifically note the Extensions -> Python section. Here\u2019s an example config for Python (reliant on installing the extensions above): { \"python.linting.flake8Enabled\" : true , \"python.linting.mypyEnabled\" : true , \"python.testing.pytestEnabled\" : true , \"python.linting.pylintEnabled\" : true , \"autoDocstring.docstringFormat\" : \"numpy\" , \"[python]\" : { \"editor.rulers\" : [ 88 ], \"editor.defaultFormatter\" : \"ms-python.black-formatter\" , \"editor.formatOnSave\" : true , \"editor.codeActionsOnSave\" : { \"source.organizeImports\" : true\n}, }, } It does the following: Activates linting with flake8 , mypy and pylint . We suggest using flake8 at a minimum, but you may not want all three activated as it gets quite noisy and there\u2019s some overlap between them. Sets pytest to be the default test framework. Sets numpy to be the default format for docstrings generated with autoDocstring. Sets black to be the default formatter, and automatically runs black and isort when saving a file. Adds a vertical ruler to the editor at 88 characters (default line length used by black ) for Python files only. Note that: It\u2019s possible to specify arguments for the linters/formatters in settings.json . We suggest using each tool\u2019s own configuration files ( e.g. .flake8 ), as these will then be picked up by other tools and editors as well. ( e.g. Should configure flake8 and isort to be compatible with black ). If enabled tools are not installed in your Python environment VS Code should prompt you to install them. You are likely to have some non-Python specific configuration as well, so add the settings above to your settings.json file rather than overwriting it completely. Selecting the Python Interpreter VSC Python Interpreters Docs For each workspace VS Code can be configured to use a specific Python interpreter (environment). That interpreter is then used by default when doing anything with your code (running scripts, linting, tests etc. ) To set the interpreter: Open a .py file. Click on the details of the currently used environment on the status bar (bottom right). Select an interpreter from the list that appears (or write the path to it). Or from the command palette: Cmd-Shift-P -> Search for \u201cPython: Select Interpreter\u201d. Linting VSC Linting Docs If linters are activated (see Settings) they will be run after saving a file, and any problems the enabled tools encounter will be highlighted in-line in the editor, and be listed in the \u201cProblems\u201d tab of the panel at the bottom (or select View -> Problems from the menu). Hovering over a piece of code with a problem in the editor will give you more details about it, and may have a \u201cQuick Fix\u201d available, which will edit the code for you to fix it. Formatting VSC Formatting Docs VS code can use a few different file formatters (e.g. black , yapf , autopep8 \u2014 we recommend black ), which can be configured to run automatically when saving files (see settings above) or with the following shortcuts: Option-Shift-F. Save the file (if auto-formatting is configured). Right-click in a Python editor -> Format Document. Cmd-Shift-P (Opens Command Palette) -> Search for \u201cformat\u201d -> \u201cFormat Document\u201d. Running Tests VSC Testing Docs If you have enabled pytest (or another framework, e.g. unittest ), tests will be discovered and appear in the Testing menu (lab bottle on the left side menu). From here you can run all/individual tests. You can also search for \u201cTests\u201d in the command palette (Cmd-Shift-P) to find options for running tests. If a test fails, clicking on it will show the error message. You can also debug tests (see debugging). If you have a tests file open in an editor the latest pass/fail status of a test will be shown (or a play button if the test hasn\u2019t run before) \u2014 running tests can be triggered from there too. Debugging VSC Debugging Docs Other Tips and Tricks Auto-import: If you start typing a function name that hasn\u2019t been imported, VS Code will pop up a list of suggested functions and \u201cAuto-Import\u201d them (add an import statement to the top of the script) if you select one of them. Rename symbol: Right-clicking on a (variable/function/class/etc.) name in a file, selecting \u201cRename symbol\u201d, and entering a new name will change the name of all instances of that across your codebase (but respecting the scope of the renamed entity). Jupyter: The Python extension comes with a Jupyter extension so you can run and edit notebooks in VS Code. Personally, I prefer the native Jupyter notebook/lab interface to the VS Code one. AutoDocstring: If the AutoDocstring extension is installed, typing \"\"\" then hitting enter will generate a template docstring for you containing placeholders for all arguments (including their types if type hints are used in the function definition). Go to definition: Right-clicking on a (variable/function/class/etc.) name and selecting \u201cGo to definition\u201d will take you to where that thing is defined in the codebase. Git: The editor highlights modifications to the code (by the line numbers), and you can also commit etc. from VS Code using the Source Control menu on the left. Docker: There are extensions ( 1 , 2 ) for running code in containers/attaching a VS code window to a container. ", "doc_id": "9a70dfba-f343-4b28-84c1-b30fe537b95d", "embedding": null, "doc_hash": "23a784c90a2d8da2bc758468979bd2729b75ae50e5842e9a1b84cbb341edcaa8", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/technical_practices/configuring_editors/"}, "node_info": {"start": 0, "end": 7578, "_node_type": "1"}, "relationships": {"1": "e9557c23-59b2-468d-b8ae-b75b5199b39a"}}, "__type__": "1"}, "caaf5123-07a6-4538-9dc0-fa7c6e01133a": {"__data__": {"text": "Changelogs For any non-trivial code, it is worth maintaining a Changelog. This is valuable as it is a record of changes from the perspective of users (rather than git commit messages which are often only meaningful to the developers involved). A recommended format for Changelog files is given at Keep a changelog . All notable changes to a project should be documented in this file. Semantic Versioning A related concept is semantic versioning . In most cases, semantic versioning is recommended. You should state explicitly whether or not you are using semantic versioning in both your project\u2019s README and CHANGELOG files. ", "doc_id": "caaf5123-07a6-4538-9dc0-fa7c6e01133a", "embedding": null, "doc_hash": "edfe439e98900c023be3ac00c114ffec9bbbd2b4263e480745efa728e5af410e", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/technical_practices/change_logs/"}, "node_info": {"start": 0, "end": 626, "_node_type": "1"}, "relationships": {"1": "99e45a31-eb27-4ffe-98b0-60fd18b1a669"}}, "__type__": "1"}, "5adbe930-f5b1-45f1-9d06-982bd4fcc751": {"__data__": {"text": "Software Development Best Practices Status: this document is a draft proposal. RSE projects There should be a Github issue for each thing we do. It\u2019s ok for issues to evolve and my preference would be that the top description box always has the most up to date, clearest description of the issue and its definition of done. Feel free to make liberal use of the comments for communication and tracking investigative / exploratory work. The main description box should contain a clear definition of done / acceptance criteria sufficient for the following to be done in principle by different people from the team who are involved in the project. Implement the functionality Write tests to validate the implementation meets the definition of done Review the implementation for correctness All code should have automated tests, with all tests runnable by a single command by someone who has checked out a fresh copy of the repo. All dependencies, installation, compilation etc should be scripted such that these can be triggered by a single command by someone who has checked out a fresh copy of the repo. Dependencies required only for testing can require a second command or few. Each new issue should be developed on a short-lived feature branch split from \u201cmain\u201d. These branches ideally only live around 0.5-2 days before being merged back into main. Merge process should be: merge main into feature branch and resolve any conflicts. Push latest feature branch to Github. Open PR to merge into main after review + continuous integration (CI) tests. Code should be committed regularly in small chunks. You should generally be committing multiple times per day. Commits on feature branches can have broken functionality or tests, but all merges into main should only occur at commits where the code is correct and has passing tests. All code commits should be accompanied by tests verifying it behaves as expected. At a minimum code submitted as a PR should have tests that show it meets the definition of done defined in the related issue(s). However, code should have additional unit / regression / integration tests where appropriate (it\u2019s almost always appropriate). Writing code then tests is a significantly lower quality assurance measure than writing tests first / in iteration with the code, so you should do the latter. All code should have had two eyeballs on it before it is merged into main, either through pair programming or code review within the PR. Please note on the PR who two eyes were. The second pair of eyes can be anyone on the project (not just a coder), anyone in our team or someone from a related team (e.g. the UCL research programming). Whether as pair programming or a code review, the final PR code should be validated against the definition of done detailed in the related issue(s) by the two pairs of eyes. The Github repository should be set up to run all tests on all pushes to all branches and on all PRs. Currently this can be done for public repos via GitHub Actions. If CI is set up this way, commits to main should be blocked unless all tests pass. Data Science projects TBD ", "doc_id": "5adbe930-f5b1-45f1-9d06-982bd4fcc751", "embedding": null, "doc_hash": "7815b228021dfe6287b08371c4e5e39c43b642fc4c4a0c8aecdb5557f875feae", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/technical_practices/software_dev_best_practice/"}, "node_info": {"start": 0, "end": 3115, "_node_type": "1"}, "relationships": {"1": "0db2f055-dd75-4980-92b5-9ee77654d811"}}, "__type__": "1"}, "d22f3c5b-84ac-45ca-901e-1d2530796bb6": {"__data__": {"text": "Onboarding ", "doc_id": "d22f3c5b-84ac-45ca-901e-1d2530796bb6", "embedding": null, "doc_hash": "8de19a3a3de64a5ec335f8cf9751ea13ec2280a39b167593dc39ff342a3eb837", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/"}, "node_info": {"start": 0, "end": 11, "_node_type": "1"}, "relationships": {"1": "dd11122d-735a-4af6-bd95-9e13b16acda1"}}, "__type__": "1"}, "30be9a9c-d226-4133-8642-6ca620cc0d21": {"__data__": {"text": "New Joiners This section helps new members of REG get up to speed. Please go through these page as one of the very first things when you join. First Few Days Systems Set Up ", "doc_id": "30be9a9c-d226-4133-8642-6ca620cc0d21", "embedding": null, "doc_hash": "bc50b80655afa9fcd85c6076af522c9a6a726fbddf95ba4ddf55f62a3ac69952", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/"}, "node_info": {"start": 0, "end": 173, "_node_type": "1"}, "relationships": {"1": "335ba292-7f04-43bf-a9fd-519f00b4ece3"}}, "__type__": "1"}, "ff8d6def-994a-4295-8f10-af0a6592d856": {"__data__": {"text": "First Few Days Welcome! We are super pleased that you\u2019re joining our group. This page gives you an overview of what to expect from your first few days. They are maintained by the group, we hope that new-starters feel empowered to edit them if there are useful changes to be made. Introductions Each new starter gets assigned two buddies to be friendly points of contact. The person in charge of onboarding\nshould let you know who these are a bit before you start; If that doesn\u2019t happen, please email them about it. Your buddies will welcome you on the first day. In the first few days there will be a welcome coffee to give you a chance to introduce yourself to the whole REG team, and within the first few weeks you will also have a 1-on-1 meeting with REG\u2019s Director. You will have a week or so before you will be assigned to a project. Please use this time to do admin stuff, set up your laptop and tools, get to know people, read this handbook and our internal wiki, and shadow meetings (see below). Here we go over the main points you should remember to do, but for an attempt at listing all the small tasks that occupy a new starter, please see (and improve!) this checklist . We also have a page of tables available with information about links and resources related to REG and the Alan Turing Institute. Administrivia HR will set up a meeting with you to discuss general information e.g. pay, health, leaves, benefits. IT will also meet you to discuss accounts and Turing wide systems. Both of these will typically take place in the first day or two. We have a dedicated page\nfor various systems REG uses. Have a look at the high priority section on your first day . We also have a Remote Working\npage for Zoom, Teams, and Gather. REG offers new starters the opportunity to shadow meetings across the group to meet people and get a feel for how we work. The shadowing document\nshould be updated with meetings you are free to come and listen in on, if it hasn\u2019t been please bug the person in charge of onboarding . To access the office you will need a British Library pass. To get a British Library pass you will need to go through the background screening check. Hopefully that process will have been completed by the time you start, but if it hasn\u2019t even been started yet (this happens), please talk to HR\nto make sure the process gets going. Once the screening is done, HR should let you know within a few days that your pass is ready. In the meanwhile, you can either enter the British Library through the general public entrance and come talk to the Turing\u2019s reception, or, preferably, arrange for a visitor pass for yourself for the days when you\u2019re coming in. For the first day or two, ask your line manager to take care of this, once you\u2019ve got your Turing account going you can directly ask reception . The password for the \u201cATI Guest\u201d Wi-Fi network can be seen hanging around the office. IT\ncan arrange access to the Eduroam network. Eduroam credentials can be used to access Wi-Fi at many academic institutions. Please also write a short, informal paragraph about your background for to be put into the next REG newsletter, and send it to the newsletter owner . Overview of How REG Operates Work at REG revolves around projects and service areas. You will typically be assigned to two different projects at any time, with at least one other REG person and usually some external collaborators. You may want to browse REG\u2019s portfolio of projects in the project tracker\nto get an idea of what we\u2019re up to. The project tracker is also used for expressing preferences on which upcoming projects you would like to work on, but you don\u2019t have to worry about that for first few weeks. We very much encourage REG members to learn new things, so feel free to choose projects that sound interesting to you even if they are unfamiliar. Check this section\nof the handbook for more details. Service areas are REG-internal work, such as looking after this handbook, organising recruitment, or managing our computational resources. Usually people contribute to one service area, which should take approximately half a day a week. This, too, is something you don\u2019t have to think about for now, but come back to it once you\u2019ve settled into your workflow with a project. REG also gives its members some time, known as 22 days time, to work on side projects they find interesting. Your line manager can give you the details on this. If you like, you can see our team reporting structure . Note, however, that we do not have a hierarchical culture, and line managing relations are not about assigning work to people. Your work tasks will be coordinated with the people in your projects. You should talk to your line manager about things such as How project allocation works, and what kinds of projects you would like to work on Managing your time and growth How we work (practices, tools, languages, etc. ) How you would like to grow and develop in your role and what opportunities exist to support that. Please also take a some time to browse this handbook, it\u2019s got plenty of useful information about what we do and how we do it. Set up Your Machine and Coding Environment See systems setup . Regular Events Check out our regular events and coffee breaks . Please consider signing up for a tech talk\nsometime in your first six weeks. If you don\u2019t see a calendar invite for the weekly tech talks, ask the person in charge of onboarding\nto add you to the relevant mailing list. What to do next If you\u2019ve done all the above, read through the handbook and the repo and are still waiting for your first project to start, go and talk to the person in charge of onboarding. They will find something meaningful for you to do which might be something like: Browse the Project tracker and emoji any projects in the Finding people and Awaiting go/no-go columns. Note: you will be notified to do this before being assigned to a project. Browse the Service areas list , discuss the different areas with people involved and emoji those that are looking for people. Work on a Turing Data Story. There\u2019s always a story to join or a new one to start. You can then keep working on it on your 22 days time once allocated to a project. This option has been very popular. Tackle a GitHub issue marked with the good first issue tag in a repo that REG works on. Whenever a new starter is looking for things to do, the person in charge of onboarding will send a message on Slack asking everyone to tag suitable issues. Work on a REG-internal project that is easy to rotate in/out of. Any ad hoc ideas that come up. Maybe you found a project that really interests you and want to help, or maybe there\u2019s some team organisational thing that comes up that you volunteer for. Points of Contact You can find useful points of contact here . This page\nalso holds other useful information such as remote meeting details and team responsibilities. ", "doc_id": "ff8d6def-994a-4295-8f10-af0a6592d856", "embedding": null, "doc_hash": "90cedaff2defa45c628c1ee8afbb43509ef1d089c96de5f48c73893af74a79de", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/first_few_days/"}, "node_info": {"start": 0, "end": 6914, "_node_type": "1"}, "relationships": {"1": "23cd1224-aad4-4c6e-b162-9a9141da109a"}}, "__type__": "1"}, "a84215e5-c9cc-43b8-a1c2-617a59aa35ac": {"__data__": {"text": "Systems Set Up These are not hand-holding instructions. Rather they are a reference to help with your setup. If they are wrong or incomplete, please edit them. The page has been roughly organised into high priority things (do in your first couple of days), low priority (sometimes in the first couple of weeks), and reference. If any of the material is unfamiliar ( e.g. you haven\u2019t seen a GitHub project board before), then please ask your buddies (or anyone else you meet in the group) to have an informal chat about it. High priority Getting a computer Receive (or be assigned) new computer from IT. It will have an admin account for IT, and probably an account for you with a default password. Log in with the password provided by IT. Change your password. Your new password should be strong (12 random characters), and ideally randomly generated by a password manager. Feel free to use a diceware-style passphrase. Your password should be: unique to the machine/system randomly generated (use a password generator) have an entropy of at least 64 bits, see wikipedia At least 11 characters if alphanumeric (use 12, though) At least 10 characters if alphanumeric plus symbols At least 5 words if using dice ware At this point you can also configure fingerprint authentication. Make sure you have FileVault on. You should be setup with local admin privileges. Contact IT if this isn\u2019t the case. Install Homebrew We recommend using Homebrew as your Mac package manager. Currently IT installs Homebrew by default on our laptops under /usr/local/bin . However, in the long run this might create problems with the new M1 Macs we use. To see if this problem applies to you, run which brew in the terminal and check if that\u2019s the location. Until this is fixed by IT, what we recommend is the following: Uninstall the current version of Homebrew by running the following command in the terminal: sudo /bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)\" Install Homebrew again following the instructions on the website . This will install Homebrew under /opt/homebrew/bin/brew (you can check by entering which brew in the terminal to see the new location). Communication Channels Most communication happens through Slack. More structured communication happens through GitHub. These two systems are the first things you should setup (once you\u2019re on Slack it\u2019s a lot easier to ask for help). Slack Install Slack: brew install --cask slack Once installed join the Turing Slack . You can self-subscribe with your @turing.ac.uk email address. Important channels to join: You should be added to #general and #random by default. Ask anyone in the team to add you to the private channel #hut23 . If you are a senior, please ask another senior to invite you to the REG senior\u2019s Slack channel ( #line-managers ). GitHub We use GitHub for most coordination. To get access to the Turing GitHub , create a GitHub account (or use an existing one), then fill this form on Turing Complete with your GitHub handle (if you have access to Turing Complete). Then let the GitHub org controller know that you have done this and they can add you straight away. Also check the Project tracker to get a feeling on what goes on. We use it to track official projects we are tasked with. This is where we express preferences for projects, with emojis. Project leads should be assigned to the relevant issue and are responsible for keeping the issue up to date. Check this section of the handbook for more details. Office 365 account Your Turing main account rests here . You get access to mail (Exchange), calendar, a shared drive, Office apps. Check that you can login, and change your password and configure MFA. Ask IT if in need for help. Lower Priority Here we have more information about how we use the high priority systems, and also other systems to explore. Slack Channels Turing is a large organisation and there are many other channels you may want to join. Some are purely social, some are related to programmes or projects. For example, #tps (for the closely aligned Tools, Practices and Systems programme), #kitchendropin , #social , #pubclub , #askaway , #research-computing , #interesting-events , #football . If you get interested in something just ask if there is a channel about it. All of the REG-specific channels are prefixed with hut23 , so that\u2019s a good thing to search for in the channel list. You may also want to add yourself to #hut23standup , which some of us use for automated standups of \u201cAbout Us\u201d questions. The purpose is to get to know other team members by answering a question three times a week. Geekbot should send you the next question at 10:30am on Mondays, Wednesdays and Fridays. Tips for using Geekbot: You can report before/after Geekbot asks you by sending it a message from Slack, e.g. report About Us . The Slack channels containing the responses can generate a lot of notifications. You might want to turn off notifications, or alternatively mute the channel and check in on it manually instead. (Right-click on the channel name to do this.) You can customise the time of Geekbot\u2019s questions. Send dashboard as a message to Geekbot and click the link it returns. From there, you can select a standup and the \u201cMy preferences\u201d button will take you to the customisation page. (This setting may not be enabled on all standups.) You can export a list of your previous responses to a standup from the dashboard. Click on the \u201ctimeline\u201d tab of the relevant standup, and from there you can select the participants and questions to export to a csv file. This is particularly useful when you have forgotten to fill in Harvest for a while and need the information from the daily standup! Other workspaces you could join: The Society of Research Software Engineering has a Slack worspace . For information about joining the Society see the SocRSE page . Mailing Lists The Newsletters & Mailings page on Turing Complete has a \u201cUpdate Mailing Preferences\u201d link to sign up to receive some internal newsletters/communication. Harvest and Forecast We use Harvest to (loosely) track our time, and Forecast to manage allocations to projects. Get in touch with the person in charge of researcher tool management to setup a meeting sometime in your first week. Harvest is a time tracking app used to monitor the amount of time being dedicated to each project. The easiest way to get set up is to ask your Line Manager or another member of the team to invite you and make you admin. You can then add yourself as a team member to whichever projects you\u2019re working on and start tracking your time. There is a page here which goes into more detail about where you should log different activities. Cezanne HR Our HR system is Cezanne HR . You can log onto this with your Turing credentials using the \u201cEnterprise login\u201d option. If \u201cEnterprise login\u201d does not work, email HR to fix it. This system is used for: Requesting annual leave. Recording days off due to illness etc. . Managing the objective setting and performance review process (after your probation period). Create a Public Profile on the Turing Website There are several ways to do this: You can fill in this form on Turing Complete to request a public profile. Alternatively, contact the people in charge of REG communications , providing the following info: Your title and full name A short personal bio A brief description of your Turing-related research (optional) A brief description of your achievements and award (optional) Photo (optional) Webpage You can also edit the website yourself directly. To do so, you must complete a round of online training , after which you will be granted edit permissions. Office 365 Groups Make sure you are in the following Office365 / email groups (check with IT ): Research engineering Business team (for non-Research Associate staff) Research staff All Staff If you are a senior member of staff, ask a principal to get you added to the REG-senior-staff email list. End-of-month all business team meetings (Turing Catch-ups). These are sent out as recurring calendar events. You can either email governance to forward you the invite or find a member of the REG team that is", "doc_id": "a84215e5-c9cc-43b8-a1c2-617a59aa35ac", "embedding": null, "doc_hash": "6b716d227290bbdfb6281f5c33934d169b4ec346c7abfbddd909addc40eecb91", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/systems_set_up/"}, "node_info": {"start": 0, "end": 8214, "_node_type": "1"}, "relationships": {"1": "7564a474-3a18-40d0-aaf6-812b2e7f18c2", "3": "69222f1d-a8bf-45eb-bd90-448ede12b0db"}}, "__type__": "1"}, "69222f1d-a8bf-45eb-bd90-448ede12b0db": {"__data__": {"text": "either email governance to forward you the invite or find a member of the REG team that is invited and ask them to forward the invite. Turing Bulletin: This internal newsletter is sent out every Thursday evening. If you don\u2019t receive it, you can sign up manually via Turing Complete . GitHub Pro and Professional IDEs Turing employees can apply for free GitHub Pro accounts, and use these to get free educational licences for professional versions of many JetBrains products ( e.g. , PyCharm, IntelliJ, \u2026) Go to education.github.com and apply for the GitHub Teacher Toolbox GitHub will ask you to verify your affiliation with an academic institution. The Turing is not on their list, but you can still use it. You will need proof of employment - a screenshot of Cezanne or the top of your Turing contract (including start date) have worked for people in the past. Once GitHub have approved your Pro account, go to the JetBrains website and create an account there (sign in via GitHub) You can now apply for a free educational licence (\u201cApply for a free student or teacher license\u201d) for professional versions of various IDEs. There is no obligation to use these IDEs, this is just an FYI in case you are interested. OneDrive Sync the Research Engineering documents: From SharePoint , under \u201cResearch Engineering\u201d private group, go to \u201cDocuments\u201d, then \u201cSync\u201d. Please avoid locally editing files that are common and might be edited concurrently. In that case, opt to use the online version through Office 365. HackMD We sometimes use HackMD for shared documents. If you don\u2019t have an account, signup for a free account here . We do not have a paid account for HackMD. Skype for business We don\u2019t use skype that often, but this can be installed through the Self Service application. You will need an application-specific password. If you want a phone number ask IT . Mathison Mathison is the Institute\u2019s intranet. You should have access to this on your first day. A few things still need to be done on the old intranet, Turing Complete . Gray Dawes Gray Dawes is the Turing\u2019s system for booking travel and accommodation. Instructions on how to get set up can be found on Mathison . When making bookings on Gray Dawes, you will have to additionally submit an Excel approval form (available at the right-hand sidebar of the same Mathison page). This form should be filled in and sent to the Principal you have a direct link to in the line management chain for approval. Certify Other work-related expenses can be reimbursed via Certify: see the Mathison page for more information on how to get set up. Briefly, you will have to fill in a Travel and Expenses Policy Compliance Form and email it to Finance. On this form, the \u2018approver\u2019 should be the REG Director. The REG Wiki contains more information on the reimbursement process, including information about the specific department and project codes you should be using. When you get access to Certify, it\u2019s a good idea to check that you\u2019ve been set up with the correct codes. If you applied for a visa to work at the Turing, you are also allowed to claim up to \u00a34000 back. More details on this can be found in Mathison as well as the REG Wiki . Purchasing home office equipment There is a budget to purchase peripherals (monitor, mouse, keyboard, etc. ) as well as other equipment such as an office chair and desk. For peripherals, fill in this form on Turing Complete . For an office chair and desk, you can purchase these yourself, and claim up to \u00a3200 back (in total) via Certify. Reference Take a look at the following sections: Regular Events Common Technical Practices ", "doc_id": "69222f1d-a8bf-45eb-bd90-448ede12b0db", "embedding": null, "doc_hash": "0b5842f6997fd0bb6afa13196f05f386df21d41c947f4b549ebc509c25177f85", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/systems_set_up/"}, "node_info": {"start": 8124, "end": 11747, "_node_type": "1"}, "relationships": {"1": "7564a474-3a18-40d0-aaf6-812b2e7f18c2", "2": "a84215e5-c9cc-43b8-a1c2-617a59aa35ac"}}, "__type__": "1"}, "dc58742e-6237-4a06-ab34-f8694a76f6d0": {"__data__": {"text": "Checklist This page attempts to list all the things that a new starter should remember to do. It makes no guarantees of completeness, and attempts to list both compulsory things and optional ones. It has been written by new starters as they go. If you\u2019ve recently started in REG and find yourself doing anything related to getting started, that others might want to do as well but that is not on this list, please add it. If anything is unclear, please figure it out by e.g. asking your buddies, and then clarify it here. Meetings Attend buddy meeting Attend HR induction Attend IT induction Meet with line manager Shadow meetings: https://hackmd.io/nnsWP4i_SiiwlT4meOeq6g (if you don\u2019t have access, ask someone in charge of onboarding ) Join in for welcome coffee(s) HR tasks Complete Agenda screening (hopefully this happened already before you started, but if you haven\u2019t received an email about this, ask HR) Do a bazillion things on Cezanne : Enter specific personal details, most important are: DOB Home address Emergency contact details Bank details NI Health form Additional characteristics form Complete and reupload in Cezanne documents area: \u201cBL partners - Health, Safety and Security\u201d form HMRC new starters form \u201cRight to work\u201d document Signed and dated scanned contract (can just upload the version signed with DocuSign before joining) British Library pass: \u201cBL partners - Health, Safety and Security\u201d form: complete and reupload in Cezanne documents area Upload photo to Documents section on Cezanne (where other starter forms are provided) HR require Agenda Screening report (no action if already completed Agenda Screening before starting) Temporary pass, line manager emails reception to request Send P45 from previous job to HR contact directly by email Read about health and dental insurance, decide whether to sign up Check the Turing Benefits site, to see if there are useful discounts there Send to HR for the next Turing Town Hall meeting: Casual photo Fun fact(s) Provide a description for the ATI webpage ( https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/systems_set_up#create-a-public-profile-on-the-turing-website ) Verify your MoorePay account (for payslips). Verification email will be sent to you in your first month of employment. See Payroll and Payslip enquiries on Mathison for more information. Verify your Certify account (for expenses). The Certify Mathison page contains a Travel & Expenses Policy Compliance Form which has to be filled in and emailed to Finance to activate your account. GitHub and communications Get access to private GitHub repos (fill in this form and send your GitHub username to the person responsible for GitHub (see The REGistry ) to join the Alan Turing Organisation GitHub Join Turing Slack Go through public Slack channels, decide which ones to join Request account on Harvest and Forecast by asking the the person in charge of researcher tool management, or your buddies to get you set up (to clarify, it is one account but allows you sign in to both) https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/systems_set_up#harvest-and-forecast Read through the REG handbook: https://alan-turing-institute.github.io/REG-handbook Read through the new starter page of the REG handbook: https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/first_few_days/ Have a look at REG projects on the Project tracker in the Hut23 GitHub Repo. Read through the Project Tracking page to learn how we set our preferences for projects by using emojis, and start emoji-ing for the projects in the \u201cFinding people\u201d and \u201cAwaiting go/no-go\u201d columns. Have a look at the Service areas . There is no pressure to join one right away so you can take some time talking to people and finding an area that interests you. Add [[Shared REG Calendar]] to Outlook Familiarise yourself with how to Book Rooms Message IT ( ITServices@turing.ac.uk ) to upgrade Zoom account from Basic to Pro Send a short informal bio to the REG newsletter owner . New computer set-up https://github.com/alan-turing-institute/research-engineering-group/wiki/Moving-to-a-new-computer Ongoing activity sign-up \u201cTech Talks\u201d (Tuesdays 12:30pm), link on: https://github.com/alan-turing-institute/DataScienceSkills/wiki/Lunchtime-Tech-Talks Read up about and you are recommended to join the Society of Research Software Engineering , including the Slack workspace ", "doc_id": "dc58742e-6237-4a06-ab34-f8694a76f6d0", "embedding": null, "doc_hash": "369c7e82462e5cbc394b7359e613ff2b5020258e517c7e154e3e8591b6a66e1d", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/checklist/"}, "node_info": {"start": 0, "end": 4459, "_node_type": "1"}, "relationships": {"1": "450392e8-3be5-46b5-878b-acaae44a33cb"}}, "__type__": "1"}, "b4e15cd8-6566-4705-b0b2-cc656777a66c": {"__data__": {"text": "Buddy System It can be daunting starting a new job, especially remotely where there is sometimes less opportunity for casual questions. To help with this every new employee should be assigned buddies. The buddies are responsible for providing informal friendly faces to offer advice, guidance, and encouragement on any aspect of working within REG and ARC. We also emphasise that the buddies should be a safe space where new-starters can get help with any technical questions that they feel is silly or trivially easy and may not feel comfortable admitting to the wider group. The Process Before the new starter starts at the Turing they should be assigned two buddies from our buddy pool . If possible, the buddies should not be assigned to the projects on which the new starter is likely to work, and ideally at a similarly seniority to the new starter. We would also like for each new starter to have a third buddy from some other team. We think that in a remote & hybrid setting it will help new-starters meet people and get a feel for the wider Turing ecosystem. This has been trialed in a few instances, to positive feedback, but to make this be standard practice we would need it to be more bidirectional, with REGers volunteering to buddy with people outside of REG. The new-starter should be made aware of the buddies\u2019 role before they start, and meeting their buddies should typically be the first appointment on their first day. The buddy system in managed by the person in charge of onboarding . Buddy Guidelines Have a coffee with the new employee on their first day. If needed, introduce them to the team at welcome coffee. Be as informal as possible, make the new starter feel welcome and comfortable. Make sure the new starter is familiar with the New Starter page . Check for sticking points. Meet the new starter where they are at. Make it clear that the new employee can get in touch any time for questions and concerns, regardless of triviality. Emphasise that you\u2019re also there for technical pointers. This is to encourage the new-starter to be comfortable asking for help when they are stuck and hopefully lessening imposter syndrome anxiety. Have a check-in chat with the new starter at least once in the first couple of weeks, and again a few weeks after. During these check-ins, uncover pain points and concerns. Help socialise the new employee to the group\u2019s culture and processes. Be open, honest, and respect confidentiality. If needed, help make introductions. Tips for Buddies Don\u2019t worry about being perceived as the expert. Focus your attention on the new employee. Be patient: It takes time to develop a relationship. Don\u2019t try to cover everything right away. Be positive: New employees will grow into their roles if given proper reinforcement. Don\u2019t try to force a relationship. New employees will vary in how much they turn to a buddy. Try to identify the new employee\u2019s personality and communication style and adapt accordingly. Don\u2019t be judgemental. Simply offer feedback. Maintain a good attitude and a teaching spirit. How to be a Buddy Being a buddy can be a rewarding process. You will help avoid new starters feeling at sea and reaffirm their decision to join the group. To sign up please add your name to our buddy pool . ", "doc_id": "b4e15cd8-6566-4705-b0b2-cc656777a66c", "embedding": null, "doc_hash": "be7ba423a6147bbb3c4018f2cf6cee65f2f19c349452d95c035a89df19750d46", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/buddy_system/"}, "node_info": {"start": 0, "end": 3265, "_node_type": "1"}, "relationships": {"1": "55900417-1001-4f91-a88d-a3b59c7beb56"}}, "__type__": "1"}, "8d1f0547-7a86-4547-80d0-4749c7cd3e2d": {"__data__": {"text": "Society of Research Software Engineering The Society of Research Software Engineering (SocRSE) is a charitable incorporated organisation with the mission to establish a research environment that recognises the vital role of software in research. REG supports and encourages its members to join the SocRSE, so it\u2019s worth reviewing the society\u2019s website and deciding whether to join during your onboarding period. Benefits of SocRSE There are many benefits to joining the SocRSE. By joining the Society you will: Contribute to the Society\u2019s work supporting the research software engineering community Gain access to the Society\u2019s Events & Initiatives fund Get discounted access to the Society\u2019s annual conference Be eligible to vote and stand for election at the Society\u2019s annual AGM Have your say in one of the Society\u2019s special interest, regional or working groups Be able to apply for the Society\u2019s mentorship scheme Gain access to discounts from the Society\u2019s corporate sponsors Communication Channels The Society has a website, Slack and email list. Their Slack workspace contains plenty of details about relevant events. Claiming Back Subscriptions SocRSE membership is considered a professional subscription, which you\u2019re entitled to claim back as a REG member. You should claim it back quickly after payment. Use Certify to claim it back and don\u2019t select a project when making your claim. ", "doc_id": "8d1f0547-7a86-4547-80d0-4749c7cd3e2d", "embedding": null, "doc_hash": "7339996eb8f50c59da4fb3c2cf3d710f2895eb461baca0415c0f7a9050141638", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/society_of_research_software_engineering/"}, "node_info": {"start": 0, "end": 1395, "_node_type": "1"}, "relationships": {"1": "3bdd822d-8d17-490b-8945-8cb3fc25e078"}}, "__type__": "1"}, "eb1611e0-048f-4d40-8759-18ea8bb446ee": {"__data__": {"text": "Communications ", "doc_id": "eb1611e0-048f-4d40-8759-18ea8bb446ee", "embedding": null, "doc_hash": "56b3d6e5dd831a7026c59a5191ca025f714396b3ac32cf099428abdc3e1d28b8", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/communications/"}, "node_info": {"start": 0, "end": 15, "_node_type": "1"}, "relationships": {"1": "15973cde-a6c5-42d5-b091-b5fef2ab54be"}}, "__type__": "1"}, "98b1e8d2-1971-4141-be92-0609195c2280": {"__data__": {"text": "Twitter The group has a Twitter account @turinghut23 . The purpose of the account is to have an informal public-facing channel where we can communicate about projects we are working on and about life as a research engineer at the Turing. Access If you want to tweet under the group account, ask the account controller for access. This also gives you access to Medium What to Post Projects we work on (if public) Blog posts Talks that we organise Conferences and workshops Any public outputs \u2014 papers, published code etc. Please refer to the Turing\u2019s social media policy when making posts. ", "doc_id": "98b1e8d2-1971-4141-be92-0609195c2280", "embedding": null, "doc_hash": "11e3c2d3408b28eabffed75a95d10cd57ef1e1826e11dc70af3c072e2ea10d4c", "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/communications/twitter/"}, "node_info": {"start": 0, "end": 589, "_node_type": "1"}, "relationships": {"1": "c74a421a-2a64-4026-89a4-8e28cccb5930"}}, "__type__": "1"}}, "docstore/ref_doc_info": {"e8ff93ab-6b4c-46a4-9bea-e54d3508987a": {"doc_ids": ["fcd6893a-2299-4252-a491-58ea3ab2027d"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/"}}, "cfb5a5b5-d72d-40da-bd3c-a26cf598c742": {"doc_ids": ["0136ae18-ab5b-403a-8e88-2246e8600382"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/advanced/"}}, "818f387d-a522-4212-8a2d-3fa821940cc2": {"doc_ids": ["2918ad37-92c2-4140-93ff-faef72f2d9a8"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/recognising_contributions/"}}, "7bc907be-6161-46a0-ae00-0279ce879d4f": {"doc_ids": ["574bcc25-d760-4690-9e9c-734ca1a2faca"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/editing_a_page/"}}, "082e5499-fe3f-4bbb-8c20-036125497c60": {"doc_ids": ["d9b75cc2-4b54-4de9-834d-ac8d43513af6"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/reviewing_changes/"}}, "0b40b2c9-ab5d-43eb-8e72-87de4c8439cf": {"doc_ids": ["62bb3d89-c999-4a68-9f10-63b27f8fe51f"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/creating_a_page/"}}, "520c5124-2147-4dab-bf3e-4cb029c7f436": {"doc_ids": ["62ad20de-4bd1-4ce4-b188-02ee3afa832c"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/contributing_changes/"}}, "dd808e38-620c-4cdb-abc4-75ad9a42b39c": {"doc_ids": ["75867960-b912-4f6e-9246-f0037fe39a38"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/discussions_and_issues/"}}, "4672ee2d-fc36-403b-a2f4-0d7b47e54c90": {"doc_ids": ["18541b6e-100d-427b-9e3e-efe271e15ab8"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/style_guide/"}}, "3e2c2087-2447-4036-89c6-c3b476ba1980": {"doc_ids": ["c56de485-bf90-4d6c-92ad-bee5e4906542"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributing/getting_started/"}}, "992e554d-6658-4f10-89c8-5de9396afd51": {"doc_ids": ["7e68274e-9ab6-471e-9185-c944c59cfaa8"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/projects/"}}, "439c3118-d6dd-4617-82d9-97ad4cf51bbd": {"doc_ids": ["33eadcb9-33ef-4e1c-bee7-03bfbc864821"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/projects/project_tracking/"}}, "71c71cdb-ad88-4a6c-91a5-3604f6c5df22": {"doc_ids": ["64015259-4712-473b-83aa-101859b847e3"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/regular_events/"}}, "d9440e1a-d8f3-45c1-ac9b-8d14f09b0870": {"doc_ids": ["9755dfce-542c-4fd4-9159-be398121c20a"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/regular_events/coffee_chats/"}}, "a96a9396-e221-4b06-a82d-dc66c66148ef": {"doc_ids": ["3d62184d-17c2-489c-a1d6-6a328080a6b1"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/regular_events/drop-in_sessions/"}}, "7f100d62-022a-451a-a1f4-967e62be7b04": {"doc_ids": ["2c432e8c-1357-4d82-bb70-f06d795ffb78"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/regular_events/lightning_talks/"}}, "95a412e4-efb9-4a7a-8bdb-696965069c19": {"doc_ids": ["112a5e73-1b8e-4e1c-8d4d-d86c9fffc995"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/regular_events/reading_groups/"}}, "d8d61bab-9e58-4ade-9a14-a63b787c2bc3": {"doc_ids": ["a6ae574c-ce44-46ea-8bcd-51daeadd4e33"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/regular_events/lunchtime_tech_talks/"}}, "dbfd79ac-e69a-4052-8034-864e7fe1d39f": {"doc_ids": ["e08d3482-69bf-47bb-baf8-38dfe358b0c3"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/contributors/"}}, "3c9873c6-3747-431b-9944-534e0ddcd516": {"doc_ids": ["2bc907a2-81b3-4f00-996a-0d1337ddd0f4"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/how_we_work/"}}, "f57c0ea5-b736-4da2-aec2-a68e49a4c0dc": {"doc_ids": ["129527e9-ec4e-4f68-95fd-03240a7507b2"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/how_we_work/meeting_record/"}}, "5451e9d2-0048-4479-a6c9-7f48daf2a749": {"doc_ids": ["d1108f8f-6c82-40ca-bf1d-eba84831d72a"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/how_we_work/code_audits/"}}, "f2a907fb-94af-401e-8dcd-33a3d4eec19e": {"doc_ids": ["db89096e-87c7-4a7c-ac4d-67f67d6012a3"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/how_we_work/defining-done/"}}, "0079133c-3da0-4592-8734-17c3465013d6": {"doc_ids": ["718228f9-61dc-44bb-997e-c9d8c401bf75"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/how_we_work/knowledge_sharing/"}}, "7fb7e47d-1abf-4d13-9103-3ceafd2848bc": {"doc_ids": ["046ac25e-3976-4a1d-9914-e2b860979f2a"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/technical_practices/"}}, "2bbccd4a-6b45-45d0-a32c-c265b6acddcc": {"doc_ids": ["56594030-d0ed-4a20-9a89-3ffcf1198824"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/technical_practices/python/"}}, "e9557c23-59b2-468d-b8ae-b75b5199b39a": {"doc_ids": ["9a70dfba-f343-4b28-84c1-b30fe537b95d"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/technical_practices/configuring_editors/"}}, "99e45a31-eb27-4ffe-98b0-60fd18b1a669": {"doc_ids": ["caaf5123-07a6-4538-9dc0-fa7c6e01133a"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/technical_practices/change_logs/"}}, "0db2f055-dd75-4980-92b5-9ee77654d811": {"doc_ids": ["5adbe930-f5b1-45f1-9d06-982bd4fcc751"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/technical_practices/software_dev_best_practice/"}}, "dd11122d-735a-4af6-bd95-9e13b16acda1": {"doc_ids": ["d22f3c5b-84ac-45ca-901e-1d2530796bb6"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/"}}, "335ba292-7f04-43bf-a9fd-519f00b4ece3": {"doc_ids": ["30be9a9c-d226-4133-8642-6ca620cc0d21"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/"}}, "23cd1224-aad4-4c6e-b162-9a9141da109a": {"doc_ids": ["ff8d6def-994a-4295-8f10-af0a6592d856"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/first_few_days/"}}, "7564a474-3a18-40d0-aaf6-812b2e7f18c2": {"doc_ids": ["a84215e5-c9cc-43b8-a1c2-617a59aa35ac", "69222f1d-a8bf-45eb-bd90-448ede12b0db"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/systems_set_up/"}}, "450392e8-3be5-46b5-878b-acaae44a33cb": {"doc_ids": ["dc58742e-6237-4a06-ab34-f8694a76f6d0"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/checklist/"}}, "55900417-1001-4f91-a88d-a3b59c7beb56": {"doc_ids": ["b4e15cd8-6566-4705-b0b2-cc656777a66c"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/buddy_system/"}}, "3bdd822d-8d17-490b-8945-8cb3fc25e078": {"doc_ids": ["8d1f0547-7a86-4547-80d0-4749c7cd3e2d"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/society_of_research_software_engineering/"}}, "15973cde-a6c5-42d5-b091-b5fef2ab54be": {"doc_ids": ["eb1611e0-048f-4d40-8759-18ea8bb446ee"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/communications/"}}, "c74a421a-2a64-4026-89a4-8e28cccb5930": {"doc_ids": ["98b1e8d2-1971-4141-be92-0609195c2280"], "extra_info": {"filename": "https://alan-turing-institute.github.io/REG-handbook/docs/communications/twitter/"}}}} +{"docstore/metadata": {"93c225056acbb5484fe7994c647f755f93adf958": {"doc_hash": "3c54bc1d6adeaab54c862a519162f5440745eac80d5b173b7a94af009c0608f5"}, "cf380f2bc01891cffe4e2b991e3427cc023b8c89": {"doc_hash": "bebd1c752fd41aa8772dc023f9078ff18dc43fd399c23b36758903ffd1d93c4c"}, "fd1b5253d191ca0839c393826ddf12f23b54dd1d": {"doc_hash": "84db9233a2e66d92c4e6692b8bce6bc9243fc70c49d3cc49ce077b7d92a6863c"}, "f841571dd12d2ae66ee9a9e7a07f95e82355010a": {"doc_hash": "9f200d8e648bd3805262a92b70c17097b2ad6ed7a32a8f185f17f62617fa80cd"}, "a394749d72c4f3795a384330295b06c9846db26c": {"doc_hash": "3b780a0453babd4dba909081d7115e7f723df6c63448ede5ea48c6c5072775b0"}, "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d": {"doc_hash": "9cde67cdbd198dc11182f0acdd1fd8a07a500c740b5fd4e46ff594572e52163a"}, "a296d4feb5a490599d60d8bed68961c31624c8fb": {"doc_hash": "0880a5253ece62db93097a96950cbadede94d5b79e870fcc7fdbd1d787960b65"}, "9e31d5beddf2be8d558ea581d08d793a8dd542a9": {"doc_hash": "15276ab2ebb81efce3460866de6c086a813b808fa40dccbaa7145d57a00259e3"}, "54ee33ee0e3a07ea15165101dcbc06495eced766": {"doc_hash": "11fb9417db52b3e76bd93df7d52f61aec7f5ae3d9674b0e4d898bb59c5625d61"}, "3ad4a616007ca5441cfcd229f6688e3d939bc374": {"doc_hash": "7fdce3c8f4350ee1dca51660676d6144c25af306985d203f0d653d00b7a46323"}, "3716e2551f49aa2261c6160f8a03d7939eed0a76": {"doc_hash": "965836b40dce8d4c6e5f70f6b46ded76e720ef3cf287e802f39503455d2063c7"}, "e347caf2f22c1a7dc2e89205dd05653f1fdceef8": {"doc_hash": "e8f8404bef0b45f0180c3167a22a5a73a2825d299c339c88bda7424bee1698a2"}, "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae": {"doc_hash": "c969046daeae1b4d7ed1ecb5132baba10ed90f952d1d0301a651cefbf1f4e2e0"}, "53f966366a793fd602bd41df877eb4dff3ffce6a": {"doc_hash": "b8da954bc51018d35f98c4256c2940b4aa89b10081ca56d7af0c6f5fffbaa686"}, "7400df9edd9c4071fcbab15b4862891105a2e1bd": {"doc_hash": "7e7e678ec393e56f637fb49919db980f27aa94f5bd88b00aec3fcb66c71a0371"}, "63768c9127a41b6c46ab497d2341cfbcde106d65": {"doc_hash": "a720175548113be9c9d4f49eb51f3c675cedb847cb2e8491c9e77afceb91f0d8"}, "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d": {"doc_hash": "e3f8822b8dae8cfbb35d7df9be8b327cc85fdd8b9ba7d9b80c5f0f2c8c1cdfa5"}, "355608b3e4baabc116162490b302ac19818f0c72": {"doc_hash": "e37b231396950826b365c3d13dabf9d8bfb1b392863a1e81ea0d59ea12e2a045"}, "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34": {"doc_hash": "236a182283f6d593c2def574ae32904422725915e92a250444b290ac4fe77165"}, "aac8d6e30090f116e25aadfb09076acb7c3a5346": {"doc_hash": "07587a402538d64924ecc1b11fd07da62a6713ac489bc76a60f03654226c844a"}, "f7c1d6d16f4411a8515fce7ca22798085eb99e00": {"doc_hash": "4c1c990d65dd5aa3844216624b8cacef2ffb3b4845fa2b4c10d703b4b09e6a75"}, "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9": {"doc_hash": "d9e91d23f041b8b3ae1490d07ced447c832cd5ce38bc256652fa3d569cc01cac"}, "eb7da3de122c27799f16e0b9f68e9ac6fcefc043": {"doc_hash": "69fbce679c06458a35878f2a3b419446736fb8d8b7a28fd4de33774a0128c23f"}, "3fb6caa127af57616062f5efa38208b722a42221": {"doc_hash": "d80bc6673ff8036aa8730455e39d165bf36cc119d1d95ff5838b0b6ef9992f1f"}, "710a44b3fd231bdb2ce3cf1f5884505969def43e": {"doc_hash": "b1237e4ef70620ea2316e75bfc29e4e440c34d8a7ae842f7d792b0d413b50402"}, "988753b83c1f32468cb2f580dec2e0ea17c5adcd": {"doc_hash": "bd1ac70e476b79c89eeb881517011ffeba421072338b66db983ed258199e9029"}, "b1b12c59add5cecfb80d084f57cd6141ba4daa45": {"doc_hash": "35acbafb23598890b3bc991d858ed14e28442bd4f664c33e2f0c9abd3ef4fb07"}, "c5690b32682b3b73911668d58fead0852a6cf8d6": {"doc_hash": "21920f0cf8e9fd55e8ed20eb09e4a69e069548ce451b0793195c901e3922e59d"}, "a719156971fa8ebb242749926fbf38be72a44d13": {"doc_hash": "ff3b5b96521554666dea80f65a5eb9f74322dd1cd9d93f19d1da8847bf08da2c"}, "334a4c021df569ebc7001eeac252ffa542373d53": {"doc_hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900"}, "8da5941d9e553fec1734e42037111a37668471e4": {"doc_hash": "77c87947a74280ecae4e0af0bb9d29567f10057c0407b4729b48df3572204ba0"}, "3eb1917b4ebf3c304d06bf25d131ead26c9856bb": {"doc_hash": "dcd7c76f633d17ec3fbae2ab77dac71679ce12d56af6326da3fd3de2e78e99aa"}, "eea6eb21a653228f12ee4e03bc10e04179d63ea5": {"doc_hash": "02b71d07a87bab02be22e3fc1ee99e330f02f1d7f1ea30af07e3aa1c0e3f5116"}, "3452b76140b3029de5af4930db29caa5e943513d": {"doc_hash": "0f8587da24ec5340e668b26212876769ac035d237a8d4cd2a03ee1ff7620bb13"}, "6efba9701175d0c3c1d62dd01694f3ca71d984d9": {"doc_hash": "ecb3e19c8240dccf49f21c61c93b2b839dc634beef23d9d32c758e489472beb7"}, "9800b627994c5343abeec748c5811347d67f934a": {"doc_hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b"}, "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6": {"doc_hash": "4676d4342348d41fa33343a45a9009cd0fc1bd9d77deb1bb866a5dd8febcd842"}, "3572fbb8f0bfccfb953996dc8599e300641c5280": {"doc_hash": "3e4b4034100af16cde8ca1c6f891111f7db3d54338aa267f0c04ab9441132fa0"}, "3db69996a4f564759314b78f68e574789fa6e81f": {"doc_hash": "34e811683154c6dd3946d6f3dd94d7ff9833292403543cdf00e1aa96e641958f"}, "246a8e452680dcd30e6b1492db1ece74b14b8843": {"doc_hash": "13315e94b9c5e3979e48d153d40a8b384948da67eaaf085281e803575d3a60e3"}, "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609": {"doc_hash": "545c258677951d8648e2fddfffe08afefaa32c1e047a55804b3f0a65fc54abca"}, "2eb3fa13f1a8f4a51bb717fb851b558b1c945567": {"doc_hash": "424e48b3a601a0a49b790ae6ace0531af753cdf3b2547f895c562fdc8b99a750"}, "40e5ef8b88305799557e778421610c28154b50cb": {"doc_hash": "64b12ac914d193cdb160797095de17ed92dc79aeccd5aa7e24e39bd7d4941bee"}, "f9f40be4347c262e85e6a9312f4253889db82a4b": {"doc_hash": "c35d4921574091fd7cb26841365c7aad1b4f67e86ba145e97e5a42f64e76a187"}, "b00d7c4c21f6e6a325f524411155361fe4ffe408": {"doc_hash": "4e861a1c991b1eb12ae3a052e865975f6c05c51e4fd4c3dd6f729fdd58b69d75"}, "3ce2d5776d7d6d036e7c745b3343f6720d64905c": {"doc_hash": "49494fa24b5705e745ec0629640452b92b8102073e7de6f0f955ff4bff323bbf"}, "d7f37bb57151052794a69aeb894cc8dd8fe54541": {"doc_hash": "e7027ca907e40b82ffeb8883cce20fbeb31822f2727aa64c6a3341ffb5fc34af"}, "a15c80d71605c1b52b365259257c75172230e2b3": {"doc_hash": "a635d575e98d106ea317730373e98cd2f5d5b2b9c5abdcfab0f4347d50bf9c91"}, "83a937e7909e283792af66260c897d102991d7b9": {"doc_hash": "4509ca6c53d3a37eb5fab94e907e322f73507a4e10ae652aeda84b45f2b1e4ec"}, "a40d10bf89b5a47ee2ebb0eaeeb3ad970d275a3c": {"doc_hash": "41714ec498bee8c266a8f895d8d0ff2fe076f9a96dd40d6542e549f4598bc59d"}, "386340d84f9bce8c984e5f9d344c16803f180779": {"doc_hash": "7811f6dae0d3210747f778d5e656212e84d13c79fc78d9d6b67ccfdd494ea0a6"}, "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a": {"doc_hash": "68330eb2e10e4bbe7a032c73b9949ecc876a181e7fa48b0b305a2239f211e9df"}, "c4771fb05fdcbcee999cbfb17856c814cbfa41f4": {"doc_hash": "6f81ddc9ff7e5e2ba00567bebd25149eebbf554be07f9b1cd65c3b36ceaf8f1d"}, "dbdb7680a1e21622af2403e7a3739e148903b38a": {"doc_hash": "d4974a7a66f54f85d5442d9db88b540b01c2a507cebf1b3954c7707be71d7176"}, "84273d25a134f3eb42173957fb52d64eb533bc2d": {"doc_hash": "fd49d351b350c20d59e414034cac6a9f1be01955e0d62267318bcea4b93cdd25"}, "75cf5ad8-bf0e-4b67-b3dd-ed3272881b09": {"doc_hash": "67eab2a5b334e9df23218e655a58a4ee50ad57cfc14235b114b10f93ec0463cb", "ref_doc_id": "93c225056acbb5484fe7994c647f755f93adf958"}, "d0a13454-b117-45a1-a7f3-c088eaae7dce": {"doc_hash": "0f953f05f7218937b71b8abe7a894c69268f12f5e5512efe37dc925646f7c759", "ref_doc_id": "cf380f2bc01891cffe4e2b991e3427cc023b8c89"}, "3c7bf40c-c5e4-40db-80b2-dbb4e0f11289": {"doc_hash": "083503cdb164269c7d3e349f22d7bfb1f334cfa2221f9e11231de29a1d75415f", "ref_doc_id": "fd1b5253d191ca0839c393826ddf12f23b54dd1d"}, "672cbc89-3888-483a-a14c-7e3ed578d4b4": {"doc_hash": "ab4751cc225fff33981699a82f6d0126f1fbfdf6fbd8b9d7343f001b2190b367", "ref_doc_id": "f841571dd12d2ae66ee9a9e7a07f95e82355010a"}, "e11b64d8-ec6b-4956-8a57-ad499b1eb9b7": {"doc_hash": "a33472e7763a35da08dadb2265ba34d521afef11c144d3fc639cfabba4ca78bd", "ref_doc_id": "a394749d72c4f3795a384330295b06c9846db26c"}, "721230de-13e8-4aa4-be8f-e6bfc5b79200": {"doc_hash": "9f93032d71d0e43fb439fee15c35607cbba50ef6f7d18b8711c09f8167990733", "ref_doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d"}, "91d01686-e2e1-4e30-8f24-54bc362bfde6": {"doc_hash": "28147e490299ba5ad9f9336c35401a1459e46cc81a815c6623d95a36d1d0f2bb", "ref_doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d"}, "72f60be5-209a-4251-9961-999d7847be69": {"doc_hash": "df27f892d609b2aece963720792ea5c3756a0a667df5b7027dd7aa263d6c01cb", "ref_doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d"}, "b22dd272-77eb-482f-b515-14e76a55a8b7": {"doc_hash": "052823287b8ef7c64127674bfc14c951b25d905dc79cccc062138213a58aa79c", "ref_doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d"}, "c8d40a5f-08f1-49b4-aec3-74fe69681315": {"doc_hash": "5c0e542b4b2b12547e79393fc5e6eb88789e1d07ed31dbddede76aa0eab98ea4", "ref_doc_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d"}, "f5f01aab-661a-4766-9639-edcb7719160c": {"doc_hash": "78b2c61181dc6a809a49b0c839f62906f9e4c28bdfec42ee64a5567b26e9b026", "ref_doc_id": "a296d4feb5a490599d60d8bed68961c31624c8fb"}, "052be6ea-fc41-49cb-a5fe-5309172d18fc": {"doc_hash": "894757641bc620093b187c2ca8f64cddec36f76e31486fe978206421b1e4e6b2", "ref_doc_id": "a296d4feb5a490599d60d8bed68961c31624c8fb"}, "b6b0ec4b-ec86-4351-b63f-6bd042d13ec2": {"doc_hash": "9eced43b99387b93c461285435a2cf6c97ec04d84a2332eb80cf69bcfbe4fd62", "ref_doc_id": "9e31d5beddf2be8d558ea581d08d793a8dd542a9"}, "4855e3ee-b3fc-46fc-a437-576b42bb2b5e": {"doc_hash": "d57a44f9f94a9721de18c8caec3d756720b201017a91d0638215783fe7785f4f", "ref_doc_id": "54ee33ee0e3a07ea15165101dcbc06495eced766"}, "f020b5d1-5ac0-4c4d-83f6-ab67bc6dfb48": {"doc_hash": "403960fd06a08f7efe327495e7b9dd145838df6bed2c456d751383bf9455f24b", "ref_doc_id": "54ee33ee0e3a07ea15165101dcbc06495eced766"}, "c27977c8-8d38-420a-ae8a-cd48bd5d0f77": {"doc_hash": "5cb7c22206bb15ba2759a7031d2b64281fa14b03b4af75670088139fa6f3b3bf", "ref_doc_id": "54ee33ee0e3a07ea15165101dcbc06495eced766"}, "2a44316f-12b9-4af9-9413-39ce6f9a126d": {"doc_hash": "6f35bed99dfef2e04b4b33b396fe7e55505abb04423665ca825ae76c17db574e", "ref_doc_id": "54ee33ee0e3a07ea15165101dcbc06495eced766"}, "cd8d3ab6-1259-40a0-a44b-7f679fee56d4": {"doc_hash": "4682b14684e265293dd055c18266716591a1aca15a92db8dc48599d98d4a156d", "ref_doc_id": "3ad4a616007ca5441cfcd229f6688e3d939bc374"}, "f215f5cf-5057-4b73-a09c-a6ef0b073beb": {"doc_hash": "3a9c5d23f45086b93563115ac7b2a2c536093178d645d87d74aba7007df7ec87", "ref_doc_id": "3ad4a616007ca5441cfcd229f6688e3d939bc374"}, "b5bdd873-3d71-45d3-b88d-06193ffb2cd0": {"doc_hash": "c0119d7ec98f067f1a61e4ea09916c61e6a14fdd907eb93ce2e614b7e4f4dd84", "ref_doc_id": "3716e2551f49aa2261c6160f8a03d7939eed0a76"}, "ff919679-c51e-4f38-bf87-f5cabb8b85bb": {"doc_hash": "01a3713eef5d4cf0382afe3aac36d49a2ab39540fa93f5b39726bb596b6488c0", "ref_doc_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8"}, "f32ce356-37da-4a43-a12d-8bf950636c30": {"doc_hash": "b322d7938ad8b025fdebe0e584f2ab13ea53c6d10a80fd0a7ebe41d631217214", "ref_doc_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8"}, "176c89b9-abf7-4e55-bb1c-7af2ccf0f82b": {"doc_hash": "f2001c797b86ef105e1bfe5854cfd90364a4e49fce6ff8b1ed78ae362ff6178f", "ref_doc_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8"}, "e3729547-1eca-467b-9bb0-fe1804f9a874": {"doc_hash": "56fd089cad12727b641148e36dc21df6f09838f01978b279cc24038a32b4bf8d", "ref_doc_id": "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae"}, "b33cd473-ff1c-4fd5-9e29-3957daf45389": {"doc_hash": "84103e5686be6dd4e240cd66858450915205350c19167a52fd8ad4d1f14b2d03", "ref_doc_id": "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae"}, "142c2d96-ae16-4cf2-9256-dd7251e34c94": {"doc_hash": "a4810f8bb047d4e5a33395165a51c65b22bc6f5fe594ccedf366895188da2168", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "4acae13b-0545-456d-b97b-aa278ff7ef96": {"doc_hash": "05031554728597e2f2ba4f6b3bd1883a2de4408c996d0a3fdec500f9566bf52f", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "5ae511d6-d49d-4ddd-80eb-25edd5a56437": {"doc_hash": "28003bb3c26efedc1059b636d25a6fca48d8e0538a01d6b9575db064eb19a06c", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "99d4167f-919f-4a15-bc13-70656440d6a8": {"doc_hash": "d1527add5fedd5f4dcde90e39eeec7f2907ea7b5e73300027cb560ac73daa31d", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "c9459fc0-9e0f-456d-8450-323acb47ce30": {"doc_hash": "4c5db75f43a0cff26d1754d7f9a2ff98138b10e7cc663e3d4198766958ebab42", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "eabb7bb4-3083-4b5f-9f00-68211f7e32b9": {"doc_hash": "fd0e55428b88e90e237b8bec80cd1c046d59c6e2f7b6a3ca74363782110a86cf", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "9a202e7f-1c69-4845-aca0-5fd6aa403053": {"doc_hash": "5adfc814eb9cbd84af820ef44f151e10bcabb2e192fd40b4402e26d12e6d30e8", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "53c234b1-1bef-41e7-8d0f-81e4a2e21a09": {"doc_hash": "fa6d0669ad821c723e87d898bd17289214fb6106c296a31dae90f60bec154736", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "5e4128d2-0246-49c5-97ae-50b5363f547d": {"doc_hash": "c7147410efc4ebc322e08d881a62a303867f4255ef64e986446b4111c50e97aa", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "2b3d28a7-49c8-4f38-92b2-5e2f22c35763": {"doc_hash": "705c59c78a6c695f34a873ba19812bb00de4fec43d8605cc29cc972ea6294640", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "d08eb6d7-705b-4369-ab85-17f47f9090b5": {"doc_hash": "af0462c6d86ee054814eaea2efa5247c6e173b1da11a60cc18edeae578a164ef", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "ed3797f6-6391-46b7-8c12-723d805edd3f": {"doc_hash": "ccd916173f67f8757c770671df3c661d3f10ac146fe85a6d62bf36f8528b3030", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "4c2e522d-d8b6-4793-ba0f-38d61ef86ec4": {"doc_hash": "e33b8a39eec552adec89f90d27b2a400f3b7bff506f92e724e4b1378f570d0d5", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "2ece4974-14ce-450b-be09-73076b3913e2": {"doc_hash": "be160b3071dfeffe7b4f8295574e6968e11b4214f880900340d96389d7b746e5", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "a1aee0ee-beab-4caf-b3f6-a6c22e8e9e0f": {"doc_hash": "a5fa1855b7e4be5dd3ac977709c5d51417ea379b40846dcdb71f5b6a31b6a572", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "77848f07-e6f1-4e28-b5e8-2a1e6f01a8a2": {"doc_hash": "abfa4263dc7162f86267a4e3633c00ca4c1b814048a159830d96cb1317e3d82c", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "52f57058-d56a-4d99-b021-e100acbf7d99": {"doc_hash": "892f34208a4d67b03a1fe0d9a27fd8330b605ce6624c46cf25dfef25c1570d16", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "ec0b6f9e-fa47-4006-942f-74d62306946c": {"doc_hash": "c19d42333889b13fda52555ea351d80dad649d0b4e6d0b459ad6bceaccad9ba8", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "2f45fac7-da65-4dbc-975c-4c0385a61c5a": {"doc_hash": "4cd0efc94db6213e42ac5c2611bfdc9204c640e6d8059bc1b7193901d5156439", "ref_doc_id": "53f966366a793fd602bd41df877eb4dff3ffce6a"}, "3feceeca-3eb9-43ae-95e8-61c9cf5c6d57": {"doc_hash": "a95ec290147c6ec1fc2a712dcdef1322cacd06793dd46bcc032a3800625194e8", "ref_doc_id": "7400df9edd9c4071fcbab15b4862891105a2e1bd"}, "84900df3-9ac3-4d8b-a692-cfb617fe1e84": {"doc_hash": "6f766a2c248885be0534c386660b0def4fe96a7a14ca1578d166af5daa139aaf", "ref_doc_id": "63768c9127a41b6c46ab497d2341cfbcde106d65"}, "3603f85b-d8fd-4081-8258-ca892ef85005": {"doc_hash": "9b3d243e26711749e21772d284c0c3e5a950eecc888c23b49c868ded999761cb", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "60b8c530-ba1a-41bc-9d6b-3991791bc2b6": {"doc_hash": "800580b30fce1e45af922764d400184f6a0f72427e4841f3f73c43c9a72ce4e2", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "22d5c08c-b3b9-4ae9-86cd-af3e8edb4af1": {"doc_hash": "54a10956a8e3cece788f982c54a10b5aa7ac58e2a39a0a9c6ed257d1a1ad4f8a", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "7e725ce8-52cb-49c5-8e0a-bd6d4c21728d": {"doc_hash": "9380da57be54877302272a517321fb3f13fa6784c40764d209ffb66f46d443fb", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "5e5445b6-8ec1-4ab0-ace9-d2f41365a640": {"doc_hash": "5018807062a23afb42251134f429a132d4ca438777806868252f7523d84f4ca6", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "06acc6e2-25e8-4bf3-9fae-e254fa4a09da": {"doc_hash": "36662840003334fa4f91c129deab3a495d4add6e4bddfd9442818bca0dd1616d", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "35af2b14-e6e5-48fd-9926-2ad98a0ee79a": {"doc_hash": "30a1a47d3a79525f96ebda7fcacbc31b54747cd78e200bca323685526b9a618c", "ref_doc_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d"}, "2dbabf73-3621-4277-810f-def259b60568": {"doc_hash": "59b3efec2cbc3ae401b0799f1761cf98a54d8ef0ed5e159bbda0e9438a2c94d9", "ref_doc_id": "355608b3e4baabc116162490b302ac19818f0c72"}, "308301a6-2983-480c-b771-15de12d77e0f": {"doc_hash": "ca94bf7a976316fdcb7f13c8b4f17a2720ae635bd4e3b7adc86e2bd26578c961", "ref_doc_id": "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34"}, "9f03394b-9689-4c1e-a008-2f40d8c0ee0e": {"doc_hash": "ca452a8170dbe968a3ed3bf70dbc01d126a3d5d3b245f14e559dce0e23b54df0", "ref_doc_id": "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34"}, "fce3078e-c270-459f-a637-5009e3c264e1": {"doc_hash": "3be40d49596f7ea1409f610c1038314f3e4274d066ae54c5a539fb0ea413b28c", "ref_doc_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346"}, "0efe9dfa-f503-40c3-b065-20103e991baf": {"doc_hash": "06102c82d426d9ae8c7c0d2a6e6fe0a8743488f62065766446af95eda4abfae8", "ref_doc_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346"}, "02041b0f-2b6e-4ef5-9bff-b504d45e83c7": {"doc_hash": "69686746401d2e77872feefa4ab744b1bf00791ed1139495ea18aae008b484fa", "ref_doc_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346"}, "2d448858-f9d3-4100-99b4-5f915b545d92": {"doc_hash": "2ba3dd041b5328f157d2260825490959fd80bfd18658d9ee22a434384f05a5f6", "ref_doc_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00"}, "83517c70-7306-4404-b05e-67fb691d01a8": {"doc_hash": "76bf0987317afb8b778a68b6a8ca8619778b35ea3fc5d09ee631e11aaae01f68", "ref_doc_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00"}, "fe552232-5b34-4657-b842-1fd039e24eb2": {"doc_hash": "c8f10790cdb11155104a23d7220137830e558da034107706b2873f5a72402806", "ref_doc_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00"}, "60f9d284-345d-448e-b593-0fbe326aa09a": {"doc_hash": "53bbe35fdd1eec75d5418dacac313bdd17cca804f13f803409110d6e6ee6c42d", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "80badcbb-374e-4a2f-82e0-22acbf1ee2a8": {"doc_hash": "d8210cd43019d2129094b75215b5923e1b37188e19b950eb099039f5cbb2f707", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "b0ac2673-089e-43a9-b004-cb55670d5613": {"doc_hash": "e32c2aab3e8456ec5fc61b1e77283c1a1d8d15f9faf6833f697c1909838eba65", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "ff718593-9a32-4079-8566-b2eeccec373d": {"doc_hash": "af8339fa611d042853ba1305ac79a04e67f974b7ac4ff1b2084bbb1ba59e28e0", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "a0611aa2-9601-457a-9a45-7ebdea9de014": {"doc_hash": "31c6f5f19bd3abf4e272c89f40851007694f31c3fa9210dcfed4c481a25335ba", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "f0d8f067-0996-400a-9679-3f8393fc11ff": {"doc_hash": "9a3961710819b9613727cca6ec0f847be0c6e4b37e863d76e6ce135d655541b4", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "ddf0d0fa-a27a-4231-966b-2d71c5f40d99": {"doc_hash": "29dcd3c614c4dfa50927ab626072f280e72a15408fc89ba7d9aa9844575b15db", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "5aadd0c8-686f-46f2-8311-14f79994b627": {"doc_hash": "45102d5c69291f39e5a34fc304f68b5e4628a9b0f0d3daecdffd8b0bdfeb5f7f", "ref_doc_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9"}, "f7f09540-e847-4d0c-a813-b6e580bedcb4": {"doc_hash": "6abd43e847829f4b07f2a44feea1b2eba3c56b917f7f73c919d0a8ca268290ad", "ref_doc_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043"}, "fc8c1d05-99cf-471d-a569-8b4398a28a04": {"doc_hash": "c316c2693e3a61a15d4492754f48936fe67027d35f654151714f4df18b3f81bc", "ref_doc_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043"}, "a5af40e6-1d06-41d6-9640-9b0b047b263a": {"doc_hash": "e6c0bd646195b2ca1d6a13ef665ac3855f8e09c712ade8d692731020f15870e7", "ref_doc_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043"}, "8a8133a4-4245-4942-8cb0-db3cb28c44f9": {"doc_hash": "939ece0c34d0ca2939a3b21fa25c87b6fe227c8ebabd4dd7968ec0e46a4d1e06", "ref_doc_id": "3fb6caa127af57616062f5efa38208b722a42221"}, "2b17d74a-862c-435b-a4fe-b602778b2680": {"doc_hash": "444cd988535c847efad2b995cad985971baf51f0801dae0b62087ef68a7e8764", "ref_doc_id": "710a44b3fd231bdb2ce3cf1f5884505969def43e"}, "d27c338e-31f3-4279-a7e5-01daae284dbc": {"doc_hash": "ba0daebf91d7451418927881c3f4ae8dec2d41da2a5844bc0fc5232671a301eb", "ref_doc_id": "988753b83c1f32468cb2f580dec2e0ea17c5adcd"}, "baacf820-88ef-4e27-ab64-5a55a04f1e5f": {"doc_hash": "fb2a97feab105dfae0380b4ed39da54f6a7069a9e23cfb83e786bc39e5bd01ce", "ref_doc_id": "988753b83c1f32468cb2f580dec2e0ea17c5adcd"}, "14a40177-16bb-46f1-96fd-b86f287158c0": {"doc_hash": "81d95fcdb28fc350db3137a0c5bd6deeb13ef4c6684bd4292d6de0ef5ea1ebd1", "ref_doc_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45"}, "fb1a7658-c476-4a44-b85d-212669923fd8": {"doc_hash": "aac2b5034914cbbdcc666a325f85a6178206f413cab241859beb9b5bad941d4b", "ref_doc_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45"}, "94bd70b1-fb83-4c4e-ab35-b1a16a0234b7": {"doc_hash": "97f0108a18ba0a7fd4a8731e9d978e1f2acf52213853f7b6379df155527fa5df", "ref_doc_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45"}, "b86b8e65-d3fc-4e3b-afe2-48afa23b7a68": {"doc_hash": "71977cb4acb4066807084d18dd6adcf243b44389d61ccf3f48039ecf9bf09b18", "ref_doc_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45"}, "a25ada4b-5845-43aa-9c0c-cfd763e4a100": {"doc_hash": "107bb79bf20be17094a020cf41405579a8de684cb540dca0bbde47886d254bc6", "ref_doc_id": "c5690b32682b3b73911668d58fead0852a6cf8d6"}, "fef485ab-1d16-4402-9c80-2d89b39599c8": {"doc_hash": "871c1f6b0585f805f04baad75a1e9748a398b9031b36e6b5573694c3178d956a", "ref_doc_id": "c5690b32682b3b73911668d58fead0852a6cf8d6"}, "25c15c1c-6042-434d-81ab-116505771d66": {"doc_hash": "6776c9a48b0a2feffb906b5d9c9d03e580be4811baff73cf45e325f9745f81db", "ref_doc_id": "a719156971fa8ebb242749926fbf38be72a44d13"}, "0009b835-6867-4034-a974-e0495b55ed3e": {"doc_hash": "691769da4f52a73ecfe040c5b7f1dc872f7df267c4f0b76467a63d5ebaa22640", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "b2588806-3af9-4149-a5a3-95083eb352c0": {"doc_hash": "529cdb249f6d69ea56a2a437945d5703bcbd66d55240a64c159519e626c2bb92", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "16330a08-ad08-496f-a14e-a56c8d8495eb": {"doc_hash": "b3d5e8c12879ebcf707bcf3b0976814f53cf79c7acc06b94bdb99203d52b4f75", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "d2150194-dd47-4b24-90d6-24a9ec1930e2": {"doc_hash": "317d7fd3d293f42ee9660f6db00005d9b1bf2b61fe52db3364a32f05dc3d1453", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "2e92bb78-357e-455b-ab5c-e1e12e4b2da4": {"doc_hash": "4470c35c7c66c550e06aaa20d17896b0c59517e7f1c36c9dd2d24e60ddd5fc0e", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "bc877115-e3e0-4648-bef9-5e10d81a353d": {"doc_hash": "40ee36de8a860439791a764bd78ec4c4b73a5f159013213c6dda409c632418ae", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "939e982a-94d2-49b3-b029-926d0ad796e3": {"doc_hash": "a65543ec490d355a2d8c5f70b787d19827f299378f3615127071344f87cbd737", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "655b725c-a52f-4e96-93c4-361714c23830": {"doc_hash": "b7fe511968fee4bf03eb1f24c59cc8593036cb5f3e7531fe90819f3dbcb9721e", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "9263bd46-63d4-4010-9ef1-ebeb7c96e88f": {"doc_hash": "d2b89aae551c1edbbee3e3a80619c97fd7911beb5c38117dfc738a252366ea46", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "5d83bd6f-d55e-4a3d-b92a-95d2730cec7e": {"doc_hash": "d079d79bc73a60da75152728c79f9bfa0bf24dc9168d518dfb62057688c0416c", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "214b63dc-17e6-4093-9efe-b50dac8331a0": {"doc_hash": "b64ddc0259b3a7279dc154f598b9e4379071a28ffaed531d75b4d094b95d1bc4", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "d04e9b9a-1e28-42c4-ac2a-e59e84cf019b": {"doc_hash": "2402221722e5467380571b520d084f96e19459f0b3508c3bd2f0792871053a34", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "f4a27cf4-d22f-47b2-bd5e-7cfd3cf286e4": {"doc_hash": "b9c4835a8b10cbb48e3133fb27b2363a6fefe49d1012a69c9c403f7a67139dde", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "4139f092-9cd1-46db-ba5a-5a5759ae4bb1": {"doc_hash": "618473b8aefa0a020e66408ec70d4f19b9b8143a1f1de7762301b2ac5c6a19ce", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "2c693769-1efc-4102-8d1e-253fcede566b": {"doc_hash": "7bbfd649e7ed062217b812ab04ce9ed86561b64963028e4429768c7e0eed4658", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "202a5ff9-6f89-4301-a80f-0577d6989b87": {"doc_hash": "9e94ae1685c0e4dee1a3be902b2db43c34f0073ea3967872ef5ccb77af90bd24", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "2977a99a-b5bc-4548-8003-77766a64b591": {"doc_hash": "7c93e6b9a52d97e1a6e4311a2c634963c7a484c3af2466cfbf4d8ff603406585", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "9950c23a-f73d-423f-b120-fc886fdc8843": {"doc_hash": "1b431b2bea99743865edb2f6fad4fe5f9e8f9e673089272ae2f416319d0652c8", "ref_doc_id": "334a4c021df569ebc7001eeac252ffa542373d53"}, "35db1781-d829-46cd-b2df-e30df000dc0d": {"doc_hash": "cbcc00d259164fa5fc3f15cb97a1dcc5a59776921eb267b3c50a644c7f272cd4", "ref_doc_id": "8da5941d9e553fec1734e42037111a37668471e4"}, "9ef54c37-488c-41f4-b826-cf988eb9e138": {"doc_hash": "b65ae1c1b1dad25491334288dee6a8917ec65e1ca3b80602072e86168c8305e7", "ref_doc_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb"}, "584f6865-e808-41c0-8032-05e75d746feb": {"doc_hash": "ab39b77b4f6a8b6e643d8df6c4eff7993ef85dc76ecf3f3ab55cdc10e04981e8", "ref_doc_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb"}, "36f72676-0d86-4d9b-b3c5-18d5cbe0ad06": {"doc_hash": "89e1e4eb93715d86412f09125ffdad615a6aa88852e5934b0c97034ee2c77833", "ref_doc_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb"}, "1fdb1412-26d8-4077-955c-b338014f395c": {"doc_hash": "1112c4547f649fe6ee11750f83761e34f4fd7317288295fe189ff75bd260d16e", "ref_doc_id": "eea6eb21a653228f12ee4e03bc10e04179d63ea5"}, "139ccd73-c4b8-4a69-9349-3584a45b27f6": {"doc_hash": "dd66e9696ce420cafa014844df1ce0e0325c8e1e8b15c0282bfab4f430b1e6bd", "ref_doc_id": "3452b76140b3029de5af4930db29caa5e943513d"}, "478492af-909f-4927-afa3-a22f69624c18": {"doc_hash": "a283bf87393d12159f032ee419cb0ed62d7b1a2dfd27f9c402146e1696f21ed2", "ref_doc_id": "3452b76140b3029de5af4930db29caa5e943513d"}, "80a01e0f-9042-4493-92d6-a07003cd87a9": {"doc_hash": "ea2b1417058d5548b4f93f5097d323770c6850466dab86c34935ad83705e0982", "ref_doc_id": "3452b76140b3029de5af4930db29caa5e943513d"}, "95e4556b-baf0-40be-a66b-4d2b0eebafb3": {"doc_hash": "61bc50ac7a7636340f5217aed8148ee46a477420ce9dfd336ae2f16d3dbaa259", "ref_doc_id": "3452b76140b3029de5af4930db29caa5e943513d"}, "32f9cd78-e1aa-43d6-ad05-0c482996ffb4": {"doc_hash": "35a5870fa1aaa7db0685f187258de2d502617614466917984f2722c5cb580b83", "ref_doc_id": "3452b76140b3029de5af4930db29caa5e943513d"}, "b0534a2e-7f2a-493d-895f-0ba89a3d940b": {"doc_hash": "e1ec8e39197ae227a6d18c9a6d663f8b07c56e0da4624e81c2bb41dccd23bc50", "ref_doc_id": "3452b76140b3029de5af4930db29caa5e943513d"}, "a84349e5-52b8-4073-9487-497ca07f95ee": {"doc_hash": "453574eddfd8dcc973ca13a9d1212dff65d8cfdd61632b6d7d0cb38da8258fe6", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "59036fe2-a102-4943-b9bf-17e525a18467": {"doc_hash": "a6d34c5587c39cf634ac19b560e4ab9126887d2de0766dfad0d099f51fb56aa5", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "f3d35cee-3ccb-41d8-ad38-ff273e598cb5": {"doc_hash": "0792dedad1e3c6ae85cabedee168def39fc44653b95f8a849ee25ac6e252b09a", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "b6473046-4e60-4cac-89fb-ccb09390f1ec": {"doc_hash": "4600a138913f86bd8fa02e6a0e1ff308c1644b3ff2a4a23a0542cec528f00bf8", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "3abae02f-f871-4edb-b3f1-81da237825da": {"doc_hash": "92ac498da55c13f7b309858e9c2ab813cf3b54423a0069822fcc32fec2812632", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "decbaa19-7313-463e-babe-625487666fb0": {"doc_hash": "dbae013adf47a37b2c327529f1a4e8e4669331bc2d2fe9c9a0770191c100bc18", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "e8cd1844-095b-484b-9dad-c95abf3c4373": {"doc_hash": "2e41989d2563ad4537dcda6674fdbf9d30767ec5d7b079bd6248e5f420b5a12a", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "470778ec-4e10-4cb1-9924-88d00b6c258c": {"doc_hash": "f27ad1b0f929363aeaec70e2757474adac797d89bdc31b99925ffcd797b0c036", "ref_doc_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9"}, "f6d6b5c8-11e1-49ba-9933-781cd71025df": {"doc_hash": "d2966c6eba17c4c453e8a49659de1bc9d5c8287030ab3fc48967f65a760bb90c", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "93ec1759-4667-466e-8bea-d4739b5b8f0b": {"doc_hash": "c68159702ea833cbb86f98b3e2710151832df3410abeb6b65df5cf5bbb89bb26", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "c1000392-16cf-421a-b25f-5c240de81979": {"doc_hash": "505bc68308cb31d3f5208696f52a6a4c6ac3656814ad3bc4f0482971eec00dbc", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "91a3f525-e557-44a9-8cff-fffa910a2207": {"doc_hash": "f85a4e04694be7c2ed3c24a7bd6cfbe1e3cadf3e9992d50d8f8fba2827c8961f", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "ea6366c9-d607-441d-b084-f601bb402466": {"doc_hash": "945c29bb90b6014f807ab1cb23de02738ef562e7705af948d2b2eedc0188e1ec", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "a45cd662-89ef-4e64-9475-caae4a08d1f7": {"doc_hash": "da65a1dc97073b8b86d943462f3d29f1925541633f7849b55744c2458c1dfc9e", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "65522fe5-fb80-43d0-8032-255f08e75db4": {"doc_hash": "65b3fe18d0a0300d47ec3c17270feb6a380708078f4a9bbac4163883ccca2fbe", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "201432b8-c6a7-4e53-9ae1-5e5e225aaca1": {"doc_hash": "fb3fa3646b9ee9a2e462190f6e9d303f2f4d574585abfb8005bbbd15b27ff52d", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "5c092d4a-1a6a-42fa-9c88-2c89a652a0c3": {"doc_hash": "6941fc08c36e72b055825dfdeb59dbea6d8affda95547debecbbaaf8d3422c2f", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "0670d79d-270b-40e6-8027-86d4c763781c": {"doc_hash": "3acdcaab956f524f9789f8f5590eb839c13883f666f14923d8b5aef81e041177", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "9339280a-09ea-42e5-b8f0-5ae819759d6f": {"doc_hash": "8de5876bec36c1cc4197147328ec828baa5797ed8ca4ee90aaeb6d843d4b15ec", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "6cb2c28c-4858-4f80-b7af-c763074c72db": {"doc_hash": "0be5e83486f5e23d3011ffa7e14b9a58c4fa39a87763412b5cf615786e42fc5e", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "8cb68461-551d-44b1-bd45-789feee27927": {"doc_hash": "80b7cc694e56706855d834988e08316e8938fd785ca58ca449a1e05607cdbb84", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "72157987-ccc4-4b00-b6a9-4206c1635c62": {"doc_hash": "08ee63889043e76a5d894a8eeb409154f3e58100abb2ca596da522cf5d021a1a", "ref_doc_id": "9800b627994c5343abeec748c5811347d67f934a"}, "d0309d4e-01b1-4bc1-94c9-af1c07a0a294": {"doc_hash": "4b8639d0085b4b63ab1984d76c6ea3995b43f647a9e5831751ac062c21acbcbd", "ref_doc_id": "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6"}, "05a15588-4b09-40af-8e2e-e3cfc444a25d": {"doc_hash": "b7a04d9a44dc3544052fe16c4c9d73fc4aa7518f8e3ef654bef674e8a8e05f46", "ref_doc_id": "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6"}, "af06e711-3177-4400-bb92-291df03e30dd": {"doc_hash": "b896f18b7b3ed02dc24542de6e13594acd8a3edc88b176b8c730e8e246209bb0", "ref_doc_id": "3572fbb8f0bfccfb953996dc8599e300641c5280"}, "b9b977cf-0c14-4e1e-bc45-e7620f4d37f2": {"doc_hash": "ec2e865673b631de2688c5a55f3452f7b9a6acde1f7c11dff7679694c1647d03", "ref_doc_id": "3db69996a4f564759314b78f68e574789fa6e81f"}, "a2d3b1f4-ad42-4e85-9984-240e9e1ad08d": {"doc_hash": "df5464bef0c933a73978c1c5f27106af8edf534c17d5976d4b0ad141c36722b5", "ref_doc_id": "246a8e452680dcd30e6b1492db1ece74b14b8843"}, "a130bafd-4da5-4b34-8ec6-a49e3f6f5d97": {"doc_hash": "8c06d8700975e9135d746a2c41de93e788f66d407f5b97b3428b5373223d0e4d", "ref_doc_id": "246a8e452680dcd30e6b1492db1ece74b14b8843"}, "4a91eaf3-2fa4-4374-a2aa-f9bc3cd25988": {"doc_hash": "58a11aadbdd3db742dc070f8a97c30cacf44b2aca70bbaeea08f202884357bb4", "ref_doc_id": "246a8e452680dcd30e6b1492db1ece74b14b8843"}, "8e3d6776-d318-4d99-bd67-b95466d95eb5": {"doc_hash": "cbff7b904c72ac0426e5a9aa8023d316ec2c51a37a13131e3d4ce3126f1ca378", "ref_doc_id": "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609"}, "13693d9f-add0-4831-b24e-18baf9b8be19": {"doc_hash": "ad11b606908db03ef6f0c081b9f630057cd281bfb8cac3565dfd3a6c68fb874b", "ref_doc_id": "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609"}, "70b4a312-c669-4439-89e1-6db8aaadb025": {"doc_hash": "11d583845807c1f97e11f320226c2668d507baba952af300e46fd9efd1d07b7a", "ref_doc_id": "2eb3fa13f1a8f4a51bb717fb851b558b1c945567"}, "50dccdcb-69c2-41fa-9490-9234095132f3": {"doc_hash": "703c8a3d53d8cabf7efac661bc038f5e26fcaab275d7bc9376a2e666c3f64b3e", "ref_doc_id": "40e5ef8b88305799557e778421610c28154b50cb"}, "56f95194-e0bf-4d86-bef9-c4112ef570db": {"doc_hash": "8e72de8dbe454e5a30cfa9881643bf6490996f3387dcd58e67094561c5fb4e65", "ref_doc_id": "f9f40be4347c262e85e6a9312f4253889db82a4b"}, "e8716438-9709-458f-84d4-b7d3fbde4130": {"doc_hash": "8d28e321b36c0b0e3f691c66e628b26255791e544206d637e3e861fc774786c0", "ref_doc_id": "b00d7c4c21f6e6a325f524411155361fe4ffe408"}, "5152f868-b29a-47d3-b9d8-b00239673c47": {"doc_hash": "ba6a2d212e8b81e27bed3ca5a6c92a03e2a833f9e376b07cc3239302ea3cacbd", "ref_doc_id": "3ce2d5776d7d6d036e7c745b3343f6720d64905c"}, "998a3b4c-d069-4bed-a7aa-9874021d7572": {"doc_hash": "336c1f48a45a3500620550fac6fba93eae68682ad015139fc374fc8508bbaf10", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "d692095e-53cf-4583-969f-34d0abcb3eb9": {"doc_hash": "1540f52d1d32dd2cfcc8a455e9f141739c2da129033355185306885762747133", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "5d95abb7-0902-4779-8d44-fedef73fd58d": {"doc_hash": "edbd5ae3b0c64459fad143dd546ecaa3dceb5a69ab71792852eb4940566de133", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "ef58638f-76af-4f77-a459-560c3d95561b": {"doc_hash": "3838e55cc6befef57a7b68252f9e816ef48ecc67d3d79842704875795c82df76", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "91aec09e-c299-451a-bee5-36cc906bf2ce": {"doc_hash": "131bea10008b4b3ae1952d7de88ba3e3ff74ab9dd8813c5173eb327c0f9d5892", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "0f6df599-a7d7-4b74-99f7-cddd754c7717": {"doc_hash": "d4bd21d49fc5d9c18b0c5d82b93dc35149b2aee121f48fbd0a02ecc0f7bf11a1", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "ce949a35-c420-4642-8f65-2ad80b27fe15": {"doc_hash": "c15da63a05a46ae3bec3674a59dac6db669542c27697cb3353ee98c1a8957302", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "0067c7fe-dbac-4676-b633-bbd243898fd9": {"doc_hash": "9f560b7de8f133957f8374e8a6e13cf63510d9a70cf7ecad0d01007c27c50ada", "ref_doc_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541"}, "93687e9e-a133-4f4a-97eb-6a7c6561d8b8": {"doc_hash": "a4bd2aefab476bad19df5d9a7904eea9195a6f5c3bdd5e8a651e0e4ac2f38ed7", "ref_doc_id": "a15c80d71605c1b52b365259257c75172230e2b3"}, "e71be8f0-fe30-480b-9e5c-86141c78d8a4": {"doc_hash": "2b4da223b6497b54ec1a4f80728699bbb4dc687547a8eb5aaabef1b413565843", "ref_doc_id": "a15c80d71605c1b52b365259257c75172230e2b3"}, "8f323bf4-8b81-4f6f-a61f-ac1ca7407c49": {"doc_hash": "535c71e66256d2da424469687380ff0783e6fb117dbce23f58893569f77f3a2e", "ref_doc_id": "a15c80d71605c1b52b365259257c75172230e2b3"}, "9357024f-1e70-4c6e-b046-cc395bfe494d": {"doc_hash": "563250eb4755b7897695336c3a04584115714c6cc3ce961f4edd3b25b70d9e02", "ref_doc_id": "a15c80d71605c1b52b365259257c75172230e2b3"}, "05060b83-66bd-46d0-b5d4-c556fc94bf29": {"doc_hash": "4b8c2b6394ca3d96f203fbb7e0848300c459b5d6937914cdd134718e706966ab", "ref_doc_id": "83a937e7909e283792af66260c897d102991d7b9"}, "76fe5b6a-11e4-4441-b16d-26cc1fa953b5": {"doc_hash": "a11ab4d4b2129fc7fb6eba83a41a8e4fca275e28cab5cc074b6165c03c3988b7", "ref_doc_id": "83a937e7909e283792af66260c897d102991d7b9"}, "f5ee3b52-aa3e-4bd0-8f27-79c40c81d3c7": {"doc_hash": "6523e5e99698c20ea9b8baf94d17394dbd285f36ba0aeff484024de3b498b0d7", "ref_doc_id": "a40d10bf89b5a47ee2ebb0eaeeb3ad970d275a3c"}, "23e852e5-02c3-408e-999f-c6fdea194a32": {"doc_hash": "3ac2e5fabcf883b2a4179765bb33c39f75735303a999ac6ead550a1021ee3675", "ref_doc_id": "386340d84f9bce8c984e5f9d344c16803f180779"}, "2219935e-cd84-4325-9c68-e9f3c2e61faa": {"doc_hash": "5c709b26017ff7c9c4ac14a079467257095417b1f53c7ad2a35c9c4cf75c9152", "ref_doc_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a"}, "63f43023-e476-4c1a-ae99-c7774894fb2f": {"doc_hash": "2afaf1790bee899d69054ce17dd09f7a2e0368fa70dbf72d430a997680be0a6a", "ref_doc_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a"}, "b8c9a66f-86ef-4958-b219-f27093a055b8": {"doc_hash": "66f6d9b24d2b362f3445b960831ff6eddab98b2222b611b8df5b0d2e7e3a322a", "ref_doc_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a"}, "3a824442-4ed5-4847-96d3-dc2ca1324cfa": {"doc_hash": "063d5e37ca509ebb63b8d1dba46ca02cb3cc4edfccdedf0ff7395406c11589e2", "ref_doc_id": "c4771fb05fdcbcee999cbfb17856c814cbfa41f4"}, "47dc984f-45b2-460d-bf79-5ee6e0a84bfd": {"doc_hash": "90d3fb2e3208460eb1022fc5ed60277ca2288343af72a03afdbc04a761b89eca", "ref_doc_id": "c4771fb05fdcbcee999cbfb17856c814cbfa41f4"}, "ae06d6a1-33fc-4b36-ae30-afcb8ed34d06": {"doc_hash": "d4974a7a66f54f85d5442d9db88b540b01c2a507cebf1b3954c7707be71d7176", "ref_doc_id": "dbdb7680a1e21622af2403e7a3739e148903b38a"}, "c348e27e-07a9-4eb0-96bf-ba067c1b993f": {"doc_hash": "fcc8c8c4f6761cd5aec3ccd9780a36e69e22b8a9f9001d001da9c1e52463d98d", "ref_doc_id": "84273d25a134f3eb42173957fb52d64eb533bc2d"}, "542517e7-3531-412e-8101-736be1fcdfe0": {"doc_hash": "eb8cb83c82b57516f2c83234f227d13e4d241c4c5bf9c95e7ecdd1540e6219ef", "ref_doc_id": "84273d25a134f3eb42173957fb52d64eb533bc2d"}, "c17d5b9f-b642-4903-b56b-8ec46fa02441": {"doc_hash": "89ef145114e5a621ea1164a9f993a17beb92042a4370d7ae7ce091ea64edfe7e", "ref_doc_id": "84273d25a134f3eb42173957fb52d64eb533bc2d"}}, "docstore/data": {"75cf5ad8-bf0e-4b67-b3dd-ed3272881b09": {"__data__": {"id_": "75cf5ad8-bf0e-4b67-b3dd-ed3272881b09", "embedding": null, "metadata": {"file_path": "content/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/_index.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "93c225056acbb5484fe7994c647f755f93adf958", "node_type": "4", "metadata": {"file_path": "content/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/_index.md"}, "hash": "3c54bc1d6adeaab54c862a519162f5440745eac80d5b173b7a94af009c0608f5", "class_name": "RelatedNodeInfo"}}, "text": "---\ntitle: Introduction\ntype: docs\n---\n\n# Welcome to the Research Engineering Group Handbook\n\n## What is this?\n\nThis Handbook is written by and for [The Alan Turing Institute's](https://www.turing.ac.uk/) Research Engineering Group (REG).\nIt is our attempt to describe both how we do work and how we aspire to.\nIt is inspired by other open, community-driven books such as [The GitLab Team Handbook](https://about.gitlab.com/handbook/) and [The Turing Way](https://the-turing-way.netlify.app/collaboration/remote-collab.html).\n\n## Who is the audience?\n\nAnyone!\nMost commonly it is used by members of REG in their day-to-day work.\nIt also aims to be a helpful introduction to REG for anyone who might work with us, either as collaborators or \u2014 when the opportunity arises \u2014 as [future colleagues](https://www.turing.ac.uk/opportunities-turing/jobs).\n\nIt is open to all, in the hope others will find it useful too.\n\n## Who are REG anyway?\n\nFor an introduction to REG and what we do see our page on the [Turing website](https://www.turing.ac.uk/research-engineering).", "start_char_idx": 0, "end_char_idx": 1063, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d0a13454-b117-45a1-a7f3-c088eaae7dce": {"__data__": {"id_": "d0a13454-b117-45a1-a7f3-c088eaae7dce", "embedding": null, "metadata": {"file_path": "content/docs/communications/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/communications/_index.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "cf380f2bc01891cffe4e2b991e3427cc023b8c89", "node_type": "4", "metadata": {"file_path": "content/docs/communications/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/communications/_index.md"}, "hash": "bebd1c752fd41aa8772dc023f9078ff18dc43fd399c23b36758903ffd1d93c4c", "class_name": "RelatedNodeInfo"}}, "text": "---\ntitle: \"Communications\"\nweight: 7\n---\n\n# Communications", "start_char_idx": 0, "end_char_idx": 59, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3c7bf40c-c5e4-40db-80b2-dbb4e0f11289": {"__data__": {"id_": "3c7bf40c-c5e4-40db-80b2-dbb4e0f11289", "embedding": null, "metadata": {"file_path": "content/docs/communications/social_media.md", "file_name": "social_media.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/communications/social_media.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "fd1b5253d191ca0839c393826ddf12f23b54dd1d", "node_type": "4", "metadata": {"file_path": "content/docs/communications/social_media.md", "file_name": "social_media.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/communications/social_media.md"}, "hash": "84db9233a2e66d92c4e6692b8bce6bc9243fc70c49d3cc49ce077b7d92a6863c", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Social Media\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 1\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Social Media\n\n## LinkedIn\n\nPage: [turing-research-engineering](https://www.linkedin.com/showcase/turing-research-engineering/?viewAsMember=true)\n\nOur LinkedIn page showcases the work done under the Alan Turing Institute umbrella and highlights the achievements of our researchers and engineers to a professional audience.\n\n## X (Formerly Twitter)\n\nHandle: [@turinghut23](https://twitter.com/turinghut23)\n\nOur Twitter account offers an informal public-facing channel for sharing updates about our projects and life at REG, engaging with our audience through insights, and updates.\n\n## Medium\n\nHandle: [@turinghut23](https://medium.com/@turinghut23)\n\nOur Medium account hosts blog posts about our projects and experiences within REG, providing in-depth analysis, reflections, and insights into our work and research at the Alan Turing Institute.\n\n## Creating Posts\n\nIf you would like to create a post under any of the group accounts, please reach out to [the account\ncontroller(s)](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry).\n\n### What to Post\n\n- Projects we work on (if public)\n- Blog posts\n- Talks that we organise\n- Conferences and workshops\n- Any public outputs \u2014 papers, published code _etc._\n- Researcher spotlights\n\nPlease refer to the Turing's [social media\npolicy](https://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2203&SearchId=11587) when making posts.", "start_char_idx": 0, "end_char_idx": 1819, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "672cbc89-3888-483a-a14c-7e3ed578d4b4": {"__data__": {"id_": "672cbc89-3888-483a-a14c-7e3ed578d4b4", "embedding": null, "metadata": {"file_path": "content/docs/contributing/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/_index.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f841571dd12d2ae66ee9a9e7a07f95e82355010a", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/_index.md"}, "hash": "9f200d8e648bd3805262a92b70c17097b2ad6ed7a32a8f185f17f62617fa80cd", "class_name": "RelatedNodeInfo"}}, "text": "---\ntitle: \"Contributing\"\nweight: 99\n---\n\n# Contributing\n\nThis section contains a guide for contributing to the handbook.\nIt is not a comprehensive guide to Hugo or any of the other tools used.\nInstead it is aimed to be a user-focused guide explaining how add to or edit the handbook without dwelling on the details of the underlying technologies.\nFor those interested in learning more, links will be liberally placed throughout for further reading.", "start_char_idx": 0, "end_char_idx": 449, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e11b64d8-ec6b-4956-8a57-ad499b1eb9b7": {"__data__": {"id_": "e11b64d8-ec6b-4956-8a57-ad499b1eb9b7", "embedding": null, "metadata": {"file_path": "content/docs/contributing/advanced.md", "file_name": "advanced.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/advanced.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a394749d72c4f3795a384330295b06c9846db26c", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/advanced.md", "file_name": "advanced.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/advanced.md"}, "hash": "3b780a0453babd4dba909081d7115e7f723df6c63448ede5ea48c6c5072775b0", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Advanced\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 7\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Advanced\n\n## Using Data\n\nThrough using templates Hugo can [build page content from datafiles](https://gohugo.io/templates/data-templates/).\nThis is particularly useful for when you want to display structured data in a page and when it would be easier to maintain a datafile rather than a Markdown or HTML document.\n\n## Creating Shortcodes\n\nIt is possible to [create your own shortcodes](https://gohugo.io/templates/shortcode-templates/).\nThese should be placed in {{% repo_link path=\"layouts/shortcodes/\" text=\"`layouts/shortcodes/`\" %}}.\n\nIf you feel the need to use HTML or want to create page content from a datafile (like a YAML file or csv) then a shortcode is probably the right answer.\n\nYou should refer to Hugo's [templates](https://gohugo.io/templates/) and [functions](https://gohugo.io/functions/) documentation for resources to help writing a shortcode.\n\n## Partial Templates\n\nWhole page templates are built from of a number of smaller [partial templates](https://gohugo.io/templates/partials/).\nThis approach reduces repeated code in templates and help keep making changes simple.\n\nThe theme defines a number of dummy [partial templates](https://github.com/alex-shpak/hugo-book#partials) for us to overwrite.\n\nFor example, the Creative Commons notice at the bottom of each page was added by editing {{% repo_link path=\"layouts/partials/docs/inject/footer.html\" text=\"`layouts/partial/docs/inject/footer.html`\" %}}.", "start_char_idx": 0, "end_char_idx": 1817, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "721230de-13e8-4aa4-be8f-e6bfc5b79200": {"__data__": {"id_": "721230de-13e8-4aa4-be8f-e6bfc5b79200", "embedding": null, "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "hash": "9cde67cdbd198dc11182f0acdd1fd8a07a500c740b5fd4e46ff594572e52163a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "91d01686-e2e1-4e30-8f24-54bc362bfde6", "node_type": "1", "metadata": {}, "hash": "63ab73b600e6dfedc4b816cb5301e54a780a5f545e03e09648f6f2d499c65ae0", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Contributing Changes\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 5\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Contributing Changes\n\nOnce you have made changes, you will need to contribute them back to the remote repository.\nThis page explains the process of pushing your changes back to the remote, and how your contribution will be checked in the CI and review process.\n\nThe handbook uses the [GitHub flow](https://docs.github.com/en/get-started/quickstart/github-flow) workflow.\nIn short:\n\n- create a branch\n- make changes\n- open pull request\n- review\n- merge to `main`\n\nThis workflow should help changes be deployed quickly.\n\n## Creating a Branch\n\nYou should make your changes on a new branch, and not on `main`.\nThis will make it easier to merge changes from many contributors.\nTry to pick a branch name which is short and describes the change you are making.\n\n{{% hint warning %}}\nThe changes on one branch or pull request should address a single issue and be self-contained.\nDon't try to solve more than one unrelated problem at once.\n\nSticking to this practice will help ensure pull requests are small and easy to review.\nOtherwise, you might end up having to make many changes during review, have difficultly keeping your branch up to date or upset the reviewers.\n{{% /hint %}}\n\n## Making Changes\n\nAt this point, you can edit files and create `git` commits as necessary.\n\n{{% hint info %}}\nWhen making commits, it is a good idea to follow Tim Pope's [recommendations](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html) for good commit messages.\n{{% /hint %}}\n\nIt is often useful to run the Markdown style checker (and other tests) before committing.\nThis allows you to catch, and fix, potential issues before opening a pull request.", "start_char_idx": 0, "end_char_idx": 2052, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "91d01686-e2e1-4e30-8f24-54bc362bfde6": {"__data__": {"id_": "91d01686-e2e1-4e30-8f24-54bc362bfde6", "embedding": null, "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "hash": "9cde67cdbd198dc11182f0acdd1fd8a07a500c740b5fd4e46ff594572e52163a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "721230de-13e8-4aa4-be8f-e6bfc5b79200", "node_type": "1", "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "hash": "9f93032d71d0e43fb439fee15c35607cbba50ef6f7d18b8711c09f8167990733", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "72f60be5-209a-4251-9961-999d7847be69", "node_type": "1", "metadata": {}, "hash": "be11a7c67ac28d5cbac0dbd2a658dfd798dce7c7f3c4c92a38ce9be7846609db", "class_name": "RelatedNodeInfo"}}, "text": "{{% hint warning %}}\nThe changes on one branch or pull request should address a single issue and be self-contained.\nDon't try to solve more than one unrelated problem at once.\n\nSticking to this practice will help ensure pull requests are small and easy to review.\nOtherwise, you might end up having to make many changes during review, have difficultly keeping your branch up to date or upset the reviewers.\n{{% /hint %}}\n\n## Making Changes\n\nAt this point, you can edit files and create `git` commits as necessary.\n\n{{% hint info %}}\nWhen making commits, it is a good idea to follow Tim Pope's [recommendations](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html) for good commit messages.\n{{% /hint %}}\n\nIt is often useful to run the Markdown style checker (and other tests) before committing.\nThis allows you to catch, and fix, potential issues before opening a pull request.\nTo do so, use the [`pre-commit` tool](https://pre-commit.com/): the website contains installation instructions if you have not used it before.\nAfter installing `pre-commit`, navigate to the repository root and run:\n\n```bash\npre-commit install\n```\n\nThis uses the {{% repo_link path=\".pre-commit-config.yaml\" text=\"`.pre-commit-config.yaml`\" %}} file in the repository to create a pre-commit [Git hook](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks),\nwhich (as the name suggests) will be automatically run every time before a commit is created.\nIt currently performs the following checks, which are designed to mimic those in [Continuous Integration](#continuous-integration):\n\n- Markdown linting\n- A Hugo build, to make sure that the pages can be built\n\nIf you want to manually perform these checks at any point in time, the following will check all files that have changed since the last commit:\n\n```bash\npre-commit run\n```\n\nTo check all files, regardless of their changed status:\n\n```bash\npre-commit run --all-files\n```\n\n## Opening a Pull Request\n\nWhen you think your changes are ready to be merged, open a pull request.", "start_char_idx": 1157, "end_char_idx": 3185, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "72f60be5-209a-4251-9961-999d7847be69": {"__data__": {"id_": "72f60be5-209a-4251-9961-999d7847be69", "embedding": null, "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "hash": "9cde67cdbd198dc11182f0acdd1fd8a07a500c740b5fd4e46ff594572e52163a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "91d01686-e2e1-4e30-8f24-54bc362bfde6", "node_type": "1", "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "hash": "28147e490299ba5ad9f9336c35401a1459e46cc81a815c6623d95a36d1d0f2bb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b22dd272-77eb-482f-b515-14e76a55a8b7", "node_type": "1", "metadata": {}, "hash": "cada229f434d5345fabdf2d11c35cd429296b08b7a7725d4b2f168b20f44f3ba", "class_name": "RelatedNodeInfo"}}, "text": "It currently performs the following checks, which are designed to mimic those in [Continuous Integration](#continuous-integration):\n\n- Markdown linting\n- A Hugo build, to make sure that the pages can be built\n\nIf you want to manually perform these checks at any point in time, the following will check all files that have changed since the last commit:\n\n```bash\npre-commit run\n```\n\nTo check all files, regardless of their changed status:\n\n```bash\npre-commit run --all-files\n```\n\n## Opening a Pull Request\n\nWhen you think your changes are ready to be merged, open a pull request.\nIf you don't want your changes to be merged yet but would like some feedback, you can open a draft pull request.\n\nWhen you open a pull request you will be presented with a template.\nComplete the sections and answer the questions as best you can.\nIn particular, make sure to reference any issues your work closes or is related to.\n\n### Continuous Integration\n\nA series of tests are automatically conducted on each commit pushed to GitHub, as well as each pull request.\nThe tests are defined in {{% repo_link path=\".github/workflows/ci.yaml\" text=\"`ci.yaml`\" %}}.\n\nThe following tests are required to pass before merging a pull request:\n\n- A Markdown linter\n- A Hugo build\n\nThere are other tests that are not *required* for merging, although you should aim to pass all tests.\nThose are:\n\n- A Markdown link checker\n- A HTML proofer (including link checking) on the output of Hugo\n\n## Keeping Your Branch up to Date\n\nThe branch protection rules applied to `main` will prevent out-of-date branches from being merged.\nThis means if your branch doesn't include the changes from the `HEAD` of `origin/main`, it won't be possible to merge it.\n\nIf your branch isn't up to date, you can fix it with a merge or rebase.\n\n### Merging\n\n[Merging](https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging) the changes from `origin/main` is probably the simpler way to get your branch up to date.\nIt will leave the Git history a bit messier which can bother some people.", "start_char_idx": 2607, "end_char_idx": 4654, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b22dd272-77eb-482f-b515-14e76a55a8b7": {"__data__": {"id_": "b22dd272-77eb-482f-b515-14e76a55a8b7", "embedding": null, "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "hash": "9cde67cdbd198dc11182f0acdd1fd8a07a500c740b5fd4e46ff594572e52163a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "72f60be5-209a-4251-9961-999d7847be69", "node_type": "1", "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "hash": "df27f892d609b2aece963720792ea5c3756a0a667df5b7027dd7aa263d6c01cb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c8d40a5f-08f1-49b4-aec3-74fe69681315", "node_type": "1", "metadata": {}, "hash": "52d85e2161e8eb73a15c517a70648c3161a62bccd25ae7b168d8e79901139216", "class_name": "RelatedNodeInfo"}}, "text": "Those are:\n\n- A Markdown link checker\n- A HTML proofer (including link checking) on the output of Hugo\n\n## Keeping Your Branch up to Date\n\nThe branch protection rules applied to `main` will prevent out-of-date branches from being merged.\nThis means if your branch doesn't include the changes from the `HEAD` of `origin/main`, it won't be possible to merge it.\n\nIf your branch isn't up to date, you can fix it with a merge or rebase.\n\n### Merging\n\n[Merging](https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging) the changes from `origin/main` is probably the simpler way to get your branch up to date.\nIt will leave the Git history a bit messier which can bother some people.\n\nEnsure you have the latest changes on `origin/main` in your local repository\n\n```bash\ngit fetch\n```\n\nMerge `origin/main` into your branch.\nIf your branch was called `my_branch` you would run\n\n```bash\ngit switch my_branch\ngit merge origin/main\n```\n\nGit will notify you of any conflicts.\nIf there are conflicts, you should fix them before running `git merge --continue` to commit.\nAfter you are done, you can push your changes.\n\n### Rebasing\n\n[Rebasing](https://git-scm.com/book/en/v2/Git-Branching-Rebasing) your branch on top of `origin/main` can make conflicts more difficult or confusing to deal with, but leads to a more linear Git history..\n\nEnsure you have the latest changes on `origin/main` in your local repository\n\n```bash\ngit fetch\n```\n\nApply your commits on top of `origin/main`.\nIf your branch was called `my_branch` you would run\n\n```bash\ngit switch my_branch\ngit rebase origin/main\n```\n\nIf you want to tidy up your commits or messages you might want to use an interactive rebase: `git rebase -i origin/main`.\n\nGit will notify you of any conflicts.\nIf there are conflicts you will need to fix them iteratively, running `git rebase --continue` to apply each commit.", "start_char_idx": 3960, "end_char_idx": 5833, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c8d40a5f-08f1-49b4-aec3-74fe69681315": {"__data__": {"id_": "c8d40a5f-08f1-49b4-aec3-74fe69681315", "embedding": null, "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "hash": "9cde67cdbd198dc11182f0acdd1fd8a07a500c740b5fd4e46ff594572e52163a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b22dd272-77eb-482f-b515-14e76a55a8b7", "node_type": "1", "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}, "hash": "052823287b8ef7c64127674bfc14c951b25d905dc79cccc062138213a58aa79c", "class_name": "RelatedNodeInfo"}}, "text": "After you are done, you can push your changes.\n\n### Rebasing\n\n[Rebasing](https://git-scm.com/book/en/v2/Git-Branching-Rebasing) your branch on top of `origin/main` can make conflicts more difficult or confusing to deal with, but leads to a more linear Git history..\n\nEnsure you have the latest changes on `origin/main` in your local repository\n\n```bash\ngit fetch\n```\n\nApply your commits on top of `origin/main`.\nIf your branch was called `my_branch` you would run\n\n```bash\ngit switch my_branch\ngit rebase origin/main\n```\n\nIf you want to tidy up your commits or messages you might want to use an interactive rebase: `git rebase -i origin/main`.\n\nGit will notify you of any conflicts.\nIf there are conflicts you will need to fix them iteratively, running `git rebase --continue` to apply each commit.\n\nWhen the rebase is done, you will need to force-push your changes as you have rewritten the history of your branch.\n\n```bash\ngit push -f\n```\n\n{{% hint warning %}}\nRewriting history is considered impolite on a branch where you are working collaboratively.\nIt can cause problems when the state of a remote changes unexpectedly.\n{{% /hint %}}\n\n## The Review Process\n\nCurrently, reviews are not required and pull requests may be merged by anyone with write access once all required CI checks pass.\nIf you like, you can enable [auto-merge](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request) so that the merge happens automatically when this is the case.\n\nHowever, if you'd like your changes reviewed you can suggest reviewers when, or after, opening your pull request.\nIf a reviewer then requests any changes or makes any comments, these should be resolved before the pull request is merged.", "start_char_idx": 5035, "end_char_idx": 6824, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f5f01aab-661a-4766-9639-edcb7719160c": {"__data__": {"id_": "f5f01aab-661a-4766-9639-edcb7719160c", "embedding": null, "metadata": {"file_path": "content/docs/contributing/creating_a_page.md", "file_name": "creating_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/creating_a_page.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a296d4feb5a490599d60d8bed68961c31624c8fb", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/creating_a_page.md", "file_name": "creating_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/creating_a_page.md"}, "hash": "0880a5253ece62db93097a96950cbadede94d5b79e870fcc7fdbd1d787960b65", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "052be6ea-fc41-49cb-a5fe-5309172d18fc", "node_type": "1", "metadata": {}, "hash": "5c5b53839be7e0587796f71dc833c454c998d7f1b40112755fb91bab2a65494c", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Adding New Content\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 3\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Adding New Content\n\n## How Hugo Arranges Content\n\nPages are built from content files in the {{% repo_link path=\"content/\" text=\"`content/`\" %}} directory.\nHugo automatically gives pages a URL based on the organisation of files in the `content/` directory.\n\nIn Hugo, the first directory after `content/` is significant and [defines the content type](https://gohugo.io/content-management/sections/).\nAll handbook pages should be nested in the `content/docs/` directory.\n\nSections may be created in `content/docs/` (to any depth) by creating a directory containing a content file called `_index.md`.\n\n{{% hint warning %}}\nIt is important that the index file exists for Hugo to [correctly assign pages to sections](https://gohugo.io/content-management/sections/) and for the [theme](https://github.com/alex-shpak/hugo-book) to arrange pages in the tree-like menu.\n{{% /hint %}}\n\n## Creating a New Page\n\nTo create a new handbook page use the `hugo new` command.\n\n```bash\nhugo new content/docs/.md\n```\n\nIf you wanted to create this page, you would type\n\n```bash\nhugo new content/docs/contributing/creating_a_page.md\n```\n\nHugo will create a new Markdown document at the path you specified.\n\nHugo provides a convenient way to generate new pages from templates called [Archetypes](https://gohugo.io/content-management/archetypes/).\nYou can see the archetypes in the {{% repo_link path=\"archetypes\" text=\"`archetypes/` directory\" %}}.", "start_char_idx": 0, "end_char_idx": 1838, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "052be6ea-fc41-49cb-a5fe-5309172d18fc": {"__data__": {"id_": "052be6ea-fc41-49cb-a5fe-5309172d18fc", "embedding": null, "metadata": {"file_path": "content/docs/contributing/creating_a_page.md", "file_name": "creating_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/creating_a_page.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a296d4feb5a490599d60d8bed68961c31624c8fb", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/creating_a_page.md", "file_name": "creating_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/creating_a_page.md"}, "hash": "0880a5253ece62db93097a96950cbadede94d5b79e870fcc7fdbd1d787960b65", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f5f01aab-661a-4766-9639-edcb7719160c", "node_type": "1", "metadata": {"file_path": "content/docs/contributing/creating_a_page.md", "file_name": "creating_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/creating_a_page.md"}, "hash": "78b2c61181dc6a809a49b0c839f62906f9e4c28bdfec42ee64a5567b26e9b026", "class_name": "RelatedNodeInfo"}}, "text": "{{% /hint %}}\n\n## Creating a New Page\n\nTo create a new handbook page use the `hugo new` command.\n\n```bash\nhugo new content/docs/.md\n```\n\nIf you wanted to create this page, you would type\n\n```bash\nhugo new content/docs/contributing/creating_a_page.md\n```\n\nHugo will create a new Markdown document at the path you specified.\n\nHugo provides a convenient way to generate new pages from templates called [Archetypes](https://gohugo.io/content-management/archetypes/).\nYou can see the archetypes in the {{% repo_link path=\"archetypes\" text=\"`archetypes/` directory\" %}}.\n\nBecause your document is in the `docs` directory, Hugo will look for an archetype called {{% repo_link path=\"archetypes/docs.md\" text=\"`docs.md`\" %}} to use as a template.\n\nNow you can edit your page with your favourite text editor.\nFor example\n\n```bash\nvim content/docs/contributing/creating_a_page.md\n```\n\n## Creating a Section\n\nWe can also use the `hugo new` command to create a new section, both the directory and index file.\nFor example\n\n```bash\nhugo new content/docs/new_section/_index.md\nvim content/docs/new_section/_index.md\n```\n\nIf you only want a section to organise some pages and not to have a page of its own, you can simply leave the content section of `_index.md` (after the YAML front matter) empty.", "start_char_idx": 1260, "end_char_idx": 2556, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b6b0ec4b-ec86-4351-b63f-6bd042d13ec2": {"__data__": {"id_": "b6b0ec4b-ec86-4351-b63f-6bd042d13ec2", "embedding": null, "metadata": {"file_path": "content/docs/contributing/discussions_and_issues.md", "file_name": "discussions_and_issues.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/discussions_and_issues.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9e31d5beddf2be8d558ea581d08d793a8dd542a9", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/discussions_and_issues.md", "file_name": "discussions_and_issues.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/discussions_and_issues.md"}, "hash": "15276ab2ebb81efce3460866de6c086a813b808fa40dccbaa7145d57a00259e3", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Discussions and Issues\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: -2\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Discussions and Issues\n\nContributing does not only mean adding code or writing pages.\nBeing involved in reporting issues and discussing ideas are important and valuable aspects to contributing.\nThe handbook uses both issues and discussions on GitHub.\n\n## Discussions\n\n[The *Discussions* on the handbook repository](https://github.com/alan-turing-institute/REG-handbook/discussions) are the best place for informal talk about the handbook.\n\nYou should feel welcome to create a discussion on any relevant topic, without the formality of an issue.\n\nGood examples of discussions are\n\n- Any questions\n- Possible bugs ('does anyone else have this problem?')\n- Chapter suggestions\n- Looking for collaborators\n- Community support\n- Any other on-topic talk\n\n## Issues\n\n[The issue tracker](https://github.com/alan-turing-institute/REG-handbook/issues) is best used for development work.\nThis is because issues integrate well with GitHub development tools like projects, pull requests, assignments and so on.\n\nEach issue should ideally represent a well-defined, self-contained piece of work suitable to become a single pull request.\n\nGood examples of issues are\n\n- Bug reports with technical detail\n- Developed chapter proposals\n- Feature requests (such as new shortcodes)\n- Specific ideas for changes\n\nWhen opening an issue, pick a suitable template (if any) to make the process easier.", "start_char_idx": 0, "end_char_idx": 1781, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4855e3ee-b3fc-46fc-a437-576b42bb2b5e": {"__data__": {"id_": "4855e3ee-b3fc-46fc-a437-576b42bb2b5e", "embedding": null, "metadata": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "54ee33ee0e3a07ea15165101dcbc06495eced766", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md"}, "hash": "11fb9417db52b3e76bd93df7d52f61aec7f5ae3d9674b0e4d898bb59c5625d61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f020b5d1-5ac0-4c4d-83f6-ab67bc6dfb48", "node_type": "1", "metadata": {}, "hash": "abfa0b3ca07647b546d46711da111fb2ba6c653a7aa1f8a9b8ac4a0a57c27d15", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Editing a Page\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 4\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Editing a Page\n\nIf you followed the instructions in the [Getting Started section]({{% ref \"getting_started.md\" %}}) to checkout the repository and serve the handbook locally you can edit a page locally.\nHowever, as you may have noticed, at the bottom of each page is a link to edit the page in the GitHub web editor if you would prefer.\nThis may be easy for making small changes.\n\n## Pages\n\nEach page is a [Markdown](https://www.markdownguide.org/) file with [YAML](https://yaml.org/) front matter followed by the page contents in Markdown.\n\n### Front Matter\n\nThe [front matter](https://gohugo.io/content-management/front-matter/) is used to define various pieces of metadata related to a page.\nThe front matter appears at the top of a content file.\nIn the handbook we format front matter as YAML, preceded and followed by three hyphens.\n\n```yaml\n---\ntitle: \"Example Page\"\nweight: 1\n---\n```\n\nThe [full YAML specification](https://yaml.org/spec/1.2.2/) is long and comprehensive.\nThe most important thing to understand here is that the front matter YAML consists of keys and values separated by a hyphen.\nFor example, in the expression `weight: 1`, `weight` is the key with a value of `1`.\n\nIf you created a page using `hugo new` then some boilerplate front matter with explanatory comments should already be present.\nIf you are editing an existing page there should already be front matter.\n\nMost of the time, the only keys you will need to consider are `title` and `weight`.\n\n`title`\n: The title of a page as it appears in the navigation menu\n\n`weight`\n: Determines the order of pages in the navigation menu.", "start_char_idx": 0, "end_char_idx": 2005, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f020b5d1-5ac0-4c4d-83f6-ab67bc6dfb48": {"__data__": {"id_": "f020b5d1-5ac0-4c4d-83f6-ab67bc6dfb48", "embedding": null, "metadata": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "54ee33ee0e3a07ea15165101dcbc06495eced766", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md"}, "hash": "11fb9417db52b3e76bd93df7d52f61aec7f5ae3d9674b0e4d898bb59c5625d61", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4855e3ee-b3fc-46fc-a437-576b42bb2b5e", "node_type": "1", "metadata": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md"}, "hash": "d57a44f9f94a9721de18c8caec3d756720b201017a91d0638215783fe7785f4f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c27977c8-8d38-420a-ae8a-cd48bd5d0f77", "node_type": "1", "metadata": {}, "hash": "96bd306c42f02d01ae65a97cbe1115a97ee6918da8c95720c12469b7ae8ce80f", "class_name": "RelatedNodeInfo"}}, "text": "```yaml\n---\ntitle: \"Example Page\"\nweight: 1\n---\n```\n\nThe [full YAML specification](https://yaml.org/spec/1.2.2/) is long and comprehensive.\nThe most important thing to understand here is that the front matter YAML consists of keys and values separated by a hyphen.\nFor example, in the expression `weight: 1`, `weight` is the key with a value of `1`.\n\nIf you created a page using `hugo new` then some boilerplate front matter with explanatory comments should already be present.\nIf you are editing an existing page there should already be front matter.\n\nMost of the time, the only keys you will need to consider are `title` and `weight`.\n\n`title`\n: The title of a page as it appears in the navigation menu\n\n`weight`\n: Determines the order of pages in the navigation menu. Smaller numbers appear\nfirst\n\nThe Hugo documentation details a set of [predefined front matter keys](https://gohugo.io/content-management/front-matter/).\nOther valid fields related to the handbook theme are documented in the [theme's\nREADME](https://github.com/alex-shpak/hugo-book#page-configuration).\n\n### Content\n\nAfter the front matter is the content section.\n\n```markdown\n---\ntitle: \"Example Page\"\nweight: 1\n---\n\n| content section |\n```\n\nThe content section is formatted in Markdown.\nThe following links from Markdown Guide describe [basic](https://www.markdownguide.org/basic-syntax/) and [extended](https://www.markdownguide.org/extended-syntax/) Markdown syntax.\n\n{{% hint warning %}}\nNot all of the extended Markdown syntax may be implemented by Hugo's [Markdown renderer](https://gohugo.io/getting-started/configuration-markup).\n{{% /hint %}}\n\n### Shortcodes\n\n[Shortcodes](https://gohugo.io/content-management/shortcodes/) are templates (which can be parametrised) and included the content section.\nThey can be particularly useful for including more complex features than Markdown's simple syntax will allow.\nUsing a shortcode is preferable to including raw HTML in a content file.", "start_char_idx": 1235, "end_char_idx": 3197, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c27977c8-8d38-420a-ae8a-cd48bd5d0f77": {"__data__": {"id_": "c27977c8-8d38-420a-ae8a-cd48bd5d0f77", "embedding": null, "metadata": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "54ee33ee0e3a07ea15165101dcbc06495eced766", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md"}, "hash": "11fb9417db52b3e76bd93df7d52f61aec7f5ae3d9674b0e4d898bb59c5625d61", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f020b5d1-5ac0-4c4d-83f6-ab67bc6dfb48", "node_type": "1", "metadata": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md"}, "hash": "403960fd06a08f7efe327495e7b9dd145838df6bed2c456d751383bf9455f24b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2a44316f-12b9-4af9-9413-39ce6f9a126d", "node_type": "1", "metadata": {}, "hash": "9845709cac8fa1fb2c7e38ab8b76913f4c983c801b8e77a19b54bca4d6be152b", "class_name": "RelatedNodeInfo"}}, "text": "### Content\n\nAfter the front matter is the content section.\n\n```markdown\n---\ntitle: \"Example Page\"\nweight: 1\n---\n\n| content section |\n```\n\nThe content section is formatted in Markdown.\nThe following links from Markdown Guide describe [basic](https://www.markdownguide.org/basic-syntax/) and [extended](https://www.markdownguide.org/extended-syntax/) Markdown syntax.\n\n{{% hint warning %}}\nNot all of the extended Markdown syntax may be implemented by Hugo's [Markdown renderer](https://gohugo.io/getting-started/configuration-markup).\n{{% /hint %}}\n\n### Shortcodes\n\n[Shortcodes](https://gohugo.io/content-management/shortcodes/) are templates (which can be parametrised) and included the content section.\nThey can be particularly useful for including more complex features than Markdown's simple syntax will allow.\nUsing a shortcode is preferable to including raw HTML in a content file.\n\nShortcodes can called in Markdown content files the following way\n\n```markdown\n{{%/* shortcode parameter */%}}\n```\n\nSome shortcodes may have an opening and closing tag, similar to HTML\n\n```markdown\n{{%/* shortcode */%}} content to process {{%/* /shortcode */%}}\n```\n\n#### Hugo Shortcodes\n\nHugo has a set of useful [built-in shortcodes](https://gohugo.io/content-management/shortcodes/#embedded-shortcodes).\n\nIn particular\n\n- [figure](https://gohugo.io/content-management/shortcodes/#figure)\n- [gist](https://gohugo.io/content-management/shortcodes/#gist)\n- [highlight](https://gohugo.io/content-management/shortcodes/#highlight)\n- [param](https://gohugo.io/content-management/shortcodes/#param)\n- [ref](https://gohugo.io/content-management/shortcodes/#ref) and [relref](https://gohugo.io/content-management/shortcodes/#relref)\n\n#### Theme Shortcodes\n\nThe theme has a [number of shortcodes](https://github.com/alex-shpak/hugo-book#shortcodes) which may be helpful.", "start_char_idx": 2310, "end_char_idx": 4162, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2a44316f-12b9-4af9-9413-39ce6f9a126d": {"__data__": {"id_": "2a44316f-12b9-4af9-9413-39ce6f9a126d", "embedding": null, "metadata": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "54ee33ee0e3a07ea15165101dcbc06495eced766", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md"}, "hash": "11fb9417db52b3e76bd93df7d52f61aec7f5ae3d9674b0e4d898bb59c5625d61", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c27977c8-8d38-420a-ae8a-cd48bd5d0f77", "node_type": "1", "metadata": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md"}, "hash": "5cb7c22206bb15ba2759a7031d2b64281fa14b03b4af75670088139fa6f3b3bf", "class_name": "RelatedNodeInfo"}}, "text": "In particular\n\n- [figure](https://gohugo.io/content-management/shortcodes/#figure)\n- [gist](https://gohugo.io/content-management/shortcodes/#gist)\n- [highlight](https://gohugo.io/content-management/shortcodes/#highlight)\n- [param](https://gohugo.io/content-management/shortcodes/#param)\n- [ref](https://gohugo.io/content-management/shortcodes/#ref) and [relref](https://gohugo.io/content-management/shortcodes/#relref)\n\n#### Theme Shortcodes\n\nThe theme has a [number of shortcodes](https://github.com/alex-shpak/hugo-book#shortcodes) which may be helpful.\n\nIn particular\n\n- [hints](https://hugo-book-demo.netlify.app/docs/shortcodes/hints/)\n- [expand](https://hugo-book-demo.netlify.app/docs/shortcodes/expand/)\n- [KaTeX](https://hugo-book-demo.netlify.app/docs/shortcodes/katex/)\n- [tabs](https://hugo-book-demo.netlify.app/docs/shortcodes/tabs/)\n\n#### Repository Shortcodes\n\nShortcodes can be included in the handbooks repository.\nFor more information see [Creating Shortcodes]({{% ref \"advanced.md#creating-shortcodes\" %}})\n\n##### repo_link\n\nCreate a link to a file or directory in the handbook's repository.\n\n```markdown\n{{%/* repo_link path=\"README.md\" text=\"README\" */%}}\n```\n\n`path`\n: Path to the file or directory relative to the root of the repository\n\n`text`\n: Text of the link (can include Markdown formatting)", "start_char_idx": 3607, "end_char_idx": 4928, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cd8d3ab6-1259-40a0-a44b-7f679fee56d4": {"__data__": {"id_": "cd8d3ab6-1259-40a0-a44b-7f679fee56d4", "embedding": null, "metadata": {"file_path": "content/docs/contributing/getting_started.md", "file_name": "getting_started.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/getting_started.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3ad4a616007ca5441cfcd229f6688e3d939bc374", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/getting_started.md", "file_name": "getting_started.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/getting_started.md"}, "hash": "7fdce3c8f4350ee1dca51660676d6144c25af306985d203f0d653d00b7a46323", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f215f5cf-5057-4b73-a09c-a6ef0b073beb", "node_type": "1", "metadata": {}, "hash": "f6a992aff34c76e7d9c2e220977ffdf1bc725d9a8abca013020a6798d93b7327", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Getting Started\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 1\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Getting Started\n\n## Install dependencies\n\nTo contribute to the handbook you will need\n\n- [Git](https://git-scm.com/downloads)\n- [Hugo](https://gohugo.io/getting-started/installing/) (You will need the extended version with Sass/SCSS support)\n- Your favourite text editor\n- Optionally [pre-commit](https://pre-commit.com/); see [Making Changes]({{< relref \"/docs/contributing/contributing_changes.md#making-changes\" >}}) for more details.\n\n## Clone the repository\n\nClone the repository with one of the following options (depending on how you authenticate with GitHub):\n\n{{< tabs \"clone-command\" >}}\n{{< tab \"SSH authentication\" >}}\n\n```bash\ngit clone --recurse-submodules git@github.com:alan-turing-institute/REG-handbook.git\ncd REG-handbook\n```\n\n{{< /tab >}}\n{{< tab \"HTTPS authentication\" >}}\n\n```bash\ngit clone --recurse-submodules https://github.com/alan-turing-institute/REG-handbook.git\ncd REG-handbook\n```\n\n{{< /tab >}}\n{{< /tabs >}}\n\nThe `--recurse-submodules` flag is important as the handbook's theme is included as a [Git submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules).\n\n## Serve the handbook locally\n\nWhile working on the handbook, it will be useful to preview your changes locally.", "start_char_idx": 0, "end_char_idx": 1607, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f215f5cf-5057-4b73-a09c-a6ef0b073beb": {"__data__": {"id_": "f215f5cf-5057-4b73-a09c-a6ef0b073beb", "embedding": null, "metadata": {"file_path": "content/docs/contributing/getting_started.md", "file_name": "getting_started.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/getting_started.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3ad4a616007ca5441cfcd229f6688e3d939bc374", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/getting_started.md", "file_name": "getting_started.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/getting_started.md"}, "hash": "7fdce3c8f4350ee1dca51660676d6144c25af306985d203f0d653d00b7a46323", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cd8d3ab6-1259-40a0-a44b-7f679fee56d4", "node_type": "1", "metadata": {"file_path": "content/docs/contributing/getting_started.md", "file_name": "getting_started.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/getting_started.md"}, "hash": "4682b14684e265293dd055c18266716591a1aca15a92db8dc48599d98d4a156d", "class_name": "RelatedNodeInfo"}}, "text": "## Clone the repository\n\nClone the repository with one of the following options (depending on how you authenticate with GitHub):\n\n{{< tabs \"clone-command\" >}}\n{{< tab \"SSH authentication\" >}}\n\n```bash\ngit clone --recurse-submodules git@github.com:alan-turing-institute/REG-handbook.git\ncd REG-handbook\n```\n\n{{< /tab >}}\n{{< tab \"HTTPS authentication\" >}}\n\n```bash\ngit clone --recurse-submodules https://github.com/alan-turing-institute/REG-handbook.git\ncd REG-handbook\n```\n\n{{< /tab >}}\n{{< /tabs >}}\n\nThe `--recurse-submodules` flag is important as the handbook's theme is included as a [Git submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules).\n\n## Serve the handbook locally\n\nWhile working on the handbook, it will be useful to preview your changes locally.\nTo do this use Hugo's `server` command\n\n```bash\nhugo server --minify\n```\n\nIn the output of this command will be a line similar to\n\n```bash\nWeb Server is available at http://localhost:1313/REG-handbook/ (bind address 127.0.0.1)\n```\n\nwhich contains the URL of the locally served site.\nNavigate to this address in your browser to preview the handbook.\n\nThe Hugo server will monitor the files in the repository and automatically rebuild the site whenever you make changes.\nThis is a useful tool to immediately view your changes.", "start_char_idx": 836, "end_char_idx": 2132, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b5bdd873-3d71-45d3-b88d-06193ffb2cd0": {"__data__": {"id_": "b5bdd873-3d71-45d3-b88d-06193ffb2cd0", "embedding": null, "metadata": {"file_path": "content/docs/contributing/recognising_contributions.md", "file_name": "recognising_contributions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/recognising_contributions.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3716e2551f49aa2261c6160f8a03d7939eed0a76", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/recognising_contributions.md", "file_name": "recognising_contributions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/recognising_contributions.md"}, "hash": "965836b40dce8d4c6e5f70f6b46ded76e720ef3cf287e802f39503455d2063c7", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Recognising Contributions\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: -1\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Recognising Contributions\n\nWe aim to recognise all contributions to the handbook, not just those made through commits.\nFor that purpose we use [All Contributors](https://allcontributors.org/) to help manage a record of who has contributed to the book and how.\n\nUse the 'add' command in an issue or pull-request comment to ask @all-contributors to add a contributor\n\n```text\n@all-contributors please add @ for \n```\n\nSee the [bot usage documentation](https://allcontributors.org/docs/en/bot/usage) for full details and more examples.\nA list of contribution types (and the related emoji) can be seen [here](https://allcontributors.org/docs/en/emoji-key).", "start_char_idx": 0, "end_char_idx": 1084, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ff919679-c51e-4f38-bf87-f5cabb8b85bb": {"__data__": {"id_": "ff919679-c51e-4f38-bf87-f5cabb8b85bb", "embedding": null, "metadata": {"file_path": "content/docs/contributing/reviewing_changes.md", "file_name": "reviewing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/reviewing_changes.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/reviewing_changes.md", "file_name": "reviewing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/reviewing_changes.md"}, "hash": "e8f8404bef0b45f0180c3167a22a5a73a2825d299c339c88bda7424bee1698a2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f32ce356-37da-4a43-a12d-8bf950636c30", "node_type": "1", "metadata": {}, "hash": "17fc860a9caefe3b9c04e3f1036c335c6e60651792180258c375d0564c0b94e8", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Reviewing Changes\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 6\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Reviewing Changes\n\nThe review process helps to ensure high quality and catch problems in contributions.\nWhen acting as a reviewer, you should see your position as sharing your knowledge and working with the contributors to achieve the best possible result.\nReviewing should **not** be an adversarial process.\n\n## Recognising Contributions\n\nWhen reviewing a pull request you should try to make sure everyone's work is recognised.\nSee the [Recognising Contributions]({{< relref \"/docs/contributing/recognising_contributions.md\" >}}) page for how to do this.\n\n## Code Quality\n\nAs a reviewer, one of your jobs is to ensure the quality of the codebase remains high.\n\nThe CI process will help to assess pull requests by subjecting each commit to a series of tests.\nSome tests are required to pass and will block merging until they do.\n\nOther tests are allowed to fail.\nThis is because these tests check external hyperlinks which can fail for reasons out of our control: for example, a website being offline, or an API rate limit.\nHowever, you should always aim to have all tests passing and investigate why any test fails.\nIn particular, a genuinely incorrect link should not be ignored.\n\nYou should **always** clone the branch, build the handbook locally (using `hugo server --minify`) and inspect the changes using your browser.\nNot all bugs will be caught by CI and not all changes will be obvious in the source files.\n\n## Reviewing the Pull Request\n\nUse the [GitHub review system](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request) to check the diffs of all source files.", "start_char_idx": 0, "end_char_idx": 2072, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f32ce356-37da-4a43-a12d-8bf950636c30": {"__data__": {"id_": "f32ce356-37da-4a43-a12d-8bf950636c30", "embedding": null, "metadata": {"file_path": "content/docs/contributing/reviewing_changes.md", "file_name": "reviewing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/reviewing_changes.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/reviewing_changes.md", "file_name": "reviewing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/reviewing_changes.md"}, "hash": "e8f8404bef0b45f0180c3167a22a5a73a2825d299c339c88bda7424bee1698a2", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ff919679-c51e-4f38-bf87-f5cabb8b85bb", "node_type": "1", "metadata": {"file_path": "content/docs/contributing/reviewing_changes.md", "file_name": "reviewing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/reviewing_changes.md"}, "hash": "01a3713eef5d4cf0382afe3aac36d49a2ab39540fa93f5b39726bb596b6488c0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "176c89b9-abf7-4e55-bb1c-7af2ccf0f82b", "node_type": "1", "metadata": {}, "hash": "a603186966b996d4898644b4d9e94a3486357da339524a37fdd5cb5c81d7743b", "class_name": "RelatedNodeInfo"}}, "text": "Some tests are required to pass and will block merging until they do.\n\nOther tests are allowed to fail.\nThis is because these tests check external hyperlinks which can fail for reasons out of our control: for example, a website being offline, or an API rate limit.\nHowever, you should always aim to have all tests passing and investigate why any test fails.\nIn particular, a genuinely incorrect link should not be ignored.\n\nYou should **always** clone the branch, build the handbook locally (using `hugo server --minify`) and inspect the changes using your browser.\nNot all bugs will be caught by CI and not all changes will be obvious in the source files.\n\n## Reviewing the Pull Request\n\nUse the [GitHub review system](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request) to check the diffs of all source files.\n\nYou should make use of [line comments](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request) where you have comments or questions about particular lines of sections.\nThis gives context so that everyone knows where the problem is or what the question refers to.\n\nLine comments can also be used to suggest changes (using the \u00b1 button).\nYou should do this when you have a simple solution.\nThis is an excellent way to share knowledge.\n\nWhen you are finished, [submit your review](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request#submitting-your-review), making sure to choose \"comment\", \"approve\" or \"request changes\" as appropriate.\n\n## Changes\n\nIf you request changes, the pull request will enter an iterative process where the contributors make adjustments you repeat the review process.\n\nThe contributors may accept your proposed changes, make their own changes or push back against changes.\nAll of these may be appropriate.\nIt is important to work together with the contributors to resolve any conversations.", "start_char_idx": 1158, "end_char_idx": 3312, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "176c89b9-abf7-4e55-bb1c-7af2ccf0f82b": {"__data__": {"id_": "176c89b9-abf7-4e55-bb1c-7af2ccf0f82b", "embedding": null, "metadata": {"file_path": "content/docs/contributing/reviewing_changes.md", "file_name": "reviewing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/reviewing_changes.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e347caf2f22c1a7dc2e89205dd05653f1fdceef8", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/reviewing_changes.md", "file_name": "reviewing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/reviewing_changes.md"}, "hash": "e8f8404bef0b45f0180c3167a22a5a73a2825d299c339c88bda7424bee1698a2", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f32ce356-37da-4a43-a12d-8bf950636c30", "node_type": "1", "metadata": {"file_path": "content/docs/contributing/reviewing_changes.md", "file_name": "reviewing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/reviewing_changes.md"}, "hash": "b322d7938ad8b025fdebe0e584f2ab13ea53c6d10a80fd0a7ebe41d631217214", "class_name": "RelatedNodeInfo"}}, "text": "This gives context so that everyone knows where the problem is or what the question refers to.\n\nLine comments can also be used to suggest changes (using the \u00b1 button).\nYou should do this when you have a simple solution.\nThis is an excellent way to share knowledge.\n\nWhen you are finished, [submit your review](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request#submitting-your-review), making sure to choose \"comment\", \"approve\" or \"request changes\" as appropriate.\n\n## Changes\n\nIf you request changes, the pull request will enter an iterative process where the contributors make adjustments you repeat the review process.\n\nThe contributors may accept your proposed changes, make their own changes or push back against changes.\nAll of these may be appropriate.\nIt is important to work together with the contributors to resolve any conversations.\nAll conversations **must** be resolved before merging.\n\n## Merging\n\nUpdate your review status to \"approve\" when you are happy with the state of the pull request.\nWhen all reviewers are satisfied, merge the pull request.", "start_char_idx": 2364, "end_char_idx": 3532, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e3729547-1eca-467b-9bb0-fe1804f9a874": {"__data__": {"id_": "e3729547-1eca-467b-9bb0-fe1804f9a874", "embedding": null, "metadata": {"file_path": "content/docs/contributing/style_guide.md", "file_name": "style_guide.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/style_guide.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/style_guide.md", "file_name": "style_guide.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/style_guide.md"}, "hash": "c969046daeae1b4d7ed1ecb5132baba10ed90f952d1d0301a651cefbf1f4e2e0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b33cd473-ff1c-4fd5-9e29-3957daf45389", "node_type": "1", "metadata": {}, "hash": "e74a1265891ee8d762816969b16eddbf71bca204674791b34dd331f7d2172d09", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Style Guide\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 2\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Style Guide\n\n## Semantic Line Breaks\n\nIt is encouraged to use [Semantic Line Breaks](https://sembr.org/) when writing for the handbook.\nThis improves the readability of source files and make diffs clearer.\nThe Semantic Line Breaks [specification](https://sembr.org) explains the rules and reasoning.\nThe most important rules are,\n\n> - A semantic line break MUST occur after a sentence, as punctuated by a period (.), exclamation mark (!), or question mark (?).\n> - A semantic line break SHOULD occur after an independent clause as punctuated by a comma (,), semicolon (;), colon (:), or em dash (\u2014).\n> - A semantic line break MAY occur after a dependent clause in order to clarify grammatical structure or satisfy line length constraints.\n\n## Markdown\n\nWhenever possible, the handbook's prose should be written in Markdown rather than HTML.\nHowever, it is completely reasonable use HTML when it is needed.\nWhen it is advantageous, data should be [stored in data files and processed using shortcodes](https://gohugo.io/templates/data-templates/) rather than presented in raw Markdown.\n\n## Style Enforcement\n\nMarkdown styling is enforced using the [`markdownlint`](https://github.com/markdownlint/markdownlint) tool, using the style rules in {{% repo_link path=\".mdl_style.rb\" text=\"`.mdl_style.rb`\" %}}.\nAn explanation of the rules can be found [here](https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md).\n\nMarkdown linting is performed on all pull requests made to the handbook repository, as described in the [Continuous Integration]({{< relref \"/docs/contributing/contributing_changes.md#continuous-integration\" >}}) section.", "start_char_idx": 0, "end_char_idx": 2039, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b33cd473-ff1c-4fd5-9e29-3957daf45389": {"__data__": {"id_": "b33cd473-ff1c-4fd5-9e29-3957daf45389", "embedding": null, "metadata": {"file_path": "content/docs/contributing/style_guide.md", "file_name": "style_guide.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/style_guide.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae", "node_type": "4", "metadata": {"file_path": "content/docs/contributing/style_guide.md", "file_name": "style_guide.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/style_guide.md"}, "hash": "c969046daeae1b4d7ed1ecb5132baba10ed90f952d1d0301a651cefbf1f4e2e0", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e3729547-1eca-467b-9bb0-fe1804f9a874", "node_type": "1", "metadata": {"file_path": "content/docs/contributing/style_guide.md", "file_name": "style_guide.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/style_guide.md"}, "hash": "56fd089cad12727b641148e36dc21df6f09838f01978b279cc24038a32b4bf8d", "class_name": "RelatedNodeInfo"}}, "text": "## Markdown\n\nWhenever possible, the handbook's prose should be written in Markdown rather than HTML.\nHowever, it is completely reasonable use HTML when it is needed.\nWhen it is advantageous, data should be [stored in data files and processed using shortcodes](https://gohugo.io/templates/data-templates/) rather than presented in raw Markdown.\n\n## Style Enforcement\n\nMarkdown styling is enforced using the [`markdownlint`](https://github.com/markdownlint/markdownlint) tool, using the style rules in {{% repo_link path=\".mdl_style.rb\" text=\"`.mdl_style.rb`\" %}}.\nAn explanation of the rules can be found [here](https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md).\n\nMarkdown linting is performed on all pull requests made to the handbook repository, as described in the [Continuous Integration]({{< relref \"/docs/contributing/contributing_changes.md#continuous-integration\" >}}) section.\n\nIf you wish to lint locally, the repository contains a [pre-commit hook](https://pre-commit.com/) to do this, described in the [Making Changes]({{< relref \"/docs/contributing/contributing_changes.md#making-changes\" >}}) section.", "start_char_idx": 1133, "end_char_idx": 2269, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "142c2d96-ae16-4cf2-9256-dd7251e34c94": {"__data__": {"id_": "142c2d96-ae16-4cf2-9256-dd7251e34c94", "embedding": null, "metadata": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "53f966366a793fd602bd41df877eb4dff3ffce6a", "node_type": "4", "metadata": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md"}, "hash": "b8da954bc51018d35f98c4256c2940b4aa89b10081ca56d7af0c6f5fffbaa686", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4acae13b-0545-456d-b97b-aa278ff7ef96", "node_type": "1", "metadata": {}, "hash": "a4a808f3a38310cd9b254e4d544246b331aae89cc44b2e4069eec04769581d65", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Contributors\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: -1\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Contributors\n\nIn this table we try to capture everyone who has contributed to the project and how they have contributed.\nThe table is generated and maintained using [All Contributors](https://allcontributors.org/).\n\n\n\n\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\"Andy
Andy Smith

\ud83d\udd8b \ud83d\udc40 \ud83e\udd14 \ud83d\udcbb \ud83c\udfa8
\ud83d\udc40 \ud83e\udd14 \ud83d\udcbb \ud83c\udfa8\"Christina
Christina Last

\ud83d\udd8b
\"David
David Beavan

\ud83e\udd14 \ud83d\udc40 \ud83d\udd8b \ud83d\udea7

David Beavan

\ud83e\udd14 \ud83d\udc40 \ud83d\udd8b \ud83d\udea7
\"David
David Llewellyn-Jones

\ud83d\udd8b \ud83e\udd14 \ud83d\udc1b \ud83d\udcd6 \ud83d\udc40 \ud83d\udea7
\ud83e\udd14 \ud83d\udc1b \ud83d\udcd6 \ud83d\udc40 \ud83d\udea7\"David
David Salvador Jasin

\ud83d\udd8b \ud83e\udd14 \ud83d\udc40 \ud83d\udea7
\"Ed
Ed Chalstrey

\ud83e\udd14 \ud83d\udc40 \ud83d\udea7
\"Ed
Ed Chalstrey

\ud83e\udd14 \ud83d\udea7
\"Ed
Ed Chapman

\ud83e\udd14 \ud83d\udea7
\"Ed
Ed Chapman

\ud83e\udd14 \ud83d\udea7
\"Federico
Federico Nanni

\ud83d\udd8b \ud83e\udd14
\"Gabriel\"/
Gabriel

\ud83d\udd8b \ud83e\udd14
\ud83e\udd14\"Gabriel\"/
Gabriel

\ud83d\udd8b \ud83e\udd14
\"Isabel
Isabel Fenton

\ud83d\udc40 \ud83e\udd14 \ud83d\udea7
\"Jack
Jack Roberts

\ud83d\udd8b
\ud83e\udd14 \ud83d\udea7\"Jack
Jack Roberts

\ud83d\udd8b
\"James
James Robinson

\ud83d\udd8b
\"Jim
Jim Madge

\ud83d\udcbb \ud83d\udd8b \ud83d\udcd6 \"Jim
Jim Madge

\ud83d\udcbb \ud83d\udd8b \ud83d\udcd6 \ud83d\udc40 \ud83e\udd14 \ud83d\ude87 \ud83d\udc1b
\"Jonathan
Jonathan Yong

\ud83d\udd8b \ud83e\udd14 \ud83d\udea7 \ud83d\udc1b
\"Jonathan
Jonathan Yong

\ud83d\udd8b \ud83e\udd14 \ud83d\udea7 \ud83d\udc40
\"Katriona
Katriona Goldmann

\ud83d\udd8b \ud83d\udc40 \ud83e\udd14 \ud83d\udea7
\"Katriona
Katriona Goldmann
\ud83d\udd8b \ud83d\udc40 \ud83e\udd14 \ud83d\udea7
\"Levan
Levan Bokeria

\ud83d\udc1b \ud83d\udd8b \ud83e\udd14 \ud83d\udea7
\"Levan
Levan Bokeria

\ud83d\udc1b \ud83d\udd8b \ud83e\udd14 \ud83d\udea7
\"Lydia
Lydia France

\ud83d\udd8b \ud83e\udd14 \ud83d\udea7
\"Malvika
Malvika Sharan

\ud83e\udd14
\"Malvika
Malvika Sharan

\ud83e\udd14
\"Markus
Markus Hauru

\ud83d\udd8b \ud83e\udd14 \ud83d\udc40 \ud83d\udea7
\"Martin
Martin O'Reilly

\ud83e\udd14
\"Martin
Martin O'Reilly

\ud83e\udd14
\"Matt
Matt Craddock

\ud83e\udd14 \ud83d\udea7
\"Nathan
Nathan Simpson

\ud83e\udd14 \ud83d\udea7
\"Oscar
Oscar T Giles


Nathan Simpson

\ud83e\udd14 \ud83d\udea7
\"Oscar
Oscar T Giles

\ud83e\udd14
\"Radka
Radka Jersakova

\ud83d\udd8b
\"Roly
Roly Perera

\ud83e\udd14
\"Radka
Radka Jersakova

\ud83d\udd8b
\"Roly
Roly Perera

\ud83e\udd14
\"Rosie
Rosie Wood

\ud83e\udd14 \ud83d\udea7
\"Ryan
Ryan Chan

\ud83d\udd8b
\ud83e\udd14 \ud83d\udea7\"Ryan
Ryan Chan

\ud83d\udd8b
\"Tim
Tim Hobson

\ud83d\udd8b
\"griff-rees\"/
griff-rees

\ud83e\udd14
\"griff-rees\"/
griff-rees

\ud83e\udd14
\"helenashowell\"/
helenashowell

\ud83d\udd8b \ud83e\udd14
\"martin\"/
martin

\ud83d\udd8b \ud83e\udd14 \ud83d\udea7
\"martin\"/
martin

\ud83d\udd8b \ud83e\udd14 \ud83d\udea7
\"nbarlowATI\"/
nbarlowATI

\ud83e\udd14
\n\n\n\n\n\n", "start_char_idx": 14153, "end_char_idx": 14995, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3feceeca-3eb9-43ae-95e8-61c9cf5c6d57": {"__data__": {"id_": "3feceeca-3eb9-43ae-95e8-61c9cf5c6d57", "embedding": null, "metadata": {"file_path": "content/docs/employee_processes/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/_index.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7400df9edd9c4071fcbab15b4862891105a2e1bd", "node_type": "4", "metadata": {"file_path": "content/docs/employee_processes/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/_index.md"}, "hash": "7e7e678ec393e56f637fb49919db980f27aa94f5bd88b00aec3fcb66c71a0371", "class_name": "RelatedNodeInfo"}}, "text": "---\ntitle: \"Employee processes\"\nweight: 3\n---\n\n# Employee processes", "start_char_idx": 0, "end_char_idx": 67, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "84900df3-9ac3-4d8b-a692-cfb617fe1e84": {"__data__": {"id_": "84900df3-9ac3-4d8b-a692-cfb617fe1e84", "embedding": null, "metadata": {"file_path": "content/docs/employee_processes/annual_appraisals.md", "file_name": "annual_appraisals.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/annual_appraisals.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "63768c9127a41b6c46ab497d2341cfbcde106d65", "node_type": "4", "metadata": {"file_path": "content/docs/employee_processes/annual_appraisals.md", "file_name": "annual_appraisals.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/annual_appraisals.md"}, "hash": "a720175548113be9c9d4f49eb51f3c675cedb847cb2e8491c9e77afceb91f0d8", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Annual Appraisals\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 2\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Annual Appraisals\n\nREG is a large team, with a relatively flat line management structure. Therefore we run a team-wide standardisation process where appraisals and progression award recommendations are reviewed to ensure consistency and fairness across the team.\n\nOur goal is to work within the wider HR policy and guidance (see [HR Performance Review Guide](https://mathison.turing.ac.uk/page/2319)) to prioritise what we think is most important for our team (fairness, transparency and a clear progression path) and provide clear guidance to achieve that.\n\n## Principles\n\n1. REG members who are operating at an equivalent level should receive equivalent pay.\n1. We are a learning team and our default assumption is that people will generally be growing and developing in their role as they gain more experience.\n1. Everyone who is performing and developing as expected for their role and their experience level within it should expect to progress through their pay band each year on top of the cost of living adjustment. This is very much in line with the guidance on salary increases from HR.\n\n## Useful links\n\n- [Annual appraisal process for those on probation]({{< relref \"/docs/employee_processes/probation.md#annual-appraisal\" >}})\n- [REG Appraisal Guide](https://github.com/alan-turing-institute/research-engineering-group/wiki/Annual-appraisals)\n- [Annual Pay Increases](https://github.com/alan-turing-institute/research-engineering-group/wiki/Annual-pay-increases)\n- [HR Performance Review Guide](https://mathison.turing.ac.uk/page/2319)", "start_char_idx": 0, "end_char_idx": 1946, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3603f85b-d8fd-4081-8258-ca892ef85005": {"__data__": {"id_": "3603f85b-d8fd-4081-8258-ca892ef85005", "embedding": null, "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "node_type": "4", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "e3f8822b8dae8cfbb35d7df9be8b327cc85fdd8b9ba7d9b80c5f0f2c8c1cdfa5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "60b8c530-ba1a-41bc-9d6b-3991791bc2b6", "node_type": "1", "metadata": {}, "hash": "49b9e4f55361e89ef5d30ef61cb5226d4c6d04475785a537c713ec5c8316adc7", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Probation\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 1\n---\n\n# Probation\n\nDuring the initial 6 months in a team member's appointment to the institute, they will undergo probation review with their line manager. (Note that if an existing team member was previously in another role at the Turing and underwent probation review in that role, they do not require a probation review when appointed to a role in REG.) This is designed to integrate with the on-boarding process to ensure that new team members are performing their job as expected. This wiki page outlines the expectations for team members and line managers in going through the probation process.\n\nTuring-wide information on probation can be found on Mathison:\n\n- [Probation Policy](https://mathison.turing.ac.uk/Utilities/Uploads/Handler/Uploader.ashx?area=composer&filename=Probation+Policy+HRPOL017+V1.0.pdf&fileguid=070ff12d-845c-400d-9826-bac27fa5b3ad)\n- [Probation FAQs](https://mathison.turing.ac.uk/Utilities/Uploads/Handler/Uploader.ashx?area=composer&filename=Probation+Period+Training+FAQs.pdf&fileguid=bb062c31-018f-4eee-8fc3-6e74c56addb8)\n\n## Information for team members on probation\n\nProbation in REG is a lightweight review process that will ensure you are settling into the role and performing as expected. Turing policy is that such reviews should occur with meetings at 3 weeks, 3 months, and 5 months from the team member's start date, with a final recommendation at 6 months:\n\n- **3 weeks:** Create a set of initial probation objectives once the team member has settled in. Note that you might not have a clear project or projects to work on at this point, so it is fine to refine any objectives set now at the subsequent reviews. Your manager can help you set appropriate objectives.\n- **3 months:** Initial review of progress towards your probation objectives.", "start_char_idx": 0, "end_char_idx": 1937, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "60b8c530-ba1a-41bc-9d6b-3991791bc2b6": {"__data__": {"id_": "60b8c530-ba1a-41bc-9d6b-3991791bc2b6", "embedding": null, "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "node_type": "4", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "e3f8822b8dae8cfbb35d7df9be8b327cc85fdd8b9ba7d9b80c5f0f2c8c1cdfa5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3603f85b-d8fd-4081-8258-ca892ef85005", "node_type": "1", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "9b3d243e26711749e21772d284c0c3e5a950eecc888c23b49c868ded999761cb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "22d5c08c-b3b9-4ae9-86cd-af3e8edb4af1", "node_type": "1", "metadata": {}, "hash": "67f6f99c4179dfaf21b519c0e5a8c3915a775ef7823179dfcdd40ce7847a292e", "class_name": "RelatedNodeInfo"}}, "text": "Turing policy is that such reviews should occur with meetings at 3 weeks, 3 months, and 5 months from the team member's start date, with a final recommendation at 6 months:\n\n- **3 weeks:** Create a set of initial probation objectives once the team member has settled in. Note that you might not have a clear project or projects to work on at this point, so it is fine to refine any objectives set now at the subsequent reviews. Your manager can help you set appropriate objectives.\n- **3 months:** Initial review of progress towards your probation objectives. Your line manager will solicit feedback from people you have worked with to ensure you are settling into the team. You may need to revise your objectives to adjust for changes in the projects you have been working on, which is very normal.\n- **5 months:** Final review prior to end of probation. The timing of this review is designed to give one last chance for actionable feedback to someone that is underperforming. In cases where someone is underperforming the most likely action to be taken at this time is to extend probation for an additional 3 months.\n- **6 months:** Recommendation is made to pass probation, or to extend if the team member would benefit from additional time to settle into the role.\n\nUpon passing probation, the REG Leadership Team (Director and the Principals) will review your salary to ensure you are fairly placed relative to your peers. Juniors will not undergo pay review, as we have a separate process for development and promotion for Juniors, summarised below. See the wiki page on [[Annual-pay-increases]] for more information on the REG philosophy and principles for pay and progression, and additional information specific to the end of probation review below.\n\n## Additional Probation Information for Juniors\n\nBecause the Junior role is slightly different from REG roles at Standard and above, Juniors have their growth and development monitored more closely. Juniors are assessed at the end of probation as all members of the team following the description above, but have additional promotion reviews at roughly 6 month intervals to monitor their growth and development.", "start_char_idx": 1378, "end_char_idx": 3549, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "22d5c08c-b3b9-4ae9-86cd-af3e8edb4af1": {"__data__": {"id_": "22d5c08c-b3b9-4ae9-86cd-af3e8edb4af1", "embedding": null, "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "node_type": "4", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "e3f8822b8dae8cfbb35d7df9be8b327cc85fdd8b9ba7d9b80c5f0f2c8c1cdfa5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "60b8c530-ba1a-41bc-9d6b-3991791bc2b6", "node_type": "1", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "800580b30fce1e45af922764d400184f6a0f72427e4841f3f73c43c9a72ce4e2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7e725ce8-52cb-49c5-8e0a-bd6d4c21728d", "node_type": "1", "metadata": {}, "hash": "d7dbae8dc4897c01a3b9e4ab0b0638e438f4bb3f1f6f0d8c2c0940a544b94b3c", "class_name": "RelatedNodeInfo"}}, "text": "Upon passing probation, the REG Leadership Team (Director and the Principals) will review your salary to ensure you are fairly placed relative to your peers. Juniors will not undergo pay review, as we have a separate process for development and promotion for Juniors, summarised below. See the wiki page on [[Annual-pay-increases]] for more information on the REG philosophy and principles for pay and progression, and additional information specific to the end of probation review below.\n\n## Additional Probation Information for Juniors\n\nBecause the Junior role is slightly different from REG roles at Standard and above, Juniors have their growth and development monitored more closely. Juniors are assessed at the end of probation as all members of the team following the description above, but have additional promotion reviews at roughly 6 month intervals to monitor their growth and development. The first promotion review occurs after the Junior has been on the team for roughly one year, and it is at this time that the Junior's pay will be adjusted if they are growing and developing as expected (either through promotion to standard, or giving a development pay increase if they are growing in the role but not ready for promotion to Standard). This ensures that Juniors have their pay reviewed as frequently as all team members and are promoted to Standard as soon as they are ready.\n\n## Probation information for line managers\n\nAs a manager, you are expected to help guide your report through their initial project work (or other team activities if they are not assigned to a project) and ensure their probation objectives are appropriate for their role. You should be gathering regular feedback from the team member's collaborators (ideally someone more senior than them) and passing on information on their work and giving any constructive feedback. If all is going well, a quick message to the reviewers every few weeks to confirm that all is okay should be fine, and you should pass this information on in your regular 1/1s with the team member.\n\nAt 3 months, you will hold a mid-term probation review, which should simply be a slightly more formal version of the ongoing feedback on their performance.", "start_char_idx": 2648, "end_char_idx": 4866, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7e725ce8-52cb-49c5-8e0a-bd6d4c21728d": {"__data__": {"id_": "7e725ce8-52cb-49c5-8e0a-bd6d4c21728d", "embedding": null, "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "node_type": "4", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "e3f8822b8dae8cfbb35d7df9be8b327cc85fdd8b9ba7d9b80c5f0f2c8c1cdfa5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "22d5c08c-b3b9-4ae9-86cd-af3e8edb4af1", "node_type": "1", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "54a10956a8e3cece788f982c54a10b5aa7ac58e2a39a0a9c6ed257d1a1ad4f8a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5e5445b6-8ec1-4ab0-ace9-d2f41365a640", "node_type": "1", "metadata": {}, "hash": "b38732b319fc4877b821bd92f0e8c1b5a930f9410a2a3005d78eeb97a6662eee", "class_name": "RelatedNodeInfo"}}, "text": "This ensures that Juniors have their pay reviewed as frequently as all team members and are promoted to Standard as soon as they are ready.\n\n## Probation information for line managers\n\nAs a manager, you are expected to help guide your report through their initial project work (or other team activities if they are not assigned to a project) and ensure their probation objectives are appropriate for their role. You should be gathering regular feedback from the team member's collaborators (ideally someone more senior than them) and passing on information on their work and giving any constructive feedback. If all is going well, a quick message to the reviewers every few weeks to confirm that all is okay should be fine, and you should pass this information on in your regular 1/1s with the team member.\n\nAt 3 months, you will hold a mid-term probation review, which should simply be a slightly more formal version of the ongoing feedback on their performance. If the team member did not have a project initially, then this is a good opportunity to revisit the initial objectives and ensure they reflect the work expected of the team member. This is also a good opportunity to ensure they are participating in team events like Tech Talks, integrating socially with the team (particularly if they are not regularly working in the office), and are contributing to a Service Area.\n\nAt 5 months, you will hold a second review. This review is mostly to ensure that any performance issues are communicated well in advance of the 6 month deadline (see below), but should be similar to the 3 month review.\n\nIf you do hear any concerns about the team member's performance, it is *very* important to follow up on this promptly. Because REG is a learning team, people are frequently working in unfamiliar territory and it can be difficult to recognise that they can ask for help when they are struggling and it is not a reflection on their performance. The team member could also be facing a difficult situation outside of work -- if they are not comfortable sharing their situation with you, then refer them to the [Turing's wellbeing support services](https://mathison.turing.ac.uk/page/2228), HR or the [Turing's External Supervisor](https://mathison.turing.ac.uk/page/3052).", "start_char_idx": 3903, "end_char_idx": 6173, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5e5445b6-8ec1-4ab0-ace9-d2f41365a640": {"__data__": {"id_": "5e5445b6-8ec1-4ab0-ace9-d2f41365a640", "embedding": null, "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "node_type": "4", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "e3f8822b8dae8cfbb35d7df9be8b327cc85fdd8b9ba7d9b80c5f0f2c8c1cdfa5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7e725ce8-52cb-49c5-8e0a-bd6d4c21728d", "node_type": "1", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "9380da57be54877302272a517321fb3f13fa6784c40764d209ffb66f46d443fb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "06acc6e2-25e8-4bf3-9fae-e254fa4a09da", "node_type": "1", "metadata": {}, "hash": "982820943a386d6c56066e9e8a347a45eb7ad87f762c0cb84aa3cfc595eeeb77", "class_name": "RelatedNodeInfo"}}, "text": "At 5 months, you will hold a second review. This review is mostly to ensure that any performance issues are communicated well in advance of the 6 month deadline (see below), but should be similar to the 3 month review.\n\nIf you do hear any concerns about the team member's performance, it is *very* important to follow up on this promptly. Because REG is a learning team, people are frequently working in unfamiliar territory and it can be difficult to recognise that they can ask for help when they are struggling and it is not a reflection on their performance. The team member could also be facing a difficult situation outside of work -- if they are not comfortable sharing their situation with you, then refer them to the [Turing's wellbeing support services](https://mathison.turing.ac.uk/page/2228), HR or the [Turing's External Supervisor](https://mathison.turing.ac.uk/page/3052). If there are problems with the team member's performance and the manager is not comfortable giving this feedback to the team member, then it is best to ask for help from the Principal into whom you report. If there are still problems with the team member's performance at the 5 month review, then you should speak to the Principal in your reporting line.\n\n## Post-probation salary review points\n\n### End of probation review\n\nAt the end of probation, REG will conduct a salary review of all Standard and above team members passing probation. Junior staff will have their salary reviewed 12 months after appointment as part of their first promotion review (see additional information above).\n\nThis is purely an opportunity to identify any rare cases where we have clearly and significantly mis-levelled a new starter on initial appointment to the team. Changes to salary will only be made in exceptional circumstances to adjust the team member's placement in the band to correct a significant misalignment and where it would not be fair to wait to the next annual appraisal to address this.", "start_char_idx": 5285, "end_char_idx": 7262, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "06acc6e2-25e8-4bf3-9fae-e254fa4a09da": {"__data__": {"id_": "06acc6e2-25e8-4bf3-9fae-e254fa4a09da", "embedding": null, "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "node_type": "4", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "e3f8822b8dae8cfbb35d7df9be8b327cc85fdd8b9ba7d9b80c5f0f2c8c1cdfa5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5e5445b6-8ec1-4ab0-ace9-d2f41365a640", "node_type": "1", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "5018807062a23afb42251134f429a132d4ca438777806868252f7523d84f4ca6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "35af2b14-e6e5-48fd-9926-2ad98a0ee79a", "node_type": "1", "metadata": {}, "hash": "4601f692d45a5153b0d5d7abf06a84bbe6c1ed2a3485288b466df758640fc5a4", "class_name": "RelatedNodeInfo"}}, "text": "If there are still problems with the team member's performance at the 5 month review, then you should speak to the Principal in your reporting line.\n\n## Post-probation salary review points\n\n### End of probation review\n\nAt the end of probation, REG will conduct a salary review of all Standard and above team members passing probation. Junior staff will have their salary reviewed 12 months after appointment as part of their first promotion review (see additional information above).\n\nThis is purely an opportunity to identify any rare cases where we have clearly and significantly mis-levelled a new starter on initial appointment to the team. Changes to salary will only be made in exceptional circumstances to adjust the team member's placement in the band to correct a significant misalignment and where it would not be fair to wait to the next annual appraisal to address this.\n\nAll line managers should evaluate whether they feel each of their reports completing probation was appointed at the right 1/3 of the salary band for their role and complete the [probation completion form](https://github.com/alan-turing-institute/Hut23/tree/master/development/probation-completion-form.md) and send to the Principal in their reporting line and the REG Director.\n\nAs with progression award recommendations made as part of the annual appraisal process, the final decision on whether a salary adjustment will be made lies with the REG Director, subject to approval by Institute Senior Management.\n\n### Annual appraisal\n\nFrom the 2023-24 appraisal year, all REG staff who have completed probation on or before 31 May will be eligible for a progression award as part of the annual appraisal process, with these awards pro-rated for those in-post less than 12 months.\n\nAll employees who complete probation on or before 31 January will go through the standard appraisal process on the HR system (Cezanne). Those completing probation between 01 February and 31 May will not be included in the formal appraisal process on the HR system but, for REG, line managers will perform a similar appraisal of performance as for those staff who are going through the formal appraisal process and will make a recommendation for a progression award on the same basis as for those going through the formal appraisal process.", "start_char_idx": 6380, "end_char_idx": 8682, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "35af2b14-e6e5-48fd-9926-2ad98a0ee79a": {"__data__": {"id_": "35af2b14-e6e5-48fd-9926-2ad98a0ee79a", "embedding": null, "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d", "node_type": "4", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "e3f8822b8dae8cfbb35d7df9be8b327cc85fdd8b9ba7d9b80c5f0f2c8c1cdfa5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "06acc6e2-25e8-4bf3-9fae-e254fa4a09da", "node_type": "1", "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}, "hash": "36662840003334fa4f91c129deab3a495d4add6e4bddfd9442818bca0dd1616d", "class_name": "RelatedNodeInfo"}}, "text": "As with progression award recommendations made as part of the annual appraisal process, the final decision on whether a salary adjustment will be made lies with the REG Director, subject to approval by Institute Senior Management.\n\n### Annual appraisal\n\nFrom the 2023-24 appraisal year, all REG staff who have completed probation on or before 31 May will be eligible for a progression award as part of the annual appraisal process, with these awards pro-rated for those in-post less than 12 months.\n\nAll employees who complete probation on or before 31 January will go through the standard appraisal process on the HR system (Cezanne). Those completing probation between 01 February and 31 May will not be included in the formal appraisal process on the HR system but, for REG, line managers will perform a similar appraisal of performance as for those staff who are going through the formal appraisal process and will make a recommendation for a progression award on the same basis as for those going through the formal appraisal process. Whether undergoing the formal or informal appraisal process, **progression awards will be pro-rated for staff with less than 12 months of service**. See the [Performance Review Guide](https://mathison.turing.ac.uk/page/2319) for more information.\n\nSee the [REG Appraisal Guide](https://github.com/alan-turing-institute/research-engineering-group/wiki/Annual-appraisals) for details of how the appraisal process (formal or informal) is run in REG. Note that progression awards made as part of the annual appraisal process are separate to the universal unconditional cost of living increase awarded to all employees, regardless of probation status, each April. See the [annual pay increases](https://github.com/alan-turing-institute/research-engineering-group/wiki/Annual-pay-increases) page for details of cost of living and progression awards from previous years.", "start_char_idx": 7643, "end_char_idx": 9546, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2dbabf73-3621-4277-810f-def259b60568": {"__data__": {"id_": "2dbabf73-3621-4277-810f-def259b60568", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/_index.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "355608b3e4baabc116162490b302ac19818f0c72", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/_index.md"}, "hash": "e37b231396950826b365c3d13dabf9d8bfb1b392863a1e81ea0d59ea12e2a045", "class_name": "RelatedNodeInfo"}}, "text": "---\ntitle: \"How we work\"\nweight: 4\n---\n\n# How We Work", "start_char_idx": 0, "end_char_idx": 53, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "308301a6-2983-480c-b771-15de12d77e0f": {"__data__": {"id_": "308301a6-2983-480c-b771-15de12d77e0f", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/acronyms_and_abbreviations.md", "file_name": "acronyms_and_abbreviations.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/acronyms_and_abbreviations.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/acronyms_and_abbreviations.md", "file_name": "acronyms_and_abbreviations.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/acronyms_and_abbreviations.md"}, "hash": "236a182283f6d593c2def574ae32904422725915e92a250444b290ac4fe77165", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9f03394b-9689-4c1e-a008-2f40d8c0ee0e", "node_type": "1", "metadata": {}, "hash": "8b73b1fea2bddfd5d296080db0e626292c290b1f73c340cb5af31a23a1b0a455", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Acronyms and Abbreviations\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 100\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Acronyms and Abbreviations\n\nAIDA: Artificial Intelligence for Data Analytics\n\nALOGIT: name of a Fortran package (see [issue](https://github.com/alan-turing-institute/Hut23/issues/295))\n\nASG: AI for Science and Government (the new name of the EPSRC funds from SPF)\n\nARC: Applied Research Centre / Australian Research Council\n\nBL: British Library\n\nBPT: Bayesian Performance Tuning\n\nChrono: Chronotopic Cartographies\n\nCPD: Change-point detection (method to apply to data in AIDA-Lloyds project)\n\nCT: Computerised Tomography\n\nDAS: Data Availability Statements (Giovanni's 22-days research paper)\n\nDAFNI: [Data & Analytics Facility for National Infrastructure](https://www.dafni.ac.uk/)\n\nDC: Detector-Checker\n\nD&S: Defence and Security (Programme)\n\nDS&DH: Data Science & Digital Humanities (Special Interest Group)\n\nDSB: Data Science Benchmarking\n\nDS for SD: Data Science for Sustainable Development\n\nDSG: Data Study Group\n\nDSSG: Data Science for Social Good\n\nDSSH: Data Science for Science and the Humanities (Programme)\n\nEDS: Economic Data Science\n\nEOM: End of message\n\nFTE: Full Time Equivalent\n\nGUARD: Global Urban Analytics for Resilient Defence\n\nHPC: High Performance Computing\n\nIAG: International Airlines Group (British Airways merged with Iberia to form IAG)\n\nKF: Knowledge Flows\n\nLwM: Living with Machines\n\nNATS: National Air Traffic Services\n\nOpenMP: [Open Multi-Processing](https://en.wikipedia.", "start_char_idx": 0, "end_char_idx": 1812, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9f03394b-9689-4c1e-a008-2f40d8c0ee0e": {"__data__": {"id_": "9f03394b-9689-4c1e-a008-2f40d8c0ee0e", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/acronyms_and_abbreviations.md", "file_name": "acronyms_and_abbreviations.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/acronyms_and_abbreviations.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/acronyms_and_abbreviations.md", "file_name": "acronyms_and_abbreviations.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/acronyms_and_abbreviations.md"}, "hash": "236a182283f6d593c2def574ae32904422725915e92a250444b290ac4fe77165", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "308301a6-2983-480c-b771-15de12d77e0f", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/acronyms_and_abbreviations.md", "file_name": "acronyms_and_abbreviations.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/acronyms_and_abbreviations.md"}, "hash": "ca94bf7a976316fdcb7f13c8b4f17a2720ae635bd4e3b7adc86e2bd26578c961", "class_name": "RelatedNodeInfo"}}, "text": "dafni.ac.uk/)\n\nDC: Detector-Checker\n\nD&S: Defence and Security (Programme)\n\nDS&DH: Data Science & Digital Humanities (Special Interest Group)\n\nDSB: Data Science Benchmarking\n\nDS for SD: Data Science for Sustainable Development\n\nDSG: Data Study Group\n\nDSSG: Data Science for Social Good\n\nDSSH: Data Science for Science and the Humanities (Programme)\n\nEDS: Economic Data Science\n\nEOM: End of message\n\nFTE: Full Time Equivalent\n\nGUARD: Global Urban Analytics for Resilient Defence\n\nHPC: High Performance Computing\n\nIAG: International Airlines Group (British Airways merged with Iberia to form IAG)\n\nKF: Knowledge Flows\n\nLwM: Living with Machines\n\nNATS: National Air Traffic Services\n\nOpenMP: [Open Multi-Processing](https://en.wikipedia.org/wiki/OpenMP)\n\nPDQ: Proof-Driven Query\n\nPFEA: Probabilistic Finite Element Analysis\n\nRCP: Research Computing Platforms\n\nRCWG: Research Computing Working Group\n\nRDA: Research Data Alliance\n\nRDS: Research Data Scientist\n\nREG: Research Engineering Group\n\nRepRes: Reproducible Research\n\nRSD: Research Software Development\n\nRSE: Research Software Engineer(ing)\n\nSHEEP: SHEEP is a Homomorphic Encryption Evaluation Platform\n\nSPF: [Strategic Priorities Fund](https://www.turing.ac.uk/research/research-programmes/artificial-intelligence-ai/programme-articles/alan-turing-institute-spearhead-new-cutting-edge-data-science-and-ai-research-after-ps48-million) (see also ASG)\n\nTDA: Topological Data Analysis\n\nTPS: Tools, Practices, and Systems\n\nTMF: Toyota Mobility Foundation\n\nTNA: The National Archives\n\nTTW: The Turing Way\n\nUQBB: Uncertainty Quantification for Black Box Computational Models\n\nUQM^3: Uncertainty Quantification in Multi-scale, Multi-physics Models\n\nWFH: Working from home", "start_char_idx": 1078, "end_char_idx": 2795, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fce3078e-c270-459f-a637-5009e3c264e1": {"__data__": {"id_": "fce3078e-c270-459f-a637-5009e3c264e1", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/code_audits.md", "file_name": "code_audits.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/code_audits.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/code_audits.md", "file_name": "code_audits.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/code_audits.md"}, "hash": "07587a402538d64924ecc1b11fd07da62a6713ac489bc76a60f03654226c844a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0efe9dfa-f503-40c3-b065-20103e991baf", "node_type": "1", "metadata": {}, "hash": "a2d3e37bdd3220f7322e4092b9655697e10cb528d5640fe302dd0ba964a3fda0", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Repo Audits\"\n# Adjust the weight to reorder menu items (lower numbers appear first)\nweight: 2\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Repo Audits\n\nAs required we conduct audits of GitHub repositories created during projects.\nThe aim is to check that the documentation is clear, installation is easy etc.\n\nAudits should be conducted by people who have not worked on the project.\n\n## Past experience\n\nThese comments from running the first round of these in June 2021:\n\n> Installation is a big barrier for software with complex build requirements.\n> We tried looking at two web app projects (Counterfactual Covid 19 and CROP) and despite Docker images being available we weren't able to get them to build correctly.\n> We might have had more success if all we needed to do was a pip or CRAN install.\n>\n> - First lesson: installation is ALWAYS harder than you think, and we need to get more fresh eyes on build instructions if we want our software to be easily usable.\n> - Second Lesson: Not having someone on hand from the project can be a big barrier, as we suspect there may have just been some small tweaks or changes that would fix our problem.\n> - One suggestion was to have a mix of unsupervised hacking and more knowledgeable feedback, maybe by having the person working on the project show up an hour in. If we can't get someone who knows the project well to attend, at least have them available on Slack in case we get stuck.\n> - At the very least, we were able to document our issues on the repo, and in at least one case the project was able to make fixes.\n>\n> One suggestion is to encourage \"Good First Issue\" tags or \"Hacktoberfest\"-type tags that would help people know what simple things could be tackled in a few hours if they succeed in installing the software.", "start_char_idx": 0, "end_char_idx": 1984, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0efe9dfa-f503-40c3-b065-20103e991baf": {"__data__": {"id_": "0efe9dfa-f503-40c3-b065-20103e991baf", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/code_audits.md", "file_name": "code_audits.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/code_audits.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/code_audits.md", "file_name": "code_audits.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/code_audits.md"}, "hash": "07587a402538d64924ecc1b11fd07da62a6713ac489bc76a60f03654226c844a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fce3078e-c270-459f-a637-5009e3c264e1", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/code_audits.md", "file_name": "code_audits.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/code_audits.md"}, "hash": "3be40d49596f7ea1409f610c1038314f3e4274d066ae54c5a539fb0ea413b28c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "02041b0f-2b6e-4ef5-9bff-b504d45e83c7", "node_type": "1", "metadata": {}, "hash": "d83f15d67b44d617494538a8a00cdb71003d62e244d50f234b6ff1d419b4696b", "class_name": "RelatedNodeInfo"}}, "text": "> - Second Lesson: Not having someone on hand from the project can be a big barrier, as we suspect there may have just been some small tweaks or changes that would fix our problem.\n> - One suggestion was to have a mix of unsupervised hacking and more knowledgeable feedback, maybe by having the person working on the project show up an hour in. If we can't get someone who knows the project well to attend, at least have them available on Slack in case we get stuck.\n> - At the very least, we were able to document our issues on the repo, and in at least one case the project was able to make fixes.\n>\n> One suggestion is to encourage \"Good First Issue\" tags or \"Hacktoberfest\"-type tags that would help people know what simple things could be tackled in a few hours if they succeed in installing the software.\n> I have found that it isn't always straightforward to come up with such issues (I tried thinking of some for a previous iteration of the activity, but always got stuck when I realized I didn't have a clue what to do and explaining the problem was hard enough), and in projects that are currently running it isn't always easy to leave these uncompleted when you have more time to work on a project.\n>\n> One idea was to have a HackMD document, similar to the one that suggests project meetings for new joiners to shadow, that lists all repos with such issues in one place, making it easier to find something fruitful to work on if these audits continue to be spontaneous.\n>\n> An alternative is to make these non-spontaneous and schedule them in advance.\n> We've kicked around the thought of scheduling lightning talks for all projects \u2014 perhaps we could better leverage people's brains if we gave a lightning talk intro on Tuesday and then guided people through installing and hacking on the software the next day?\n>\n> New joiners to projects inevitably spend a bunch of time doing exactly what we were trying to do in these sessions.\n> Can we leverage the time investment of the new joiner by doubling up other team members to do this?\n>\n> Should new joiners to the team be encouraged to do this for a couple of weeks before being assigned to a project?", "start_char_idx": 1174, "end_char_idx": 3338, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "02041b0f-2b6e-4ef5-9bff-b504d45e83c7": {"__data__": {"id_": "02041b0f-2b6e-4ef5-9bff-b504d45e83c7", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/code_audits.md", "file_name": "code_audits.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/code_audits.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "aac8d6e30090f116e25aadfb09076acb7c3a5346", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/code_audits.md", "file_name": "code_audits.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/code_audits.md"}, "hash": "07587a402538d64924ecc1b11fd07da62a6713ac489bc76a60f03654226c844a", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0efe9dfa-f503-40c3-b065-20103e991baf", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/code_audits.md", "file_name": "code_audits.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/code_audits.md"}, "hash": "06102c82d426d9ae8c7c0d2a6e6fe0a8743488f62065766446af95eda4abfae8", "class_name": "RelatedNodeInfo"}}, "text": ">\n> One idea was to have a HackMD document, similar to the one that suggests project meetings for new joiners to shadow, that lists all repos with such issues in one place, making it easier to find something fruitful to work on if these audits continue to be spontaneous.\n>\n> An alternative is to make these non-spontaneous and schedule them in advance.\n> We've kicked around the thought of scheduling lightning talks for all projects \u2014 perhaps we could better leverage people's brains if we gave a lightning talk intro on Tuesday and then guided people through installing and hacking on the software the next day?\n>\n> New joiners to projects inevitably spend a bunch of time doing exactly what we were trying to do in these sessions.\n> Can we leverage the time investment of the new joiner by doubling up other team members to do this?\n>\n> Should new joiners to the team be encouraged to do this for a couple of weeks before being assigned to a project?\n> I had a few new joiners on one of the audit sessions, and they said it was a good way to learn more about the team and our projects.", "start_char_idx": 2384, "end_char_idx": 3473, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2d448858-f9d3-4100-99b4-5f915b545d92": {"__data__": {"id_": "2d448858-f9d3-4100-99b4-5f915b545d92", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/defining-done.md", "file_name": "defining-done.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/defining-done.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/defining-done.md", "file_name": "defining-done.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/defining-done.md"}, "hash": "4c1c990d65dd5aa3844216624b8cacef2ffb3b4845fa2b4c10d703b4b09e6a75", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "83517c70-7306-4404-b05e-67fb691d01a8", "node_type": "1", "metadata": {}, "hash": "1efe86d1cdefbc8790abb7ee3c01bc1e8a5ba3ac8e8038c21ed04420f2a4330e", "class_name": "RelatedNodeInfo"}}, "text": "---\ntitle: \"Defining Project Doneness\"\nweight: 2\n\n---\n\n# Defining Project Doneness\n\nThis working document was produced as part of Accelerating AI in the Arts and Humanities (AAAH).\n\nAs a Research Software Engineer, we often join a collaborative project when a code base already exists.\nDefining the aims of a collaboration can be challenging, and when there is limited time it is important to apply attention in the right places.\nThe following document is designed to help:\n\n- Showcase what is important to us as RSEs\n- Assessing the current status of an existing repo\n- Define clear objectives\n- Determine where to put effort\n- Provide a common framework and language for collaborators\n- Clearly define when the collaboration is done!\n\nThe framework includes objectives that focus on improving the impact and legacy of the software, expanding communities of practice, and providing a confident codebase for future research.\n\nFor each project discuss with collaborators which \"Level\" in each of the following categories is a MINIMUM aim for defining done.\nRemember, time is a resource and so consider where efforts should be prioritised.\n\nReach and Robustness\n: Level 01. **Internal users**: Identify how users already use the tool and its current issues.\n: Level 02. **Best practices**: Address minimum code best practices with view to robustness and accessibility\n: Level 03. **External users**: Identify how similar external users could use the tool and current barriers\n: Level 04. **Generalise**: Identify how the tool could be made general and current barriers to that\n: Level 05. **Proof of concept**: Demonstrate its use outside its original intended purpose/audience.\n\nFunctionality\n: Level 01. **Standard use**: Install the tool, try out a standard use case, write a demo if one doesn't exist\n: Level 02. **Known Limitations**: Understand and report.\n: Level 03. **Advanced use**: Try out normal range but more advanced use cases, with edge cases.\n: Level 04. **New features**: Identifying features for new functionality.\n: Level 05. **Enhancements**: Fix functionality bugs and add features.\n\nDocumentation\n: Level 01.", "start_char_idx": 0, "end_char_idx": 2129, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "83517c70-7306-4404-b05e-67fb691d01a8": {"__data__": {"id_": "83517c70-7306-4404-b05e-67fb691d01a8", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/defining-done.md", "file_name": "defining-done.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/defining-done.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/defining-done.md", "file_name": "defining-done.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/defining-done.md"}, "hash": "4c1c990d65dd5aa3844216624b8cacef2ffb3b4845fa2b4c10d703b4b09e6a75", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2d448858-f9d3-4100-99b4-5f915b545d92", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/defining-done.md", "file_name": "defining-done.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/defining-done.md"}, "hash": "2ba3dd041b5328f157d2260825490959fd80bfd18658d9ee22a434384f05a5f6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fe552232-5b34-4657-b842-1fd039e24eb2", "node_type": "1", "metadata": {}, "hash": "6526f0e460fdb927b3e101a9dde447687e11ea4e0e85fdcc03b8f12048e480ed", "class_name": "RelatedNodeInfo"}}, "text": "**External users**: Identify how similar external users could use the tool and current barriers\n: Level 04. **Generalise**: Identify how the tool could be made general and current barriers to that\n: Level 05. **Proof of concept**: Demonstrate its use outside its original intended purpose/audience.\n\nFunctionality\n: Level 01. **Standard use**: Install the tool, try out a standard use case, write a demo if one doesn't exist\n: Level 02. **Known Limitations**: Understand and report.\n: Level 03. **Advanced use**: Try out normal range but more advanced use cases, with edge cases.\n: Level 04. **New features**: Identifying features for new functionality.\n: Level 05. **Enhancements**: Fix functionality bugs and add features.\n\nDocumentation\n: Level 01. **Follow docs**: Follow the existing starting point of documentation (no help!)\n: Level 02. **What's missing**: Identify what documentation is missing: e.g. installation, optional arguments, licensing, diagrams/screenshots, future work, etc.\n: Level 03. **Write docs**: Write the documentation in markdown files\n: Level 04. **Published**: Release the documentation on GitPages etc\n: Level 05. **Walkthrough**: Write walkthroughs/demos (also gifs or videos)\n\nTesting\n: Level 01. **Continous Integration** Start the automated infrastructure\n: Level 02. **Defining Positive/Negative Cases** Conversation about what are the expected outcomes/how the tool works\n: Level 03. **Automated User Tests** End-to-end tests that check expected outcomes from above, black box\n: Level 04. **Fine-grain Tests/Unit Tests** Focus on critical/pain points, remove brittleness, modularise and reuseable components\n: Level 05. **Error Reporting** Focus on negative cases, informative error communication for external collaboration\n\nOpen Release\n: Level 01. **Find barriers**: Identify minimum criteria that need to be solved before public release e.g. authorship, sensitivity, licensing, publicity, timings\n: Level 02.", "start_char_idx": 1378, "end_char_idx": 3326, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fe552232-5b34-4657-b842-1fd039e24eb2": {"__data__": {"id_": "fe552232-5b34-4657-b842-1fd039e24eb2", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/defining-done.md", "file_name": "defining-done.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/defining-done.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f7c1d6d16f4411a8515fce7ca22798085eb99e00", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/defining-done.md", "file_name": "defining-done.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/defining-done.md"}, "hash": "4c1c990d65dd5aa3844216624b8cacef2ffb3b4845fa2b4c10d703b4b09e6a75", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83517c70-7306-4404-b05e-67fb691d01a8", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/defining-done.md", "file_name": "defining-done.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/defining-done.md"}, "hash": "76bf0987317afb8b778a68b6a8ca8619778b35ea3fc5d09ee631e11aaae01f68", "class_name": "RelatedNodeInfo"}}, "text": "**Walkthrough**: Write walkthroughs/demos (also gifs or videos)\n\nTesting\n: Level 01. **Continous Integration** Start the automated infrastructure\n: Level 02. **Defining Positive/Negative Cases** Conversation about what are the expected outcomes/how the tool works\n: Level 03. **Automated User Tests** End-to-end tests that check expected outcomes from above, black box\n: Level 04. **Fine-grain Tests/Unit Tests** Focus on critical/pain points, remove brittleness, modularise and reuseable components\n: Level 05. **Error Reporting** Focus on negative cases, informative error communication for external collaboration\n\nOpen Release\n: Level 01. **Find barriers**: Identify minimum criteria that need to be solved before public release e.g. authorship, sensitivity, licensing, publicity, timings\n: Level 02. **Solve barriers**: Address the minimum criteria and milestone efforts\n: Level 03. **Release**: Make the repo public.\n: Level 04. **Distribute**: Release the repo on PiPY or CRAN or equivalent, include DOI\n: Level 05. **Publisise**: Publish the repo with JOSS, and/or publicly present the work.", "start_char_idx": 2523, "end_char_idx": 3621, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "60f9d284-345d-448e-b593-0fbe326aa09a": {"__data__": {"id_": "60f9d284-345d-448e-b593-0fbe326aa09a", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "d9e91d23f041b8b3ae1490d07ced447c832cd5ce38bc256652fa3d569cc01cac", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "80badcbb-374e-4a2f-82e0-22acbf1ee2a8", "node_type": "1", "metadata": {}, "hash": "ac5eaf2289918b89155b6eea7374c29f6017cb373217dfc85434bddd853b7dd5", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Knowledge Sharing\"\n# Adjust the weight to reorder menu items (lower numbers appear first)\nweight: 1\n---\n\n# Knowledge Sharing\n\nThis page lists the tools, resources and activities that REG has to promote general communication as well as sharing and gaining knowledge across the team (and the Turing as a whole), and some thoughts on what we could try to improve this.\nIf you're looking to learn something new, get help with a problem, share something cool you've been doing, or find out what others in the team are doing, the list below may give an idea of where to look/what to try.\n\nIf you'd like to organise something the best options are usually to post to [Slack](#slack) and the [Hut23 mailing list](#hut23-mailing-list) (see below).\n\n## Daily\n\n### Github Hut23 Repo\n\nWe use GitHub (and a couple of related tools) extensively for tracking projects and other tasks within the team.\nThere is a [separate page describing how we use them]({{< relref \"/docs/how_we_work/project_tracking.md\" >}}).\n\n### Coffee Breaks\n\nWe have coffee breaks on Gather twice daily.\nSee the [Regular Events]({{< relref \"../regular_events\" >}}) page for details.\nIf the times aren't convenient and you fancy a break then try posting on Slack and the chances are that there'll be others that fancy a break too.\n\n### Slack\n\nSlack is our main tool for informal messaging and announcements (there's some info on how to join on\n[here]({{< relref \"/docs/onboarding/new_joiners/systems_set_up.md#slack\" >}})).\nIt's also a good place to ask for help.", "start_char_idx": 0, "end_char_idx": 1581, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "80badcbb-374e-4a2f-82e0-22acbf1ee2a8": {"__data__": {"id_": "80badcbb-374e-4a2f-82e0-22acbf1ee2a8", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "d9e91d23f041b8b3ae1490d07ced447c832cd5ce38bc256652fa3d569cc01cac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "60f9d284-345d-448e-b593-0fbe326aa09a", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "53bbe35fdd1eec75d5418dacac313bdd17cca804f13f803409110d6e6ee6c42d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b0ac2673-089e-43a9-b004-cb55670d5613", "node_type": "1", "metadata": {}, "hash": "d888de9bf71d422b26430648cafdba8e8011a4d3a002efdd49d5d3836aff7f86", "class_name": "RelatedNodeInfo"}}, "text": "## Daily\n\n### Github Hut23 Repo\n\nWe use GitHub (and a couple of related tools) extensively for tracking projects and other tasks within the team.\nThere is a [separate page describing how we use them]({{< relref \"/docs/how_we_work/project_tracking.md\" >}}).\n\n### Coffee Breaks\n\nWe have coffee breaks on Gather twice daily.\nSee the [Regular Events]({{< relref \"../regular_events\" >}}) page for details.\nIf the times aren't convenient and you fancy a break then try posting on Slack and the chances are that there'll be others that fancy a break too.\n\n### Slack\n\nSlack is our main tool for informal messaging and announcements (there's some info on how to join on\n[here]({{< relref \"/docs/onboarding/new_joiners/systems_set_up.md#slack\" >}})).\nIt's also a good place to ask for help.\nChannels of interest include:\n\n- `#hut23`: Our channel for the REG team (ask someone to add you if you don't have access)\n- `#tps`: Channel for the [tools, practices and systems (TPS) community](https://www.turing.ac.uk/research/research-programmes/tools-practices-and-systems) at the Turing\n- `#askaway`: Place to ask general questions (_e.g._ that don't fit in a specific channel)\n- `#interesting-events`, `#general`, `#social`, `#random`: General chat and announcement about what's happening around the Turing.\n\nWe use [Geekbot](https://geekbot.com/), which is a Slack App.\nWe use this in two different ways (both are voluntary):\n\n- A virtual daily standup: Geekbot asks what you're planning to do each day, what you've achieved and if there is anything you are stuck on. This can be useful for your own planning, but also helps give an overview of the range of other work and skills within the team.\n- Ice breaker-style questions a few times a week.", "start_char_idx": 801, "end_char_idx": 2535, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b0ac2673-089e-43a9-b004-cb55670d5613": {"__data__": {"id_": "b0ac2673-089e-43a9-b004-cb55670d5613", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "d9e91d23f041b8b3ae1490d07ced447c832cd5ce38bc256652fa3d569cc01cac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "80badcbb-374e-4a2f-82e0-22acbf1ee2a8", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "d8210cd43019d2129094b75215b5923e1b37188e19b950eb099039f5cbb2f707", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ff718593-9a32-4079-8566-b2eeccec373d", "node_type": "1", "metadata": {}, "hash": "34b2971244362db54df364a834a825440344ecadbdbd8f91613203e332b07e06", "class_name": "RelatedNodeInfo"}}, "text": "We use [Geekbot](https://geekbot.com/), which is a Slack App.\nWe use this in two different ways (both are voluntary):\n\n- A virtual daily standup: Geekbot asks what you're planning to do each day, what you've achieved and if there is anything you are stuck on. This can be useful for your own planning, but also helps give an overview of the range of other work and skills within the team.\n- Ice breaker-style questions a few times a week.\n\nTo join in with the use of Geekbot, you will need to first add the [Geekbot app to Slack](https://alan-turing-institute.slack.com/apps/A0H67RAG0-standups-surveys-polls-geekbot) and then join these slack channels `#hut23standup` and `#hut23standup-tasks`.\n\n## Weekly\n\n### Tech Talks\n\n[See here]({{< relref \"docs/regular_events/lunchtime_tech_talks.md\" >}}).\n\n### Reading Groups\n\n[See here]({{< relref \"docs/regular_events/reading_groups.md\" >}}).\n\n## Approximately Monthly\n\n### REG Team Meetings\n\nRoughly once a month we have an all-REG meeting where we welcome new joiners and a few people briefly present news from around REG or the Turing.\nThis is usually followed by a discussion on a topic of interest for the wider team.\nIf you don't have the calendar invites (new joiners might not initially) ask someone else in the team to forward them to you.\n\n### Turing Events\n\nThe main focus of this page is what we do in REG, but there are many things happening around the Turing that REG members are also encouraged to attend, including:\n\n- Turing Catchups & Town Halls \u2014 Regular meetings open to all staff with updates from around the institute. New starters may not have the calendar invites initially \u2014 ask others in the team to forward the details if you're unsure.\n- [Turing Events](https://www.turing.ac.uk/events) - often public talks & workshops.", "start_char_idx": 2097, "end_char_idx": 3888, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ff718593-9a32-4079-8566-b2eeccec373d": {"__data__": {"id_": "ff718593-9a32-4079-8566-b2eeccec373d", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "d9e91d23f041b8b3ae1490d07ced447c832cd5ce38bc256652fa3d569cc01cac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b0ac2673-089e-43a9-b004-cb55670d5613", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "e32c2aab3e8456ec5fc61b1e77283c1a1d8d15f9faf6833f697c1909838eba65", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a0611aa2-9601-457a-9a45-7ebdea9de014", "node_type": "1", "metadata": {}, "hash": "d5fb6270650b81cd5c0a7c71ec7d5d533cd128a38e6f8f82e497828dd05179ab", "class_name": "RelatedNodeInfo"}}, "text": "## Approximately Monthly\n\n### REG Team Meetings\n\nRoughly once a month we have an all-REG meeting where we welcome new joiners and a few people briefly present news from around REG or the Turing.\nThis is usually followed by a discussion on a topic of interest for the wider team.\nIf you don't have the calendar invites (new joiners might not initially) ask someone else in the team to forward them to you.\n\n### Turing Events\n\nThe main focus of this page is what we do in REG, but there are many things happening around the Turing that REG members are also encouraged to attend, including:\n\n- Turing Catchups & Town Halls \u2014 Regular meetings open to all staff with updates from around the institute. New starters may not have the calendar invites initially \u2014 ask others in the team to forward the details if you're unsure.\n- [Turing Events](https://www.turing.ac.uk/events) - often public talks & workshops.\n\n### Open Source Hacksessions\n\n[See here]({{< relref \"docs/regular_events/open_source_hacksessions.md\" >}}).\n\n### REG Newsletter\n\nWe have a monthly REG newsletter which is usually sent around about a week before the monthly team meeting.\nIt contains short project updates and other news/updates from around the team and the institute.\nIt comes to the Hut23 mailing list (see above).\nIf you have something you'd like to be included contact the [newsletter owner](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities).\n\n### Hut23 Mailing List\n\nYou should automatically be added to the [Hut23 mailing list](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact) when you join REG (if not ask your line manager about it).\nThis is often the best way to contact everyone in the team when organising events, or for other news/communication that should be a bit more permanent/formal than Slack and doesn't fit in an issue in the Hut23 repo.", "start_char_idx": 2984, "end_char_idx": 4922, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a0611aa2-9601-457a-9a45-7ebdea9de014": {"__data__": {"id_": "a0611aa2-9601-457a-9a45-7ebdea9de014", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "d9e91d23f041b8b3ae1490d07ced447c832cd5ce38bc256652fa3d569cc01cac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ff718593-9a32-4079-8566-b2eeccec373d", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "af8339fa611d042853ba1305ac79a04e67f974b7ac4ff1b2084bbb1ba59e28e0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f0d8f067-0996-400a-9679-3f8393fc11ff", "node_type": "1", "metadata": {}, "hash": "7eb72bb4616c4ee230701ee8a8616019484bad9e5165efd7d145b849c4315c11", "class_name": "RelatedNodeInfo"}}, "text": "### REG Newsletter\n\nWe have a monthly REG newsletter which is usually sent around about a week before the monthly team meeting.\nIt contains short project updates and other news/updates from around the team and the institute.\nIt comes to the Hut23 mailing list (see above).\nIf you have something you'd like to be included contact the [newsletter owner](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities).\n\n### Hut23 Mailing List\n\nYou should automatically be added to the [Hut23 mailing list](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact) when you join REG (if not ask your line manager about it).\nThis is often the best way to contact everyone in the team when organising events, or for other news/communication that should be a bit more permanent/formal than Slack and doesn't fit in an issue in the Hut23 repo.\n\n## Less frequently or ad-hoc\n\n### Data study Groups\n\n[Data study groups](https://www.turing.ac.uk/collaborate-turing/data-study-groups) (DSGs) are week-long hack sessions on different projects that happen a few times a year.\nParticipants are drawn from across the Turing and REG people have previously joined both as team members and project PIs.\n\n### Turing courses and training\n\nThere are professional and academic training opportunities around the Turing.\nThere's some info [on Mathison](https://mathison.turing.ac.uk/Interact/Pages/Section/Default.aspx?Section=3701).\nAdditionally, REG also runs a yearly [research software engineering course](https://alan-turing-institute.github.io/rse-course).\n\n### Remote Co-working\n\nOccasionally a few REG members get together on Zoom to Gather to do our work (not necessarily to work on the same thing, but to see each other and have a quick chat whilst we're working).\nDuring the COVID lockdowns, we organised these sessions regularly.\nNow they only occur on an ad-hoc basis.\nIf you'd like to work in this way, feel free to ask on Slack.\n\nSome project teams also choose to work in this way.", "start_char_idx": 3999, "end_char_idx": 6058, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f0d8f067-0996-400a-9679-3f8393fc11ff": {"__data__": {"id_": "f0d8f067-0996-400a-9679-3f8393fc11ff", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "d9e91d23f041b8b3ae1490d07ced447c832cd5ce38bc256652fa3d569cc01cac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a0611aa2-9601-457a-9a45-7ebdea9de014", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "31c6f5f19bd3abf4e272c89f40851007694f31c3fa9210dcfed4c481a25335ba", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ddf0d0fa-a27a-4231-966b-2d71c5f40d99", "node_type": "1", "metadata": {}, "hash": "ff8bf516682f7cecb2a47be1d74f658526323ddd4ed78b05811599341c48f753", "class_name": "RelatedNodeInfo"}}, "text": "Participants are drawn from across the Turing and REG people have previously joined both as team members and project PIs.\n\n### Turing courses and training\n\nThere are professional and academic training opportunities around the Turing.\nThere's some info [on Mathison](https://mathison.turing.ac.uk/Interact/Pages/Section/Default.aspx?Section=3701).\nAdditionally, REG also runs a yearly [research software engineering course](https://alan-turing-institute.github.io/rse-course).\n\n### Remote Co-working\n\nOccasionally a few REG members get together on Zoom to Gather to do our work (not necessarily to work on the same thing, but to see each other and have a quick chat whilst we're working).\nDuring the COVID lockdowns, we organised these sessions regularly.\nNow they only occur on an ad-hoc basis.\nIf you'd like to work in this way, feel free to ask on Slack.\n\nSome project teams also choose to work in this way.\n\n### Hack Sessions & REG Collaborative Time\n\nIf there's something you'd like to work on collaboratively feel free to organise a hack session (typically these would be longer but less frequent than a reading group, and perhaps more focused on implementing rather than reading).\nIn the past several of us have got together to work on contributions for [Hacktoberfest](https://hacktoberfest.digitalocean.com/).\n\n### Repo Audits\n\nA few of us plan to get together to help check whether documentation, usage and installation instructions are clear for a project (for example), or to review the code.\nSee [this page]({{< relref \"code_audits.md\" >}}) for more details.\n\n### Project retrospective - Snark Hunts\n\nSnark hunts are facilitated discussions after a project has finished where the project team, together with others from REG that didn't work on the project, answer/ask questions relating to the experience of working on it \u2014 what went well, what could have been better _etc._.\nWe don't do it for every project, but they can be a good opportunity to reflect and to get ideas for what we should do differently/do more of in the future.\nWe're open to trying other ideas too!", "start_char_idx": 5149, "end_char_idx": 7231, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ddf0d0fa-a27a-4231-966b-2d71c5f40d99": {"__data__": {"id_": "ddf0d0fa-a27a-4231-966b-2d71c5f40d99", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "d9e91d23f041b8b3ae1490d07ced447c832cd5ce38bc256652fa3d569cc01cac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f0d8f067-0996-400a-9679-3f8393fc11ff", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "9a3961710819b9613727cca6ec0f847be0c6e4b37e863d76e6ce135d655541b4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5aadd0c8-686f-46f2-8311-14f79994b627", "node_type": "1", "metadata": {}, "hash": "9d94896ac3fd3f683d09e1d0921f50765a054accb3e8386b8d602ab57fae5f8e", "class_name": "RelatedNodeInfo"}}, "text": "In the past several of us have got together to work on contributions for [Hacktoberfest](https://hacktoberfest.digitalocean.com/).\n\n### Repo Audits\n\nA few of us plan to get together to help check whether documentation, usage and installation instructions are clear for a project (for example), or to review the code.\nSee [this page]({{< relref \"code_audits.md\" >}}) for more details.\n\n### Project retrospective - Snark Hunts\n\nSnark hunts are facilitated discussions after a project has finished where the project team, together with others from REG that didn't work on the project, answer/ask questions relating to the experience of working on it \u2014 what went well, what could have been better _etc._.\nWe don't do it for every project, but they can be a good opportunity to reflect and to get ideas for what we should do differently/do more of in the future.\nWe're open to trying other ideas too!\n\nFor more info, [see here]({{< relref \"snark_hunts.md\" >}}) for more details.\n\n### Working on Other Projects\n\nWorking on different projects with different people causes a natural sharing of knowledge around the team.\nBeyond the usual project allocation process, there may be other ways to get involved with another project for a short time (some of these are speculative and not currently common practice in REG):\n\n- Rotating between projects: Where a team member has been on a project for a long time, they may wish to change. Team members should ask to rotate to a different project in the next set of project allocations.\n- Gaps between projects: Occasionally there are short gaps between one project finishing and another starting. These can be opportunities to get involved in something different for a while. One example could be to try a project with the ARC team (though I don't think anyone in REG has done this yet). Projects may also want to get into the habit of creating \"Hacktoberfest\" style issues that newcomers could quickly get up to speed with and get involved if they have a gap in allocations.", "start_char_idx": 6336, "end_char_idx": 8346, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5aadd0c8-686f-46f2-8311-14f79994b627": {"__data__": {"id_": "5aadd0c8-686f-46f2-8311-14f79994b627", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "d9e91d23f041b8b3ae1490d07ced447c832cd5ce38bc256652fa3d569cc01cac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ddf0d0fa-a27a-4231-966b-2d71c5f40d99", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}, "hash": "29dcd3c614c4dfa50927ab626072f280e72a15408fc89ba7d9aa9844575b15db", "class_name": "RelatedNodeInfo"}}, "text": "Beyond the usual project allocation process, there may be other ways to get involved with another project for a short time (some of these are speculative and not currently common practice in REG):\n\n- Rotating between projects: Where a team member has been on a project for a long time, they may wish to change. Team members should ask to rotate to a different project in the next set of project allocations.\n- Gaps between projects: Occasionally there are short gaps between one project finishing and another starting. These can be opportunities to get involved in something different for a while. One example could be to try a project with the ARC team (though I don't think anyone in REG has done this yet). Projects may also want to get into the habit of creating \"Hacktoberfest\" style issues that newcomers could quickly get up to speed with and get involved if they have a gap in allocations.\n- Shadowing projects: Especially for new starters, we've started to encourage the idea of shadowing projects for a short while, to get an idea of how we work.", "start_char_idx": 7449, "end_char_idx": 8505, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f7f09540-e847-4d0c-a813-b6e580bedcb4": {"__data__": {"id_": "f7f09540-e847-4d0c-a813-b6e580bedcb4", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/line-management.md", "file_name": "line-management.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/line-management.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/line-management.md", "file_name": "line-management.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/line-management.md"}, "hash": "69fbce679c06458a35878f2a3b419446736fb8d8b7a28fd4de33774a0128c23f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc8c1d05-99cf-471d-a569-8b4398a28a04", "node_type": "1", "metadata": {}, "hash": "ed60112d8828caca70f817be281416a800a2ea27afe0ccc31156d33613444f02", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Line Management\"\n# Adjust the weight to reorder menu items (lower numbers appear first)\nweight: 5\n---\n\n# Line Management\n\nLine management in REG is a little different than in other parts of the Turing as you often will not be working directly with the people you are managing. This guide aims to explain how this relationship might work.\n\n## How line management duties are assigned\n\nAt (current) senior level, people are expected to line manage 1-2 standards. This will probably change with the new lead role (see the [REG role matrix](https://github.com/alan-turing-institute/Hut23/blob/master/development/REG-Roles-Matrix.md#line-managementmentoring)). Currently, if seniors are willing to line manage more than 2 people, they should inform the recruitment lead (can be found in [service areas](https://github.com/alan-turing-institute/research-engineering-group/wiki/Service-areas)).\n\nAt standard level, opportunities for line management and project mentoring of junior members and interns are offered during the year. To assign such duties, we follow whenever possible time spent at standard level in REG.\n\nAt both levels, we try to avoid overlaps between projects and line management, at least during probation.\n\n## First day\n\nAs a line manager you will have a 1-to-1 meeting with the person you will be managing on their first day. By this point they will have had various other inductions (eg. with HR, IT, their REG buddies). You might want to focus on the following points\n\n- introduce what line management is at REG\n - part mentor, part escalation point, part pastoral support, part admin, can take different shapes depending on need\n- ... and what it is isn\u2019t\n - task-setting, boss vibes, oversight\n- point out that line management, like everything else in REG, is a collaboration\n - have a chat about what management styles have worked well for them.", "start_char_idx": 0, "end_char_idx": 1933, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fc8c1d05-99cf-471d-a569-8b4398a28a04": {"__data__": {"id_": "fc8c1d05-99cf-471d-a569-8b4398a28a04", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/line-management.md", "file_name": "line-management.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/line-management.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/line-management.md", "file_name": "line-management.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/line-management.md"}, "hash": "69fbce679c06458a35878f2a3b419446736fb8d8b7a28fd4de33774a0128c23f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f7f09540-e847-4d0c-a813-b6e580bedcb4", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/line-management.md", "file_name": "line-management.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/line-management.md"}, "hash": "6abd43e847829f4b07f2a44feea1b2eba3c56b917f7f73c919d0a8ca268290ad", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a5af40e6-1d06-41d6-9640-9b0b047b263a", "node_type": "1", "metadata": {}, "hash": "a95d6301f0e2f3b5c6ba177080284f6abdf6840b9acabac8816f54ccadc4800d", "class_name": "RelatedNodeInfo"}}, "text": "To assign such duties, we follow whenever possible time spent at standard level in REG.\n\nAt both levels, we try to avoid overlaps between projects and line management, at least during probation.\n\n## First day\n\nAs a line manager you will have a 1-to-1 meeting with the person you will be managing on their first day. By this point they will have had various other inductions (eg. with HR, IT, their REG buddies). You might want to focus on the following points\n\n- introduce what line management is at REG\n - part mentor, part escalation point, part pastoral support, part admin, can take different shapes depending on need\n- ... and what it is isn\u2019t\n - task-setting, boss vibes, oversight\n- point out that line management, like everything else in REG, is a collaboration\n - have a chat about what management styles have worked well for them.\n- find out their background, why they decided to join the group\n- discuss what their day-to-day might look like\n - 80% projects (either one or two projects)\n - 10% REG responsibilities (eg.", "start_char_idx": 1084, "end_char_idx": 2129, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a5af40e6-1d06-41d6-9640-9b0b047b263a": {"__data__": {"id_": "a5af40e6-1d06-41d6-9640-9b0b047b263a", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/line-management.md", "file_name": "line-management.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/line-management.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "eb7da3de122c27799f16e0b9f68e9ac6fcefc043", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/line-management.md", "file_name": "line-management.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/line-management.md"}, "hash": "69fbce679c06458a35878f2a3b419446736fb8d8b7a28fd4de33774a0128c23f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc8c1d05-99cf-471d-a569-8b4398a28a04", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/line-management.md", "file_name": "line-management.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/line-management.md"}, "hash": "c316c2693e3a61a15d4492754f48936fe67027d35f654151714f4df18b3f81bc", "class_name": "RelatedNodeInfo"}}, "text": "## First day\n\nAs a line manager you will have a 1-to-1 meeting with the person you will be managing on their first day. By this point they will have had various other inductions (eg. with HR, IT, their REG buddies). You might want to focus on the following points\n\n- introduce what line management is at REG\n - part mentor, part escalation point, part pastoral support, part admin, can take different shapes depending on need\n- ... and what it is isn\u2019t\n - task-setting, boss vibes, oversight\n- point out that line management, like everything else in REG, is a collaboration\n - have a chat about what management styles have worked well for them.\n- find out their background, why they decided to join the group\n- discuss what their day-to-day might look like\n - 80% projects (either one or two projects)\n - 10% REG responsibilities (eg. service areas)\n - 10% personal development\n- briefly talk about how people are allocated to projects\n- check that they've taken a look at the [new starters checklist](https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/checklist/)\n- leave time for questions\n\n## First week\n\nLater in the first week you might want to go through some of the more technical points:\n\n- [Team reporting structure](https://github.com/alan-turing-institute/research-engineering-group/wiki/Team-reporting-structure)\n- Adding yourself to the [Turing GitHub organisation](https://turingcomplete.topdesk.net/tas/public/ssp/content/serviceflow?unid=3844fabf8b1c45ca9028758a350ff230)\n- Emoji reacting to projects\n - Projects [looking for people](https://github.com/alan-turing-institute/Hut23/projects/2#column-2488036)\n - [Currently active](https://github.com/alan-turing-institute/Hut23/projects/2#column-1062281) projects\n- Project allocations on [Forecast](https://forecastapp.com/974183/schedule/team)\n- Personal time tracking on [Harvest](https://thealanturinginstitute.harvestapp.com/time/week) (noting that this is not compulsory)\n- Probation formalities", "start_char_idx": 1280, "end_char_idx": 3300, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8a8133a4-4245-4942-8cb0-db3cb28c44f9": {"__data__": {"id_": "8a8133a4-4245-4942-8cb0-db3cb28c44f9", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/meeting_record.md", "file_name": "meeting_record.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/meeting_record.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3fb6caa127af57616062f5efa38208b722a42221", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/meeting_record.md", "file_name": "meeting_record.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/meeting_record.md"}, "hash": "d80bc6673ff8036aa8730455e39d165bf36cc119d1d95ff5838b0b6ef9992f1f", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Meeting Records\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 2\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Meeting Records\n\nWhen a synchronous meeting is unavoidable, it is critical to produce a clear and thorough record.\n\nThe meeting record is important as a reference for what happened at the meeting.\nIn particular, any decisions made or actions assigned need to be clearly recorded for future reference.\n\nA good record will also be invaluable to anyone who was not able to attend an in-person meeting.\n\n## Meeting Record Template\n\nBelow is a suggested [template]({{% static_url url=\"meeting_record.md\" %}}) for a meeting record document.\nThe template uses [Pandoc](https://pandoc.org/MANUAL.html#variables-for-latex) [Markdown](https://pandoc.org/MANUAL.html#pandocs-markdown).\nParts of the template are already filled with explanations of how they should be used.\n\n{{% source_file file=\"static/meeting_record.md\" language=\"md\" %}}\n\nFor printing or wider distribution, a meeting record following the template may be converted to pdf using Pandoc,\n\n```bash\npandoc meeting_record.md -o meeting_record.pdf\n```\n\nA Pandoc [YAML metadata block](https://pandoc.org/MANUAL.html#extension-yaml_metadata_block) at the top of the template contains metadata about the meeting and helps the record render into a good-looking pdf document.\n\n## How To Use\n\n- Create the meeting record document before the meeting.\n- Use a collaborative text editor like [HackMD](https://hackmd.io) so that all attendees may edit the document.\n- Circulate the document to allow others to add and agree on agenda items.\n- Distribute the record or store in a location visible to everyone who may need to read it.\n\nThe template may also be used to avoid a meeting entirely.\nThe document can be completed collaboratively and asynchronously while achieving the same result.", "start_char_idx": 0, "end_char_idx": 2129, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2b17d74a-862c-435b-a4fe-b602778b2680": {"__data__": {"id_": "2b17d74a-862c-435b-a4fe-b602778b2680", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/open_access.md", "file_name": "open_access.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/open_access.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "710a44b3fd231bdb2ce3cf1f5884505969def43e", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/open_access.md", "file_name": "open_access.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/open_access.md"}, "hash": "b1237e4ef70620ea2316e75bfc29e4e440c34d8a7ae842f7d792b0d413b50402", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Publishing Open Access Journal Articles\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 7\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Open Access Journal Articles\n\nThe Turing has access to a block grant to cover open access charges for journal publications for UKRI funded projects if there are not already funds in the project-specific grant to cover them. If you have published an article, you may be able to cover the open access fees using this funding source. See [Open Access Publishing - Funding](https://mathison.turing.ac.uk/page/BlockGrant?SearchId=380294) on Mathison for further information.", "start_char_idx": 0, "end_char_idx": 890, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d27c338e-31f3-4279-a7e5-01daae284dbc": {"__data__": {"id_": "d27c338e-31f3-4279-a7e5-01daae284dbc", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/project_tracking.md", "file_name": "project_tracking.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/project_tracking.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "988753b83c1f32468cb2f580dec2e0ea17c5adcd", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/project_tracking.md", "file_name": "project_tracking.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/project_tracking.md"}, "hash": "bd1ac70e476b79c89eeb881517011ffeba421072338b66db983ed258199e9029", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "baacf820-88ef-4e27-ab64-5a55a04f1e5f", "node_type": "1", "metadata": {}, "hash": "34548d1671a36ce34dafae22ab3b60922aa7c556c1e7123cf6896abea5220145", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Project Tracking\"\n# Adjust the weight to reorder menu items (lower numbers appear first)\nweight: 3\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exlude this page from the search\n# bookSearchExclude = true\n---\n\n# Project Tracking\n\nThis page describes some of the tools we use for tracking projects and other tasks within the team. It does not go into details of how individual projects are managed, but how REG coordinates its commitments to the range of projects its involved in.\n\n## Hut23 GitHub Repo\n\nThe [Hut23 repo](https://github.com/alan-turing-institute/Hut23) is the central hub for most team matters and admin.\n\n- [Project Tracker](https://github.com/alan-turing-institute/Hut23/projects/2): Board shows all upcoming, current and completed projects. There's an issue for each project (see below). Depending on the project status, it will be in one column or another. In order to assign REG team members to projects, we use emojis to vote for the projects that we would be interested in taking part. You should react to all projects on the \"Finding people\" column, but also on the \"Awaiting go/no-go\" column. The voting system is as follows:\n\n - :thumbsup: Would be okay working on this project\n - :thumbsdown: Would rather not work on this project\n - :smile: Would really like to work on this project\n\n- [Issues](https://github.com/alan-turing-institute/Hut23/issues): Each project has an issue following a common template, including a general description of a project and its current status, for example. There are also issues for service areas and other activities/organisational issues for the team.\n\n### Project Repos\n\nAll repos in the Turing organisation that REG have worked on should have the `hut23` tag.", "start_char_idx": 0, "end_char_idx": 1913, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "baacf820-88ef-4e27-ab64-5a55a04f1e5f": {"__data__": {"id_": "baacf820-88ef-4e27-ab64-5a55a04f1e5f", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/project_tracking.md", "file_name": "project_tracking.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/project_tracking.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "988753b83c1f32468cb2f580dec2e0ea17c5adcd", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/project_tracking.md", "file_name": "project_tracking.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/project_tracking.md"}, "hash": "bd1ac70e476b79c89eeb881517011ffeba421072338b66db983ed258199e9029", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d27c338e-31f3-4279-a7e5-01daae284dbc", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/project_tracking.md", "file_name": "project_tracking.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/project_tracking.md"}, "hash": "ba0daebf91d7451418927881c3f4ae8dec2d41da2a5844bc0fc5232671a301eb", "class_name": "RelatedNodeInfo"}}, "text": "In order to assign REG team members to projects, we use emojis to vote for the projects that we would be interested in taking part. You should react to all projects on the \"Finding people\" column, but also on the \"Awaiting go/no-go\" column. The voting system is as follows:\n\n - :thumbsup: Would be okay working on this project\n - :thumbsdown: Would rather not work on this project\n - :smile: Would really like to work on this project\n\n- [Issues](https://github.com/alan-turing-institute/Hut23/issues): Each project has an issue following a common template, including a general description of a project and its current status, for example. There are also issues for service areas and other activities/organisational issues for the team.\n\n### Project Repos\n\nAll repos in the Turing organisation that REG have worked on should have the `hut23` tag.\nSo if you're looking for something from a previous project [searching for these tags](https://github.com/search?q=topic%3Ahut23+org%3Aalan-turing-institute&type=Repositories) may be a good place to start.\nAdditionally, they should have a tag of the format `hut23-123`, where `123` is the issue number for that project in the Hut23 repo.\n\n### Forecast & Wimbledon\n\nWe use [Forecast](https://forecastapp.com/974183/schedule/projects) to track everyone's allocations to projects.\nYou can see which projects & service areas everyone in the team is currently involved in, as well as what they were allocated to in the past and will be allocated to in the future.\n\n\"[Wimbledon planner](https://wimbledon-planner.azurewebsites.net/)\" is an online version of a poster we previously had in the office to display the information in Forecast.\nIt's easier to see allocations for a longer period, and you can click project names to take you directly to the issue describing that project in the Hut23 repo.", "start_char_idx": 1065, "end_char_idx": 2906, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "14a40177-16bb-46f1-96fd-b86f287158c0": {"__data__": {"id_": "14a40177-16bb-46f1-96fd-b86f287158c0", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md"}, "hash": "35acbafb23598890b3bc991d858ed14e28442bd4f664c33e2f0c9abd3ef4fb07", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fb1a7658-c476-4a44-b85d-212669923fd8", "node_type": "1", "metadata": {}, "hash": "4388d1a4ebc288e517177e8a022ab73a5cde9d2e88098b3efb499b06636657c0", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Remote Working\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 8\t\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Remote Working\n\nInformation and tips and tricks on working from home and other remote working.\n\n## Meetings, calls and screen sharing\n\n## Gather\n\nREG uses Gather for some of the coffee breaks and social events.\nIt gives a virtual space (modelled on the office!) to wander around and have conversations with people near to you.\n\n- See [The REGistry](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#video-call-links) for how to gain entry to gather.\n\nNote: Gather is blocked on the Turing VPN and on IT-managed computers.\n\n### Zoom\n\nUnless requested from IT, you will have a \"Basic\" Zoom account.\nThis allows you to create meetings for up to 40 minutes (unlimited for meetings with only 2 people).\nFor meetings longer than this, an upgrade to a \"Pro\" account is needed. To request a pro account contact [IT Services](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact).\n\nWe have a persistent REG Zoom meeting room, which we use for things like coffee breaks, tech talks and co-working.\nSee [The REGistry](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#video-call-links) for the location.\n\nFor larger events or meetings, Zoom also has some features for Webinars and breakout rooms.\n\nZoom Rooms (like those associated with each meeting room in the office) are persistent virtual meeting spaces.\nAdditional rooms might be able to be requested from IT if required (these seem to be priced at \u00a332/month, so some justification should be given).", "start_char_idx": 0, "end_char_idx": 1963, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fb1a7658-c476-4a44-b85d-212669923fd8": {"__data__": {"id_": "fb1a7658-c476-4a44-b85d-212669923fd8", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md"}, "hash": "35acbafb23598890b3bc991d858ed14e28442bd4f664c33e2f0c9abd3ef4fb07", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "14a40177-16bb-46f1-96fd-b86f287158c0", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md"}, "hash": "81d95fcdb28fc350db3137a0c5bd6deeb13ef4c6684bd4292d6de0ef5ea1ebd1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "94bd70b1-fb83-4c4e-ab35-b1a16a0234b7", "node_type": "1", "metadata": {}, "hash": "bed1063ef8312fe61a27e36a4e4f16aac7a473b49ad73546c691848efe94bfe5", "class_name": "RelatedNodeInfo"}}, "text": "For meetings longer than this, an upgrade to a \"Pro\" account is needed. To request a pro account contact [IT Services](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact).\n\nWe have a persistent REG Zoom meeting room, which we use for things like coffee breaks, tech talks and co-working.\nSee [The REGistry](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#video-call-links) for the location.\n\nFor larger events or meetings, Zoom also has some features for Webinars and breakout rooms.\n\nZoom Rooms (like those associated with each meeting room in the office) are persistent virtual meeting spaces.\nAdditional rooms might be able to be requested from IT if required (these seem to be priced at \u00a332/month, so some justification should be given).\n\nFor more information on how to get or use Zoom, see the [Zoom TopDesk page](https://turingcomplete.topdesk.net/tas/public/ssp/content/detail/knowledgeitem?unid=e63d1edd1cdc4e8ab3ac3c4e75bb768f).\n\n### Teams\n\nNote: We mostly use Zoom for meetings and Slack for messaging in REG, but others at the Turing use Teams more heavily (e.g. the business team), and some projects have meetings there.\n\n- Get it from [the Microsoft site](https://teams.microsoft.com/downloads).\n There is also a mobile app.\n- Make calls, group calls and share screen straightforwardly within the app.\n- You can find your VoIP number by looking at your \"My Office profile\" (office.com, then click your profile picture).\n - Ask IT for one if you don't have one.\n- Calls to this number will ring in the Teams app.\n\n#### Some notes on using Teams\n\nTeams has several ways to share text and/or live voice and video with others:\n\n- calls\n- chats\n- meetings\n\nCalls and chats are between you and one or more of your \"contacts\".\nYou can put your contacts into \"groups\", which are distinct from \"teams\".\n\nThe most versatile option is a **meeting**.", "start_char_idx": 1131, "end_char_idx": 3075, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "94bd70b1-fb83-4c4e-ab35-b1a16a0234b7": {"__data__": {"id_": "94bd70b1-fb83-4c4e-ab35-b1a16a0234b7", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md"}, "hash": "35acbafb23598890b3bc991d858ed14e28442bd4f664c33e2f0c9abd3ef4fb07", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fb1a7658-c476-4a44-b85d-212669923fd8", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md"}, "hash": "aac2b5034914cbbdcc666a325f85a6178206f413cab241859beb9b5bad941d4b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b86b8e65-d3fc-4e3b-afe2-48afa23b7a68", "node_type": "1", "metadata": {}, "hash": "6ac73eea21b6db1fe6e7fe3dd6effb97d1a42522422b7298c16feeb42a9b5fd9", "class_name": "RelatedNodeInfo"}}, "text": "the business team), and some projects have meetings there.\n\n- Get it from [the Microsoft site](https://teams.microsoft.com/downloads).\n There is also a mobile app.\n- Make calls, group calls and share screen straightforwardly within the app.\n- You can find your VoIP number by looking at your \"My Office profile\" (office.com, then click your profile picture).\n - Ask IT for one if you don't have one.\n- Calls to this number will ring in the Teams app.\n\n#### Some notes on using Teams\n\nTeams has several ways to share text and/or live voice and video with others:\n\n- calls\n- chats\n- meetings\n\nCalls and chats are between you and one or more of your \"contacts\".\nYou can put your contacts into \"groups\", which are distinct from \"teams\".\n\nThe most versatile option is a **meeting**.\nThe way to make one of these in the Teams app is on the *calendar* tab (obviously!).\nIt must be associated with a calendar event, and can be joined by people who are invited or by sharing a link.\nThe meeting itself has a chat associated with it.\nIt exists before and after the duration of the meeting, so can be used to set up persistent meeting spaces.\n\n## Wellbeing tips for remote working\n\nRemote working brings different challenges.\nThe work-life boundaries are less clear and some people struggle with lack of connection.\nHere we collate tips that the group has found to positively impact their wellbeing while working remotely.\nAt the beginning of the COVID-19 lockdowns, having wellbeing tips proved really useful, see below:\nFor more information on Wellbeing in REG, see the [Wellbeing page](https://mathison.turing.ac.uk/page/2157?SearchId=380431).\n\n- **Delineate the start and end of the working day.**\n A huge challenge is separating the working day from life outside of work, especially if both happen in the same location.\n Suggestions that might help bound work to working hours:\n - Simulate a commute to allow your brain to switch off.\n For example, go for a 20 minute walk, run, or read a book.\n - Have separate _work_ clothes and _non-work_ clothes.", "start_char_idx": 2296, "end_char_idx": 4349, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b86b8e65-d3fc-4e3b-afe2-48afa23b7a68": {"__data__": {"id_": "b86b8e65-d3fc-4e3b-afe2-48afa23b7a68", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b1b12c59add5cecfb80d084f57cd6141ba4daa45", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md"}, "hash": "35acbafb23598890b3bc991d858ed14e28442bd4f664c33e2f0c9abd3ef4fb07", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "94bd70b1-fb83-4c4e-ab35-b1a16a0234b7", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md"}, "hash": "97f0108a18ba0a7fd4a8731e9d978e1f2acf52213853f7b6379df155527fa5df", "class_name": "RelatedNodeInfo"}}, "text": "The work-life boundaries are less clear and some people struggle with lack of connection.\nHere we collate tips that the group has found to positively impact their wellbeing while working remotely.\nAt the beginning of the COVID-19 lockdowns, having wellbeing tips proved really useful, see below:\nFor more information on Wellbeing in REG, see the [Wellbeing page](https://mathison.turing.ac.uk/page/2157?SearchId=380431).\n\n- **Delineate the start and end of the working day.**\n A huge challenge is separating the working day from life outside of work, especially if both happen in the same location.\n Suggestions that might help bound work to working hours:\n - Simulate a commute to allow your brain to switch off.\n For example, go for a 20 minute walk, run, or read a book.\n - Have separate _work_ clothes and _non-work_ clothes.\n - Tidy your laptop/screen away if you are using the same space for relaxation.\n - If possible use a different device for leisure activity to your work machine.\n- **Finish on time.**\n Without the impetus of having colleagues around you clocking off it seems easy to work later than usual and eat into your relaxation time.\n Take a 1hr lunch break, and finish on time.\n If you are finding that you are repeatedly doing this then there is an issue with your workload that needs to be corrected.\n Reach out!\n- **Talk**.\n Many of us have missed the casual connection you get with being around people, and when you are working alone it is easy to forget the you are part of a team.\n This point is just a reminder that you work in a team that genuinely cares about the wellbeing of every member of the group.", "start_char_idx": 3513, "end_char_idx": 5160, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a25ada4b-5845-43aa-9c0c-cfd763e4a100": {"__data__": {"id_": "a25ada4b-5845-43aa-9c0c-cfd763e4a100", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/snark_hunts.md", "file_name": "snark_hunts.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/snark_hunts.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c5690b32682b3b73911668d58fead0852a6cf8d6", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/snark_hunts.md", "file_name": "snark_hunts.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/snark_hunts.md"}, "hash": "21920f0cf8e9fd55e8ed20eb09e4a69e069548ce451b0793195c901e3922e59d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fef485ab-1d16-4402-9c80-2d89b39599c8", "node_type": "1", "metadata": {}, "hash": "ded8548569f00d378d1d3485b0a49a9544e2d08b69a7a44e3048e1e142c13b8f", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Snark Hunts\"\n# Adjust the weight to reorder menu items (lower numbers appear first)\nweight: 1\n---\n\n# Snark Hunts\n\nA \"Snark Hunt\" is a project retrospective based around a facilitated discussion.\nThis is typically carried out during a meeting that lasts for approximately one hour.\nThe output of the meeting is a very short document which can be usefully re-read in the future.\nThe hope is that anyone reading it might be able to find useful learnings to apply to their own work.\n\nYou can see notes from all previous [Snark Hunts here](https://thealanturininstitute.sharepoint.com/:f:/s/ResearchEngineering/ElICSwf1rOJFj-ssePnMkOwBZmruJuRHnOKCSpC0M8QDUg?e=XGz6fl).\n\nWe're open to trying other ideas too!\n\n## How to set up a Snark Hunt\n\n- Find some people to take on the following roles\n - **Facilitator:** Someone not on the project to facilitate the session\n - **Scribe:** Someone else (also not on the project) to take notes and make these available after the session\n- Find a suitable date\n - Ideally you want a date that multiple people who did **and** didn't work on the project can make\n- Invite people!\n - As this is mainly a learning exercise for REG, you should invite the whole team\n - Feel free to invite non-REG people if this seems appropriate - inviting the PI might make team members reticent to talk freely however!\n\n## Facilitator\n\n- Try to pursue questions almost to absurdity.\n- Prefer \"what\" and \"how\" questions over \"why\" questions wherever possible.", "start_char_idx": 0, "end_char_idx": 1537, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fef485ab-1d16-4402-9c80-2d89b39599c8": {"__data__": {"id_": "fef485ab-1d16-4402-9c80-2d89b39599c8", "embedding": null, "metadata": {"file_path": "content/docs/how_we_work/snark_hunts.md", "file_name": "snark_hunts.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/snark_hunts.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c5690b32682b3b73911668d58fead0852a6cf8d6", "node_type": "4", "metadata": {"file_path": "content/docs/how_we_work/snark_hunts.md", "file_name": "snark_hunts.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/snark_hunts.md"}, "hash": "21920f0cf8e9fd55e8ed20eb09e4a69e069548ce451b0793195c901e3922e59d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a25ada4b-5845-43aa-9c0c-cfd763e4a100", "node_type": "1", "metadata": {"file_path": "content/docs/how_we_work/snark_hunts.md", "file_name": "snark_hunts.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/snark_hunts.md"}, "hash": "107bb79bf20be17094a020cf41405579a8de684cb540dca0bbde47886d254bc6", "class_name": "RelatedNodeInfo"}}, "text": "We're open to trying other ideas too!\n\n## How to set up a Snark Hunt\n\n- Find some people to take on the following roles\n - **Facilitator:** Someone not on the project to facilitate the session\n - **Scribe:** Someone else (also not on the project) to take notes and make these available after the session\n- Find a suitable date\n - Ideally you want a date that multiple people who did **and** didn't work on the project can make\n- Invite people!\n - As this is mainly a learning exercise for REG, you should invite the whole team\n - Feel free to invite non-REG people if this seems appropriate - inviting the PI might make team members reticent to talk freely however!\n\n## Facilitator\n\n- Try to pursue questions almost to absurdity.\n- Prefer \"what\" and \"how\" questions over \"why\" questions wherever possible.\n\nTake a look at the [example questions (on Sharepoint)](https://thealanturininstitute.sharepoint.com/:t:/s/ResearchEngineering/EXF9_xcvWk9LlqdJOuDLWgQBQOGYNfhnnJAux9UkQAaDNg?e=qlC0ev) for inspiration but don't feel constrained by them.\n\n## Scribe\n\n- Use this [note-taking template (on Sharepoint)](https://thealanturininstitute.sharepoint.com/:t:/s/ResearchEngineering/EdpY3Bk7AxtJjjrtqRAkxRkBUyc_yo0q0PFW6vJjbz7jVg?e=RXyEXE)\n- Attach names to people's questions and answers (unless they'd prefer to be anonymous).\n- Confirm after the meeting that all attendees are happy with your notes.\n- Add the completed notes to Sharepoint.\n\n## Note on naming\n\nThe name comes from [The Hunting of the Snark](https://en.wikipedia.org/wiki/The_Hunting_of_the_Snark), a Lewis Carroll poem about the crew of a boat who are hunting a Snark - a creature which may turn out to be a dangerous Boojum.", "start_char_idx": 727, "end_char_idx": 2419, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "25c15c1c-6042-434d-81ab-116505771d66": {"__data__": {"id_": "25c15c1c-6042-434d-81ab-116505771d66", "embedding": null, "metadata": {"file_path": "content/docs/join_us/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/_index.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a719156971fa8ebb242749926fbf38be72a44d13", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/_index.md"}, "hash": "ff3b5b96521554666dea80f65a5eb9f74322dd1cd9d93f19d1da8847bf08da2c", "class_name": "RelatedNodeInfo"}}, "text": "---\ntitle: \"Join Us\"\nweight: 99\n---\n\n# Join Us\n\nThis section contains information about our recruitment process and what it's like to work with us.", "start_char_idx": 0, "end_char_idx": 147, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0009b835-6867-4034-a974-e0495b55ed3e": {"__data__": {"id_": "0009b835-6867-4034-a974-e0495b55ed3e", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b2588806-3af9-4149-a5a3-95083eb352c0", "node_type": "1", "metadata": {}, "hash": "6f9b41d584544c0f8766a4b25edf5a291bef6deac1c043e4bda7d88227695d69", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Recruitment FAQs\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 2\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# REG Recruitment FAQs\n\nHere you can find answers to the most frequently asked questions about working for the team and the recruitment process.\n\nQuestions are grouped by:\n\n- [Application Stage](#application-stage)\n- [Profile](#profile)\n- [Position](#position)\n- [Interview](#interview)\n- [Offer](#offer)\n\n## Application Stage\n\n### Is the position open to applicants outside of the UK who do not currently have a UK working Visa but could obtain one?\n\nYes, the positions are open to applicants outside the UK and our HR team ([HR@turing.ac.uk](mailto:HR@turing.ac.uk)) will be able to offer you additional information on the process of obtaining a working Visa.\n\n### Are you accepting remote applicants?\n\nOur team is currently trialling being remote-first and is minimising the amount of time people will be required to be in the office.\nRequirements for in-office attendance will depend on projects, but we will seek to match these to individual preferences wherever we can, and no team member will be asked to be in the office more than one day per week during the trial period.\nNote however that our members need to be based in the UK.\n\n### What would be the starting date?\n\nWe are keen to grow the team so would prefer if people can start within 3 months of an offer being made and would be happy for successful candidates to start sooner.\nHowever, we are looking to recruit multiple people and we are hiring for the long term, so we can support later starting dates if a successful candidate's circumstances require it.\n\n### How many open positions are available?", "start_char_idx": 0, "end_char_idx": 1964, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b2588806-3af9-4149-a5a3-95083eb352c0": {"__data__": {"id_": "b2588806-3af9-4149-a5a3-95083eb352c0", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0009b835-6867-4034-a974-e0495b55ed3e", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "691769da4f52a73ecfe040c5b7f1dc872f7df267c4f0b76467a63d5ebaa22640", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16330a08-ad08-496f-a14e-a56c8d8495eb", "node_type": "1", "metadata": {}, "hash": "ce3296a7dfbd7e835136fa03d40827adeec691e5ca189d736c2fe4e78bcad943", "class_name": "RelatedNodeInfo"}}, "text": "### Are you accepting remote applicants?\n\nOur team is currently trialling being remote-first and is minimising the amount of time people will be required to be in the office.\nRequirements for in-office attendance will depend on projects, but we will seek to match these to individual preferences wherever we can, and no team member will be asked to be in the office more than one day per week during the trial period.\nNote however that our members need to be based in the UK.\n\n### What would be the starting date?\n\nWe are keen to grow the team so would prefer if people can start within 3 months of an offer being made and would be happy for successful candidates to start sooner.\nHowever, we are looking to recruit multiple people and we are hiring for the long term, so we can support later starting dates if a successful candidate's circumstances require it.\n\n### How many open positions are available?\n\nWe are looking to grow the team by up to 10 people at Standard level in this recruitment round, with the timing of recruitment dependent on finding the right candidates, project demand and the rate at which we can effectively support new starters in joining the team.\n\n### If my application was unsuccessful in the past, am I allowed to apply again this time?\n\nIf you applied and did not get selected to interview you are welcome to apply again, but we suggest to revise your cover letter and CV and make them more in line with the requirements specified in the job ad.\n\nIf you applied and were unsuccessful at the interview stage, you are welcome to reapply if your profile has significantly progressed since the interview (new projects, job roles or other sources of experience).\nIn general, we suggest to wait for at least one year before applying again.\n\n### Does the Turing cover relocation and visa costs?\n\nYes.\nThe Turing recognises that relocating and applying for a visa have different associated costs and therefore will provide support for both.\nAll claims should be submitted within a year of the employment start date to Finance.\nFor existing staff, visa claims should be submitted within one year of the visa renewal or amendment.", "start_char_idx": 1059, "end_char_idx": 3210, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "16330a08-ad08-496f-a14e-a56c8d8495eb": {"__data__": {"id_": "16330a08-ad08-496f-a14e-a56c8d8495eb", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b2588806-3af9-4149-a5a3-95083eb352c0", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "529cdb249f6d69ea56a2a437945d5703bcbd66d55240a64c159519e626c2bb92", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d2150194-dd47-4b24-90d6-24a9ec1930e2", "node_type": "1", "metadata": {}, "hash": "efb39d8cb2f56738f69a29e3af8ed05a8e65c0cd1167b8bdd2b35ce5ad83405e", "class_name": "RelatedNodeInfo"}}, "text": "### If my application was unsuccessful in the past, am I allowed to apply again this time?\n\nIf you applied and did not get selected to interview you are welcome to apply again, but we suggest to revise your cover letter and CV and make them more in line with the requirements specified in the job ad.\n\nIf you applied and were unsuccessful at the interview stage, you are welcome to reapply if your profile has significantly progressed since the interview (new projects, job roles or other sources of experience).\nIn general, we suggest to wait for at least one year before applying again.\n\n### Does the Turing cover relocation and visa costs?\n\nYes.\nThe Turing recognises that relocating and applying for a visa have different associated costs and therefore will provide support for both.\nAll claims should be submitted within a year of the employment start date to Finance.\nFor existing staff, visa claims should be submitted within one year of the visa renewal or amendment.\nMore information can be found on [Mathison](https://mathison.turing.ac.uk/Interact/Pages/Section/ContentListing.aspx?subsection=4141&utm_source=interact&utm_medium=quick_search&utm_term=relocation).\n\n## Profile\n\n### Are there particular domains or skill sets that you are interested in for these roles?\n\nWe are really open to any domain, area of expertise, skill set that is broadly related to research data science or research software engineering.\n\nIf you have experience or are interested in High Performance Computing, as part of the open positions, we are actively looking for new members of the team to work on that area as Research Computing Engineers.\nYou can drop an email to the REG recruitment team ([reg-recruitment-info@turing.ac.uk](mailto:reg-recruitment-info@turing.ac.uk)) to learn more about it.\n\nHowever, we are recruiting for multiple positions, and are interested in a wide range of skills and experience, so please do apply if you are interested and have experience relevant to research software engineering and data science, broadly defined.", "start_char_idx": 2235, "end_char_idx": 4275, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d2150194-dd47-4b24-90d6-24a9ec1930e2": {"__data__": {"id_": "d2150194-dd47-4b24-90d6-24a9ec1930e2", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "16330a08-ad08-496f-a14e-a56c8d8495eb", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "b3d5e8c12879ebcf707bcf3b0976814f53cf79c7acc06b94bdb99203d52b4f75", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2e92bb78-357e-455b-ab5c-e1e12e4b2da4", "node_type": "1", "metadata": {}, "hash": "3e7f5c2b90d79c0b343fd5aceb1efb806521ca43192e5857d226597ea51aaa5c", "class_name": "RelatedNodeInfo"}}, "text": "## Profile\n\n### Are there particular domains or skill sets that you are interested in for these roles?\n\nWe are really open to any domain, area of expertise, skill set that is broadly related to research data science or research software engineering.\n\nIf you have experience or are interested in High Performance Computing, as part of the open positions, we are actively looking for new members of the team to work on that area as Research Computing Engineers.\nYou can drop an email to the REG recruitment team ([reg-recruitment-info@turing.ac.uk](mailto:reg-recruitment-info@turing.ac.uk)) to learn more about it.\n\nHowever, we are recruiting for multiple positions, and are interested in a wide range of skills and experience, so please do apply if you are interested and have experience relevant to research software engineering and data science, broadly defined.\nYou can see the [range of projects](https://www.turing.ac.uk/research/research-engineering/reg-projects) the team works on and [backgrounds of current team members](https://www.turing.ac.uk/research/research-engineering/meet-the-team) on our website.", "start_char_idx": 3411, "end_char_idx": 4526, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2e92bb78-357e-455b-ab5c-e1e12e4b2da4": {"__data__": {"id_": "2e92bb78-357e-455b-ab5c-e1e12e4b2da4", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d2150194-dd47-4b24-90d6-24a9ec1930e2", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "317d7fd3d293f42ee9660f6db00005d9b1bf2b61fe52db3364a32f05dc3d1453", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bc877115-e3e0-4648-bef9-5e10d81a353d", "node_type": "1", "metadata": {}, "hash": "a1fd97803f7e64866be25b7105f358d84526bc62ba27feb64ce7ed7d40bf96d0", "class_name": "RelatedNodeInfo"}}, "text": "If you have experience or are interested in High Performance Computing, as part of the open positions, we are actively looking for new members of the team to work on that area as Research Computing Engineers.\nYou can drop an email to the REG recruitment team ([reg-recruitment-info@turing.ac.uk](mailto:reg-recruitment-info@turing.ac.uk)) to learn more about it.\n\nHowever, we are recruiting for multiple positions, and are interested in a wide range of skills and experience, so please do apply if you are interested and have experience relevant to research software engineering and data science, broadly defined.\nYou can see the [range of projects](https://www.turing.ac.uk/research/research-engineering/reg-projects) the team works on and [backgrounds of current team members](https://www.turing.ac.uk/research/research-engineering/meet-the-team) on our website.\n\nSome of the team have also been featured in project and institute spotlight interviews and the [Turing podcast](https://www.podbean.com/media/share/pb-vrci3-1366a21?utm_campaign=w_share_ep&utm_medium=dlink&utm_source=w_share) (including episodes on [AI for the Skies](https://www.podbean.com/media/share/pb-zzidx-d7bb24?utm_campaign=w_share_ep&utm_medium=dlink&utm_source=w_share), [Fantasy Football AI](https://www.podbean.com/media/share/pb-5afja-df2052?utm_campaign=w_share_ep&utm_medium=dlink&utm_source=w_share), [3D printed bridges](https://www.podbean.com/media/share/pb-qekh3-dfe740?utm_campaign=w_share_ep&utm_medium=dlink&utm_source=w_share), [Reproducible data science](https://www.podbean.com/media/share/pb-wxkjp-ecfa7f?utm_campaign=w_share_ep&utm_medium=dlink&utm_source=w_share), [The problems of AI](https://www.podbean.com/media/share/pb-dyq36-112350b?utm_campaign=w_share_ep&utm_medium=dlink&utm_source=w_share) and [Living with Machines](https://www.podbean.com/media/share/pb-s9das-1275eb2?utm_campaign=w_share_ep&utm_medium=dlink&utm_source=w_share)).", "start_char_idx": 3662, "end_char_idx": 5600, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bc877115-e3e0-4648-bef9-5e10d81a353d": {"__data__": {"id_": "bc877115-e3e0-4648-bef9-5e10d81a353d", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2e92bb78-357e-455b-ab5c-e1e12e4b2da4", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "4470c35c7c66c550e06aaa20d17896b0c59517e7f1c36c9dd2d24e60ddd5fc0e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "939e982a-94d2-49b3-b029-926d0ad796e3", "node_type": "1", "metadata": {}, "hash": "6c66b76e1f552bb07e36fd760e15690506737a504bde69a8cb5a8efba9f6b141", "class_name": "RelatedNodeInfo"}}, "text": "### What is a Research Computing Engineer?\n\nThis role presents a new exciting opportunity to join the growing team of research computing experts at The Turing. The team assists the Turing community with designing, building, deploying, and maintaining research infrastructures, as well as providing service delivery and user support for the Institute\u2019s research computing platforms. This is an opportunity for a technically-skilled professional with a good understanding of either cloud or high-performance computing (HPC), experience with both application and infrastructure, and an interest in facilitating and enhancing world-leading data science and AI research.\nYou will build tools and automation to eliminate mundane operations and craft repeatable processes. As part of the team, you will also work with other research software engineers and data scientists on various projects and will participate in all phases of cloud / HPC development, from requirements-capture, definition, and design; to development, deployment, and maintenance; to performance tuning and monitoring. You are also expected to keep up-to-date with the latest cutting-edge developments, and/or make use of the UK\u2019s most advanced computing facilities like Dawn, ARCHER 2, JADE 2, and Baskerville.\n\n### Should the cover letter address each of the skills and requirements in the person specification section of the job description?\n\nIt is important that the cover letter, in conjunction with the CV, highlights the requirements listed as \"check at Application\" on the Person Specification, and shows a (general) understanding of the role of a research data scientist or software engineer.\nAlso, it is important to highlight:\n\n- Your past experience working with code and/or data\n- Why you would like to become part of the Research Engineering Group\n- How your skill set would complement the activities of the team.\n\n### What does \"equivalent professional experience\" mean?\n\nIf you do not have a PhD degree but have worked for a few years and believe you have gained the essential skills mentioned in the Person Specification, we encourage you to apply!\n\nSuch experience might include exposure to research projects, awareness of the importance of reproducible software and tools, working with or leading a team of people with different skill sets, deciding on how to best achieve an objective from a data science perspective, or presenting advice/results to an audience.", "start_char_idx": 5602, "end_char_idx": 8047, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "939e982a-94d2-49b3-b029-926d0ad796e3": {"__data__": {"id_": "939e982a-94d2-49b3-b029-926d0ad796e3", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bc877115-e3e0-4648-bef9-5e10d81a353d", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "40ee36de8a860439791a764bd78ec4c4b73a5f159013213c6dda409c632418ae", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "655b725c-a52f-4e96-93c4-361714c23830", "node_type": "1", "metadata": {}, "hash": "83fbab7bb0a048102ba97ee9431dc3f5ac9816b630d822df1b6969375f821baa", "class_name": "RelatedNodeInfo"}}, "text": "It is important that the cover letter, in conjunction with the CV, highlights the requirements listed as \"check at Application\" on the Person Specification, and shows a (general) understanding of the role of a research data scientist or software engineer.\nAlso, it is important to highlight:\n\n- Your past experience working with code and/or data\n- Why you would like to become part of the Research Engineering Group\n- How your skill set would complement the activities of the team.\n\n### What does \"equivalent professional experience\" mean?\n\nIf you do not have a PhD degree but have worked for a few years and believe you have gained the essential skills mentioned in the Person Specification, we encourage you to apply!\n\nSuch experience might include exposure to research projects, awareness of the importance of reproducible software and tools, working with or leading a team of people with different skill sets, deciding on how to best achieve an objective from a data science perspective, or presenting advice/results to an audience.\nWe would like to hear about your prior experience in your cover letter.\nIf you prefer, feel free to get in touch with the REG recruitment team ([reg-recruitment-info@turing.ac.uk](mailto:reg-recruitment-info@turing.ac.uk)) about this point.\n\n### Would not having a PhD prevent me from career progression, in terms of becoming a Senior Research Data Scientist/Research Software Engineer at the Turing Institute?\n\nAbsolutely not, our internal career progression is based on internal milestones and contributions to the group and the Turing community - do not worry about this at all.\n\n## Position\n\n### What is the difference between a Junior and a Standard role?\n\nThe main difference between the Junior and Standard roles is that the Junior is a training position for becoming (in 1-2 years) a Standard research data scientist or software engineer.\nWe consider candidates for the Standard position if they have a PhD or an equivalent working experience (meaning for instance a few years of work in a data scientist or software engineer position, in close contact with research projects).\nIf you think you have enough experience you can apply to the Standard position and stress this in your cover letter.", "start_char_idx": 7011, "end_char_idx": 9250, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "655b725c-a52f-4e96-93c4-361714c23830": {"__data__": {"id_": "655b725c-a52f-4e96-93c4-361714c23830", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "939e982a-94d2-49b3-b029-926d0ad796e3", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "a65543ec490d355a2d8c5f70b787d19827f299378f3615127071344f87cbd737", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9263bd46-63d4-4010-9ef1-ebeb7c96e88f", "node_type": "1", "metadata": {}, "hash": "7aef05cc51e5f8dd74edbb62662b633d327a0e5b68b16cd261c6d814967d6e55", "class_name": "RelatedNodeInfo"}}, "text": "### Would not having a PhD prevent me from career progression, in terms of becoming a Senior Research Data Scientist/Research Software Engineer at the Turing Institute?\n\nAbsolutely not, our internal career progression is based on internal milestones and contributions to the group and the Turing community - do not worry about this at all.\n\n## Position\n\n### What is the difference between a Junior and a Standard role?\n\nThe main difference between the Junior and Standard roles is that the Junior is a training position for becoming (in 1-2 years) a Standard research data scientist or software engineer.\nWe consider candidates for the Standard position if they have a PhD or an equivalent working experience (meaning for instance a few years of work in a data scientist or software engineer position, in close contact with research projects).\nIf you think you have enough experience you can apply to the Standard position and stress this in your cover letter.\nYou can also apply to the Junior position and mention in your cover letter that you are also considering the Standard position, in case you feel your profile or working experience is in between the two.\nFeel free to get in touch with the REG recruitment team ([reg-recruitment-info@turing.ac.uk](mailto:reg-recruitment-info@turing.ac.uk)) about this point.\n\n### For the Junior post it states as Essential: \"Fluency in one or more modern programming languages used in research in data science and artificial intelligence\". In my case I am familiar with X, would my computing knowledge satisfy this criteria?\n\nDepending on the project, we work with different programming languages and different settings, so more than the programming languages you currently know the important aspect for us is the willingness and ability to pick up new languages along the way, based on your previous experience (especially in research and data analysis contexts).\n\n### Given the job profile in the REG team, what do REG members tend to transition to (for eg. Academics, or Industry, or something else)?\n\nWe have only had a few members of the team who have moved on with their career trajectory so far.\nTo read about some of their career paths you can visit our [REG alumni page](https://www.turing.ac.uk/research/research-engineering/reg-alumni).", "start_char_idx": 8290, "end_char_idx": 10580, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9263bd46-63d4-4010-9ef1-ebeb7c96e88f": {"__data__": {"id_": "9263bd46-63d4-4010-9ef1-ebeb7c96e88f", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "655b725c-a52f-4e96-93c4-361714c23830", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "b7fe511968fee4bf03eb1f24c59cc8593036cb5f3e7531fe90819f3dbcb9721e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5d83bd6f-d55e-4a3d-b92a-95d2730cec7e", "node_type": "1", "metadata": {}, "hash": "945e0ac95a8bcd009dd3d012ee9754258f91681ff7fb49d6c2ca46bd19cee3f1", "class_name": "RelatedNodeInfo"}}, "text": "### For the Junior post it states as Essential: \"Fluency in one or more modern programming languages used in research in data science and artificial intelligence\". In my case I am familiar with X, would my computing knowledge satisfy this criteria?\n\nDepending on the project, we work with different programming languages and different settings, so more than the programming languages you currently know the important aspect for us is the willingness and ability to pick up new languages along the way, based on your previous experience (especially in research and data analysis contexts).\n\n### Given the job profile in the REG team, what do REG members tend to transition to (for eg. Academics, or Industry, or something else)?\n\nWe have only had a few members of the team who have moved on with their career trajectory so far.\nTo read about some of their career paths you can visit our [REG alumni page](https://www.turing.ac.uk/research/research-engineering/reg-alumni).\nSome of them moved to a traditional academic position (for instance pursuing a PhD, taking a professorship), and others to industry and government positions.\nOthers have progressed to more senior roles within the team.\n\n### Would the candidate be able to bring their own projects with them and/or seek funding while in the role ?\n\nThe team's role at the Turing is to collaborate with institute researchers to support their research agendas, rather than pursuing our own.\nIt is much, much more usual for team members to be working on other people's projects than their own.\nIf you would like to prioritise pursuing your own research agenda at the Turing there are [other types of positions](https://www.turing.ac.uk/opportunities-turing) at the Institute that allow you to do this.\n\nHowever, we are keen to support team members in pursuing their careers, including developing and leading projects.\nWe would generally expect these to be projects that would be a sufficiently good fit for the team and the Turing that we would take them on even if the particular team member was not involved.\n\nWe would also expect team members that do lead their own projects to continue to work collaboratively with others in REG and the Institute.", "start_char_idx": 9609, "end_char_idx": 11811, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5d83bd6f-d55e-4a3d-b92a-95d2730cec7e": {"__data__": {"id_": "5d83bd6f-d55e-4a3d-b92a-95d2730cec7e", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9263bd46-63d4-4010-9ef1-ebeb7c96e88f", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "d2b89aae551c1edbbee3e3a80619c97fd7911beb5c38117dfc738a252366ea46", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "214b63dc-17e6-4093-9efe-b50dac8331a0", "node_type": "1", "metadata": {}, "hash": "894b37322b4233678c148ff8e532bf4381accd0ecce14b33e58d9c65495fcb43", "class_name": "RelatedNodeInfo"}}, "text": "### Would the candidate be able to bring their own projects with them and/or seek funding while in the role ?\n\nThe team's role at the Turing is to collaborate with institute researchers to support their research agendas, rather than pursuing our own.\nIt is much, much more usual for team members to be working on other people's projects than their own.\nIf you would like to prioritise pursuing your own research agenda at the Turing there are [other types of positions](https://www.turing.ac.uk/opportunities-turing) at the Institute that allow you to do this.\n\nHowever, we are keen to support team members in pursuing their careers, including developing and leading projects.\nWe would generally expect these to be projects that would be a sufficiently good fit for the team and the Turing that we would take them on even if the particular team member was not involved.\n\nWe would also expect team members that do lead their own projects to continue to work collaboratively with others in REG and the Institute. We would therefore not expect people to be bought out more than 50% on their own project and would expect the project to involve other members of the team or the Institute.\n\nNevertheless, while a permanent role within REG is not meant for pursuing an independent research agenda, we highly encourage initiatives and are open to hear new ideas and contributions.\nSo, if you think your project would benefit our group and the Turing (and vice-versa) you should highlight it in your cover letter.\n\n## Interview\n\n### Could you describe the interview process?\n\nAs we mentioned in the job description, all interviews are currently held remotely.\n\nWe operate a two-stage interview process. If you are successful at the screening stage, you will be asked to attend the first interview via video call.\nIn this interview, you will be expected to give a ten-minute presentation on code you have written that either demonstrates an algorithm that you consider important in data science or illustrates your use of good research software engineering practices.\nExisting examples of work are encouraged as long as the code was substantially written by you.\nYou should be prepared to answer questions about both the code and the research challenge it addresses or the algorithm it demonstrates.\nAny source code shared for the interview will be treated in the strictest of confidence.", "start_char_idx": 10801, "end_char_idx": 13179, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "214b63dc-17e6-4093-9efe-b50dac8331a0": {"__data__": {"id_": "214b63dc-17e6-4093-9efe-b50dac8331a0", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5d83bd6f-d55e-4a3d-b92a-95d2730cec7e", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "d079d79bc73a60da75152728c79f9bfa0bf24dc9168d518dfb62057688c0416c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d04e9b9a-1e28-42c4-ac2a-e59e84cf019b", "node_type": "1", "metadata": {}, "hash": "8a7f1aa5dd30b90edbfed60a88b008d992b4306dcf47e1f4f7fc62f48f44793e", "class_name": "RelatedNodeInfo"}}, "text": "So, if you think your project would benefit our group and the Turing (and vice-versa) you should highlight it in your cover letter.\n\n## Interview\n\n### Could you describe the interview process?\n\nAs we mentioned in the job description, all interviews are currently held remotely.\n\nWe operate a two-stage interview process. If you are successful at the screening stage, you will be asked to attend the first interview via video call.\nIn this interview, you will be expected to give a ten-minute presentation on code you have written that either demonstrates an algorithm that you consider important in data science or illustrates your use of good research software engineering practices.\nExisting examples of work are encouraged as long as the code was substantially written by you.\nYou should be prepared to answer questions about both the code and the research challenge it addresses or the algorithm it demonstrates.\nAny source code shared for the interview will be treated in the strictest of confidence.\n\nThe second interview is usually held about one week later for successful candidates. This interview focusses on your previous experience and competencies for the role.\nThere will also be a problem-solving discussion with the interview panel, where you may want to use paper and pen to arrive at an understanding of a proposed data analysis challenge.\n\nIn both interviews, there will be the opportunity to ask questions about the role and the team.\n\n### Does the algorithm need to be written entirely by me?\n\nIn the first interview we expect you to demonstrate your ability to write code for addressing a data science task in a reproducible manner and/or to use good software engineering practices for developing research software.\nThis could be done by presenting a data analysis script or piece of research software written entirely by you, or by presenting a larger piece of research software you have made a significant contribution to.\nUsing existing libraries that implement algorithms you are using is fine (and good practice), but in all cases there must be a significant amount of code you have written yourself, it must be clear what code you have written yourself, and we expect you to talk about and answer questions on:\n\n1. the code you have written,\n1. the underlying algorithms or methods your code is implementing or using, and\n1. the research domain or question for which you are applying them.", "start_char_idx": 12174, "end_char_idx": 14591, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d04e9b9a-1e28-42c4-ac2a-e59e84cf019b": {"__data__": {"id_": "d04e9b9a-1e28-42c4-ac2a-e59e84cf019b", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "214b63dc-17e6-4093-9efe-b50dac8331a0", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "b64ddc0259b3a7279dc154f598b9e4379071a28ffaed531d75b4d094b95d1bc4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f4a27cf4-d22f-47b2-bd5e-7cfd3cf286e4", "node_type": "1", "metadata": {}, "hash": "0530099152761ac95be599b7df8ec22ede22f488e7f4ded297d3c2eb21d8a340", "class_name": "RelatedNodeInfo"}}, "text": "In both interviews, there will be the opportunity to ask questions about the role and the team.\n\n### Does the algorithm need to be written entirely by me?\n\nIn the first interview we expect you to demonstrate your ability to write code for addressing a data science task in a reproducible manner and/or to use good software engineering practices for developing research software.\nThis could be done by presenting a data analysis script or piece of research software written entirely by you, or by presenting a larger piece of research software you have made a significant contribution to.\nUsing existing libraries that implement algorithms you are using is fine (and good practice), but in all cases there must be a significant amount of code you have written yourself, it must be clear what code you have written yourself, and we expect you to talk about and answer questions on:\n\n1. the code you have written,\n1. the underlying algorithms or methods your code is implementing or using, and\n1. the research domain or question for which you are applying them.\n\n### Can you give any more detail on what the panel expect from the algorithm which will be presented - does it need to meet any certain criteria, for example have a certain level of complexity?\n\nIn the first interview we expect you to demonstrate your ability to write code for addressing a data science task and/or to use good research software engineering practices for ensuring research reproducibility.\nThis could be done by presenting for instance a data analysis script written by you, where you would describe us the implementation and answer some general questions.\nThe adopted algorithms can be ones available in existing software libraries, integrated for instance in a data analysis workflow, but they can also be written by you if you prefer.\n\nWe will not evaluate you on the complexity of the algorithm, but in your understanding of its implementation, awareness of its potential downfall and its overall appropriateness to solve the problem you are trying to address.\n\n### Will I be only explaining the algorithm / analysis / software, or running it and discussing the results?\n\nYou will be presenting your chosen analysis, algorithm or software and its implementation, but you should be able to talk about the results of the analysis or the performance of the software.", "start_char_idx": 13533, "end_char_idx": 15877, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f4a27cf4-d22f-47b2-bd5e-7cfd3cf286e4": {"__data__": {"id_": "f4a27cf4-d22f-47b2-bd5e-7cfd3cf286e4", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d04e9b9a-1e28-42c4-ac2a-e59e84cf019b", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "2402221722e5467380571b520d084f96e19459f0b3508c3bd2f0792871053a34", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4139f092-9cd1-46db-ba5a-5a5759ae4bb1", "node_type": "1", "metadata": {}, "hash": "c429fa01bfc9c746c6c6932cab6d7fcfca1314b29f0107a2d1555bf7a573e211", "class_name": "RelatedNodeInfo"}}, "text": "In the first interview we expect you to demonstrate your ability to write code for addressing a data science task and/or to use good research software engineering practices for ensuring research reproducibility.\nThis could be done by presenting for instance a data analysis script written by you, where you would describe us the implementation and answer some general questions.\nThe adopted algorithms can be ones available in existing software libraries, integrated for instance in a data analysis workflow, but they can also be written by you if you prefer.\n\nWe will not evaluate you on the complexity of the algorithm, but in your understanding of its implementation, awareness of its potential downfall and its overall appropriateness to solve the problem you are trying to address.\n\n### Will I be only explaining the algorithm / analysis / software, or running it and discussing the results?\n\nYou will be presenting your chosen analysis, algorithm or software and its implementation, but you should be able to talk about the results of the analysis or the performance of the software.\nIt would be useful to be able to run the code to generate results, but we recognise this is not always reasonable in an interview setting. If this is not not feasible then you should bring some previously generated results so that we can have a conversation around inputs and outputs.\nThe discussion will likely touch on the performance of the algorithm in terms of e.g. speed, accuracy or range of applicability, but our goal is to evaluate your understanding of the algorithm, analysis or software and its implementation rather than to assess you on the performance of your particular implementation.\n\n### Should the presentation be verbal only or should I produce some materials alongside it - would the committee prefer presentation directly from an IDE, or using a presentation software?\n\nYou should be able to show and (potentially) run the code (this could be using Jupyter notebooks, Rmarkdown, a mix of an IDE and the command line).\nYou are welcome to include any other material that could be useful for supporting your presentation.\n\n### What will the problem solving aspect of the second interview involve? Will I be asked about particular data science or machine learning approaches? Will I need to write code or explain the details of an algorithm's implementation?\n\nIn the second interview we expect you to discuss a question related to the analysis of an example dataset.", "start_char_idx": 14788, "end_char_idx": 17264, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4139f092-9cd1-46db-ba5a-5a5759ae4bb1": {"__data__": {"id_": "4139f092-9cd1-46db-ba5a-5a5759ae4bb1", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f4a27cf4-d22f-47b2-bd5e-7cfd3cf286e4", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "b9c4835a8b10cbb48e3133fb27b2363a6fefe49d1012a69c9c403f7a67139dde", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2c693769-1efc-4102-8d1e-253fcede566b", "node_type": "1", "metadata": {}, "hash": "78b9f5aee22adc7dc0091b95a335e28ae85314b8814a3199fba3311580fbe4d6", "class_name": "RelatedNodeInfo"}}, "text": "speed, accuracy or range of applicability, but our goal is to evaluate your understanding of the algorithm, analysis or software and its implementation rather than to assess you on the performance of your particular implementation.\n\n### Should the presentation be verbal only or should I produce some materials alongside it - would the committee prefer presentation directly from an IDE, or using a presentation software?\n\nYou should be able to show and (potentially) run the code (this could be using Jupyter notebooks, Rmarkdown, a mix of an IDE and the command line).\nYou are welcome to include any other material that could be useful for supporting your presentation.\n\n### What will the problem solving aspect of the second interview involve? Will I be asked about particular data science or machine learning approaches? Will I need to write code or explain the details of an algorithm's implementation?\n\nIn the second interview we expect you to discuss a question related to the analysis of an example dataset.\nAll information required to answer the question will be given to you in beginning of the interview.\n**No preparation or specific technical knowledge is expected or required.**\nThe goal of this exercise is not to test your understanding of any particular algorithm or data science method, but rather to assess your general approach to tackling a data science question.\n\nThis exercise will not require you to write any code or explain the details of any algorithm.\nThe exercise isn't assessed on whether or not you know the \"right\" answer to a particular data science question, but on the process you go through to understand the question and the data and your reasoning for the approaches you suggest.\nTaking some time to think through the question is fine, as is asking questions to the interviewers.\nConsider them as subject matter experts coming to you to answer a question using their data.\n\n### Is there anything in particular I should prepare for the problem solving interview?\n\nNothing at all.\nThe best thing you could do to be prepared is to eat well, take some long walks far away from the computer and get a good night's sleep.\n\n## Offer\n\n### What are the reasons of your job offer? Is the salary negotiable?", "start_char_idx": 16249, "end_char_idx": 18482, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2c693769-1efc-4102-8d1e-253fcede566b": {"__data__": {"id_": "2c693769-1efc-4102-8d1e-253fcede566b", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4139f092-9cd1-46db-ba5a-5a5759ae4bb1", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "618473b8aefa0a020e66408ec70d4f19b9b8143a1f1de7762301b2ac5c6a19ce", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "202a5ff9-6f89-4301-a80f-0577d6989b87", "node_type": "1", "metadata": {}, "hash": "ab09cd9fc89db47aefb9d5ea23a1c65156f3140d7da95edc86695b74d5798f4f", "class_name": "RelatedNodeInfo"}}, "text": "This exercise will not require you to write any code or explain the details of any algorithm.\nThe exercise isn't assessed on whether or not you know the \"right\" answer to a particular data science question, but on the process you go through to understand the question and the data and your reasoning for the approaches you suggest.\nTaking some time to think through the question is fine, as is asking questions to the interviewers.\nConsider them as subject matter experts coming to you to answer a question using their data.\n\n### Is there anything in particular I should prepare for the problem solving interview?\n\nNothing at all.\nThe best thing you could do to be prepared is to eat well, take some long walks far away from the computer and get a good night's sleep.\n\n## Offer\n\n### What are the reasons of your job offer? Is the salary negotiable?\n\nFairness and transparency are key values for us and our goal is to avoid inequity by ensuring we are paying people the same salary for the same level of contribution to the team.\n**Our offers are not negotiable** and set by considering the level and applicability of each candidate\u2019s experience relative to their future peers already working in the team.\n\nWe have annual pay reviews, where we actively review the performance and development of each team member against the expectations of their position within their seniority band and make salary adjustments where these expectations are being exceeded.\nAdditionally, the team is growing and there will be opportunities for people to progress in their career.\n\nBecoming a member of REG will also bring the following benefits:\n\n- Flexible working: we are currently trialling being a \u201cremote-first\u201d group for the entire decision-making process, but as the office is now fully re-opened members are free to choose how often they come into the office.\n\n- The opportunity to work and collaborate on cutting-edge data science projects with high-profile institutions, but with the benefits of working in a full-time position (better than a post-doc, better than many data science roles in industry).\n\n- Strong input into which projects you work on.\n We value providing the experience of learning something new in a collaborative setting, and prioritise staffing people onto projects they would like to work on rather than maximising the fit to people's prior experience.", "start_char_idx": 17634, "end_char_idx": 19999, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "202a5ff9-6f89-4301-a80f-0577d6989b87": {"__data__": {"id_": "202a5ff9-6f89-4301-a80f-0577d6989b87", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2c693769-1efc-4102-8d1e-253fcede566b", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "7bbfd649e7ed062217b812ab04ce9ed86561b64963028e4429768c7e0eed4658", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2977a99a-b5bc-4548-8003-77766a64b591", "node_type": "1", "metadata": {}, "hash": "97a8d311c8d3357f752e8172fc8f7df54543d526e82f727891f1baa2249ede45", "class_name": "RelatedNodeInfo"}}, "text": "Additionally, the team is growing and there will be opportunities for people to progress in their career.\n\nBecoming a member of REG will also bring the following benefits:\n\n- Flexible working: we are currently trialling being a \u201cremote-first\u201d group for the entire decision-making process, but as the office is now fully re-opened members are free to choose how often they come into the office.\n\n- The opportunity to work and collaborate on cutting-edge data science projects with high-profile institutions, but with the benefits of working in a full-time position (better than a post-doc, better than many data science roles in industry).\n\n- Strong input into which projects you work on.\n We value providing the experience of learning something new in a collaborative setting, and prioritise staffing people onto projects they would like to work on rather than maximising the fit to people's prior experience.\n Our group is made up of people with a wide range of skills and experiences and we generally find we can put together project teams with a suitable mix of skills from those who are enthusiastic about each project.\n\n- Formal support for professional development via learning and development plans each team member develops with their line manager during the probation process, annual objective setting and regular 1-2-1s.\n These learning plans feed into the projects people are allocated to and the roles and responsibilities they undertake within these.\n\n- Support to team members with their development outside of projects, providing 20% time that is split evenly between self-directed development and getting involved in one of the group's or institute's service areas.\n We support team members to attend conferences, workshops and courses, and there are many seminar series and interest groups at the Turing that team members are encouraged to get involved with, including the team\u2019s own weekly [tech talks]({{< relref \"docs/regular_events/lunchtime_tech_talks.md\" >}}).\n We also support team members making contributions to the wider ecosystem as part of their 20% time.", "start_char_idx": 19089, "end_char_idx": 21178, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2977a99a-b5bc-4548-8003-77766a64b591": {"__data__": {"id_": "2977a99a-b5bc-4548-8003-77766a64b591", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "202a5ff9-6f89-4301-a80f-0577d6989b87", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "9e94ae1685c0e4dee1a3be902b2db43c34f0073ea3967872ef5ccb77af90bd24", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9950c23a-f73d-423f-b120-fc886fdc8843", "node_type": "1", "metadata": {}, "hash": "23e3b2031ab2b13689d42bccc5f9760ce76a113c6042295bdf31945ff5c16772", "class_name": "RelatedNodeInfo"}}, "text": "- Formal support for professional development via learning and development plans each team member develops with their line manager during the probation process, annual objective setting and regular 1-2-1s.\n These learning plans feed into the projects people are allocated to and the roles and responsibilities they undertake within these.\n\n- Support to team members with their development outside of projects, providing 20% time that is split evenly between self-directed development and getting involved in one of the group's or institute's service areas.\n We support team members to attend conferences, workshops and courses, and there are many seminar series and interest groups at the Turing that team members are encouraged to get involved with, including the team\u2019s own weekly [tech talks]({{< relref \"docs/regular_events/lunchtime_tech_talks.md\" >}}).\n We also support team members making contributions to the wider ecosystem as part of their 20% time.\n Examples include contributing to external [Open Source Hacksessions]({{< relref \"docs/regular_events/open_source_hacksessions.md\" >}}) and contributing to community groups like the [Society for Research Software Engineering]({{< relref \"docs/onboarding/society_of_research_software_engineering.md\" >}}).\n\n- The opportunity to get involved in non-project work through one of the team's service areas, some of which support the running of the team and some of which support the wider research community at the institute (for instance Recruitment, Planning and finance, Training, EDI, Communications, Research computing support, Research programme liaison).\n Some service areas require significant support and will have core team members who have chosen these service areas instead of a full project workload, but all team members have a 10% allocation to volunteer for a service area of their choice.\n\n- The opportunity to contribute to how the group works and grows.\n We run the team in an open, consultative and collaborative manner and almost all of our decision making on how we organise ourselves and develop the team is done in the open on our group GitHub with the opportunity for anyone in the team to contribute.", "start_char_idx": 20216, "end_char_idx": 22402, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9950c23a-f73d-423f-b120-fc886fdc8843": {"__data__": {"id_": "9950c23a-f73d-423f-b120-fc886fdc8843", "embedding": null, "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "334a4c021df569ebc7001eeac252ffa542373d53", "node_type": "4", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "76b4a5af0f7b39e5ab11bf6cf1be1966d7c3d7a323e60a4951bb4ccd5ef0d900", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2977a99a-b5bc-4548-8003-77766a64b591", "node_type": "1", "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}, "hash": "7c93e6b9a52d97e1a6e4311a2c634963c7a484c3af2466cfbf4d8ff603406585", "class_name": "RelatedNodeInfo"}}, "text": "- The opportunity to get involved in non-project work through one of the team's service areas, some of which support the running of the team and some of which support the wider research community at the institute (for instance Recruitment, Planning and finance, Training, EDI, Communications, Research computing support, Research programme liaison).\n Some service areas require significant support and will have core team members who have chosen these service areas instead of a full project workload, but all team members have a 10% allocation to volunteer for a service area of their choice.\n\n- The opportunity to contribute to how the group works and grows.\n We run the team in an open, consultative and collaborative manner and almost all of our decision making on how we organise ourselves and develop the team is done in the open on our group GitHub with the opportunity for anyone in the team to contribute.\n\n- [Other benefits](https://www.turing.ac.uk/work-turing/why-work-turing/employee-benefits) include private healthcare and a 13% contribution to a defined contribution pension scheme (3% from the employee, 10% from the Turing).\n\n## My question is not answered here\n\nPlease contact the REG recruitment team ([reg-recruitment-info@turing.ac.uk](mailto:reg-recruitment-info@turing.ac.uk)) with any additional questions you may have.\nWe also run monthly drop-in sessions where you can meet some of the current team and ask them questions face to face.\nThese sessions will be hosted by team members who won't be involved in that month's interview process, and questions you ask at these sessions will have no influence on how your application is treated.\nTo be informed of the details for these drop-in sessions, please register for the team's [recruitment newsletter](https://tinyletter.com/turing-reg-recruitment).", "start_char_idx": 21486, "end_char_idx": 23314, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "35db1781-d829-46cd-b2df-e30df000dc0d": {"__data__": {"id_": "35db1781-d829-46cd-b2df-e30df000dc0d", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/_index.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8da5941d9e553fec1734e42037111a37668471e4", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/_index.md"}, "hash": "77c87947a74280ecae4e0af0bb9d29567f10057c0407b4729b48df3572204ba0", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Onboarding\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 2\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Onboarding\n\nThis section contains information about onboarding process for new members of REG.\n\nOnboardees: Please go through these pages as one of the very first things when you join.\n\n- [Buddy system]({{< relref \"/docs/onboarding/buddy_system.md\" >}})\n- [New Joiners]({{< relref \"/docs/onboarding/new_joiners/_index.md\" >}})\n\nOnboarders: Please see the following wiki page for everything you need to know about becoming an onboarder.\n\n- [REG Onboarding](https://github.com/alan-turing-institute/research-engineering-group/wiki/Onboarding)", "start_char_idx": 0, "end_char_idx": 932, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9ef54c37-488c-41f4-b826-cf988eb9e138": {"__data__": {"id_": "9ef54c37-488c-41f4-b826-cf988eb9e138", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/buddy_system.md", "file_name": "buddy_system.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/buddy_system.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/buddy_system.md", "file_name": "buddy_system.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/buddy_system.md"}, "hash": "dcd7c76f633d17ec3fbae2ab77dac71679ce12d56af6326da3fd3de2e78e99aa", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "584f6865-e808-41c0-8032-05e75d746feb", "node_type": "1", "metadata": {}, "hash": "49b2744fdddc7369cd1261897218d97b9bb57736f0f90cdadd429967172854af", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Buddy System\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 1\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Buddy System\n\nIt can be daunting starting a new job, especially remotely where there is sometimes less opportunity for casual questions.\nTo help with this every new employee should be assigned buddies.\nThe buddies are responsible for providing informal friendly faces to offer advice, guidance, and encouragement on any aspect of working within REG and ARC.\n\nWe also emphasise that the buddies should be a safe space where new-starters can get help with any technical questions that they feel is silly or trivially easy and may not feel comfortable admitting to the wider group.\n\n## The Process\n\nBefore the new starter starts at the Turing they should be assigned **two buddies** from our [buddy pool](https://github.com/alan-turing-institute/research-engineering-group/wiki/Buddy-Sign-up-and-Matches).\nIf possible, the buddies should not be assigned to the projects on which the new starter is likely to work, and ideally at a similarly seniority to the new starter.\n\nWe would also like for each new starter to have a third buddy from some other team.\nWe think that in a remote & hybrid setting it will help new-starters meet people and get a feel for the wider Turing ecosystem.\nThis has been trialed in a few instances, to positive feedback, but to make this be standard practice we would need it to be more bidirectional, with REGers volunteering to buddy with people outside of REG.\n\nThe new-starter should be made aware of the buddies' role before they start, and meeting their buddies should typically be the first appointment on their first day.\n\nThe buddy system in managed by\n[the person in charge of onboarding](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities).\n\n## Buddy Guidelines\n\n- Have a coffee with the new employee on their first day.", "start_char_idx": 0, "end_char_idx": 2201, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "584f6865-e808-41c0-8032-05e75d746feb": {"__data__": {"id_": "584f6865-e808-41c0-8032-05e75d746feb", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/buddy_system.md", "file_name": "buddy_system.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/buddy_system.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/buddy_system.md", "file_name": "buddy_system.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/buddy_system.md"}, "hash": "dcd7c76f633d17ec3fbae2ab77dac71679ce12d56af6326da3fd3de2e78e99aa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9ef54c37-488c-41f4-b826-cf988eb9e138", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/buddy_system.md", "file_name": "buddy_system.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/buddy_system.md"}, "hash": "b65ae1c1b1dad25491334288dee6a8917ec65e1ca3b80602072e86168c8305e7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "36f72676-0d86-4d9b-b3c5-18d5cbe0ad06", "node_type": "1", "metadata": {}, "hash": "83c602396d2c54b222ec7e90017a24faf83558ad5068d31e2469afb4ee9a3ebb", "class_name": "RelatedNodeInfo"}}, "text": "We would also like for each new starter to have a third buddy from some other team.\nWe think that in a remote & hybrid setting it will help new-starters meet people and get a feel for the wider Turing ecosystem.\nThis has been trialed in a few instances, to positive feedback, but to make this be standard practice we would need it to be more bidirectional, with REGers volunteering to buddy with people outside of REG.\n\nThe new-starter should be made aware of the buddies' role before they start, and meeting their buddies should typically be the first appointment on their first day.\n\nThe buddy system in managed by\n[the person in charge of onboarding](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities).\n\n## Buddy Guidelines\n\n- Have a coffee with the new employee on their first day.\n- If needed, introduce them to the team at welcome coffee.\n- Be as informal as possible, make the new starter feel welcome and comfortable.\n- Make sure the new starter is familiar with the [New Starter page]({{< relref \"/docs/onboarding/new_joiners\" >}}). Check for sticking points.\n- Meet the new starter where they are at.\n- Make it clear that the new employee can get in touch any time for questions and concerns, regardless of triviality.\n- Emphasise that you're also there for technical pointers. This is to encourage the new-starter to be comfortable asking for help when they are stuck and hopefully lessening imposter syndrome anxiety.\n- Have a check-in chat with the new starter at least once in the first couple of weeks, and again a few weeks after. During these check-ins, uncover pain points and concerns.\n- Help socialise the new employee to the group's culture and processes.\n- Be open, honest, and respect confidentiality.\n- If needed, help make introductions.\n\n## Tips for Buddies\n\n- Don\u2019t worry about being perceived as the expert. Focus your attention on the new employee.\n- Be patient: It takes time to develop a relationship. Don\u2019t try to cover everything right away.\n- Be positive: New employees will grow into their roles if given proper reinforcement.\n- Don\u2019t try to force a relationship.", "start_char_idx": 1363, "end_char_idx": 3514, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "36f72676-0d86-4d9b-b3c5-18d5cbe0ad06": {"__data__": {"id_": "36f72676-0d86-4d9b-b3c5-18d5cbe0ad06", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/buddy_system.md", "file_name": "buddy_system.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/buddy_system.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3eb1917b4ebf3c304d06bf25d131ead26c9856bb", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/buddy_system.md", "file_name": "buddy_system.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/buddy_system.md"}, "hash": "dcd7c76f633d17ec3fbae2ab77dac71679ce12d56af6326da3fd3de2e78e99aa", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "584f6865-e808-41c0-8032-05e75d746feb", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/buddy_system.md", "file_name": "buddy_system.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/buddy_system.md"}, "hash": "ab39b77b4f6a8b6e643d8df6c4eff7993ef85dc76ecf3f3ab55cdc10e04981e8", "class_name": "RelatedNodeInfo"}}, "text": "- Emphasise that you're also there for technical pointers. This is to encourage the new-starter to be comfortable asking for help when they are stuck and hopefully lessening imposter syndrome anxiety.\n- Have a check-in chat with the new starter at least once in the first couple of weeks, and again a few weeks after. During these check-ins, uncover pain points and concerns.\n- Help socialise the new employee to the group's culture and processes.\n- Be open, honest, and respect confidentiality.\n- If needed, help make introductions.\n\n## Tips for Buddies\n\n- Don\u2019t worry about being perceived as the expert. Focus your attention on the new employee.\n- Be patient: It takes time to develop a relationship. Don\u2019t try to cover everything right away.\n- Be positive: New employees will grow into their roles if given proper reinforcement.\n- Don\u2019t try to force a relationship. New employees will vary in how much they turn to a buddy.\n- Try to identify the new employee\u2019s personality and communication style and adapt accordingly.\n- Don\u2019t be judgemental. Simply offer feedback.\n- Maintain a good attitude and a teaching spirit.\n\n## How to be a Buddy\n\nBeing a buddy can be a rewarding process.\nYou will help avoid new starters feeling at sea and reaffirm their decision to join the group.\nTo sign up please add your name to our [buddy pool](https://github.com/alan-turing-institute/research-engineering-group/wiki/Buddy-Sign-up-and-Matches).", "start_char_idx": 2645, "end_char_idx": 4078, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1fdb1412-26d8-4077-955c-b338014f395c": {"__data__": {"id_": "1fdb1412-26d8-4077-955c-b338014f395c", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/_index.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "eea6eb21a653228f12ee4e03bc10e04179d63ea5", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/_index.md"}, "hash": "02b71d07a87bab02be22e3fc1ee99e330f02f1d7f1ea30af07e3aa1c0e3f5116", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"New Joiners\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 1\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# New Joiners\n\nThis section helps new members of REG get up to speed.\nPlease go through these page as one of the very first things when you join.\n\n- [First Few Days]({{< relref \"/docs/onboarding/new_joiners/first_few_days.md\" >}})\n- [Systems Set Up]({{< relref \"/docs/onboarding/new_joiners/systems_set_up.md\" >}})", "start_char_idx": 0, "end_char_idx": 705, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "139ccd73-c4b8-4a69-9349-3584a45b27f6": {"__data__": {"id_": "139ccd73-c4b8-4a69-9349-3584a45b27f6", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3452b76140b3029de5af4930db29caa5e943513d", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "hash": "0f8587da24ec5340e668b26212876769ac035d237a8d4cd2a03ee1ff7620bb13", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "478492af-909f-4927-afa3-a22f69624c18", "node_type": "1", "metadata": {}, "hash": "7da123a59b8f1e823e8b6e8a8298fe5cce5bf6c05e709f1e705375cf6e579633", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Checklist\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 4\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Checklist\n\nThis page attempts to list all the things that a new starter should remember to do.\nIt makes no guarantees of completeness, and attempts to list both compulsory things and optional ones.\nIt has been written by new starters as they go.\nIf you've recently started in REG and find yourself doing anything related to getting started, that others might want to do as well but that is not on this list, please add it.\nIf anything is unclear, please figure it out by e.g. asking your buddies, and then clarify it here.\n\n## Meetings\n\n- [ ] Attend buddy meeting\n- [ ] Attend HR induction\n- [ ] Attend IT induction\n- [ ] Meet with line manager\n- [ ] [Shadow meetings](https://hackmd.io/nnsWP4i_SiiwlT4meOeq6g) (if you don't have access to the HackMD, ask someone in charge of [onboarding](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#documents))\n- [ ] Join in for welcome coffee(s)\n\n## HR tasks\n\n- [ ] Complete Agenda screening (hopefully this happened already before you started, but if you haven't received an email about this, ask HR)\n- [ ] Do a bazillion things on [Cezanne](https://w3.cezanneondemand.com/CezanneHR/):\n - [ ] Enter specific personal details, most important are:\n - DOB\n - Home address\n - Emergency contact details\n - Bank details\n - NI\n - [ ] Health form\n - [ ] Additional characteristics form\n - [ ] Complete and reupload in Cezanne documents area:\n - [ ] \u201cBL partners - Health,", "start_char_idx": 0, "end_char_idx": 1887, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "478492af-909f-4927-afa3-a22f69624c18": {"__data__": {"id_": "478492af-909f-4927-afa3-a22f69624c18", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3452b76140b3029de5af4930db29caa5e943513d", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "hash": "0f8587da24ec5340e668b26212876769ac035d237a8d4cd2a03ee1ff7620bb13", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "139ccd73-c4b8-4a69-9349-3584a45b27f6", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "hash": "dd66e9696ce420cafa014844df1ce0e0325c8e1e8b15c0282bfab4f430b1e6bd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "80a01e0f-9042-4493-92d6-a07003cd87a9", "node_type": "1", "metadata": {}, "hash": "a67e302d23b9b620142d530813f31536e7c72a5ab13673a2085828c66f7b71b8", "class_name": "RelatedNodeInfo"}}, "text": "ask someone in charge of [onboarding](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#documents))\n- [ ] Join in for welcome coffee(s)\n\n## HR tasks\n\n- [ ] Complete Agenda screening (hopefully this happened already before you started, but if you haven't received an email about this, ask HR)\n- [ ] Do a bazillion things on [Cezanne](https://w3.cezanneondemand.com/CezanneHR/):\n - [ ] Enter specific personal details, most important are:\n - DOB\n - Home address\n - Emergency contact details\n - Bank details\n - NI\n - [ ] Health form\n - [ ] Additional characteristics form\n - [ ] Complete and reupload in Cezanne documents area:\n - [ ] \u201cBL partners - Health, Safety and Security\u201d form\n - [ ] HMRC new starters form\n - [ ] \"Right to work\" document\n - [ ] Signed and dated scanned contract (can just upload the version signed with DocuSign before joining)\n- [ ] British Library pass:\n - [ ] \"BL partners - Health, Safety and Security\" form: complete and reupload in Cezanne documents area\n - [ ] Upload photo to Documents section on Cezanne (where other starter forms are provided)\n - [ ] HR require Agenda Screening report (no action if already completed Agenda Screening before starting)\n- [ ] Temporary pass, line manager emails reception to request\n- [ ] Send P45 from previous job to HR contact directly by email\n- [ ] Read about health and dental insurance, decide whether to sign up\n- [ ] Check the Turing Benefits site, to see if there are useful discounts there\n- [ ] Send to HR for the next Turing Town Hall meeting:\n - [ ] Casual photo\n - [ ] Fun fact(s)\n- [ ] Provide a description for the [ATI webpage](https://turingcomplete.topdesk.", "start_char_idx": 1143, "end_char_idx": 2910, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "80a01e0f-9042-4493-92d6-a07003cd87a9": {"__data__": {"id_": "80a01e0f-9042-4493-92d6-a07003cd87a9", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3452b76140b3029de5af4930db29caa5e943513d", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "hash": "0f8587da24ec5340e668b26212876769ac035d237a8d4cd2a03ee1ff7620bb13", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "478492af-909f-4927-afa3-a22f69624c18", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "hash": "a283bf87393d12159f032ee419cb0ed62d7b1a2dfd27f9c402146e1696f21ed2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "95e4556b-baf0-40be-a66b-4d2b0eebafb3", "node_type": "1", "metadata": {}, "hash": "a189f6c4a74bee03d6837e32dd146467e27e111ba9d09718f149407cec2d1111", "class_name": "RelatedNodeInfo"}}, "text": "Safety and Security\" form: complete and reupload in Cezanne documents area\n - [ ] Upload photo to Documents section on Cezanne (where other starter forms are provided)\n - [ ] HR require Agenda Screening report (no action if already completed Agenda Screening before starting)\n- [ ] Temporary pass, line manager emails reception to request\n- [ ] Send P45 from previous job to HR contact directly by email\n- [ ] Read about health and dental insurance, decide whether to sign up\n- [ ] Check the Turing Benefits site, to see if there are useful discounts there\n- [ ] Send to HR for the next Turing Town Hall meeting:\n - [ ] Casual photo\n - [ ] Fun fact(s)\n- [ ] Provide a description for the [ATI webpage](https://turingcomplete.topdesk.net/tas/public/ssp/content/serviceflow?unid=35b8d40067004f9484c9fb06ade41d65&openedFromService=true) (https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/systems_set_up#create-a-public-profile-on-the-turing-website)\n- [ ] Verify your MoorePay account (for payslips). Verification email will be sent to you in your first month of employment. See [Payroll and Payslip enquiries on Mathison](https://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2277&SearchId=190970&utm_source=interact&utm_medium=quick_search&utm_term=payslip) for more information.\n- [ ] Verify your Certify account (for expenses). The [Certify Mathison page](https://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2169) contains a Travel & Expenses Policy Compliance Form which has to be filled in and emailed to Finance to activate your account.", "start_char_idx": 2165, "end_char_idx": 3783, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "95e4556b-baf0-40be-a66b-4d2b0eebafb3": {"__data__": {"id_": "95e4556b-baf0-40be-a66b-4d2b0eebafb3", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3452b76140b3029de5af4930db29caa5e943513d", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "hash": "0f8587da24ec5340e668b26212876769ac035d237a8d4cd2a03ee1ff7620bb13", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "80a01e0f-9042-4493-92d6-a07003cd87a9", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "hash": "ea2b1417058d5548b4f93f5097d323770c6850466dab86c34935ad83705e0982", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "32f9cd78-e1aa-43d6-ad05-0c482996ffb4", "node_type": "1", "metadata": {}, "hash": "85571cced43578112ae2390b4e9e0ca3b3f39eae69f5fe1eea147ddbfedcf983", "class_name": "RelatedNodeInfo"}}, "text": "github.io/REG-handbook/docs/onboarding/new_joiners/systems_set_up#create-a-public-profile-on-the-turing-website)\n- [ ] Verify your MoorePay account (for payslips). Verification email will be sent to you in your first month of employment. See [Payroll and Payslip enquiries on Mathison](https://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2277&SearchId=190970&utm_source=interact&utm_medium=quick_search&utm_term=payslip) for more information.\n- [ ] Verify your Certify account (for expenses). The [Certify Mathison page](https://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2169) contains a Travel & Expenses Policy Compliance Form which has to be filled in and emailed to Finance to activate your account.\n\n## GitHub and communications\n\n- [ ] Get access to private GitHub repos (fill in [this form](https://forms.office.com/e/9rwSjBdfQp) and send your GitHub username to the person responsible for GitHub (see [The REGistry](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#documents)) to join the Alan Turing Organisation GitHub\n- [ ] Join Turing Slack\n - [ ] Go through public Slack channels, decide which ones to join\n- [ ] Request account on Harvest and Forecast by asking the the person in charge of researcher tool management, or your buddies to get you set up (to clarify, it is one account but allows you sign in to both) https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/systems_set_up#harvest-and-forecast\n- [ ] Read through the [new joiners pages of the REG handbook]({{< relref \"/docs/onboarding/new_joiners/_index.md\" >}})\n- [ ] Have a look at REG projects on the [Project tracker](https://github.com/alan-turing-institute/Hut23/projects/2) in the Hut23 GitHub Repo.", "start_char_idx": 3042, "end_char_idx": 4828, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "32f9cd78-e1aa-43d6-ad05-0c482996ffb4": {"__data__": {"id_": "32f9cd78-e1aa-43d6-ad05-0c482996ffb4", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3452b76140b3029de5af4930db29caa5e943513d", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "hash": "0f8587da24ec5340e668b26212876769ac035d237a8d4cd2a03ee1ff7620bb13", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "95e4556b-baf0-40be-a66b-4d2b0eebafb3", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "hash": "61bc50ac7a7636340f5217aed8148ee46a477420ce9dfd336ae2f16d3dbaa259", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b0534a2e-7f2a-493d-895f-0ba89a3d940b", "node_type": "1", "metadata": {}, "hash": "535cd0892706cec6770468de8ac588862ed95e98c30b31380164b0845314b574", "class_name": "RelatedNodeInfo"}}, "text": "Read through the [Project Tracking]({{< relref \"/docs/how_we_work/project_tracking.md\" >}}) page to learn how we set our preferences for projects by using emojis, and start emoji-ing for the projects in the \"Finding people\" and \"Awaiting go/no-go\" columns.\n- [ ] Have a look at the [Service areas](https://github.com/alan-turing-institute/research-engineering-group/wiki/Service-areas). There is no pressure to join one right away so you can take some time talking to people and finding an area that interests you.\n- [ ] Add the [shared REG Calendar](https://github.com/alan-turing-institute/research-engineering-group/wiki/Shared-REG-Calendar) to Outlook\n- [ ] Familiarise yourself with how to [Book Rooms]({{< relref \"/docs/working_at_the_turing/booking_a_meeting_room.md\" >}})\n- [ ] Message [IT](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact) to upgrade Zoom account from Basic to Pro\n- [ ] Send a short informal bio to the [REG newsletter owner](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities).\n\n## Sign up for ongoing activities\n\n- [ ] Feel free to put yourself down for a [tech talk]({{< relref \"/docs/regular_events/lunchtime_tech_talks.md\" >}}) (12:30 pm on Tuesdays): you can see if any open dates in [the schedule](https://github.com/alan-turing-institute/DataScienceSkills/wiki/Lunchtime-Tech-Talks) work for you, and then let [the person in charge of tech talks](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities) know.\n- [ ] Read up about (and perhaps join---we recommend you do!)", "start_char_idx": 4829, "end_char_idx": 6489, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b0534a2e-7f2a-493d-895f-0ba89a3d940b": {"__data__": {"id_": "b0534a2e-7f2a-493d-895f-0ba89a3d940b", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3452b76140b3029de5af4930db29caa5e943513d", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "hash": "0f8587da24ec5340e668b26212876769ac035d237a8d4cd2a03ee1ff7620bb13", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "32f9cd78-e1aa-43d6-ad05-0c482996ffb4", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}, "hash": "35a5870fa1aaa7db0685f187258de2d502617614466917984f2722c5cb580b83", "class_name": "RelatedNodeInfo"}}, "text": "## Sign up for ongoing activities\n\n- [ ] Feel free to put yourself down for a [tech talk]({{< relref \"/docs/regular_events/lunchtime_tech_talks.md\" >}}) (12:30 pm on Tuesdays): you can see if any open dates in [the schedule](https://github.com/alan-turing-institute/DataScienceSkills/wiki/Lunchtime-Tech-Talks) work for you, and then let [the person in charge of tech talks](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities) know.\n- [ ] Read up about (and perhaps join---we recommend you do!) the [Society of Research Software Engineering]({{< relref \"../society_of_research_software_engineering.md\" >}})\n- [ ] Sign up for any of the [EDI network groups]({{< relref \"/docs/working_at_the_turing/edi.md#network-groups\" >}}) which might interest you", "start_char_idx": 5943, "end_char_idx": 6744, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a84349e5-52b8-4073-9487-497ca07f95ee": {"__data__": {"id_": "a84349e5-52b8-4073-9487-497ca07f95ee", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "ecb3e19c8240dccf49f21c61c93b2b839dc634beef23d9d32c758e489472beb7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "59036fe2-a102-4943-b9bf-17e525a18467", "node_type": "1", "metadata": {}, "hash": "3df06ab8a27b5b735bfe8c37529a08c46eb44f3df87d16a1c9b2a5aea98b7c6e", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"First Few Days\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 1\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# First Few Days\n\n**Welcome!**\n\nWe are super pleased that you're joining our group.\nThis page gives you an overview of what to expect from your first few days.\nThey are maintained by the group, we hope that new-starters feel empowered to edit them if there are useful changes to be made.\n\n## Introductions\n\nEach new starter gets assigned two buddies to be friendly points of contact.\nThe [person in charge of onboarding](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities)\nshould let you know who these are a bit before you start;\nIf that doesn't happen, please email them about it.\nYour buddies will welcome you on the first day.\nIn the first few days there will be a welcome coffee to give you a chance to introduce yourself to the whole REG team, and within the first few weeks you will also have a 1-on-1 meeting with REG's Director.\n\nYou will have a week or so before you will be assigned to a project.\nPlease use this time to do admin stuff, set up your laptop and tools, get to know people, read this handbook and our internal wiki, and shadow meetings (see below).\nHere we go over the main points you should remember to do, but for an attempt at listing all the small tasks that occupy a new starter, please see (and improve!) [this checklist](https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/checklist/).\n\nWe also have a [page of tables](https://github.com/alan-turing-institute/research-engineering-group/wiki/Useful-Links-for-REG) available with information about links and resources related to REG and the Alan Turing Institute.", "start_char_idx": 0, "end_char_idx": 2018, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "59036fe2-a102-4943-b9bf-17e525a18467": {"__data__": {"id_": "59036fe2-a102-4943-b9bf-17e525a18467", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "ecb3e19c8240dccf49f21c61c93b2b839dc634beef23d9d32c758e489472beb7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a84349e5-52b8-4073-9487-497ca07f95ee", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "453574eddfd8dcc973ca13a9d1212dff65d8cfdd61632b6d7d0cb38da8258fe6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f3d35cee-3ccb-41d8-ad38-ff273e598cb5", "node_type": "1", "metadata": {}, "hash": "7c85379f9e8c472a8b9e7a771d4a534a7a16710f55b8832ce67870240a6e3e23", "class_name": "RelatedNodeInfo"}}, "text": "You will have a week or so before you will be assigned to a project.\nPlease use this time to do admin stuff, set up your laptop and tools, get to know people, read this handbook and our internal wiki, and shadow meetings (see below).\nHere we go over the main points you should remember to do, but for an attempt at listing all the small tasks that occupy a new starter, please see (and improve!) [this checklist](https://alan-turing-institute.github.io/REG-handbook/docs/onboarding/new_joiners/checklist/).\n\nWe also have a [page of tables](https://github.com/alan-turing-institute/research-engineering-group/wiki/Useful-Links-for-REG) available with information about links and resources related to REG and the Alan Turing Institute.\n\n## Administrivia\n\nHR will set up a meeting with you to discuss general information *e.g.* pay, health, leaves, benefits.\nIT will also meet you to discuss accounts and Turing wide systems.\nBoth of these will typically take place in the first day or two.\n\nWe have a\n[dedicated page]({{< relref \"/docs/onboarding/new_joiners/systems_set_up.md\" >}})\nfor various systems REG uses.\n**Have a look at the high priority section on your first day**.\n\nWe also have a\n[Remote Working](https://github.com/alan-turing-institute/research-engineering-group/wiki/Remote-Working)\npage for Zoom, Teams, and Gather.\n\nREG offers new starters the opportunity to shadow meetings across the group to meet people and get a feel for how we work.\nThe\n[shadowing document](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#documents)\nshould be updated with meetings you are free to come and listen in on, if it hasn't been please bug the\n[person in charge of onboarding](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities).\n\nTo access the office you will need a British Library pass.\nTo get a British Library pass you will need to go through the background screening check.", "start_char_idx": 1285, "end_char_idx": 3253, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f3d35cee-3ccb-41d8-ad38-ff273e598cb5": {"__data__": {"id_": "f3d35cee-3ccb-41d8-ad38-ff273e598cb5", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "ecb3e19c8240dccf49f21c61c93b2b839dc634beef23d9d32c758e489472beb7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "59036fe2-a102-4943-b9bf-17e525a18467", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "a6d34c5587c39cf634ac19b560e4ab9126887d2de0766dfad0d099f51fb56aa5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b6473046-4e60-4cac-89fb-ccb09390f1ec", "node_type": "1", "metadata": {}, "hash": "4e620fd1830956caf680a4fe79eab006eae2cac91f664d3fc111b914194027b8", "class_name": "RelatedNodeInfo"}}, "text": "**Have a look at the high priority section on your first day**.\n\nWe also have a\n[Remote Working](https://github.com/alan-turing-institute/research-engineering-group/wiki/Remote-Working)\npage for Zoom, Teams, and Gather.\n\nREG offers new starters the opportunity to shadow meetings across the group to meet people and get a feel for how we work.\nThe\n[shadowing document](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#documents)\nshould be updated with meetings you are free to come and listen in on, if it hasn't been please bug the\n[person in charge of onboarding](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities).\n\nTo access the office you will need a British Library pass.\nTo get a British Library pass you will need to go through the background screening check.\nHopefully that process will have been completed by the time you start, but if it hasn't even been started yet (this happens), please talk to\n[HR](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact)\nto make sure the process gets going.\nOnce the screening is done, HR should let you know within a few days that your pass is ready.\n\nIn the meanwhile, you can either enter the British Library through the general public entrance and come talk to the Turing's reception, or, preferably, arrange for a visitor pass for yourself for the days when you're coming in.\nFor the first day or two, ask your line manager to take care of this, once you've got your Turing account going you can directly ask [reception](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact).\n\nThe password for the \"ATI Guest\" Wi-Fi network can be seen hanging around the office.\n[IT](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact)\ncan arrange access to the [Eduroam](https://eduroam.org/) network.", "start_char_idx": 2396, "end_char_idx": 4379, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b6473046-4e60-4cac-89fb-ccb09390f1ec": {"__data__": {"id_": "b6473046-4e60-4cac-89fb-ccb09390f1ec", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "ecb3e19c8240dccf49f21c61c93b2b839dc634beef23d9d32c758e489472beb7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f3d35cee-3ccb-41d8-ad38-ff273e598cb5", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "0792dedad1e3c6ae85cabedee168def39fc44653b95f8a849ee25ac6e252b09a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3abae02f-f871-4edb-b3f1-81da237825da", "node_type": "1", "metadata": {}, "hash": "165a7d0e4e468c01fcca391e503899f345983fa151949a4abf3119fca2e04497", "class_name": "RelatedNodeInfo"}}, "text": "Once the screening is done, HR should let you know within a few days that your pass is ready.\n\nIn the meanwhile, you can either enter the British Library through the general public entrance and come talk to the Turing's reception, or, preferably, arrange for a visitor pass for yourself for the days when you're coming in.\nFor the first day or two, ask your line manager to take care of this, once you've got your Turing account going you can directly ask [reception](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact).\n\nThe password for the \"ATI Guest\" Wi-Fi network can be seen hanging around the office.\n[IT](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact)\ncan arrange access to the [Eduroam](https://eduroam.org/) network.\nEduroam credentials can be used to access Wi-Fi at many academic institutions.\n\nPlease also write a short, informal paragraph about your background for to be put into the next REG newsletter,\nand send it to\n[the newsletter owner](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities).\n\n## Overview of How REG Operates\n\nWork at REG revolves around projects and service areas.\nYou will typically be assigned to two different projects at any time, with at least one other REG person and usually some external collaborators.\nYou may want to browse REG's portfolio of projects in the\n[project tracker](https://github.com/alan-turing-institute/Hut23/projects/2)\nto get an idea of what we're up to.\nThe project tracker is also used for expressing preferences on which upcoming projects you would like to work on, but you don't have to worry about that for first few weeks.\nWe very much encourage REG members to learn new things, so feel free to choose projects that sound interesting to you even if they are unfamiliar.\nCheck\n[this section]({{< relref \"/docs/how_we_work/project_tracking.md\" >}})\nof the handbook for more details.", "start_char_idx": 3542, "end_char_idx": 5553, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3abae02f-f871-4edb-b3f1-81da237825da": {"__data__": {"id_": "3abae02f-f871-4edb-b3f1-81da237825da", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "ecb3e19c8240dccf49f21c61c93b2b839dc634beef23d9d32c758e489472beb7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b6473046-4e60-4cac-89fb-ccb09390f1ec", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "4600a138913f86bd8fa02e6a0e1ff308c1644b3ff2a4a23a0542cec528f00bf8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "decbaa19-7313-463e-babe-625487666fb0", "node_type": "1", "metadata": {}, "hash": "6d2be271c2b78b6cc5db52b63092b6adc9d5bc8690ea3de867015b8236f3fcb0", "class_name": "RelatedNodeInfo"}}, "text": "## Overview of How REG Operates\n\nWork at REG revolves around projects and service areas.\nYou will typically be assigned to two different projects at any time, with at least one other REG person and usually some external collaborators.\nYou may want to browse REG's portfolio of projects in the\n[project tracker](https://github.com/alan-turing-institute/Hut23/projects/2)\nto get an idea of what we're up to.\nThe project tracker is also used for expressing preferences on which upcoming projects you would like to work on, but you don't have to worry about that for first few weeks.\nWe very much encourage REG members to learn new things, so feel free to choose projects that sound interesting to you even if they are unfamiliar.\nCheck\n[this section]({{< relref \"/docs/how_we_work/project_tracking.md\" >}})\nof the handbook for more details.\n\nService areas are REG-internal work, such as looking after this handbook, organising recruitment, or managing our computational resources.\nUsually people contribute to one service area, which should take approximately half a day a week.\nThis, too, is something you don't have to think about for now, but come back to it once you've settled into your workflow with a project.\n\nREG also gives its members some time, known as 22 days time, to work on side projects they find interesting.\nYour line manager can give you the details on this.\n\nIf you like, you can see our\n[team reporting structure](https://github.com/alan-turing-institute/research-engineering-group/wiki/Team-reporting-structure).\nNote, however, that we do not have a hierarchical culture, and line managing relations are not about assigning work to people.\nYour work tasks will be coordinated with the people in your projects.\n\nYou should talk to your line manager about things such as\n\n- How project allocation works, and what kinds of projects you would like to work on\n- Managing your time and growth\n- How we work (practices, tools, languages, *etc.*)\n- How you would like to grow and develop in your role and what opportunities exist to support that.", "start_char_idx": 4716, "end_char_idx": 6774, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "decbaa19-7313-463e-babe-625487666fb0": {"__data__": {"id_": "decbaa19-7313-463e-babe-625487666fb0", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "ecb3e19c8240dccf49f21c61c93b2b839dc634beef23d9d32c758e489472beb7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3abae02f-f871-4edb-b3f1-81da237825da", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "92ac498da55c13f7b309858e9c2ab813cf3b54423a0069822fcc32fec2812632", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e8cd1844-095b-484b-9dad-c95abf3c4373", "node_type": "1", "metadata": {}, "hash": "8d51b7eaa40fb307e593c1c9c7e400d8b40e3055ea56805794288a99c8afdec6", "class_name": "RelatedNodeInfo"}}, "text": "REG also gives its members some time, known as 22 days time, to work on side projects they find interesting.\nYour line manager can give you the details on this.\n\nIf you like, you can see our\n[team reporting structure](https://github.com/alan-turing-institute/research-engineering-group/wiki/Team-reporting-structure).\nNote, however, that we do not have a hierarchical culture, and line managing relations are not about assigning work to people.\nYour work tasks will be coordinated with the people in your projects.\n\nYou should talk to your line manager about things such as\n\n- How project allocation works, and what kinds of projects you would like to work on\n- Managing your time and growth\n- How we work (practices, tools, languages, *etc.*)\n- How you would like to grow and develop in your role and what opportunities exist to support that.\n\nPlease also take a some time to browse this handbook, it's got plenty of useful information about what we do and how we do it.\n\n## Set up Your Machine and Coding Environment\n\nSee [systems setup]({{< relref \"/docs/onboarding/new_joiners/systems_set_up.md\" >}}).\n\n## Regular Events\n\nCheck out our [regular events and coffee breaks]({{< relref \"/docs/regular_events/_index.md\" >}}).\nPlease consider signing up for a\n[tech talk]({{< relref \"/docs/regular_events/lunchtime_tech_talks.md\" >}})\nsometime in your first six weeks.\nIf you don't see a calendar invite for the weekly tech talks, ask the\n[person in charge of onboarding](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities)\nto add you to the relevant mailing list.\n\n## What to do next\n\nIf you've done all the above, read through the handbook and the repo and are still waiting for your first project to start, go and talk to the person in charge of onboarding.", "start_char_idx": 5931, "end_char_idx": 7741, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e8cd1844-095b-484b-9dad-c95abf3c4373": {"__data__": {"id_": "e8cd1844-095b-484b-9dad-c95abf3c4373", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "ecb3e19c8240dccf49f21c61c93b2b839dc634beef23d9d32c758e489472beb7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "decbaa19-7313-463e-babe-625487666fb0", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "dbae013adf47a37b2c327529f1a4e8e4669331bc2d2fe9c9a0770191c100bc18", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "470778ec-4e10-4cb1-9924-88d00b6c258c", "node_type": "1", "metadata": {}, "hash": "3b786468bd5c0a1d29025245971feac37e9da61ae6a19f8e108bd485ebcbe05a", "class_name": "RelatedNodeInfo"}}, "text": "## Regular Events\n\nCheck out our [regular events and coffee breaks]({{< relref \"/docs/regular_events/_index.md\" >}}).\nPlease consider signing up for a\n[tech talk]({{< relref \"/docs/regular_events/lunchtime_tech_talks.md\" >}})\nsometime in your first six weeks.\nIf you don't see a calendar invite for the weekly tech talks, ask the\n[person in charge of onboarding](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities)\nto add you to the relevant mailing list.\n\n## What to do next\n\nIf you've done all the above, read through the handbook and the repo and are still waiting for your first project to start, go and talk to the person in charge of onboarding.\nThey will find something meaningful for you to do which might be something like:\n\n- Browse the [Project tracker](https://github.com/alan-turing-institute/Hut23/projects/2) and emoji any projects in the `Finding people` and `Awaiting go/no-go` columns.\n - Note: you will be notified to do this before being assigned to a project.\n- Browse the [Service areas list](https://github.com/alan-turing-institute/research-engineering-group/wiki/Service-areas), discuss the different areas with people involved and emoji those that are looking for people.\n- Work on a Turing Data Story. There's always a story to join or a new one to start. You can then keep working on it on your 22 days time once allocated to a project. This option has been very popular.\n- Tackle a GitHub issue marked with the `good first issue` tag in a repo that REG works on. Whenever a new starter is looking for things to do, the person in charge of onboarding will send a message on Slack asking everyone to tag suitable issues.\n- Work on a REG-internal project that is easy to rotate in/out of.\n- Any ad hoc ideas that come up.", "start_char_idx": 7038, "end_char_idx": 8838, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "470778ec-4e10-4cb1-9924-88d00b6c258c": {"__data__": {"id_": "470778ec-4e10-4cb1-9924-88d00b6c258c", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6efba9701175d0c3c1d62dd01694f3ca71d984d9", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "ecb3e19c8240dccf49f21c61c93b2b839dc634beef23d9d32c758e489472beb7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e8cd1844-095b-484b-9dad-c95abf3c4373", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}, "hash": "2e41989d2563ad4537dcda6674fdbf9d30767ec5d7b079bd6248e5f420b5a12a", "class_name": "RelatedNodeInfo"}}, "text": "- Note: you will be notified to do this before being assigned to a project.\n- Browse the [Service areas list](https://github.com/alan-turing-institute/research-engineering-group/wiki/Service-areas), discuss the different areas with people involved and emoji those that are looking for people.\n- Work on a Turing Data Story. There's always a story to join or a new one to start. You can then keep working on it on your 22 days time once allocated to a project. This option has been very popular.\n- Tackle a GitHub issue marked with the `good first issue` tag in a repo that REG works on. Whenever a new starter is looking for things to do, the person in charge of onboarding will send a message on Slack asking everyone to tag suitable issues.\n- Work on a REG-internal project that is easy to rotate in/out of.\n- Any ad hoc ideas that come up. Maybe you found a project that really interests you and want to help, or maybe there's some team organisational thing that comes up that you volunteer for.\n\n## Points of Contact\n\nYou can find useful points of contact\n[here](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact).\n[This page](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry)\nalso holds other useful information such as remote meeting details and team responsibilities.", "start_char_idx": 7996, "end_char_idx": 9361, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f6d6b5c8-11e1-49ba-9933-781cd71025df": {"__data__": {"id_": "f6d6b5c8-11e1-49ba-9933-781cd71025df", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "93ec1759-4667-466e-8bea-d4739b5b8f0b", "node_type": "1", "metadata": {}, "hash": "35c7b9cfe319d650ade41ea82e079e3f7ce236ea75150edd55993f12b50c0f17", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Systems Set Up\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 3\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Systems Set Up\n\n{{< hint info >}}\nThese are not hand-holding instructions.\nRather they are a reference to help with your setup.\nIf they are wrong or incomplete, please edit them.\n{{< /hint >}}\n\nThe page has been roughly organised into high priority things (do in your first couple of days), low priority (sometimes in the first couple of weeks), and reference.\n\nIf any of the material is unfamiliar (*e.g.* you haven't seen a GitHub project board before), then please ask your buddies (or anyone else you meet in the group) to have an informal chat about it.\n\n## High priority\n\n### Getting a computer\n\nReceive (or be assigned) new computer from IT.\nIt will have an admin account for IT, and probably an account for you with a default password.\nContact your line manager as a matter of urgency if you are not able to get a laptop on your first day at the Turing.\n\nLog in with the password provided by IT.\n\n**Change your password.**\n\nYour new password should be strong (12 random characters), and ideally randomly generated by a password manager.\nFeel free to use a diceware-style passphrase.\n\nYour password should be:\n\n- unique to the machine/system\n- randomly generated (use a password generator)\n- have an entropy of at least 64 bits, see [wikipedia](https://en.wikipedia.org/wiki/Password_strength)\n - At least 11 characters if alphanumeric (use 12, though)\n - At least 10 characters if alphanumeric plus symbols\n - At least 5 words if using dice ware\n\nAt this point you can also configure fingerprint authentication.\n\nMake sure you have [FileVault](https://support.apple.com/en-gb/guide/deployment/dep82064ec40/web) on.", "start_char_idx": 0, "end_char_idx": 2024, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "93ec1759-4667-466e-8bea-d4739b5b8f0b": {"__data__": {"id_": "93ec1759-4667-466e-8bea-d4739b5b8f0b", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f6d6b5c8-11e1-49ba-9933-781cd71025df", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "d2966c6eba17c4c453e8a49659de1bc9d5c8287030ab3fc48967f65a760bb90c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c1000392-16cf-421a-b25f-5c240de81979", "node_type": "1", "metadata": {}, "hash": "4cbbb5f87c30d100543eb27d6542aa6b14a4d48cd10904100c468275b845aae8", "class_name": "RelatedNodeInfo"}}, "text": "Contact your line manager as a matter of urgency if you are not able to get a laptop on your first day at the Turing.\n\nLog in with the password provided by IT.\n\n**Change your password.**\n\nYour new password should be strong (12 random characters), and ideally randomly generated by a password manager.\nFeel free to use a diceware-style passphrase.\n\nYour password should be:\n\n- unique to the machine/system\n- randomly generated (use a password generator)\n- have an entropy of at least 64 bits, see [wikipedia](https://en.wikipedia.org/wiki/Password_strength)\n - At least 11 characters if alphanumeric (use 12, though)\n - At least 10 characters if alphanumeric plus symbols\n - At least 5 words if using dice ware\n\nAt this point you can also configure fingerprint authentication.\n\nMake sure you have [FileVault](https://support.apple.com/en-gb/guide/deployment/dep82064ec40/web) on.\n\nYou should be setup with local admin privileges.\nContact [IT](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact) if this isn't the case.\n\n### Install Homebrew\n\nWe recommend using [Homebrew](https://brew.sh/) as your Mac package manager.\nCurrently IT installs Homebrew by default on our laptops under `/usr/local/bin`.\nHowever, in the long run this might create problems with the new M1 Macs we use.\nTo see if this problem applies to you, run `which brew` in the terminal and check if that's the location.\nUntil this is fixed by IT, what we recommend is the following:\n\n1. Uninstall the current version of Homebrew by running the following command in the terminal: `sudo /bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)\"`\n1. Install Homebrew again following the instructions on the [website](https://brew.sh/).\n This will install Homebrew under `/opt/homebrew/bin/brew` (you can check by entering `which brew` in the terminal to see the new location).\n\n### Communication Channels\n\nMost communication happens through Slack.", "start_char_idx": 1140, "end_char_idx": 3153, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c1000392-16cf-421a-b25f-5c240de81979": {"__data__": {"id_": "c1000392-16cf-421a-b25f-5c240de81979", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "93ec1759-4667-466e-8bea-d4739b5b8f0b", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "c68159702ea833cbb86f98b3e2710151832df3410abeb6b65df5cf5bbb89bb26", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "91a3f525-e557-44a9-8cff-fffa910a2207", "node_type": "1", "metadata": {}, "hash": "d3c5bd9fbcfa87b5d317255acea56f522410e324d3cde9b587051b444fc0ecd7", "class_name": "RelatedNodeInfo"}}, "text": "Currently IT installs Homebrew by default on our laptops under `/usr/local/bin`.\nHowever, in the long run this might create problems with the new M1 Macs we use.\nTo see if this problem applies to you, run `which brew` in the terminal and check if that's the location.\nUntil this is fixed by IT, what we recommend is the following:\n\n1. Uninstall the current version of Homebrew by running the following command in the terminal: `sudo /bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)\"`\n1. Install Homebrew again following the instructions on the [website](https://brew.sh/).\n This will install Homebrew under `/opt/homebrew/bin/brew` (you can check by entering `which brew` in the terminal to see the new location).\n\n### Communication Channels\n\nMost communication happens through Slack.\nMore structured communication happens through GitHub.\nThese two systems are the first things you should setup (once you're on Slack it's a lot easier to ask for help).\n\n### Slack\n\nInstall Slack:\n\n```zsh\nbrew install --cask slack\n```\n\nOnce installed join the [Turing Slack](https://alan-turing-institute.slack.com).\nYou can self-subscribe with your @turing.ac.uk email address.\n\nImportant channels to join:\n\n- You should be added to `#general` and `#random` by default.\n- Ask anyone in the team to add you to the private channel `#hut23`.\n- If you are a senior, please ask another senior to invite you to the REG senior\u2019s Slack channel (`#line-managers`).\n\n### GitHub\n\nWe use GitHub for most coordination.\n\nTo get access to Turing GitHub, create a GitHub account (or use an existing one), and fill out [this MS Form](https://forms.office.com/e/9rwSjBdfQp) with your GitHub handle (if you have access to Turing Complete).\nThen let [the GitHub org controller](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities) know that you have done this and they can add you straight away.", "start_char_idx": 2317, "end_char_idx": 4279, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "91a3f525-e557-44a9-8cff-fffa910a2207": {"__data__": {"id_": "91a3f525-e557-44a9-8cff-fffa910a2207", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c1000392-16cf-421a-b25f-5c240de81979", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "505bc68308cb31d3f5208696f52a6a4c6ac3656814ad3bc4f0482971eec00dbc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ea6366c9-d607-441d-b084-f601bb402466", "node_type": "1", "metadata": {}, "hash": "e8192dcd47b51520e9cabdd78ecacae2b661886dbed0e0eccfbf851aae59242a", "class_name": "RelatedNodeInfo"}}, "text": "You can self-subscribe with your @turing.ac.uk email address.\n\nImportant channels to join:\n\n- You should be added to `#general` and `#random` by default.\n- Ask anyone in the team to add you to the private channel `#hut23`.\n- If you are a senior, please ask another senior to invite you to the REG senior\u2019s Slack channel (`#line-managers`).\n\n### GitHub\n\nWe use GitHub for most coordination.\n\nTo get access to Turing GitHub, create a GitHub account (or use an existing one), and fill out [this MS Form](https://forms.office.com/e/9rwSjBdfQp) with your GitHub handle (if you have access to Turing Complete).\nThen let [the GitHub org controller](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities) know that you have done this and they can add you straight away.\n\nAlso check the [Project tracker](https://github.com/alan-turing-institute/Hut23/projects/2?) to get a feeling on what goes on. We use it to track official projects we are tasked with. This is where we express preferences for projects, with emojis. Project leads should be assigned to the relevant issue and are responsible for keeping the issue up to date. Check [this section]({{< relref \"/docs/how_we_work/project_tracking.md\" >}}) of the handbook for more details.\n\n### Office 365 account\n\nYour Turing main account rests [here](https://www.office.com).\nYou get access to mail (Exchange), calendar, a shared drive, Office apps.\nCheck that you can login, and change your password and configure MFA.\nAsk [IT](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact) if in need for help.\n\n## Lower Priority\n\nHere we have more information about how we use the high priority systems, and also other systems to explore.\n\n### Slack Channels\n\nTuring is a large organisation and there are many other channels you may want to join.\nSome are purely social, some are related to programmes or projects.", "start_char_idx": 3469, "end_char_idx": 5420, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ea6366c9-d607-441d-b084-f601bb402466": {"__data__": {"id_": "ea6366c9-d607-441d-b084-f601bb402466", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "91a3f525-e557-44a9-8cff-fffa910a2207", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "f85a4e04694be7c2ed3c24a7bd6cfbe1e3cadf3e9992d50d8f8fba2827c8961f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a45cd662-89ef-4e64-9475-caae4a08d1f7", "node_type": "1", "metadata": {}, "hash": "4fb47b13c40ad414e609daaa7d09baea67b60c2eac36d9b9c2028f7c67eb08c8", "class_name": "RelatedNodeInfo"}}, "text": "Project leads should be assigned to the relevant issue and are responsible for keeping the issue up to date. Check [this section]({{< relref \"/docs/how_we_work/project_tracking.md\" >}}) of the handbook for more details.\n\n### Office 365 account\n\nYour Turing main account rests [here](https://www.office.com).\nYou get access to mail (Exchange), calendar, a shared drive, Office apps.\nCheck that you can login, and change your password and configure MFA.\nAsk [IT](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact) if in need for help.\n\n## Lower Priority\n\nHere we have more information about how we use the high priority systems, and also other systems to explore.\n\n### Slack Channels\n\nTuring is a large organisation and there are many other channels you may want to join.\nSome are purely social, some are related to programmes or projects.\nFor example, `#tps` (for the closely aligned Tools, Practices and Systems programme), `#kitchendropin`, `#social`, `#pubclub`, `#askaway`, `#research-computing`, `#interesting-events`, `#football`.\nIf you get interested in something just ask if there is a channel about it.\n\nAll of the REG-specific channels are prefixed with `hut23`, so that's a good thing to search for in the channel list.\n\nYou may also want to add yourself to `#hut23standup`, which some of us use for automated standups of \"About Us\" questions.\nThe purpose is to get to know other team members by answering a question three times a week.\nGeekbot should send you the next question at 10:30am on Mondays, Wednesdays and Fridays.\n\nTips for using Geekbot:\n\n- You can report before/after Geekbot asks you by sending it a message from Slack, e.g. `report About Us`.\n- The Slack channels containing the responses can generate a lot of notifications. You might want to turn off notifications, or alternatively mute the channel and check in on it manually instead. (Right-click on the channel name to do this.)", "start_char_idx": 4529, "end_char_idx": 6494, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a45cd662-89ef-4e64-9475-caae4a08d1f7": {"__data__": {"id_": "a45cd662-89ef-4e64-9475-caae4a08d1f7", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ea6366c9-d607-441d-b084-f601bb402466", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "945c29bb90b6014f807ab1cb23de02738ef562e7705af948d2b2eedc0188e1ec", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "65522fe5-fb80-43d0-8032-255f08e75db4", "node_type": "1", "metadata": {}, "hash": "2abf7cde2d4d371ad4524093a2597ab9aba4671568bb7e8f4776b5d2705f5ce2", "class_name": "RelatedNodeInfo"}}, "text": "All of the REG-specific channels are prefixed with `hut23`, so that's a good thing to search for in the channel list.\n\nYou may also want to add yourself to `#hut23standup`, which some of us use for automated standups of \"About Us\" questions.\nThe purpose is to get to know other team members by answering a question three times a week.\nGeekbot should send you the next question at 10:30am on Mondays, Wednesdays and Fridays.\n\nTips for using Geekbot:\n\n- You can report before/after Geekbot asks you by sending it a message from Slack, e.g. `report About Us`.\n- The Slack channels containing the responses can generate a lot of notifications. You might want to turn off notifications, or alternatively mute the channel and check in on it manually instead. (Right-click on the channel name to do this.)\n- You can customise the time of Geekbot's questions. Send `dashboard` as a message to Geekbot and click the link it returns. From there, you can select a standup and the \"My preferences\" button will take you to the customisation page. (This setting may not be enabled on all standups.)\n- You can export a list of your previous responses to a standup from the dashboard. Click on the \"timeline\" tab of the relevant standup, and from there you can select the participants and questions to export to a csv file. This is particularly useful when you have forgotten to fill in Harvest for a while and need the information from the daily standup!\n\nOther workspaces you could join:\n\n- The Society of Research Software Engineering has a [Slack worspace](https://ukrse.slack.com/join/signup). For information about joining the Society see the [SocRSE page]({{< relref \"../society_of_research_software_engineering.md\" >}}).", "start_char_idx": 5696, "end_char_idx": 7408, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "65522fe5-fb80-43d0-8032-255f08e75db4": {"__data__": {"id_": "65522fe5-fb80-43d0-8032-255f08e75db4", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a45cd662-89ef-4e64-9475-caae4a08d1f7", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "da65a1dc97073b8b86d943462f3d29f1925541633f7849b55744c2458c1dfc9e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "201432b8-c6a7-4e53-9ae1-5e5e225aaca1", "node_type": "1", "metadata": {}, "hash": "89e4b8086599c98043598c6c0319a7fb1912a061b2f4a34959b51b0f06cf156e", "class_name": "RelatedNodeInfo"}}, "text": "Send `dashboard` as a message to Geekbot and click the link it returns. From there, you can select a standup and the \"My preferences\" button will take you to the customisation page. (This setting may not be enabled on all standups.)\n- You can export a list of your previous responses to a standup from the dashboard. Click on the \"timeline\" tab of the relevant standup, and from there you can select the participants and questions to export to a csv file. This is particularly useful when you have forgotten to fill in Harvest for a while and need the information from the daily standup!\n\nOther workspaces you could join:\n\n- The Society of Research Software Engineering has a [Slack worspace](https://ukrse.slack.com/join/signup). For information about joining the Society see the [SocRSE page]({{< relref \"../society_of_research_software_engineering.md\" >}}).\n\n### Mailing Lists\n\nThe [Newsletters & Mailings](https://turingcomplete.topdesk.net/tas/public/ssp/content/detail/service?unid=986c9e4b9a354a06a587917fd3e0f481) page on Turing Complete has a \"Update Mailing Preferences\" link to sign up to receive some internal newsletters/communication.\n\n### Harvest and Forecast\n\nWe use [Harvest](https://thealanturinginstitute.harvestapp.com/time/week) to (loosely) track our time, and [Forecast](https://forecastapp.com/974183/schedule/projects?startDate=2020-12-28) to manage allocations to projects.\nGet in touch with [the person in charge of researcher tool management](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities) to setup a meeting sometime in your first week.\n\nHarvest is a time tracking app used to monitor the amount of time being dedicated to each project.\nThe easiest way to get set up is to ask your Line Manager or another member of the team to invite you and make you admin.", "start_char_idx": 6548, "end_char_idx": 8392, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "201432b8-c6a7-4e53-9ae1-5e5e225aaca1": {"__data__": {"id_": "201432b8-c6a7-4e53-9ae1-5e5e225aaca1", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "65522fe5-fb80-43d0-8032-255f08e75db4", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "65b3fe18d0a0300d47ec3c17270feb6a380708078f4a9bbac4163883ccca2fbe", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5c092d4a-1a6a-42fa-9c88-2c89a652a0c3", "node_type": "1", "metadata": {}, "hash": "836c8fb04423eb4495483a050be92b92351fe4fddd2d71b0d5a4a8dd6626b23a", "class_name": "RelatedNodeInfo"}}, "text": "### Harvest and Forecast\n\nWe use [Harvest](https://thealanturinginstitute.harvestapp.com/time/week) to (loosely) track our time, and [Forecast](https://forecastapp.com/974183/schedule/projects?startDate=2020-12-28) to manage allocations to projects.\nGet in touch with [the person in charge of researcher tool management](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities) to setup a meeting sometime in your first week.\n\nHarvest is a time tracking app used to monitor the amount of time being dedicated to each project.\nThe easiest way to get set up is to ask your Line Manager or another member of the team to invite you and make you admin.\nYou can then add yourself as a team member to whichever projects you're working on and start tracking your time.\nThere is a page [here](https://github.com/alan-turing-institute/Hut23/wiki/Timesheets) which goes into more detail about where you should log different activities.\n\n### Cezanne HR\n\nOur HR system is [Cezanne HR](https://w3.cezanneondemand.com/CezanneOnDemand/-/turing/).\nYou can log onto this with your Turing credentials using the \"Enterprise login\" option.\nIf \"Enterprise login\" does not work, email\n[HR](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact) to fix it.\n\nThis system is used for:\n\n- Requesting annual leave.\n- Recording days off due to illness *etc.*.\n- Managing the objective setting and performance review process (after your probation period).\n\n### Create a Public Profile on the Turing Website\n\nThere are several ways to do this:\n\n1. You can fill in [this form on Turing Complete](https://turingcomplete.topdesk.net/tas/public/ssp/content/serviceflow?unid=35b8d40067004f9484c9fb06ade41d65) to request a public profile.\n1.", "start_char_idx": 7698, "end_char_idx": 9499, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5c092d4a-1a6a-42fa-9c88-2c89a652a0c3": {"__data__": {"id_": "5c092d4a-1a6a-42fa-9c88-2c89a652a0c3", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "201432b8-c6a7-4e53-9ae1-5e5e225aaca1", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "fb3fa3646b9ee9a2e462190f6e9d303f2f4d574585abfb8005bbbd15b27ff52d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0670d79d-270b-40e6-8027-86d4c763781c", "node_type": "1", "metadata": {}, "hash": "01f9ef024dbd48bdbd6bcd16302e0ac80f30a82f2e9d83ed665bffa2ef4ceaaa", "class_name": "RelatedNodeInfo"}}, "text": "You can log onto this with your Turing credentials using the \"Enterprise login\" option.\nIf \"Enterprise login\" does not work, email\n[HR](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact) to fix it.\n\nThis system is used for:\n\n- Requesting annual leave.\n- Recording days off due to illness *etc.*.\n- Managing the objective setting and performance review process (after your probation period).\n\n### Create a Public Profile on the Turing Website\n\nThere are several ways to do this:\n\n1. You can fill in [this form on Turing Complete](https://turingcomplete.topdesk.net/tas/public/ssp/content/serviceflow?unid=35b8d40067004f9484c9fb06ade41d65) to request a public profile.\n1. Alternatively, contact [the people in charge of REG communications](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#responsibilities), providing the following info:\n - Your title and full name\n - A short personal bio\n - A brief description of your Turing-related research\n - *(optional)* A brief description of your achievements and award\n - *(optional)* Photo\n - *(optional)* Webpage\n1. You can also edit the website yourself directly. To do so, you must complete [a round of online training](https://turingcomplete.topdesk.net/tas/public/ssp/content/detail/knowledgeitem?unid=45626012-2413-4371-8de1-8aa056d35381), after which you will be granted edit permissions.\n\n### Office 365 Groups\n\nMake sure you are in the following Office365 / email groups (check with\n[IT](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact)):\n\n- Research engineering\n- Business team (for non-Research Associate staff)\n- Research staff\n- All Staff\n- If you are a senior member of staff, ask a principal to get you added to the REG-senior-staff email list.", "start_char_idx": 8776, "end_char_idx": 10636, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0670d79d-270b-40e6-8027-86d4c763781c": {"__data__": {"id_": "0670d79d-270b-40e6-8027-86d4c763781c", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5c092d4a-1a6a-42fa-9c88-2c89a652a0c3", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "6941fc08c36e72b055825dfdeb59dbea6d8affda95547debecbbaaf8d3422c2f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9339280a-09ea-42e5-b8f0-5ae819759d6f", "node_type": "1", "metadata": {}, "hash": "7b42ce4a9961f891f031096aacd995daa332c23bdf37c0b7d9820fe5f6e25956", "class_name": "RelatedNodeInfo"}}, "text": "You can also edit the website yourself directly. To do so, you must complete [a round of online training](https://turingcomplete.topdesk.net/tas/public/ssp/content/detail/knowledgeitem?unid=45626012-2413-4371-8de1-8aa056d35381), after which you will be granted edit permissions.\n\n### Office 365 Groups\n\nMake sure you are in the following Office365 / email groups (check with\n[IT](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact)):\n\n- Research engineering\n- Business team (for non-Research Associate staff)\n- Research staff\n- All Staff\n- If you are a senior member of staff, ask a principal to get you added to the REG-senior-staff email list.\n- End-of-month all business team meetings (Turing Catch-ups). These are sent out as recurring calendar events. You can either email [governance](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact) to forward you the invite or find a member of the REG team that is invited and ask them to forward the invite.\n- Turing Bulletin: This internal newsletter is sent out every Thursday evening. If you don't receive it, you can sign up manually via [Turing Complete](https://turingcomplete.topdesk.net/tas/public/ssp/content/detail/service?unid=986c9e4b9a354a06a587917fd3e0f481).\n\n### GitHub Pro and Professional IDEs\n\nTuring employees can apply for free GitHub Pro accounts, and use these to get free educational licences for professional versions of many JetBrains products (*e.g.*, PyCharm, IntelliJ, \u2026)\n\n1. Go to [education.github.com](https://education.github.com) and apply for the GitHub Teacher Toolbox\n1. GitHub will ask you to verify your affiliation with an academic institution. The Turing is not on their list, but you can still use it.", "start_char_idx": 9938, "end_char_idx": 11732, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9339280a-09ea-42e5-b8f0-5ae819759d6f": {"__data__": {"id_": "9339280a-09ea-42e5-b8f0-5ae819759d6f", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0670d79d-270b-40e6-8027-86d4c763781c", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "3acdcaab956f524f9789f8f5590eb839c13883f666f14923d8b5aef81e041177", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6cb2c28c-4858-4f80-b7af-c763074c72db", "node_type": "1", "metadata": {}, "hash": "2f0e0e1140957c865f981c4cee3dd7238df151ed6e8a68fb080707154bbe7642", "class_name": "RelatedNodeInfo"}}, "text": "- Turing Bulletin: This internal newsletter is sent out every Thursday evening. If you don't receive it, you can sign up manually via [Turing Complete](https://turingcomplete.topdesk.net/tas/public/ssp/content/detail/service?unid=986c9e4b9a354a06a587917fd3e0f481).\n\n### GitHub Pro and Professional IDEs\n\nTuring employees can apply for free GitHub Pro accounts, and use these to get free educational licences for professional versions of many JetBrains products (*e.g.*, PyCharm, IntelliJ, \u2026)\n\n1. Go to [education.github.com](https://education.github.com) and apply for the GitHub Teacher Toolbox\n1. GitHub will ask you to verify your affiliation with an academic institution. The Turing is not on their list, but you can still use it. You will need proof of employment - a screenshot of Cezanne or the top of your Turing contract (including start date) have worked for people in the past.\n1. Once GitHub have approved your Pro account, go to the JetBrains website and create an account there (sign in via GitHub)\n1. You can now apply for a free educational licence (\"Apply for a free student or teacher license\") for professional versions of various IDEs.\n\n{{< hint info >}}\nThere is no obligation to use these IDEs, this is just an FYI in case you are interested.\n{{< /hint >}}\n\n### OneDrive\n\nSync the Research Engineering documents: From [SharePoint](https://thealanturininstitute.sharepoint.com/sites/ResearchEngineering), under \"Research Engineering\" private group, go to \"Documents\", then \"Sync\".\n\nPlease avoid locally editing files that are common and might be edited concurrently.\nIn that case, opt to use the online version through Office 365.\n\n### HackMD\n\nWe sometimes use HackMD for shared documents.\nIf you don't have an account, signup for [a free account here](https://hackmd.io/).\nWe do not have a paid account for HackMD.\n\n### Skype for business\n\nWe don't use skype that often, but this can be installed through the Self Service application.\nYou will need an application-specific password.", "start_char_idx": 10998, "end_char_idx": 13002, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6cb2c28c-4858-4f80-b7af-c763074c72db": {"__data__": {"id_": "6cb2c28c-4858-4f80-b7af-c763074c72db", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9339280a-09ea-42e5-b8f0-5ae819759d6f", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8de5876bec36c1cc4197147328ec828baa5797ed8ca4ee90aaeb6d843d4b15ec", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8cb68461-551d-44b1-bd45-789feee27927", "node_type": "1", "metadata": {}, "hash": "3d1cf8b3396e1c220cec8a3a6717a58cd8da7609cc5ef3c5558a0c292b963315", "class_name": "RelatedNodeInfo"}}, "text": "{{< hint info >}}\nThere is no obligation to use these IDEs, this is just an FYI in case you are interested.\n{{< /hint >}}\n\n### OneDrive\n\nSync the Research Engineering documents: From [SharePoint](https://thealanturininstitute.sharepoint.com/sites/ResearchEngineering), under \"Research Engineering\" private group, go to \"Documents\", then \"Sync\".\n\nPlease avoid locally editing files that are common and might be edited concurrently.\nIn that case, opt to use the online version through Office 365.\n\n### HackMD\n\nWe sometimes use HackMD for shared documents.\nIf you don't have an account, signup for [a free account here](https://hackmd.io/).\nWe do not have a paid account for HackMD.\n\n### Skype for business\n\nWe don't use skype that often, but this can be installed through the Self Service application.\nYou will need an application-specific password.\n\nIf you want a phone number ask [IT](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact).\n\n### Mathison\n\n[Mathison](https://mathison.turing.ac.uk/) is the Institute's intranet.\nYou should have access to this on your first day.\nA few things still need to be done on the old intranet, [Turing Complete](https://turingcomplete.topdesk.net).\n\n### Gray Dawes\n\nGray Dawes is the Turing's system for booking travel and accommodation.\nInstructions on how to get set up can be found [on Mathison](https://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2738).\n\nWhen making bookings on Gray Dawes, you will have to additionally submit an Excel approval form (available at the right-hand sidebar of the same Mathison page).\nThis form should be filled in and sent to the Principal you have a direct link to in the line management chain for approval.", "start_char_idx": 12155, "end_char_idx": 13907, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8cb68461-551d-44b1-bd45-789feee27927": {"__data__": {"id_": "8cb68461-551d-44b1-bd45-789feee27927", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6cb2c28c-4858-4f80-b7af-c763074c72db", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "0be5e83486f5e23d3011ffa7e14b9a58c4fa39a87763412b5cf615786e42fc5e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "72157987-ccc4-4b00-b6a9-4206c1635c62", "node_type": "1", "metadata": {}, "hash": "e1b0f95b969edcf0071c8a535b6bb4e361f138c770b2aa8f38e8bf5920dfe8b0", "class_name": "RelatedNodeInfo"}}, "text": "### Mathison\n\n[Mathison](https://mathison.turing.ac.uk/) is the Institute's intranet.\nYou should have access to this on your first day.\nA few things still need to be done on the old intranet, [Turing Complete](https://turingcomplete.topdesk.net).\n\n### Gray Dawes\n\nGray Dawes is the Turing's system for booking travel and accommodation.\nInstructions on how to get set up can be found [on Mathison](https://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2738).\n\nWhen making bookings on Gray Dawes, you will have to additionally submit an Excel approval form (available at the right-hand sidebar of the same Mathison page).\nThis form should be filled in and sent to the Principal you have a direct link to in the line management chain for approval.\n\n### Certify\n\nOther work-related expenses can be reimbursed via Certify: see [the Mathison page](https://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2169) for more information on how to get set up.\nBriefly, you will have to fill in a Travel and Expenses Policy Compliance Form and email it to Finance.\nOn this form, the 'approver' should be the REG Director.\n\nThe [REG Wiki](https://github.com/alan-turing-institute/research-engineering-group/wiki/Reclaiming-out-of-pocket-expenses) contains more information on the reimbursement process, including information about the specific department and project codes you should be using.\nWhen you get access to Certify, it's a good idea to check that you've been set up with the correct codes.\n\nIf you applied for a visa to work at the Turing, you are also allowed to claim up to \u00a34000 back.\nMore details on this can be found in [Mathison](https://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2270) as well as the [REG Wiki](https://github.com/alan-turing-institute/research-engineering-group/wiki/Reclaiming-out-of-pocket-expenses#visa-costs).", "start_char_idx": 13147, "end_char_idx": 15029, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "72157987-ccc4-4b00-b6a9-4206c1635c62": {"__data__": {"id_": "72157987-ccc4-4b00-b6a9-4206c1635c62", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9800b627994c5343abeec748c5811347d67f934a", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "8487d42c66e67263da23bea683f839aadbd1ac8488de7fdb2c29a2e8d9a4d28b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8cb68461-551d-44b1-bd45-789feee27927", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}, "hash": "80b7cc694e56706855d834988e08316e8938fd785ca58ca449a1e05607cdbb84", "class_name": "RelatedNodeInfo"}}, "text": "On this form, the 'approver' should be the REG Director.\n\nThe [REG Wiki](https://github.com/alan-turing-institute/research-engineering-group/wiki/Reclaiming-out-of-pocket-expenses) contains more information on the reimbursement process, including information about the specific department and project codes you should be using.\nWhen you get access to Certify, it's a good idea to check that you've been set up with the correct codes.\n\nIf you applied for a visa to work at the Turing, you are also allowed to claim up to \u00a34000 back.\nMore details on this can be found in [Mathison](https://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2270) as well as the [REG Wiki](https://github.com/alan-turing-institute/research-engineering-group/wiki/Reclaiming-out-of-pocket-expenses#visa-costs).\n\n## Reference\n\nTake a look at the following sections:\n\n- [Regular Events]({{< relref \"/docs/regular_events/_index.md\" >}})\n- [Common Technical Practices]({{< relref \"/docs/technical_practices/_index.md\" >}})\n- [Equipment]({{< relref \"/docs/working_at_the_turing/equipment.md\" >}})", "start_char_idx": 14228, "end_char_idx": 15310, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d0309d4e-01b1-4bc1-94c9-af1c07a0a294": {"__data__": {"id_": "d0309d4e-01b1-4bc1-94c9-af1c07a0a294", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/society_of_research_software_engineering.md", "file_name": "society_of_research_software_engineering.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/society_of_research_software_engineering.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/society_of_research_software_engineering.md", "file_name": "society_of_research_software_engineering.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/society_of_research_software_engineering.md"}, "hash": "4676d4342348d41fa33343a45a9009cd0fc1bd9d77deb1bb866a5dd8febcd842", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "05a15588-4b09-40af-8e2e-e3cfc444a25d", "node_type": "1", "metadata": {}, "hash": "bdf815987dd8d1c4c3ba82b1b3cce1b7b89e351b85a8eefa55f10a35edb565ea", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"SocRSE\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 1\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Society of Research Software Engineering\n\nThe [Society of Research Software Engineering](https://society-rse.org/) (SocRSE) is a charitable incorporated organisation\nwith the mission to establish a research environment that recognises the vital role of software in research.\n\nREG supports and encourages its members to join the SocRSE, so it's worth reviewing the society's website and deciding whether to join during your onboarding period.\n\n## Benefits of SocRSE\n\nThere are many benefits to joining the SocRSE. By joining the Society you will:\n\n- Contribute to [the Society's work](https://society-rse.org/community/) supporting the research software engineering community\n- Gain access to the Society's [Events & Initiatives fund](https://society-rse.org/policy-for-socrse-events-and-initiatives-grant/)\n- Get discounted access to the Society's annual conference\n- Be eligible to vote and stand for election at the Society's annual AGM\n- Have your say in one of the Society's [special interest, regional or working groups](https://society-rse.org/community/get-involved/)\n- Be able to apply for the Society\u2019s [mentorship scheme](https://society-rse.org/get-involved/mentoring-scheme/)\n- Gain access to discounts from the Society's corporate sponsors\n\n## Communication Channels\n\nThe Society has a website, Slack and email list.\nTheir [Slack workspace](https://ukrse.slack.com/join/signup) contains plenty of details about relevant events.\n\n## Claiming Back Subscriptions\n\nSocRSE membership is considered a professional subscription, which you are entitled to claim back as a REG member.\n\nYou should claim it back quickly after payment.", "start_char_idx": 0, "end_char_idx": 2025, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "05a15588-4b09-40af-8e2e-e3cfc444a25d": {"__data__": {"id_": "05a15588-4b09-40af-8e2e-e3cfc444a25d", "embedding": null, "metadata": {"file_path": "content/docs/onboarding/society_of_research_software_engineering.md", "file_name": "society_of_research_software_engineering.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/society_of_research_software_engineering.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6", "node_type": "4", "metadata": {"file_path": "content/docs/onboarding/society_of_research_software_engineering.md", "file_name": "society_of_research_software_engineering.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/society_of_research_software_engineering.md"}, "hash": "4676d4342348d41fa33343a45a9009cd0fc1bd9d77deb1bb866a5dd8febcd842", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d0309d4e-01b1-4bc1-94c9-af1c07a0a294", "node_type": "1", "metadata": {"file_path": "content/docs/onboarding/society_of_research_software_engineering.md", "file_name": "society_of_research_software_engineering.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/society_of_research_software_engineering.md"}, "hash": "4b8639d0085b4b63ab1984d76c6ea3995b43f647a9e5831751ac062c21acbcbd", "class_name": "RelatedNodeInfo"}}, "text": "Their [Slack workspace](https://ukrse.slack.com/join/signup) contains plenty of details about relevant events.\n\n## Claiming Back Subscriptions\n\nSocRSE membership is considered a professional subscription, which you are entitled to claim back as a REG member.\n\nYou should claim it back quickly after payment.\nUse Certify to claim it back following [these instructions](https://github.com/alan-turing-institute/research-engineering-group/wiki/Reclaiming-out-of-pocket-expenses#allocating-your-expenses-to-the-right-budget).\nNote that this expense is not directly related to a project.", "start_char_idx": 1718, "end_char_idx": 2300, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "af06e711-3177-4400-bb92-291df03e30dd": {"__data__": {"id_": "af06e711-3177-4400-bb92-291df03e30dd", "embedding": null, "metadata": {"file_path": "content/docs/regular_events/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/_index.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3572fbb8f0bfccfb953996dc8599e300641c5280", "node_type": "4", "metadata": {"file_path": "content/docs/regular_events/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/_index.md"}, "hash": "3e4b4034100af16cde8ca1c6f891111f7db3d54338aa267f0c04ab9441132fa0", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Regular Events\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 1\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exlude this page from the search\n# bookSearchExclude = true\n---\n\n# Regular Events\n\n## REG Events\n\n- [Lunchtime tech talks]({{< relref \"/docs/regular_events/lunchtime_tech_talks.md\" >}})\n- [Lightning talks]({{< relref \"/docs/regular_events/lightning_talks.md\" >}})\n- [Reading groups]({{< relref \"/docs/regular_events/reading_groups.md\" >}})\n- [Open source hack sessions]({{< relref \"/docs/regular_events/open_source_hacksessions.md\" >}})\n\n## Outward-facing Events\n\n- [Drop-in Sessions]({{< relref \"/docs/regular_events/drop-in_sessions.md\" >}})\n\n## Coffee Chats\n\n- [Randomised coffee chats]({{< relref \"/docs/regular_events/coffee_chats.md\" >}})", "start_char_idx": 0, "end_char_idx": 972, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b9b977cf-0c14-4e1e-bc45-e7620f4d37f2": {"__data__": {"id_": "b9b977cf-0c14-4e1e-bc45-e7620f4d37f2", "embedding": null, "metadata": {"file_path": "content/docs/regular_events/coffee_chats.md", "file_name": "coffee_chats.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/coffee_chats.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3db69996a4f564759314b78f68e574789fa6e81f", "node_type": "4", "metadata": {"file_path": "content/docs/regular_events/coffee_chats.md", "file_name": "coffee_chats.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/coffee_chats.md"}, "hash": "34e811683154c6dd3946d6f3dd94d7ff9833292403543cdf00e1aa96e641958f", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Randomised Coffee Chats\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 60\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exlude this page from the search\n# bookSearchExclude = true\n---\n\n# Randomised Coffee Chats\n\nApproximately every 2 weeks, we partition REG into groups of 4 or 5 for informal chats.\nThe groups are randomly generated (see the code [here](https://github.com/alan-turing-institute/randoffee/)) but generally try to ensure that everyone meets different people each week.\n\nIf you have not signed up already and would like to join (or conversely if you would like to opt out), please inform the [people in charge of the random coffees](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry).\n\n{{% hint info %}}\nSeveral years ago, during the periods of lockdown, we used to have daily coffee chats at 08:45 and 13:45.\nThese are very rarely used nowadays but the vestiges of these can still be seen in (for example) the daily notifications on Slack every morning.\n{{% /hint %}}", "start_char_idx": 0, "end_char_idx": 1237, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a2d3b1f4-ad42-4e85-9984-240e9e1ad08d": {"__data__": {"id_": "a2d3b1f4-ad42-4e85-9984-240e9e1ad08d", "embedding": null, "metadata": {"file_path": "content/docs/regular_events/drop-in_sessions.md", "file_name": "drop-in_sessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/drop-in_sessions.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "246a8e452680dcd30e6b1492db1ece74b14b8843", "node_type": "4", "metadata": {"file_path": "content/docs/regular_events/drop-in_sessions.md", "file_name": "drop-in_sessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/drop-in_sessions.md"}, "hash": "13315e94b9c5e3979e48d153d40a8b384948da67eaaf085281e803575d3a60e3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a130bafd-4da5-4b34-8ec6-a49e3f6f5d97", "node_type": "1", "metadata": {}, "hash": "5433e7c245b8695c0404caa46a3d4fbf7dd6f32b4f9ff1691ee8368f685cdc14", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Drop-in Sessions\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 50\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Drop-in Sessions\n\nThe group runs regular, informal, community-led sessions for students and researchers.\nWhether you have general questions on a topic, or are seeking specific technical guidance on, or just want to chat with friendly faces, our drop-in session is the perfect place for you!\nThe sessions offer a friendly, welcoming, non-judgemental environment to receive advice or assistance without concern about being judged on technical knowledge, expertise or understanding.\n\nAs our organisers and helpers know, many of us working with software in the research community have been trained in domains where computing has not traditionally been a key element.\nThere can be lots to learn in terms of new jargon and technical skills and we all have to start somewhere.", "start_char_idx": 0, "end_char_idx": 1168, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a130bafd-4da5-4b34-8ec6-a49e3f6f5d97": {"__data__": {"id_": "a130bafd-4da5-4b34-8ec6-a49e3f6f5d97", "embedding": null, "metadata": {"file_path": "content/docs/regular_events/drop-in_sessions.md", "file_name": "drop-in_sessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/drop-in_sessions.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "246a8e452680dcd30e6b1492db1ece74b14b8843", "node_type": "4", "metadata": {"file_path": "content/docs/regular_events/drop-in_sessions.md", "file_name": "drop-in_sessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/drop-in_sessions.md"}, "hash": "13315e94b9c5e3979e48d153d40a8b384948da67eaaf085281e803575d3a60e3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a2d3b1f4-ad42-4e85-9984-240e9e1ad08d", "node_type": "1", "metadata": {"file_path": "content/docs/regular_events/drop-in_sessions.md", "file_name": "drop-in_sessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/drop-in_sessions.md"}, "hash": "df5464bef0c933a73978c1c5f27106af8edf534c17d5976d4b0ad141c36722b5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4a91eaf3-2fa4-4374-a2aa-f9bc3cd25988", "node_type": "1", "metadata": {}, "hash": "4a88cbea08f11946bdbd1a29be4bcc453e72b4a2d12b81163f65022501496d38", "class_name": "RelatedNodeInfo"}}, "text": "Whether you have general questions on a topic, or are seeking specific technical guidance on, or just want to chat with friendly faces, our drop-in session is the perfect place for you!\nThe sessions offer a friendly, welcoming, non-judgemental environment to receive advice or assistance without concern about being judged on technical knowledge, expertise or understanding.\n\nAs our organisers and helpers know, many of us working with software in the research community have been trained in domains where computing has not traditionally been a key element.\nThere can be lots to learn in terms of new jargon and technical skills and we all have to start somewhere.\n\nA few examples of what we can help out with are:\n\n- General programming problems, including:\n - Identifying and fixing bugs\n - Setting up Python packages and environments\n- Cloud computing questions, including:\n - How to get started on Microsoft Azure\n - How to deploy code to the cloud\n - Cloud computing and storage costs\n - Getting access to GPU VMs on Microsoft Azure\n- Research Data Science issues, including:\n - Data collection and selection process\n - Experimental design (methods, baselines, metrics, ablation studies)\n - Moving from a general idea to a machine learning pipeline\n- Software sustainability\n - Best practices for testing, managing and packaging your code\n- Reproducible research\n - Ensuring software is developed to support long-term reproducibility\n - Including techniques for packaging and archiving code and data\n- High Performance Computing (HPC) support:\n - HPC services resources available at the Turing\n - HPC performance (parallellism, libraries, compilers)\n\n## Joining sessions\n\nOur sessions are on [Zoom](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#video-call-links) and sometimes hybrid.\nWe run several sessions a week (typically on Tuesdays and Wednesdays), so please see our [schedule](https://github.com/alan-turing-institute/research-engineering-group/wiki/Drop%E2%80%90in-Sessions#schedule) on the REG wiki.\nAlso feel free to reach out to either Ryan Chan, Iain Stenson or Fede Nanni on Slack.", "start_char_idx": 504, "end_char_idx": 2686, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4a91eaf3-2fa4-4374-a2aa-f9bc3cd25988": {"__data__": {"id_": "4a91eaf3-2fa4-4374-a2aa-f9bc3cd25988", "embedding": null, "metadata": {"file_path": "content/docs/regular_events/drop-in_sessions.md", "file_name": "drop-in_sessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/drop-in_sessions.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "246a8e452680dcd30e6b1492db1ece74b14b8843", "node_type": "4", "metadata": {"file_path": "content/docs/regular_events/drop-in_sessions.md", "file_name": "drop-in_sessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/drop-in_sessions.md"}, "hash": "13315e94b9c5e3979e48d153d40a8b384948da67eaaf085281e803575d3a60e3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a130bafd-4da5-4b34-8ec6-a49e3f6f5d97", "node_type": "1", "metadata": {"file_path": "content/docs/regular_events/drop-in_sessions.md", "file_name": "drop-in_sessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/drop-in_sessions.md"}, "hash": "8c06d8700975e9135d746a2c41de93e788f66d407f5b97b3428b5373223d0e4d", "class_name": "RelatedNodeInfo"}}, "text": "We run several sessions a week (typically on Tuesdays and Wednesdays), so please see our [schedule](https://github.com/alan-turing-institute/research-engineering-group/wiki/Drop%E2%80%90in-Sessions#schedule) on the REG wiki.\nAlso feel free to reach out to either Ryan Chan, Iain Stenson or Fede Nanni on Slack.\n\nOn the schedule, you can see who is hosting the session and a short bio about them.\n\nFeel free to message the [organisers](https://github.com/alan-turing-institute/research-engineering-group/wiki/Drop%E2%80%90in-Sessions#organisers) ahead of time with your problem on Slack, or just come by!\nThere is no need to register in advance.", "start_char_idx": 2376, "end_char_idx": 3020, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8e3d6776-d318-4d99-bd67-b95466d95eb5": {"__data__": {"id_": "8e3d6776-d318-4d99-bd67-b95466d95eb5", "embedding": null, "metadata": {"file_path": "content/docs/regular_events/lightning_talks.md", "file_name": "lightning_talks.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/lightning_talks.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609", "node_type": "4", "metadata": {"file_path": "content/docs/regular_events/lightning_talks.md", "file_name": "lightning_talks.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/lightning_talks.md"}, "hash": "545c258677951d8648e2fddfffe08afefaa32c1e047a55804b3f0a65fc54abca", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "13693d9f-add0-4831-b24e-18baf9b8be19", "node_type": "1", "metadata": {}, "hash": "bb57864cb01aa0ec4acbc718962ab1449ac41fdcdb1ed81dbcf5408e84bc06b9", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Lightning Talks\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 20\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Lightning Talks\n\nLightning Talks are a meeting series within the tech talk slots in which people give short 10 minute talks.\nThe main goals are to:\n\n1. Regularly share what we're working on.\n1. Find overlaps between projects or problems someone else in the team could help with.\n1. Generate ideas for future tech talks.\n1. Do all this without a big time commitment, both for presenters and attendees.\n\nThe talks can be on any topic, including but not limited to:\n\n- A project (including one that hasn't started yet).\n- A tool or technique you use.\n- Something you'd like help with.\n\nInformal talks or discussions without slides or much preparation are encouraged and very welcome!\n\n## Talk Format\n\nEach slot will be **10 minutes** with a few minutes after for questions.\nWe will be fairly strict with time to make sure everyone on the agenda gets to present.\n\nYou can choose whatever format you like (slides, markdown, notebook, freestyle\u2026), but remember that it's a short slot which lends itself to concise, high-level overviews of a topic.\nFor example, if your talk is on a project you may wish to cover the following:\n\n1. Background: The domain area, context, problem _etc._.\n1. Goals: What are the aims of the project?\n1. Status: What's been done so far, example results (if any).\n1. Tools & Techniques: What you're using, what you've learnt, what you'd like help with.\n1. Summary: who's working on the project, dates, GitHub link _etc._.", "start_char_idx": 0, "end_char_idx": 1840, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "13693d9f-add0-4831-b24e-18baf9b8be19": {"__data__": {"id_": "13693d9f-add0-4831-b24e-18baf9b8be19", "embedding": null, "metadata": {"file_path": "content/docs/regular_events/lightning_talks.md", "file_name": "lightning_talks.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/lightning_talks.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609", "node_type": "4", "metadata": {"file_path": "content/docs/regular_events/lightning_talks.md", "file_name": "lightning_talks.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/lightning_talks.md"}, "hash": "545c258677951d8648e2fddfffe08afefaa32c1e047a55804b3f0a65fc54abca", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8e3d6776-d318-4d99-bd67-b95466d95eb5", "node_type": "1", "metadata": {"file_path": "content/docs/regular_events/lightning_talks.md", "file_name": "lightning_talks.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/lightning_talks.md"}, "hash": "cbff7b904c72ac0426e5a9aa8023d316ec2c51a37a13131e3d4ce3126f1ca378", "class_name": "RelatedNodeInfo"}}, "text": "## Talk Format\n\nEach slot will be **10 minutes** with a few minutes after for questions.\nWe will be fairly strict with time to make sure everyone on the agenda gets to present.\n\nYou can choose whatever format you like (slides, markdown, notebook, freestyle\u2026), but remember that it's a short slot which lends itself to concise, high-level overviews of a topic.\nFor example, if your talk is on a project you may wish to cover the following:\n\n1. Background: The domain area, context, problem _etc._.\n1. Goals: What are the aims of the project?\n1. Status: What's been done so far, example results (if any).\n1. Tools & Techniques: What you're using, what you've learnt, what you'd like help with.\n1. Summary: who's working on the project, dates, GitHub link _etc._.\n\nIf you'd like to prepare slides, there's a PowerPoint template and examples from previous talks under [here](https://thealanturininstitute.sharepoint.com/:f:/s/ResearchEngineering/EvFtcBhG1RhKofdqD3HNE48BIG443DyTMeRoEwuY453Vcg?e=zv1aZT) that can help you get started.\n\n## Sign Up\n\nTo sign up to present a Lightning Talk, please add yourself to the [signup\nlist](https://github.com/alan-turing-institute/research-engineering-group/wiki/Lightning-Talks#signup-list)\n\n## Previous Talks\n\nYou can find a list of previous talks and their slides [here](https://github.com/alan-turing-institute/research-engineering-group/wiki/Lightning-Talks%3A-History-of-Talks).", "start_char_idx": 1080, "end_char_idx": 2498, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "70b4a312-c669-4439-89e1-6db8aaadb025": {"__data__": {"id_": "70b4a312-c669-4439-89e1-6db8aaadb025", "embedding": null, "metadata": {"file_path": "content/docs/regular_events/lunchtime_tech_talks.md", "file_name": "lunchtime_tech_talks.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/lunchtime_tech_talks.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2eb3fa13f1a8f4a51bb717fb851b558b1c945567", "node_type": "4", "metadata": {"file_path": "content/docs/regular_events/lunchtime_tech_talks.md", "file_name": "lunchtime_tech_talks.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/lunchtime_tech_talks.md"}, "hash": "424e48b3a601a0a49b790ae6ace0531af753cdf3b2547f895c562fdc8b99a750", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Lunchtime Tech Talks\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 10\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Lunchtime Tech Talks\n\nThe Research Engineering team meets for Lunchtime Tech Talks most Tuesdays over lunch.\nThe talks start at 12:30.\n\nAt a tech talk someone (usually someone in REG) presents or discusses something, such as about a project or data science/computer science/software engineering topic.\nThey can also be opportunities to look for help and input.\nWe encourage talks at the beginning of projects (before it's certain what exactly you'll be doing) or to discuss a problem you're unsure how to solve.\nWe also have shorter format [lightning talks]({{< relref \"docs/regular_events/lightning_talks.md\" >}}), where several people give a shorter talk.\n\n[The Data Science Skills wiki](https://github.com/alan-turing-institute/DataScienceSkills/wiki/Lunchtime-Tech-Talks) contains the talks schedule, calendar invitation instructions and information on signing up for a talk.", "start_char_idx": 0, "end_char_idx": 1282, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "50dccdcb-69c2-41fa-9490-9234095132f3": {"__data__": {"id_": "50dccdcb-69c2-41fa-9490-9234095132f3", "embedding": null, "metadata": {"file_path": "content/docs/regular_events/open_source_hacksessions.md", "file_name": "open_source_hacksessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/open_source_hacksessions.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "40e5ef8b88305799557e778421610c28154b50cb", "node_type": "4", "metadata": {"file_path": "content/docs/regular_events/open_source_hacksessions.md", "file_name": "open_source_hacksessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/open_source_hacksessions.md"}, "hash": "64b12ac914d193cdb160797095de17ed92dc79aeccd5aa7e24e39bd7d4941bee", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Open Source Hacksessions\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 40\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Open Source Hacksessions\n\nREG runs monthly sessions where we come together and contribute to upstream open-source repositories. The idea is to fence off time dedicated to contributing upstream and to do it together for joy and sociality. We hope to give back to many of the tools we use and learn about new packages by helping them out. Everyone is welcome to come and work on something they want to contribute to or join an effort someone else has already started.\n\nThe sessions take place from **2-5 pm every third Friday of the month** and are organised by REG\u2019s Open Source Service Area. If you have any questions, or want to join but don't have the calendar invite you can contact them by [email](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#regular-events) or on Slack (`#open-source-hacksessions`). If you come to an OS hacksession and end up opening a PR or otherwise making a contribution please tell us about it, either on Slack or by email.\n\nYou can check the list of contributions these hacksessions have led to so far [here](https://github.com/alan-turing-institute/research-engineering-group/wiki/Open-source-hacksessions).", "start_char_idx": 0, "end_char_idx": 1585, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "56f95194-e0bf-4d86-bef9-c4112ef570db": {"__data__": {"id_": "56f95194-e0bf-4d86-bef9-c4112ef570db", "embedding": null, "metadata": {"file_path": "content/docs/regular_events/reading_groups.md", "file_name": "reading_groups.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/reading_groups.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f9f40be4347c262e85e6a9312f4253889db82a4b", "node_type": "4", "metadata": {"file_path": "content/docs/regular_events/reading_groups.md", "file_name": "reading_groups.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/reading_groups.md"}, "hash": "c35d4921574091fd7cb26841365c7aad1b4f67e86ba145e97e5a42f64e76a187", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Reading Groups\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 35\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Reading Groups\n\nAs part of projects or for general interest, members of the team create reading groups to learn about a topic.\nReading groups may meet on weekly basis to discuss a chapter from a book, a paper, or to work together on implementing something.\n\nA list of current reading groups and information about them can be found on the [Data Science Skills wiki](https://github.com/alan-turing-institute/DataScienceSkills/wiki/Reading-Groups).\n\nMaterial for the reading groups is stored in the [Data Science Skills repository](https://github.com/alan-turing-institute/DataScienceSkills)\n\nThere are also [Turing Interest Groups](https://www.turing.ac.uk/research/interest-groups) and many other informal groups around the Turing.", "start_char_idx": 0, "end_char_idx": 1127, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e8716438-9709-458f-84d4-b7d3fbde4130": {"__data__": {"id_": "e8716438-9709-458f-84d4-b7d3fbde4130", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/_index.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b00d7c4c21f6e6a325f524411155361fe4ffe408", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/_index.md"}, "hash": "4e861a1c991b1eb12ae3a052e865975f6c05c51e4fd4c3dd6f729fdd58b69d75", "class_name": "RelatedNodeInfo"}}, "text": "---\ntitle: \"Common Technical Practices\"\nweight: 6\n---\n\n# Common Technical Practices\n\nThis section contains a section of common technical practices within REG.\nFor many of the topics in this section, there may be many possible ways to achieve the same goal \u2014 which are debated at length elsewhere.\nThe intention of this section is not to claim that any of the methods here are the \"best\" (however defined).\nMerely that they are good enough to allow the reader to focus on other, more interesting, unique or important, aspects of their project.", "start_char_idx": 0, "end_char_idx": 542, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5152f868-b29a-47d3-b9d8-b00239673c47": {"__data__": {"id_": "5152f868-b29a-47d3-b9d8-b00239673c47", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/change_logs.md", "file_name": "change_logs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/change_logs.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3ce2d5776d7d6d036e7c745b3343f6720d64905c", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/change_logs.md", "file_name": "change_logs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/change_logs.md"}, "hash": "49494fa24b5705e745ec0629640452b92b8102073e7de6f0f955ff4bff323bbf", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Changelogs and Semantic Versioning\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 2\n---\n\n# Changelogs\n\nFor any non-trivial code, it is worth maintaining a Changelog.\nThis is valuable as it is a record of changes _from the perspective of users_ (rather than git commit messages which are often only meaningful to the developers involved).\nA recommended format for Changelog files is given at [Keep a changelog](https://keepachangelog.com).\nAll notable changes to a project should be documented in this file.\n\n## Semantic Versioning\n\nA related concept is [semantic versioning](https://semver.org/spec/v2.0.0.html).\nIn most cases, semantic versioning is recommended.\nYou should state explicitly whether or not you are using semantic versioning in both your project's README and CHANGELOG files.", "start_char_idx": 0, "end_char_idx": 882, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "998a3b4c-d069-4bed-a7aa-9874021d7572": {"__data__": {"id_": "998a3b4c-d069-4bed-a7aa-9874021d7572", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "e7027ca907e40b82ffeb8883cce20fbeb31822f2727aa64c6a3341ffb5fc34af", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d692095e-53cf-4583-969f-34d0abcb3eb9", "node_type": "1", "metadata": {}, "hash": "229beeda9963483c6356e8f4b2f93ce85be56505805abc524cdafcf0c2d6f2aa", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Configuring Your Editor\"\n# Adjust the weight to reorder menu items (lower numbers appear first)\nweight: 4\n---\n\n# Configuring Your Editor\n\nMany people will configure their editor to suit their own needs and preferences.\n\nIt is possible to do this so that there are common standards between collaborators in the code base, while allowing for differences in individuals' configurations.\n\n{{< hint warning >}}\nSome of the topics discussed below are heavily focused on python development. In due course we should generalise this to cover other languages.\n{{< /hint >}}\n\n## General\n\nSome common, particular formatting/encoding options can be configured for a range of editors/IDEs by using [EditorConfig](https://editorconfig.org) in your repo.\nA `.editorconfig` needs to be placed in the root of your repo.\n\nMany (but not all) editors support EditorConfig files allowing different members of your project team to use their own favourite editor while maintaining common coding standards.\nSome editors support EditorConfig natively; others require a plugin to support EditorConfig.\n\nThere is some overlap in functionality between EditorConfig and Flake8.\nCrudely EditorConfig applies standards to files as they are created/edited, while Flake8 checks all files (irrespective of origin) on demand.\n\nBoth tools need to be set up en ensure that they are mutually compatible.\nHowever, since the configurations for both Flake8 and EditorConfig rarely change after the initial setup of the project, this is not a problem in practice.\n\n## VS code\n\n- [VS Code Python documentation](https://code.visualstudio.com/docs/python/python-tutorial)\n- [ARC suggested config (Turing members only)](https://github.com/alan-turing-institute/ARC/blob/master/IDE/vscode/README.md)\n\n### Extensions\n\nFocusing on Python only, useful extensions include:\n\n- [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) \u2014 adds core functionality for linting/navigating/debugging/etc.", "start_char_idx": 0, "end_char_idx": 2028, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d692095e-53cf-4583-969f-34d0abcb3eb9": {"__data__": {"id_": "d692095e-53cf-4583-969f-34d0abcb3eb9", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "e7027ca907e40b82ffeb8883cce20fbeb31822f2727aa64c6a3341ffb5fc34af", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "998a3b4c-d069-4bed-a7aa-9874021d7572", "node_type": "1", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "336c1f48a45a3500620550fac6fba93eae68682ad015139fc374fc8508bbaf10", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5d95abb7-0902-4779-8d44-fedef73fd58d", "node_type": "1", "metadata": {}, "hash": "047c0dcab1c3691b45ce1efce720e5954756383c6c89e72d77a4d92fdf4cb0e8", "class_name": "RelatedNodeInfo"}}, "text": "There is some overlap in functionality between EditorConfig and Flake8.\nCrudely EditorConfig applies standards to files as they are created/edited, while Flake8 checks all files (irrespective of origin) on demand.\n\nBoth tools need to be set up en ensure that they are mutually compatible.\nHowever, since the configurations for both Flake8 and EditorConfig rarely change after the initial setup of the project, this is not a problem in practice.\n\n## VS code\n\n- [VS Code Python documentation](https://code.visualstudio.com/docs/python/python-tutorial)\n- [ARC suggested config (Turing members only)](https://github.com/alan-turing-institute/ARC/blob/master/IDE/vscode/README.md)\n\n### Extensions\n\nFocusing on Python only, useful extensions include:\n\n- [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) \u2014 adds core functionality for linting/navigating/debugging/etc.\n - [Pylance](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)\n - [Jupyter](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter)\n- [Python Indent](https://marketplace.visualstudio.com/items?itemName=KevinRose.vsc-python-indent) \u2014 improves editor behaviour for matching indentation across lines\n- [autoDocstring](https://marketplace.visualstudio.com/items?itemName=njpwerner.autodocstring) \u2014 auto-generate template docstrings\n- [IntelliCode](https://marketplace.visualstudio.com/items?itemName=VisualStudioExptTeam.vscodeintellicode) \u2014 improved auto-completion/code suggestions\n- [Black formatter (pre-release)](https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter) \u2014 auto-format code with `black`\n- [isort (pre-release)](https://marketplace.visualstudio.com/items?itemName=ms-python.isort) \u2014 auto-format code with `isort`\n- [Python Type Hint](https://marketplace.visualstudio.com/items?itemName=njqdev.vscode-python-typehint) \u2014 helps with completing type-hints\n\n{{< hint info >}}\nThe `black` and `isort` pre-release packages are currently designed to work with the Python pre-release version.", "start_char_idx": 1138, "end_char_idx": 3195, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5d95abb7-0902-4779-8d44-fedef73fd58d": {"__data__": {"id_": "5d95abb7-0902-4779-8d44-fedef73fd58d", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "e7027ca907e40b82ffeb8883cce20fbeb31822f2727aa64c6a3341ffb5fc34af", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d692095e-53cf-4583-969f-34d0abcb3eb9", "node_type": "1", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "1540f52d1d32dd2cfcc8a455e9f141739c2da129033355185306885762747133", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ef58638f-76af-4f77-a459-560c3d95561b", "node_type": "1", "metadata": {}, "hash": "37acd1a1346d9f66b51e5a7ec621f53283534ac3213159c0776573e4cc150717", "class_name": "RelatedNodeInfo"}}, "text": "This is likely to be consolidated/improved in the future.\n{{< /hint >}}\n\n### Settings\n\nVS Code Settings are stored in:\n\n- Global user settings: `~/Library/Application Support/Code/User/settings.json`.\n- Project-specific (Workspace) settings: `/.vscode/settings.json`.\n\nYou can also customise most settings via the `Code -> Preferences -> Settings` menu.\nFor Python specifically note the `Extensions -> Python` section.\n\nHere's an example config for Python (reliant on installing the extensions above):\n\n```json\n{\n \"python.linting.flake8Enabled\": true,\n \"python.linting.mypyEnabled\": true,\n \"python.testing.pytestEnabled\": true,\n \"python.linting.pylintEnabled\": true,\n \"autoDocstring.docstringFormat\": \"numpy\",\n \"[python]\": {\n \"editor.rulers\": [88],\n \"editor.defaultFormatter\": \"ms-python.black-formatter\",\n \"editor.formatOnSave\": true,\n \"editor.codeActionsOnSave\": {\n \"source.organizeImports\": true\n },\n },\n}\n```\n\nIt does the following:\n\n- Activates linting with `flake8`, `mypy` and `pylint`.\n - We suggest using `flake8` at a minimum, but you may not want all three activated as it gets quite noisy and there's some overlap between them.\n- Sets `pytest` to be the default test framework.\n- Sets `numpy` to be the default format for docstrings generated with autoDocstring.\n- Sets `black` to be the default formatter, and automatically runs `black` and `isort` when saving a file.\n- Adds a vertical ruler to the editor at 88 characters (default line length used by `black`) for Python files only.\n\nNote that:\n\n- It's possible to specify arguments for the linters/formatters in `settings.json`. We suggest using each tool's own configuration files (_e.g._ `.flake8`), as these will then be picked up by other tools and editors as well. (_e.g._ Should configure `flake8` and `isort` to be compatible with `black`).", "start_char_idx": 3196, "end_char_idx": 5091, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ef58638f-76af-4f77-a459-560c3d95561b": {"__data__": {"id_": "ef58638f-76af-4f77-a459-560c3d95561b", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "e7027ca907e40b82ffeb8883cce20fbeb31822f2727aa64c6a3341ffb5fc34af", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5d95abb7-0902-4779-8d44-fedef73fd58d", "node_type": "1", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "edbd5ae3b0c64459fad143dd546ecaa3dceb5a69ab71792852eb4940566de133", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "91aec09e-c299-451a-bee5-36cc906bf2ce", "node_type": "1", "metadata": {}, "hash": "f3325af63762636ad5ab00e696518ce6d76bb7b034f8f6ee3eb095d10934d5ba", "class_name": "RelatedNodeInfo"}}, "text": "- We suggest using `flake8` at a minimum, but you may not want all three activated as it gets quite noisy and there's some overlap between them.\n- Sets `pytest` to be the default test framework.\n- Sets `numpy` to be the default format for docstrings generated with autoDocstring.\n- Sets `black` to be the default formatter, and automatically runs `black` and `isort` when saving a file.\n- Adds a vertical ruler to the editor at 88 characters (default line length used by `black`) for Python files only.\n\nNote that:\n\n- It's possible to specify arguments for the linters/formatters in `settings.json`. We suggest using each tool's own configuration files (_e.g._ `.flake8`), as these will then be picked up by other tools and editors as well. (_e.g._ Should configure `flake8` and `isort` to be compatible with `black`).\n- If enabled tools are not installed in your Python environment VS Code should prompt you to install them.\n- You are likely to have some non-Python specific configuration as well, so add the settings above to your `settings.json` file rather than overwriting it completely.\n\n### Selecting the Python Interpreter\n\n[VSC Python Interpreters Docs](https://code.visualstudio.com/docs/python/environments#_working-with-python-interpreters)\n\nFor each workspace VS Code can be configured to use a specific Python interpreter (environment).\nThat interpreter is then used by default when doing anything with your code (running scripts, linting, tests _etc._)\n\nTo set the interpreter:\n\n- Open a `.py` file.\n- Click on the details of the currently used environment on the status bar (bottom right).\n- Select an interpreter from the list that appears (or write the path to it).\n\nOr from the command palette:\n\n- Cmd-Shift-P -> Search for \"Python: Select Interpreter\".", "start_char_idx": 4273, "end_char_idx": 6045, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "91aec09e-c299-451a-bee5-36cc906bf2ce": {"__data__": {"id_": "91aec09e-c299-451a-bee5-36cc906bf2ce", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "e7027ca907e40b82ffeb8883cce20fbeb31822f2727aa64c6a3341ffb5fc34af", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ef58638f-76af-4f77-a459-560c3d95561b", "node_type": "1", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "3838e55cc6befef57a7b68252f9e816ef48ecc67d3d79842704875795c82df76", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0f6df599-a7d7-4b74-99f7-cddd754c7717", "node_type": "1", "metadata": {}, "hash": "1f64c57f902cd38eeb30b16f098837da4d8baad1c07dfe8e8aa31293a3dd033e", "class_name": "RelatedNodeInfo"}}, "text": "- If enabled tools are not installed in your Python environment VS Code should prompt you to install them.\n- You are likely to have some non-Python specific configuration as well, so add the settings above to your `settings.json` file rather than overwriting it completely.\n\n### Selecting the Python Interpreter\n\n[VSC Python Interpreters Docs](https://code.visualstudio.com/docs/python/environments#_working-with-python-interpreters)\n\nFor each workspace VS Code can be configured to use a specific Python interpreter (environment).\nThat interpreter is then used by default when doing anything with your code (running scripts, linting, tests _etc._)\n\nTo set the interpreter:\n\n- Open a `.py` file.\n- Click on the details of the currently used environment on the status bar (bottom right).\n- Select an interpreter from the list that appears (or write the path to it).\n\nOr from the command palette:\n\n- Cmd-Shift-P -> Search for \"Python: Select Interpreter\".\n\n### Linting\n\n[VSC Linting Docs](https://code.visualstudio.com/docs/python/linting)\n\nIf linters are activated (see Settings) they will be run after saving a file, and any problems the enabled tools encounter will be highlighted in-line in the editor, and be listed in the \"Problems\" tab of the panel at the bottom (or select View -> Problems from the menu).\n\nHovering over a piece of code with a problem in the editor will give you more details about it, and may have a \"Quick Fix\" available, which will edit the code for you to fix it.\n\n### Formatting\n\n[VSC Formatting Docs](https://code.visualstudio.com/docs/python/formatting)\n\nVS code can use a few different file formatters (e.g. `black`, `yapf`, `autopep8` \u2014 we recommend `black`), which can be configured to run automatically when saving files (see settings above) or with the following shortcuts:\n\n- Option-Shift-F.\n- Save the file (if auto-formatting is configured).\n- Right-click in a Python editor -> Format Document.\n- Cmd-Shift-P (Opens Command Palette) -> Search for \"format\" -> \"Format Document\".", "start_char_idx": 5092, "end_char_idx": 7107, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0f6df599-a7d7-4b74-99f7-cddd754c7717": {"__data__": {"id_": "0f6df599-a7d7-4b74-99f7-cddd754c7717", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "e7027ca907e40b82ffeb8883cce20fbeb31822f2727aa64c6a3341ffb5fc34af", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "91aec09e-c299-451a-bee5-36cc906bf2ce", "node_type": "1", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "131bea10008b4b3ae1952d7de88ba3e3ff74ab9dd8813c5173eb327c0f9d5892", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ce949a35-c420-4642-8f65-2ad80b27fe15", "node_type": "1", "metadata": {}, "hash": "69fd34c3881bfe1d4e658eb0920522e569551cf6fc4624f8c80b1520737571d7", "class_name": "RelatedNodeInfo"}}, "text": "Hovering over a piece of code with a problem in the editor will give you more details about it, and may have a \"Quick Fix\" available, which will edit the code for you to fix it.\n\n### Formatting\n\n[VSC Formatting Docs](https://code.visualstudio.com/docs/python/formatting)\n\nVS code can use a few different file formatters (e.g. `black`, `yapf`, `autopep8` \u2014 we recommend `black`), which can be configured to run automatically when saving files (see settings above) or with the following shortcuts:\n\n- Option-Shift-F.\n- Save the file (if auto-formatting is configured).\n- Right-click in a Python editor -> Format Document.\n- Cmd-Shift-P (Opens Command Palette) -> Search for \"format\" -> \"Format Document\".\n\n### Running Tests\n\n[VSC Testing Docs](https://code.visualstudio.com/docs/python/testing)\n\nIf you have enabled `pytest` (or another framework, e.g. `unittest`), tests will be discovered and appear in the `Testing` menu (lab bottle on the left side menu).\n\nFrom here you can run all/individual tests.\nYou can also search for \"Tests\" in the command palette (Cmd-Shift-P) to find options for running tests.\nIf a test fails, clicking on it will show the error message. You can also debug tests (see debugging).\n\nIf you have a tests file open in an editor the latest pass/fail status of a test will be shown (or a play button if the test hasn't run before) \u2014 running tests can be triggered from there too.\n\n### Debugging\n\n[VSC Debugging Docs](https://code.visualstudio.com/docs/python/debugging)\n\n### Other Tips and Tricks\n\n- **Auto-import:** If you start typing a function name that hasn't been imported, VS Code will pop up a list of suggested functions and \"Auto-Import\" them (add an import statement to the top of the script) if you select one of them.\n- **Rename symbol:** Right-clicking on a (variable/function/class/etc.)", "start_char_idx": 6405, "end_char_idx": 8231, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ce949a35-c420-4642-8f65-2ad80b27fe15": {"__data__": {"id_": "ce949a35-c420-4642-8f65-2ad80b27fe15", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "e7027ca907e40b82ffeb8883cce20fbeb31822f2727aa64c6a3341ffb5fc34af", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0f6df599-a7d7-4b74-99f7-cddd754c7717", "node_type": "1", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "d4bd21d49fc5d9c18b0c5d82b93dc35149b2aee121f48fbd0a02ecc0f7bf11a1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0067c7fe-dbac-4676-b633-bbd243898fd9", "node_type": "1", "metadata": {}, "hash": "4baa3490b2299c79d5da6ab21cd71e628724cb26b7a72dc8adfece8f60b5c82b", "class_name": "RelatedNodeInfo"}}, "text": "You can also search for \"Tests\" in the command palette (Cmd-Shift-P) to find options for running tests.\nIf a test fails, clicking on it will show the error message. You can also debug tests (see debugging).\n\nIf you have a tests file open in an editor the latest pass/fail status of a test will be shown (or a play button if the test hasn't run before) \u2014 running tests can be triggered from there too.\n\n### Debugging\n\n[VSC Debugging Docs](https://code.visualstudio.com/docs/python/debugging)\n\n### Other Tips and Tricks\n\n- **Auto-import:** If you start typing a function name that hasn't been imported, VS Code will pop up a list of suggested functions and \"Auto-Import\" them (add an import statement to the top of the script) if you select one of them.\n- **Rename symbol:** Right-clicking on a (variable/function/class/etc.) name in a file, selecting \"Rename symbol\", and entering a new name will change the name of all instances of that across your codebase (but respecting the scope of the renamed entity).\n- **Jupyter:** The Python extension comes with a Jupyter extension so you can run and edit notebooks in VS Code. Personally, I prefer the native Jupyter notebook/lab interface to the VS Code one.\n- **AutoDocstring:** If the AutoDocstring extension is installed, typing `\"\"\"` then hitting enter will generate a template docstring for you containing placeholders for all arguments (including their types if type hints are used in the function definition).\n- **Go to definition:** Right-clicking on a (variable/function/class/etc.) name and selecting \"Go to definition\" will take you to where that thing is defined in the codebase.\n- **Git:** The editor highlights modifications to the code (by the line numbers), and you can also commit etc. from VS Code using the Source Control menu on the left.", "start_char_idx": 7408, "end_char_idx": 9211, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0067c7fe-dbac-4676-b633-bbd243898fd9": {"__data__": {"id_": "0067c7fe-dbac-4676-b633-bbd243898fd9", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d7f37bb57151052794a69aeb894cc8dd8fe54541", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "e7027ca907e40b82ffeb8883cce20fbeb31822f2727aa64c6a3341ffb5fc34af", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ce949a35-c420-4642-8f65-2ad80b27fe15", "node_type": "1", "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}, "hash": "c15da63a05a46ae3bec3674a59dac6db669542c27697cb3353ee98c1a8957302", "class_name": "RelatedNodeInfo"}}, "text": "- **Jupyter:** The Python extension comes with a Jupyter extension so you can run and edit notebooks in VS Code. Personally, I prefer the native Jupyter notebook/lab interface to the VS Code one.\n- **AutoDocstring:** If the AutoDocstring extension is installed, typing `\"\"\"` then hitting enter will generate a template docstring for you containing placeholders for all arguments (including their types if type hints are used in the function definition).\n- **Go to definition:** Right-clicking on a (variable/function/class/etc.) name and selecting \"Go to definition\" will take you to where that thing is defined in the codebase.\n- **Git:** The editor highlights modifications to the code (by the line numbers), and you can also commit etc. from VS Code using the Source Control menu on the left.\n- **Docker:** There are extensions ([1](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker), [2](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)) for running code in containers/attaching a VS code window to a container.", "start_char_idx": 8416, "end_char_idx": 9500, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "93687e9e-a133-4f4a-97eb-6a7c6561d8b8": {"__data__": {"id_": "93687e9e-a133-4f4a-97eb-6a7c6561d8b8", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a15c80d71605c1b52b365259257c75172230e2b3", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md"}, "hash": "a635d575e98d106ea317730373e98cd2f5d5b2b9c5abdcfab0f4347d50bf9c91", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e71be8f0-fe30-480b-9e5c-86141c78d8a4", "node_type": "1", "metadata": {}, "hash": "2cd4c4775d1a7b024e19e74b487b1403781b1d38ec6ccfc40bfa3730c7f98bca", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Python Tools and Practices\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 3\n---\n\n# Python Tools and Practices\n\nPython is a widely used language within REG.\nBelow are some useful tools to help you configure your repo (with links to examples).\n\n{{< hint warning >}}\nSome of the topics discussed below are not exclusive to Python. As more content is added to the manual they should be separated out into their own pages.\n{{< /hint >}}\n\n## Autoformatters / Linters\n\nThere are many widely used autoformatter and linters for Python, which can be used as standalone tools or call from `.pre-commit`, continuous integration tools _etc._:\n\n- [isort](https://pypi.org/project/isort/) Sorts your import statements correctly.\n - The order `isort` \"sorts\" imports in the following order:\n 1. standard library imports (_e.g._ `import os`).\n 1. related third party imports (_e.g._ `import pandas`).\n 1. local application/library specific imports (_e.g._ `from .my_python_file import MyClass`).\n - You should put a blank line between each group of imports.\n - the configuration of `isort` can be specified in a `pyproject.toml` file, where `isort` is using the `[tool.isort]` section.\n- [black](https://pypi.org/project/black) A highly opinionated code formatter, which enforces control of minutiae details of your code.\n - The configuration of `black` can be specified in a `pyproject.toml` file, where `black` is using the ``[tool.black]`` section.\n- [flake8](https://pypi.org/project/flake8) A wrapper for three other tools:\n - PyFlakes \u2014 checks syntax, without checking the style.\n - pycodestyle \u2014 checks compliance with [PEP8](https://peps.python.org/pep-0008/)\n - Ned Batchelder\u2019s McCabe script \u2014 checks the cyclomatic complexity of code.", "start_char_idx": 0, "end_char_idx": 1835, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e71be8f0-fe30-480b-9e5c-86141c78d8a4": {"__data__": {"id_": "e71be8f0-fe30-480b-9e5c-86141c78d8a4", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a15c80d71605c1b52b365259257c75172230e2b3", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md"}, "hash": "a635d575e98d106ea317730373e98cd2f5d5b2b9c5abdcfab0f4347d50bf9c91", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "93687e9e-a133-4f4a-97eb-6a7c6561d8b8", "node_type": "1", "metadata": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md"}, "hash": "a4bd2aefab476bad19df5d9a7904eea9195a6f5c3bdd5e8a651e0e4ac2f38ed7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f323bf4-8b81-4f6f-a61f-ac1ca7407c49", "node_type": "1", "metadata": {}, "hash": "8e28091118c4ba557f26d17629a7bbabe55a02e8636cb33168e443f903f4daf6", "class_name": "RelatedNodeInfo"}}, "text": "- You should put a blank line between each group of imports.\n - the configuration of `isort` can be specified in a `pyproject.toml` file, where `isort` is using the `[tool.isort]` section.\n- [black](https://pypi.org/project/black) A highly opinionated code formatter, which enforces control of minutiae details of your code.\n - The configuration of `black` can be specified in a `pyproject.toml` file, where `black` is using the ``[tool.black]`` section.\n- [flake8](https://pypi.org/project/flake8) A wrapper for three other tools:\n - PyFlakes \u2014 checks syntax, without checking the style.\n - pycodestyle \u2014 checks compliance with [PEP8](https://peps.python.org/pep-0008/)\n - Ned Batchelder\u2019s McCabe script \u2014 checks the cyclomatic complexity of code.\n - Configuration can be specified in a `.flake8` configuration file in the root directory of your project.\n\nIt is possible to use all of these in combination.\nThe ARC group have a [template repo with suggested configuration files](https://github.com/alan-turing-institute/ARC-project-template) which you can copy/adapt as required.\n\n## Type Checkers\n\nType checking is optional in Python but is generally recommended.\nThere are several tools which can perform type checking:\n\n- [mypy](https://mypy.readthedocs.io) \u2014 This type-checker has the distinction of including [Guido van Rossum](https://python.org/~guido) in its core development team.\n- [pyright](https://github.com/Microsoft/pyright) \u2014 By Microsoft.\n- [pytype](https://github.com/google/pytype) \u2014 By Google.\n\n## Automation (Pre-Commit & Actions)\n\nA convenient way to incorporate many of these tools and checks into your workflow is to use `pre-commit`.\nBelow is an example.\nYou could adapt this to your needs, or create your own from the many [hooks described in the documentation](https://pre-commit.com/).", "start_char_idx": 1082, "end_char_idx": 2902, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8f323bf4-8b81-4f6f-a61f-ac1ca7407c49": {"__data__": {"id_": "8f323bf4-8b81-4f6f-a61f-ac1ca7407c49", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a15c80d71605c1b52b365259257c75172230e2b3", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md"}, "hash": "a635d575e98d106ea317730373e98cd2f5d5b2b9c5abdcfab0f4347d50bf9c91", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e71be8f0-fe30-480b-9e5c-86141c78d8a4", "node_type": "1", "metadata": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md"}, "hash": "2b4da223b6497b54ec1a4f80728699bbb4dc687547a8eb5aaabef1b413565843", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9357024f-1e70-4c6e-b046-cc395bfe494d", "node_type": "1", "metadata": {}, "hash": "e46f00e43aeb78549afe39f3b9cba8fbb0ce2b04f5d869289222466038dac773", "class_name": "RelatedNodeInfo"}}, "text": "## Type Checkers\n\nType checking is optional in Python but is generally recommended.\nThere are several tools which can perform type checking:\n\n- [mypy](https://mypy.readthedocs.io) \u2014 This type-checker has the distinction of including [Guido van Rossum](https://python.org/~guido) in its core development team.\n- [pyright](https://github.com/Microsoft/pyright) \u2014 By Microsoft.\n- [pytype](https://github.com/google/pytype) \u2014 By Google.\n\n## Automation (Pre-Commit & Actions)\n\nA convenient way to incorporate many of these tools and checks into your workflow is to use `pre-commit`.\nBelow is an example.\nYou could adapt this to your needs, or create your own from the many [hooks described in the documentation](https://pre-commit.com/).\n\n```yaml\n# See https://pre-commit.com for more information\n# See https://pre-commit.com/hooks.html for more hooks\nrepos:\n- repo: https://github.com/pre-commit/pre-commit-hooks\n rev: v4.2.0\n hooks:\n - id: trailing-whitespace\n - id: end-of-file-fixer\n - id: check-yaml\n - id: check-xml\n - id: check-json\n - id: pretty-format-json\n args: [--no-ensure-ascii, --no-sort-keys, --autofix]\n files: \".+json\"\n - id: check-added-large-files\n- repo: https://github.com/psf/black\n rev: 22.3.0\n hooks:\n - id: black\n# files: \"*.py\"\n exclude: \".+/ignore_this_legacy_file.py\"\n- repo: https://github.com/pre-commit/mirrors-autopep8\n rev: 'v1.6.0' # Use the sha / tag you want to point at\n hooks:\n - id: autopep8\n- repo: https://github.com/pre-commit/mirrors-mypy\n rev: 'v0.960' # Use the sha / tag you want to point at\n hooks:\n - id: mypy\n exclude: \".+/ignore_this_legacy_file.py\"\n- repo: https://github.com/pre-commit/mirrors-isort\n rev: v5.10.1\n hooks:\n - id: isort\n```\n\nThis example checks:\n\n- There is no trailing whitespace at the end of each line.", "start_char_idx": 2170, "end_char_idx": 4070, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9357024f-1e70-4c6e-b046-cc395bfe494d": {"__data__": {"id_": "9357024f-1e70-4c6e-b046-cc395bfe494d", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a15c80d71605c1b52b365259257c75172230e2b3", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md"}, "hash": "a635d575e98d106ea317730373e98cd2f5d5b2b9c5abdcfab0f4347d50bf9c91", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8f323bf4-8b81-4f6f-a61f-ac1ca7407c49", "node_type": "1", "metadata": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md"}, "hash": "535c71e66256d2da424469687380ff0783e6fb117dbce23f58893569f77f3a2e", "class_name": "RelatedNodeInfo"}}, "text": "- There is exactly one blank line at the end of the file.\n- Any `yaml` files in the repo are formatted correctly.\n- Any `xml` files in the repo are formatted correctly.\n- Any `json` files in the repo are formatted correctly and \"pretty printed\".\n- If any large files have been added to the repo without using [git-lfs](https://git-lfs.github.com/)\n- Any python code (except the file named \"ignore_this_legacy_file.py\"), is formatted according to \"[black's](https://black.readthedocs.io/en/stable/)\" _uncompromising_ standard.\n- Any python code (except the file named \"ignore_this_legacy_file.py\"), is formatted according to \"[pep8's](https://pep8.org/)\" standard.\n- Any python code is tested for type safeness (That is declaring types is optional, but if types are declared they must be correct).\n- The import statements in any python code are correctly ordered.\n\nIf any of these tests fail or need to alter any files, the commit will fail.\nThis prevents you from accidentally forgetting to check your changes before you commit them.\n\nIf you wish to run the checks in `pre-commit` without attempting to commit your changes:\n\n```bash\npre-commit run --all-files\n```\n\nThere are many other possible checks available with `pre-commit`, which you can incorporate according to the needs of your project.\nThe [`pre-commit` documentation](https://pre-commit.com/) provides much more detail.\n\n## Testing tools\n\nSome suggested testing tools:\n\n- A test framework [pytest](https://docs.pytest.org/) or the less fashionable [unittest](https://docs.python.org/3/library/unittest.html).\n- Coverage reporting [pytest-cov](https://pypi.org/project/pytest-cov/) (a plugin for `pytest`) or [coverage](https://coverage.readthedocs.io/).\n- A tool for testing code examples in your documentation [doctest](https://docs.python.org/3/library/doctest.html).\n\nThis list of tools does not include a discussion on developing a _testing strategy_.\nDeveloping a testing strategy is a separate discussion, though it is not possible to make optimal use of these tools without a strategy.", "start_char_idx": 4071, "end_char_idx": 6125, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "05060b83-66bd-46d0-b5d4-c556fc94bf29": {"__data__": {"id_": "05060b83-66bd-46d0-b5d4-c556fc94bf29", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/software_dev_best_practice.md", "file_name": "software_dev_best_practice.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/software_dev_best_practice.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "83a937e7909e283792af66260c897d102991d7b9", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/software_dev_best_practice.md", "file_name": "software_dev_best_practice.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/software_dev_best_practice.md"}, "hash": "4509ca6c53d3a37eb5fab94e907e322f73507a4e10ae652aeda84b45f2b1e4ec", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "76fe5b6a-11e4-4441-b16d-26cc1fa953b5", "node_type": "1", "metadata": {}, "hash": "434540d1746c15c63b62b391270fe6da65364edb19aebd544641344408e16cb2", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Software Development\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 5\n---\n\n# Software Development Best Practices\n\n_Status:_ this document is a draft proposal.\n\n## RSE projects\n\n- There should be a GitHub issue for each thing we do.\n It\u2019s ok for issues to evolve and my preference would be that the top description box always has the most up to date, clearest description of the issue and its definition of done.\n Feel free to make liberal use of the comments for communication and tracking investigative / exploratory work.\n The main description box should contain a clear definition of done / acceptance criteria sufficient for the following to be done in principle by different people from the team who are involved in the project.\n - Implement the functionality\n - Write tests to validate the implementation meets the definition of done\n - Review the implementation for correctness\n\n- All code should have automated tests, with all tests runnable by a single command by someone who has checked out a fresh copy of the repo.\n\n- All dependencies, installation, compilation etc should be scripted such that these can be triggered by a single command by someone who has checked out a fresh copy of the repo.\n Dependencies required only for testing can require a second command or few.\n\n- Each new issue should be developed on a short-lived feature branch split from \"main\".\n These branches ideally only live around 0.5-2 days before being merged back into main.\n Merge process should be: merge main into feature branch and resolve any conflicts. Push latest feature branch to GitHub.\n Open PR to merge into main after review + continuous integration (CI) tests.\n\n- Code should be committed regularly in small chunks.\n You should generally be committing multiple times per day.\n Commits on feature branches can have broken functionality or tests, but all merges into main should only occur at commits where the code is correct and has passing tests.\n\n- All code commits should be accompanied by tests verifying it behaves as expected.\n At a minimum code submitted as a PR should have tests that show it meets the definition of done defined in the related issue(s).", "start_char_idx": 0, "end_char_idx": 2266, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "76fe5b6a-11e4-4441-b16d-26cc1fa953b5": {"__data__": {"id_": "76fe5b6a-11e4-4441-b16d-26cc1fa953b5", "embedding": null, "metadata": {"file_path": "content/docs/technical_practices/software_dev_best_practice.md", "file_name": "software_dev_best_practice.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/software_dev_best_practice.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "83a937e7909e283792af66260c897d102991d7b9", "node_type": "4", "metadata": {"file_path": "content/docs/technical_practices/software_dev_best_practice.md", "file_name": "software_dev_best_practice.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/software_dev_best_practice.md"}, "hash": "4509ca6c53d3a37eb5fab94e907e322f73507a4e10ae652aeda84b45f2b1e4ec", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "05060b83-66bd-46d0-b5d4-c556fc94bf29", "node_type": "1", "metadata": {"file_path": "content/docs/technical_practices/software_dev_best_practice.md", "file_name": "software_dev_best_practice.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/software_dev_best_practice.md"}, "hash": "4b8c2b6394ca3d96f203fbb7e0848300c459b5d6937914cdd134718e706966ab", "class_name": "RelatedNodeInfo"}}, "text": "Dependencies required only for testing can require a second command or few.\n\n- Each new issue should be developed on a short-lived feature branch split from \"main\".\n These branches ideally only live around 0.5-2 days before being merged back into main.\n Merge process should be: merge main into feature branch and resolve any conflicts. Push latest feature branch to GitHub.\n Open PR to merge into main after review + continuous integration (CI) tests.\n\n- Code should be committed regularly in small chunks.\n You should generally be committing multiple times per day.\n Commits on feature branches can have broken functionality or tests, but all merges into main should only occur at commits where the code is correct and has passing tests.\n\n- All code commits should be accompanied by tests verifying it behaves as expected.\n At a minimum code submitted as a PR should have tests that show it meets the definition of done defined in the related issue(s).\n However, code should have additional unit / regression / integration tests where appropriate (it's almost always appropriate).\n Writing code then tests is a significantly lower quality assurance measure than writing tests first / in iteration with the code, so you should do the latter.\n\n- All code should have had two eyeballs on it before it is merged into main, either through pair programming or code review within the PR.\n Please note on the PR who two eyes were.\n The second pair of eyes can be anyone on the project (not just a coder), anyone in our team or someone from a related team (e.g. the UCL research programming).\n Whether as pair programming or a code review, the final PR code should be validated against the definition of done detailed in the related issue(s) by the two pairs of eyes.\n\n- The GitHub repository should be set up to run all tests on all pushes to all branches and on all PRs.\n Currently this can be done for public repos via GitHub Actions.\n If CI is set up this way, commits to main should be blocked unless all tests pass.\n\n## Data Science projects\n\nTBD", "start_char_idx": 1306, "end_char_idx": 3364, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f5ee3b52-aa3e-4bd0-8f27-79c40c81d3c7": {"__data__": {"id_": "f5ee3b52-aa3e-4bd0-8f27-79c40c81d3c7", "embedding": null, "metadata": {"file_path": "content/docs/working_at_the_turing/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/_index.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a40d10bf89b5a47ee2ebb0eaeeb3ad970d275a3c", "node_type": "4", "metadata": {"file_path": "content/docs/working_at_the_turing/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/_index.md"}, "hash": "41714ec498bee8c266a8f895d8d0ff2fe076f9a96dd40d6542e549f4598bc59d", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Working at The Turing\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 5\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Working at The Turing", "start_char_idx": 0, "end_char_idx": 424, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "23e852e5-02c3-408e-999f-c6fdea194a32": {"__data__": {"id_": "23e852e5-02c3-408e-999f-c6fdea194a32", "embedding": null, "metadata": {"file_path": "content/docs/working_at_the_turing/booking_a_meeting_room.md", "file_name": "booking_a_meeting_room.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/booking_a_meeting_room.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "386340d84f9bce8c984e5f9d344c16803f180779", "node_type": "4", "metadata": {"file_path": "content/docs/working_at_the_turing/booking_a_meeting_room.md", "file_name": "booking_a_meeting_room.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/booking_a_meeting_room.md"}, "hash": "7811f6dae0d3210747f778d5e656212e84d13c79fc78d9d6b67ccfdd494ea0a6", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Booking a Meeting Room\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 1\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Booking a Meeting Room\n\nThere are instructions on how to book a room on [Mathison](https://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2118&SearchId=175781&utm_source=interact&utm_medium=quick_search&utm_term=meeting+rooms).\n\nThe simplest way of finding a room is to use the `Scheduling Assistant` on a meeting invite.\n\n![](https://i.imgur.com/jeeD7Gv.png)\n\nThen scroll down to `Add Location`. This will give you a list of Available Rooms for your specific time. It will update when you move the time window.\n\n![](https://i.imgur.com/WOhkk8G.png)", "start_char_idx": 0, "end_char_idx": 968, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2219935e-cd84-4325-9c68-e9f3c2e61faa": {"__data__": {"id_": "2219935e-cd84-4325-9c68-e9f3c2e61faa", "embedding": null, "metadata": {"file_path": "content/docs/working_at_the_turing/edi.md", "file_name": "edi.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/edi.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a", "node_type": "4", "metadata": {"file_path": "content/docs/working_at_the_turing/edi.md", "file_name": "edi.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/edi.md"}, "hash": "68330eb2e10e4bbe7a032c73b9949ecc876a181e7fa48b0b305a2239f211e9df", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "63f43023-e476-4c1a-ae99-c7774894fb2f", "node_type": "1", "metadata": {}, "hash": "bd6c7d892d78c5f3a697e41ee5f7848af6f4761d7360b64944e8701c3b7372a6", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Equality, Diversity, and Inclusion\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 3\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Equality, Diversity, and Inclusion\n\n## Overview\n\nThe Turing has a strong commitment towards EDI, which is formally set out in the Institute's EDI [Strategy](https://www.turing.ac.uk/sites/default/files/2023-03/edi-strategy-report_v1.2_updated_16.03.2023_0.pdf) and [Action Plan](https://www.turing.ac.uk/sites/default/files/2021-09/edi-action-plan_final.pdf).\nFor current Turing staff, you can also access an [EDI section on Mathison](https://mathison.turing.ac.uk/Interact/Pages/Section/Default.aspx?section=3684).\n\n## How to get involved\n\nIf you are keen to be involved in the EDI work around REG and the Turing, do feel free to join the `#edi-equality-diversity-inclusion` channel on Slack, and/or contact:\n\n- in the first instance, [the people involved in the REG EDI service area.](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry)\n\n Besides the people directly allocated to this service area, we also have a group of volunteers who are involved on a 'best-effort' basis.\n You are welcome to join in any capacity!\n- [the Turing's dedicated EDI team](https://www.turing.ac.uk/about-us/equality-diversity-and-inclusion)\n\nBelow we've described a handful of specific initiatives at the Turing which REG have been involved with.\nThis list is not exhaustive (nor should it be: there is always more to be done!).", "start_char_idx": 0, "end_char_idx": 1767, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "63f43023-e476-4c1a-ae99-c7774894fb2f": {"__data__": {"id_": "63f43023-e476-4c1a-ae99-c7774894fb2f", "embedding": null, "metadata": {"file_path": "content/docs/working_at_the_turing/edi.md", "file_name": "edi.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/edi.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a", "node_type": "4", "metadata": {"file_path": "content/docs/working_at_the_turing/edi.md", "file_name": "edi.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/edi.md"}, "hash": "68330eb2e10e4bbe7a032c73b9949ecc876a181e7fa48b0b305a2239f211e9df", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2219935e-cd84-4325-9c68-e9f3c2e61faa", "node_type": "1", "metadata": {"file_path": "content/docs/working_at_the_turing/edi.md", "file_name": "edi.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/edi.md"}, "hash": "5c709b26017ff7c9c4ac14a079467257095417b1f53c7ad2a35c9c4cf75c9152", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b8c9a66f-86ef-4958-b219-f27093a055b8", "node_type": "1", "metadata": {}, "hash": "87bce34e7b203f6d85002ec2d46db5af3c56e2fb17780f9fccca8236e4644f71", "class_name": "RelatedNodeInfo"}}, "text": "## How to get involved\n\nIf you are keen to be involved in the EDI work around REG and the Turing, do feel free to join the `#edi-equality-diversity-inclusion` channel on Slack, and/or contact:\n\n- in the first instance, [the people involved in the REG EDI service area.](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry)\n\n Besides the people directly allocated to this service area, we also have a group of volunteers who are involved on a 'best-effort' basis.\n You are welcome to join in any capacity!\n- [the Turing's dedicated EDI team](https://www.turing.ac.uk/about-us/equality-diversity-and-inclusion)\n\nBelow we've described a handful of specific initiatives at the Turing which REG have been involved with.\nThis list is not exhaustive (nor should it be: there is always more to be done!).\n\n### HDR UK Black Internship\n\nSince 2022 REG has been involved in hosting interns from the [Black Internship programme by Health Data Research UK](https://www.hdruk.ac.uk/study-and-train/train/health-data-science-black-internship-programme/).\nInterns have typically been involved with one health-related project from REG, plus many other activities around the Turing.\nYou can see [a researcher spotlight on Olajumoke](https://www.turing.ac.uk/people/spotlights/olajumoke-olatunji), one of our interns from 2023.\n\n### EDI Annual Report\n\nEach year the Turing publishes an annual report (see [here](https://www.turing.ac.uk/sites/default/files/2023-02/edi_annual_report_october_2021-2022_public_version_002_1.pdf) for the most recent one, covering the period between October 2021 and September 2022), as well as a gender pay gap (see [here](https://www.turing.ac.uk/sites/default/files/2023-03/2023.03.30_gender_pay_gap_report.pdf)).\nREG typically assists the EDI team with analysis of the underlying data and recommendations on how to treat sensitive data.", "start_char_idx": 933, "end_char_idx": 2822, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b8c9a66f-86ef-4958-b219-f27093a055b8": {"__data__": {"id_": "b8c9a66f-86ef-4958-b219-f27093a055b8", "embedding": null, "metadata": {"file_path": "content/docs/working_at_the_turing/edi.md", "file_name": "edi.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/edi.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a", "node_type": "4", "metadata": {"file_path": "content/docs/working_at_the_turing/edi.md", "file_name": "edi.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/edi.md"}, "hash": "68330eb2e10e4bbe7a032c73b9949ecc876a181e7fa48b0b305a2239f211e9df", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "63f43023-e476-4c1a-ae99-c7774894fb2f", "node_type": "1", "metadata": {"file_path": "content/docs/working_at_the_turing/edi.md", "file_name": "edi.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/edi.md"}, "hash": "2afaf1790bee899d69054ce17dd09f7a2e0368fa70dbf72d430a997680be0a6a", "class_name": "RelatedNodeInfo"}}, "text": "You can see [a researcher spotlight on Olajumoke](https://www.turing.ac.uk/people/spotlights/olajumoke-olatunji), one of our interns from 2023.\n\n### EDI Annual Report\n\nEach year the Turing publishes an annual report (see [here](https://www.turing.ac.uk/sites/default/files/2023-02/edi_annual_report_october_2021-2022_public_version_002_1.pdf) for the most recent one, covering the period between October 2021 and September 2022), as well as a gender pay gap (see [here](https://www.turing.ac.uk/sites/default/files/2023-03/2023.03.30_gender_pay_gap_report.pdf)).\nREG typically assists the EDI team with analysis of the underlying data and recommendations on how to treat sensitive data.\n\n### Network Groups\n\nThe Turing has set up four EDI network groups centred on specific topics, with the aim of providing feedback to the Institute's EDI team and senior management:\n\n- [Disability and Wellbeing](https://mathison.turing.ac.uk/page/2088)\n- [Gender Equality](https://mathison.turing.ac.uk/page/2089)\n- [LGBTQ+ Equality](https://mathison.turing.ac.uk/page/2090)\n- [Race Equality](https://mathison.turing.ac.uk/page/2091)\n\nREG members are strongly encouraged to participate in these groups.\nAdditionally, group chairpersons (who can be from REG) are awarded an honorarium.\n\n### BCSWomen Lovelace Colloquium\n\nSince 2023, the Turing has been a sponsor for the [BCSWomen Lovelace Colloquium](https://bcswomenlovelace.bcs.org/), a one-day conference for women and non-binary students in computing fields.\nIn 2023 REG sat on the careers panel and also (together with other teams from the Turing) had a stall at the conference.", "start_char_idx": 2136, "end_char_idx": 3755, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3a824442-4ed5-4847-96d3-dc2ca1324cfa": {"__data__": {"id_": "3a824442-4ed5-4847-96d3-dc2ca1324cfa", "embedding": null, "metadata": {"file_path": "content/docs/working_at_the_turing/equipment.md", "file_name": "equipment.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/equipment.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c4771fb05fdcbcee999cbfb17856c814cbfa41f4", "node_type": "4", "metadata": {"file_path": "content/docs/working_at_the_turing/equipment.md", "file_name": "equipment.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/equipment.md"}, "hash": "6f81ddc9ff7e5e2ba00567bebd25149eebbf554be07f9b1cd65c3b36ceaf8f1d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "47dc984f-45b2-460d-bf79-5ee6e0a84bfd", "node_type": "1", "metadata": {}, "hash": "0ce15c05745742bbc693729bf60e9fdba5828108b5546553b85ea815080260d9", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Equipment\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 2\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Equipment\n\n## Getting a New Computer\n\nThis is a list of the steps taken by a REG member when they got a new Turing laptop from IT to replace their old laptop. Please note that you don't have to follow these steps, it is just advice given by someone who went through the process.\n\n1. Sign in to Apple Cloud on new machine. Activate all accounts (Office365, personal email, ...)\n\n1. `brew cask install emacs`, and anything else you need.\n\n1. Store config files on Apple Cloud, and symbolic link them to their required place, eg:\n - `~/.emacs.el`\n - `~/.bash_profile`\n\n1. Office (including OneDrive): install with the new \"self service\" app that IT now bundle with laptops (which apparently installs things via homebrew!)\n\n1. OneDrive setup. You might have a personal shared space on OneDrive, but also multiple shared spaces for projects, set up as \"Groups\" in Office 365. The standard location that Office chooses for your local OneDrive image is long and full of spaces. Put all shared spaces in ~/OneDrive-Actuals and then symbolic link to ~/OneDrive (for my personal space) and ~/Share/X (for project X).\n\n1. SSH tokens for GitHub. You can make new ones or think about moving the old ones, but it turned out to be straightforward to make new ones.\n\n1. Go through every repo with an authoritative remote, make sure you've pushed all local commits, and delete. (I keep all repos in `~/Projects/`, with remotes usually on GitHub.)\n\n1. Double-check other directories within `~/`\n\n1.", "start_char_idx": 0, "end_char_idx": 1875, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "47dc984f-45b2-460d-bf79-5ee6e0a84bfd": {"__data__": {"id_": "47dc984f-45b2-460d-bf79-5ee6e0a84bfd", "embedding": null, "metadata": {"file_path": "content/docs/working_at_the_turing/equipment.md", "file_name": "equipment.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/equipment.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c4771fb05fdcbcee999cbfb17856c814cbfa41f4", "node_type": "4", "metadata": {"file_path": "content/docs/working_at_the_turing/equipment.md", "file_name": "equipment.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/equipment.md"}, "hash": "6f81ddc9ff7e5e2ba00567bebd25149eebbf554be07f9b1cd65c3b36ceaf8f1d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a824442-4ed5-4847-96d3-dc2ca1324cfa", "node_type": "1", "metadata": {"file_path": "content/docs/working_at_the_turing/equipment.md", "file_name": "equipment.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/equipment.md"}, "hash": "063d5e37ca509ebb63b8d1dba46ca02cb3cc4edfccdedf0ff7395406c11589e2", "class_name": "RelatedNodeInfo"}}, "text": "1. OneDrive setup. You might have a personal shared space on OneDrive, but also multiple shared spaces for projects, set up as \"Groups\" in Office 365. The standard location that Office chooses for your local OneDrive image is long and full of spaces. Put all shared spaces in ~/OneDrive-Actuals and then symbolic link to ~/OneDrive (for my personal space) and ~/Share/X (for project X).\n\n1. SSH tokens for GitHub. You can make new ones or think about moving the old ones, but it turned out to be straightforward to make new ones.\n\n1. Go through every repo with an authoritative remote, make sure you've pushed all local commits, and delete. (I keep all repos in `~/Projects/`, with remotes usually on GitHub.)\n\n1. Double-check other directories within `~/`\n\n1. Install Emacs additions as I learn that I need them ...\n\n## Additional Equipment\n\nThere is a budget to purchase peripherals (monitor, mouse, keyboard, _etc._) as well as other equipment such as an office chair and desk. You can purchase the office chair and desk yourself and claim back up to \u00a3200 in total via Certify. The official process is to assess your home-working set up via a [workstation self-assessment form](https://mathison.turing.ac.uk/page/2810). However, you can try contacting the [facilities team](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact) directly. For peripherals, it's better to contact [IT](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact). See the [Turing's Homeworking Policy](https://mathison.turing.ac.uk/page/2218) for more information.\n\nIf there are health and safety reasons why you would want equipment that differs from the standard Apple keyboard/mouse then contact [HR](https://github.com/alan-turing-institute/research-engineering-group/wiki/The-REGistry#points-of-contact) directly, there is a separate health and safety budget for such things.", "start_char_idx": 1115, "end_char_idx": 3074, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ae06d6a1-33fc-4b36-ae30-afcb8ed34d06": {"__data__": {"id_": "ae06d6a1-33fc-4b36-ae30-afcb8ed34d06", "embedding": null, "metadata": {"file_path": "content/docs/working_at_the_turing/expenses.md", "file_name": "expenses.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/expenses.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dbdb7680a1e21622af2403e7a3739e148903b38a", "node_type": "4", "metadata": {"file_path": "content/docs/working_at_the_turing/expenses.md", "file_name": "expenses.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/expenses.md"}, "hash": "d4974a7a66f54f85d5442d9db88b540b01c2a507cebf1b3954c7707be71d7176", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Expenses\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 1\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Expenses\n\nOut-of-pocket expenses should be reclaimed using Certify. You should submit an expense claim on Certify for expenses incurred within a given month as soon as possible, and no later than 60 days after the expense is incurred (except for visa costs, which can be claimed up to a year after starting employment).\n\nIn the first instance, look at the information provided by the Finance team about how to use Certify on Mathison:\n\nhttps://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2169\n\n(This also includes links to Certify's own user guides and videos)\n\n## Related content\n\n- [REG-specific information](https://github.com/alan-turing-institute/research-engineering-group/wiki/Reclaiming-out-of-pocket-expenses)\n- [Certify Guidance on Mathison](https://mathison.turing.ac.uk/Interact/Pages/Content/Document.aspx?id=2169)\n- [REG-specific Finance codes](https://github.com/alan-turing-institute/research-engineering-group/wiki/REG-specific-finance-codes)\n- [REG-budget-and-project-codes](https://github.com/alan-turing-institute/research-engineering-group/wiki/REG-budget-and-project-codes)\n- [Cost recovery model](https://github.com/alan-turing-institute/Hut23/wiki/REG-cost-recovery) (REG access only)", "start_char_idx": 0, "end_char_idx": 1616, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c348e27e-07a9-4eb0-96bf-ba067c1b993f": {"__data__": {"id_": "c348e27e-07a9-4eb0-96bf-ba067c1b993f", "embedding": null, "metadata": {"file_path": "content/docs/working_at_the_turing/wellbeing.md", "file_name": "wellbeing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/wellbeing.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "84273d25a134f3eb42173957fb52d64eb533bc2d", "node_type": "4", "metadata": {"file_path": "content/docs/working_at_the_turing/wellbeing.md", "file_name": "wellbeing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/wellbeing.md"}, "hash": "fd49d351b350c20d59e414034cac6a9f1be01955e0d62267318bcea4b93cdd25", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "542517e7-3531-412e-8101-736be1fcdfe0", "node_type": "1", "metadata": {}, "hash": "c5df4d03107092d52580f9f027662e0d089369c272b59961ed623733227c614f", "class_name": "RelatedNodeInfo"}}, "text": "---\n# Page title as it appears in the navigation menu\ntitle: \"Wellbeing\"\n# Adjust weight to reorder menu items (lower numbers appear first)\nweight: 4\n# Uncomment to hide nested pages in a collapsed menu\n# bookCollapseSection = true\n# Uncomment to hide this page from the navigation menu\n# bookHidden = false\n# Uncomment to exclude this page from the search\n# bookSearchExclude = true\n---\n\n# Wellbeing\n\nThe Turing provides a number of support mechanisms to protect employees' wellbeing.\n\nThe most up-to-date information can be found [on Mathison](https://mathison.turing.ac.uk/page/2228). A summary follows here:\n\n## Report + Support\n\n[Report + Support](https://reportandsupport.turing.ac.uk/) is an online platform where you can report cases of bullying, harassment, discrimination, assault, hate crime, sexual misconduct, or a breach of the Turing's values (Trust, Inclusivity, Respect, Leadership, Transparency, Integrity).\nReports can be made anonymously if you so choose.\n\n## Care first\n\nAll employees at the Turing can access the [Care first employee assistance programme](https://mathison.turing.ac.uk/page/2272).\nThis includes a 24-hour phone counselling service, online counselling, and advice services.\nContact details and links are available on the Mathison page.\n\nThe employee assistance programme also provides access to the ['My Possible Self' app](https://www.mypossibleself.com/) for monitoring and improving mental health.\n\n## Private medical / dental insurance\n\nThe Turing provides a [private medical insurance plan from Bupa](https://mathison.turing.ac.uk/page/3017).\nYou have to opt in: if you want to sign up, contact HR with the information requested on the above Mathison page.\nYou can choose to have either the medical insurance with or without the dental plan.\n\nThe cost of the medical insurance itself is covered by the Turing, but you have to pay for the first \u00a3100 of treatment (this is called the 'excess'), and because this is a [taxable benefit](https://www.gov.uk/tax-company-benefits) you also have to pay tax on the cost of the medical insurance.", "start_char_idx": 0, "end_char_idx": 2079, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "542517e7-3531-412e-8101-736be1fcdfe0": {"__data__": {"id_": "542517e7-3531-412e-8101-736be1fcdfe0", "embedding": null, "metadata": {"file_path": "content/docs/working_at_the_turing/wellbeing.md", "file_name": "wellbeing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/wellbeing.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "84273d25a134f3eb42173957fb52d64eb533bc2d", "node_type": "4", "metadata": {"file_path": "content/docs/working_at_the_turing/wellbeing.md", "file_name": "wellbeing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/wellbeing.md"}, "hash": "fd49d351b350c20d59e414034cac6a9f1be01955e0d62267318bcea4b93cdd25", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c348e27e-07a9-4eb0-96bf-ba067c1b993f", "node_type": "1", "metadata": {"file_path": "content/docs/working_at_the_turing/wellbeing.md", "file_name": "wellbeing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/wellbeing.md"}, "hash": "fcc8c8c4f6761cd5aec3ccd9780a36e69e22b8a9f9001d001da9c1e52463d98d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c17d5b9f-b642-4903-b56b-8ec46fa02441", "node_type": "1", "metadata": {}, "hash": "2c5ff249e4d618579b0ec4825f6f69a23b293c1cf6b5477523c65cd935d92828", "class_name": "RelatedNodeInfo"}}, "text": "Contact details and links are available on the Mathison page.\n\nThe employee assistance programme also provides access to the ['My Possible Self' app](https://www.mypossibleself.com/) for monitoring and improving mental health.\n\n## Private medical / dental insurance\n\nThe Turing provides a [private medical insurance plan from Bupa](https://mathison.turing.ac.uk/page/3017).\nYou have to opt in: if you want to sign up, contact HR with the information requested on the above Mathison page.\nYou can choose to have either the medical insurance with or without the dental plan.\n\nThe cost of the medical insurance itself is covered by the Turing, but you have to pay for the first \u00a3100 of treatment (this is called the 'excess'), and because this is a [taxable benefit](https://www.gov.uk/tax-company-benefits) you also have to pay tax on the cost of the medical insurance.\nThe dental plan add-on has an annual flat rate charge.\n\nIt is worth noting that the medical insurance includes cover for pre-existing conditions, as well as mental health, which means that you can use it to access therapy with counsellors or psychologists.\nYou can use the [Bupa finder](https://www.finder.bupa.co.uk/) to search for recognised medical professionals.\n\n## Mental health first aiders\n\nThere are a number of mental health first aiders in the Turing whom you can speak to and who can help you obtain support.\nA full list can be obtained [on Mathison](https://mathison.turing.ac.uk/page/2119).\n(Unfortunately, this does not yet include anyone in REG.)\n\n## External supervision\n\nAll Turing staff have access to [individual, once-per-month sessions with an external supervisor, Debbie Dixon](https://mathison.turing.ac.uk/page/3052).\nExternal supervision is meant to provide participants with techniques and methods to navigate difficult situations, particularly at work.\nHowever, it is not a form of therapy and should not be seen as a replacement for that.\n\n## Free Headspace membership\n\nHeadspace is an app for mindfulness and meditation.", "start_char_idx": 1212, "end_char_idx": 3230, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c17d5b9f-b642-4903-b56b-8ec46fa02441": {"__data__": {"id_": "c17d5b9f-b642-4903-b56b-8ec46fa02441", "embedding": null, "metadata": {"file_path": "content/docs/working_at_the_turing/wellbeing.md", "file_name": "wellbeing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/wellbeing.md"}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "84273d25a134f3eb42173957fb52d64eb533bc2d", "node_type": "4", "metadata": {"file_path": "content/docs/working_at_the_turing/wellbeing.md", "file_name": "wellbeing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/wellbeing.md"}, "hash": "fd49d351b350c20d59e414034cac6a9f1be01955e0d62267318bcea4b93cdd25", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "542517e7-3531-412e-8101-736be1fcdfe0", "node_type": "1", "metadata": {"file_path": "content/docs/working_at_the_turing/wellbeing.md", "file_name": "wellbeing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/wellbeing.md"}, "hash": "eb8cb83c82b57516f2c83234f227d13e4d241c4c5bf9c95e7ecdd1540e6219ef", "class_name": "RelatedNodeInfo"}}, "text": "You can use the [Bupa finder](https://www.finder.bupa.co.uk/) to search for recognised medical professionals.\n\n## Mental health first aiders\n\nThere are a number of mental health first aiders in the Turing whom you can speak to and who can help you obtain support.\nA full list can be obtained [on Mathison](https://mathison.turing.ac.uk/page/2119).\n(Unfortunately, this does not yet include anyone in REG.)\n\n## External supervision\n\nAll Turing staff have access to [individual, once-per-month sessions with an external supervisor, Debbie Dixon](https://mathison.turing.ac.uk/page/3052).\nExternal supervision is meant to provide participants with techniques and methods to navigate difficult situations, particularly at work.\nHowever, it is not a form of therapy and should not be seen as a replacement for that.\n\n## Free Headspace membership\n\nHeadspace is an app for mindfulness and meditation.\nThe Turing is a Headspace partner, meaning that all employees can access [free membership to Headspace](https://mathison.turing.ac.uk/page/2249).\nYou can also add 5 other people to your membership for free.\nInstructions on how to access the Turing subscription can be found on the Mathison link above.", "start_char_idx": 2337, "end_char_idx": 3532, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}}, "docstore/ref_doc_info": {"93c225056acbb5484fe7994c647f755f93adf958": {"node_ids": ["75cf5ad8-bf0e-4b67-b3dd-ed3272881b09"], "metadata": {"file_path": "content/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/_index.md"}}, "cf380f2bc01891cffe4e2b991e3427cc023b8c89": {"node_ids": ["d0a13454-b117-45a1-a7f3-c088eaae7dce"], "metadata": {"file_path": "content/docs/communications/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/communications/_index.md"}}, "fd1b5253d191ca0839c393826ddf12f23b54dd1d": {"node_ids": ["3c7bf40c-c5e4-40db-80b2-dbb4e0f11289"], "metadata": {"file_path": "content/docs/communications/social_media.md", "file_name": "social_media.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/communications/social_media.md"}}, "f841571dd12d2ae66ee9a9e7a07f95e82355010a": {"node_ids": ["672cbc89-3888-483a-a14c-7e3ed578d4b4"], "metadata": {"file_path": "content/docs/contributing/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/_index.md"}}, "a394749d72c4f3795a384330295b06c9846db26c": {"node_ids": ["e11b64d8-ec6b-4956-8a57-ad499b1eb9b7"], "metadata": {"file_path": "content/docs/contributing/advanced.md", "file_name": "advanced.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/advanced.md"}}, "3055cf35fa98f5a6b1f22f976a37a42ed6594d2d": {"node_ids": ["721230de-13e8-4aa4-be8f-e6bfc5b79200", "91d01686-e2e1-4e30-8f24-54bc362bfde6", "72f60be5-209a-4251-9961-999d7847be69", "b22dd272-77eb-482f-b515-14e76a55a8b7", "c8d40a5f-08f1-49b4-aec3-74fe69681315"], "metadata": {"file_path": "content/docs/contributing/contributing_changes.md", "file_name": "contributing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/contributing_changes.md"}}, "a296d4feb5a490599d60d8bed68961c31624c8fb": {"node_ids": ["f5f01aab-661a-4766-9639-edcb7719160c", "052be6ea-fc41-49cb-a5fe-5309172d18fc"], "metadata": {"file_path": "content/docs/contributing/creating_a_page.md", "file_name": "creating_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/creating_a_page.md"}}, "9e31d5beddf2be8d558ea581d08d793a8dd542a9": {"node_ids": ["b6b0ec4b-ec86-4351-b63f-6bd042d13ec2"], "metadata": {"file_path": "content/docs/contributing/discussions_and_issues.md", "file_name": "discussions_and_issues.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/discussions_and_issues.md"}}, "54ee33ee0e3a07ea15165101dcbc06495eced766": {"node_ids": ["4855e3ee-b3fc-46fc-a437-576b42bb2b5e", "f020b5d1-5ac0-4c4d-83f6-ab67bc6dfb48", "c27977c8-8d38-420a-ae8a-cd48bd5d0f77", "2a44316f-12b9-4af9-9413-39ce6f9a126d"], "metadata": {"file_path": "content/docs/contributing/editing_a_page.md", "file_name": "editing_a_page.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/editing_a_page.md"}}, "3ad4a616007ca5441cfcd229f6688e3d939bc374": {"node_ids": ["cd8d3ab6-1259-40a0-a44b-7f679fee56d4", "f215f5cf-5057-4b73-a09c-a6ef0b073beb"], "metadata": {"file_path": "content/docs/contributing/getting_started.md", "file_name": "getting_started.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/getting_started.md"}}, "3716e2551f49aa2261c6160f8a03d7939eed0a76": {"node_ids": ["b5bdd873-3d71-45d3-b88d-06193ffb2cd0"], "metadata": {"file_path": "content/docs/contributing/recognising_contributions.md", "file_name": "recognising_contributions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/recognising_contributions.md"}}, "e347caf2f22c1a7dc2e89205dd05653f1fdceef8": {"node_ids": ["ff919679-c51e-4f38-bf87-f5cabb8b85bb", "f32ce356-37da-4a43-a12d-8bf950636c30", "176c89b9-abf7-4e55-bb1c-7af2ccf0f82b"], "metadata": {"file_path": "content/docs/contributing/reviewing_changes.md", "file_name": "reviewing_changes.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/reviewing_changes.md"}}, "8b19f56f4e3d0e16ff15d6f3bc378f03d292ccae": {"node_ids": ["e3729547-1eca-467b-9bb0-fe1804f9a874", "b33cd473-ff1c-4fd5-9e29-3957daf45389"], "metadata": {"file_path": "content/docs/contributing/style_guide.md", "file_name": "style_guide.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributing/style_guide.md"}}, "53f966366a793fd602bd41df877eb4dff3ffce6a": {"node_ids": ["142c2d96-ae16-4cf2-9256-dd7251e34c94", "4acae13b-0545-456d-b97b-aa278ff7ef96", "5ae511d6-d49d-4ddd-80eb-25edd5a56437", "99d4167f-919f-4a15-bc13-70656440d6a8", "c9459fc0-9e0f-456d-8450-323acb47ce30", "eabb7bb4-3083-4b5f-9f00-68211f7e32b9", "9a202e7f-1c69-4845-aca0-5fd6aa403053", "53c234b1-1bef-41e7-8d0f-81e4a2e21a09", "5e4128d2-0246-49c5-97ae-50b5363f547d", "2b3d28a7-49c8-4f38-92b2-5e2f22c35763", "d08eb6d7-705b-4369-ab85-17f47f9090b5", "ed3797f6-6391-46b7-8c12-723d805edd3f", "4c2e522d-d8b6-4793-ba0f-38d61ef86ec4", "2ece4974-14ce-450b-be09-73076b3913e2", "a1aee0ee-beab-4caf-b3f6-a6c22e8e9e0f", "77848f07-e6f1-4e28-b5e8-2a1e6f01a8a2", "52f57058-d56a-4d99-b021-e100acbf7d99", "ec0b6f9e-fa47-4006-942f-74d62306946c", "2f45fac7-da65-4dbc-975c-4c0385a61c5a"], "metadata": {"file_path": "content/docs/contributors/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/contributors/_index.md"}}, "7400df9edd9c4071fcbab15b4862891105a2e1bd": {"node_ids": ["3feceeca-3eb9-43ae-95e8-61c9cf5c6d57"], "metadata": {"file_path": "content/docs/employee_processes/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/_index.md"}}, "63768c9127a41b6c46ab497d2341cfbcde106d65": {"node_ids": ["84900df3-9ac3-4d8b-a692-cfb617fe1e84"], "metadata": {"file_path": "content/docs/employee_processes/annual_appraisals.md", "file_name": "annual_appraisals.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/annual_appraisals.md"}}, "028550c18bfc12b1ad2eab4e0ad96f36fb520d9d": {"node_ids": ["3603f85b-d8fd-4081-8258-ca892ef85005", "60b8c530-ba1a-41bc-9d6b-3991791bc2b6", "22d5c08c-b3b9-4ae9-86cd-af3e8edb4af1", "7e725ce8-52cb-49c5-8e0a-bd6d4c21728d", "5e5445b6-8ec1-4ab0-ace9-d2f41365a640", "06acc6e2-25e8-4bf3-9fae-e254fa4a09da", "35af2b14-e6e5-48fd-9926-2ad98a0ee79a"], "metadata": {"file_path": "content/docs/employee_processes/probation.md", "file_name": "probation.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/employee_processes/probation.md"}}, "355608b3e4baabc116162490b302ac19818f0c72": {"node_ids": ["2dbabf73-3621-4277-810f-def259b60568"], "metadata": {"file_path": "content/docs/how_we_work/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/_index.md"}}, "0dca6c86fd4b2ddcac032fa90a740f2c2f254e34": {"node_ids": ["308301a6-2983-480c-b771-15de12d77e0f", "9f03394b-9689-4c1e-a008-2f40d8c0ee0e"], "metadata": {"file_path": "content/docs/how_we_work/acronyms_and_abbreviations.md", "file_name": "acronyms_and_abbreviations.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/acronyms_and_abbreviations.md"}}, "aac8d6e30090f116e25aadfb09076acb7c3a5346": {"node_ids": ["fce3078e-c270-459f-a637-5009e3c264e1", "0efe9dfa-f503-40c3-b065-20103e991baf", "02041b0f-2b6e-4ef5-9bff-b504d45e83c7"], "metadata": {"file_path": "content/docs/how_we_work/code_audits.md", "file_name": "code_audits.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/code_audits.md"}}, "f7c1d6d16f4411a8515fce7ca22798085eb99e00": {"node_ids": ["2d448858-f9d3-4100-99b4-5f915b545d92", "83517c70-7306-4404-b05e-67fb691d01a8", "fe552232-5b34-4657-b842-1fd039e24eb2"], "metadata": {"file_path": "content/docs/how_we_work/defining-done.md", "file_name": "defining-done.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/defining-done.md"}}, "7f2ac23942c4b6feadd462ef69d53718c8c2b3f9": {"node_ids": ["60f9d284-345d-448e-b593-0fbe326aa09a", "80badcbb-374e-4a2f-82e0-22acbf1ee2a8", "b0ac2673-089e-43a9-b004-cb55670d5613", "ff718593-9a32-4079-8566-b2eeccec373d", "a0611aa2-9601-457a-9a45-7ebdea9de014", "f0d8f067-0996-400a-9679-3f8393fc11ff", "ddf0d0fa-a27a-4231-966b-2d71c5f40d99", "5aadd0c8-686f-46f2-8311-14f79994b627"], "metadata": {"file_path": "content/docs/how_we_work/knowledge_sharing.md", "file_name": "knowledge_sharing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/knowledge_sharing.md"}}, "eb7da3de122c27799f16e0b9f68e9ac6fcefc043": {"node_ids": ["f7f09540-e847-4d0c-a813-b6e580bedcb4", "fc8c1d05-99cf-471d-a569-8b4398a28a04", "a5af40e6-1d06-41d6-9640-9b0b047b263a"], "metadata": {"file_path": "content/docs/how_we_work/line-management.md", "file_name": "line-management.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/line-management.md"}}, "3fb6caa127af57616062f5efa38208b722a42221": {"node_ids": ["8a8133a4-4245-4942-8cb0-db3cb28c44f9"], "metadata": {"file_path": "content/docs/how_we_work/meeting_record.md", "file_name": "meeting_record.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/meeting_record.md"}}, "710a44b3fd231bdb2ce3cf1f5884505969def43e": {"node_ids": ["2b17d74a-862c-435b-a4fe-b602778b2680"], "metadata": {"file_path": "content/docs/how_we_work/open_access.md", "file_name": "open_access.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/open_access.md"}}, "988753b83c1f32468cb2f580dec2e0ea17c5adcd": {"node_ids": ["d27c338e-31f3-4279-a7e5-01daae284dbc", "baacf820-88ef-4e27-ab64-5a55a04f1e5f"], "metadata": {"file_path": "content/docs/how_we_work/project_tracking.md", "file_name": "project_tracking.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/project_tracking.md"}}, "b1b12c59add5cecfb80d084f57cd6141ba4daa45": {"node_ids": ["14a40177-16bb-46f1-96fd-b86f287158c0", "fb1a7658-c476-4a44-b85d-212669923fd8", "94bd70b1-fb83-4c4e-ab35-b1a16a0234b7", "b86b8e65-d3fc-4e3b-afe2-48afa23b7a68"], "metadata": {"file_path": "content/docs/how_we_work/remote_working.md", "file_name": "remote_working.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/remote_working.md"}}, "c5690b32682b3b73911668d58fead0852a6cf8d6": {"node_ids": ["a25ada4b-5845-43aa-9c0c-cfd763e4a100", "fef485ab-1d16-4402-9c80-2d89b39599c8"], "metadata": {"file_path": "content/docs/how_we_work/snark_hunts.md", "file_name": "snark_hunts.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/how_we_work/snark_hunts.md"}}, "a719156971fa8ebb242749926fbf38be72a44d13": {"node_ids": ["25c15c1c-6042-434d-81ab-116505771d66"], "metadata": {"file_path": "content/docs/join_us/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/_index.md"}}, "334a4c021df569ebc7001eeac252ffa542373d53": {"node_ids": ["0009b835-6867-4034-a974-e0495b55ed3e", "b2588806-3af9-4149-a5a3-95083eb352c0", "16330a08-ad08-496f-a14e-a56c8d8495eb", "d2150194-dd47-4b24-90d6-24a9ec1930e2", "2e92bb78-357e-455b-ab5c-e1e12e4b2da4", "bc877115-e3e0-4648-bef9-5e10d81a353d", "939e982a-94d2-49b3-b029-926d0ad796e3", "655b725c-a52f-4e96-93c4-361714c23830", "9263bd46-63d4-4010-9ef1-ebeb7c96e88f", "5d83bd6f-d55e-4a3d-b92a-95d2730cec7e", "214b63dc-17e6-4093-9efe-b50dac8331a0", "d04e9b9a-1e28-42c4-ac2a-e59e84cf019b", "f4a27cf4-d22f-47b2-bd5e-7cfd3cf286e4", "4139f092-9cd1-46db-ba5a-5a5759ae4bb1", "2c693769-1efc-4102-8d1e-253fcede566b", "202a5ff9-6f89-4301-a80f-0577d6989b87", "2977a99a-b5bc-4548-8003-77766a64b591", "9950c23a-f73d-423f-b120-fc886fdc8843"], "metadata": {"file_path": "content/docs/join_us/recruitment_FAQs.md", "file_name": "recruitment_FAQs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/join_us/recruitment_FAQs.md"}}, "8da5941d9e553fec1734e42037111a37668471e4": {"node_ids": ["35db1781-d829-46cd-b2df-e30df000dc0d"], "metadata": {"file_path": "content/docs/onboarding/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/_index.md"}}, "3eb1917b4ebf3c304d06bf25d131ead26c9856bb": {"node_ids": ["9ef54c37-488c-41f4-b826-cf988eb9e138", "584f6865-e808-41c0-8032-05e75d746feb", "36f72676-0d86-4d9b-b3c5-18d5cbe0ad06"], "metadata": {"file_path": "content/docs/onboarding/buddy_system.md", "file_name": "buddy_system.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/buddy_system.md"}}, "eea6eb21a653228f12ee4e03bc10e04179d63ea5": {"node_ids": ["1fdb1412-26d8-4077-955c-b338014f395c"], "metadata": {"file_path": "content/docs/onboarding/new_joiners/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/_index.md"}}, "3452b76140b3029de5af4930db29caa5e943513d": {"node_ids": ["139ccd73-c4b8-4a69-9349-3584a45b27f6", "478492af-909f-4927-afa3-a22f69624c18", "80a01e0f-9042-4493-92d6-a07003cd87a9", "95e4556b-baf0-40be-a66b-4d2b0eebafb3", "32f9cd78-e1aa-43d6-ad05-0c482996ffb4", "b0534a2e-7f2a-493d-895f-0ba89a3d940b"], "metadata": {"file_path": "content/docs/onboarding/new_joiners/checklist.md", "file_name": "checklist.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/checklist.md"}}, "6efba9701175d0c3c1d62dd01694f3ca71d984d9": {"node_ids": ["a84349e5-52b8-4073-9487-497ca07f95ee", "59036fe2-a102-4943-b9bf-17e525a18467", "f3d35cee-3ccb-41d8-ad38-ff273e598cb5", "b6473046-4e60-4cac-89fb-ccb09390f1ec", "3abae02f-f871-4edb-b3f1-81da237825da", "decbaa19-7313-463e-babe-625487666fb0", "e8cd1844-095b-484b-9dad-c95abf3c4373", "470778ec-4e10-4cb1-9924-88d00b6c258c"], "metadata": {"file_path": "content/docs/onboarding/new_joiners/first_few_days.md", "file_name": "first_few_days.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/first_few_days.md"}}, "9800b627994c5343abeec748c5811347d67f934a": {"node_ids": ["f6d6b5c8-11e1-49ba-9933-781cd71025df", "93ec1759-4667-466e-8bea-d4739b5b8f0b", "c1000392-16cf-421a-b25f-5c240de81979", "91a3f525-e557-44a9-8cff-fffa910a2207", "ea6366c9-d607-441d-b084-f601bb402466", "a45cd662-89ef-4e64-9475-caae4a08d1f7", "65522fe5-fb80-43d0-8032-255f08e75db4", "201432b8-c6a7-4e53-9ae1-5e5e225aaca1", "5c092d4a-1a6a-42fa-9c88-2c89a652a0c3", "0670d79d-270b-40e6-8027-86d4c763781c", "9339280a-09ea-42e5-b8f0-5ae819759d6f", "6cb2c28c-4858-4f80-b7af-c763074c72db", "8cb68461-551d-44b1-bd45-789feee27927", "72157987-ccc4-4b00-b6a9-4206c1635c62"], "metadata": {"file_path": "content/docs/onboarding/new_joiners/systems_set_up.md", "file_name": "systems_set_up.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/new_joiners/systems_set_up.md"}}, "86410ea05e1cb71a248b3b7c33a57ed0fdb1b6a6": {"node_ids": ["d0309d4e-01b1-4bc1-94c9-af1c07a0a294", "05a15588-4b09-40af-8e2e-e3cfc444a25d"], "metadata": {"file_path": "content/docs/onboarding/society_of_research_software_engineering.md", "file_name": "society_of_research_software_engineering.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/onboarding/society_of_research_software_engineering.md"}}, "3572fbb8f0bfccfb953996dc8599e300641c5280": {"node_ids": ["af06e711-3177-4400-bb92-291df03e30dd"], "metadata": {"file_path": "content/docs/regular_events/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/_index.md"}}, "3db69996a4f564759314b78f68e574789fa6e81f": {"node_ids": ["b9b977cf-0c14-4e1e-bc45-e7620f4d37f2"], "metadata": {"file_path": "content/docs/regular_events/coffee_chats.md", "file_name": "coffee_chats.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/coffee_chats.md"}}, "246a8e452680dcd30e6b1492db1ece74b14b8843": {"node_ids": ["a2d3b1f4-ad42-4e85-9984-240e9e1ad08d", "a130bafd-4da5-4b34-8ec6-a49e3f6f5d97", "4a91eaf3-2fa4-4374-a2aa-f9bc3cd25988"], "metadata": {"file_path": "content/docs/regular_events/drop-in_sessions.md", "file_name": "drop-in_sessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/drop-in_sessions.md"}}, "8c29ad5d6c90b79fb4c04af861d5b5985a2f1609": {"node_ids": ["8e3d6776-d318-4d99-bd67-b95466d95eb5", "13693d9f-add0-4831-b24e-18baf9b8be19"], "metadata": {"file_path": "content/docs/regular_events/lightning_talks.md", "file_name": "lightning_talks.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/lightning_talks.md"}}, "2eb3fa13f1a8f4a51bb717fb851b558b1c945567": {"node_ids": ["70b4a312-c669-4439-89e1-6db8aaadb025"], "metadata": {"file_path": "content/docs/regular_events/lunchtime_tech_talks.md", "file_name": "lunchtime_tech_talks.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/lunchtime_tech_talks.md"}}, "40e5ef8b88305799557e778421610c28154b50cb": {"node_ids": ["50dccdcb-69c2-41fa-9490-9234095132f3"], "metadata": {"file_path": "content/docs/regular_events/open_source_hacksessions.md", "file_name": "open_source_hacksessions.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/open_source_hacksessions.md"}}, "f9f40be4347c262e85e6a9312f4253889db82a4b": {"node_ids": ["56f95194-e0bf-4d86-bef9-c4112ef570db"], "metadata": {"file_path": "content/docs/regular_events/reading_groups.md", "file_name": "reading_groups.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/regular_events/reading_groups.md"}}, "b00d7c4c21f6e6a325f524411155361fe4ffe408": {"node_ids": ["e8716438-9709-458f-84d4-b7d3fbde4130"], "metadata": {"file_path": "content/docs/technical_practices/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/_index.md"}}, "3ce2d5776d7d6d036e7c745b3343f6720d64905c": {"node_ids": ["5152f868-b29a-47d3-b9d8-b00239673c47"], "metadata": {"file_path": "content/docs/technical_practices/change_logs.md", "file_name": "change_logs.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/change_logs.md"}}, "d7f37bb57151052794a69aeb894cc8dd8fe54541": {"node_ids": ["998a3b4c-d069-4bed-a7aa-9874021d7572", "d692095e-53cf-4583-969f-34d0abcb3eb9", "5d95abb7-0902-4779-8d44-fedef73fd58d", "ef58638f-76af-4f77-a459-560c3d95561b", "91aec09e-c299-451a-bee5-36cc906bf2ce", "0f6df599-a7d7-4b74-99f7-cddd754c7717", "ce949a35-c420-4642-8f65-2ad80b27fe15", "0067c7fe-dbac-4676-b633-bbd243898fd9"], "metadata": {"file_path": "content/docs/technical_practices/configuring_editors.md", "file_name": "configuring_editors.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/configuring_editors.md"}}, "a15c80d71605c1b52b365259257c75172230e2b3": {"node_ids": ["93687e9e-a133-4f4a-97eb-6a7c6561d8b8", "e71be8f0-fe30-480b-9e5c-86141c78d8a4", "8f323bf4-8b81-4f6f-a61f-ac1ca7407c49", "9357024f-1e70-4c6e-b046-cc395bfe494d"], "metadata": {"file_path": "content/docs/technical_practices/python.md", "file_name": "python.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/python.md"}}, "83a937e7909e283792af66260c897d102991d7b9": {"node_ids": ["05060b83-66bd-46d0-b5d4-c556fc94bf29", "76fe5b6a-11e4-4441-b16d-26cc1fa953b5"], "metadata": {"file_path": "content/docs/technical_practices/software_dev_best_practice.md", "file_name": "software_dev_best_practice.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/technical_practices/software_dev_best_practice.md"}}, "a40d10bf89b5a47ee2ebb0eaeeb3ad970d275a3c": {"node_ids": ["f5ee3b52-aa3e-4bd0-8f27-79c40c81d3c7"], "metadata": {"file_path": "content/docs/working_at_the_turing/_index.md", "file_name": "_index.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/_index.md"}}, "386340d84f9bce8c984e5f9d344c16803f180779": {"node_ids": ["23e852e5-02c3-408e-999f-c6fdea194a32"], "metadata": {"file_path": "content/docs/working_at_the_turing/booking_a_meeting_room.md", "file_name": "booking_a_meeting_room.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/booking_a_meeting_room.md"}}, "8b9cb577cde41b9eb68932ea5dfbe8e1c255ba3a": {"node_ids": ["2219935e-cd84-4325-9c68-e9f3c2e61faa", "63f43023-e476-4c1a-ae99-c7774894fb2f", "b8c9a66f-86ef-4958-b219-f27093a055b8"], "metadata": {"file_path": "content/docs/working_at_the_turing/edi.md", "file_name": "edi.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/edi.md"}}, "c4771fb05fdcbcee999cbfb17856c814cbfa41f4": {"node_ids": ["3a824442-4ed5-4847-96d3-dc2ca1324cfa", "47dc984f-45b2-460d-bf79-5ee6e0a84bfd"], "metadata": {"file_path": "content/docs/working_at_the_turing/equipment.md", "file_name": "equipment.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/equipment.md"}}, "dbdb7680a1e21622af2403e7a3739e148903b38a": {"node_ids": ["ae06d6a1-33fc-4b36-ae30-afcb8ed34d06"], "metadata": {"file_path": "content/docs/working_at_the_turing/expenses.md", "file_name": "expenses.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/expenses.md"}}, "84273d25a134f3eb42173957fb52d64eb533bc2d": {"node_ids": ["c348e27e-07a9-4eb0-96bf-ba067c1b993f", "542517e7-3531-412e-8101-736be1fcdfe0", "c17d5b9f-b642-4903-b56b-8ec46fa02441"], "metadata": {"file_path": "content/docs/working_at_the_turing/wellbeing.md", "file_name": "wellbeing.md", "url": "https://github.com/alan-turing-institute/REG-handbook/blob/main/content/docs/working_at_the_turing/wellbeing.md"}}}} diff --git a/data/llama_index_indices/handbook/image__vector_store.json b/data/llama_index_indices/handbook/image__vector_store.json new file mode 100644 index 00000000..e7f146e4 --- /dev/null +++ b/data/llama_index_indices/handbook/image__vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {}, "text_id_to_ref_doc_id": {}, "metadata_dict": {}} diff --git a/data/llama_index_indices/handbook/index_store.json b/data/llama_index_indices/handbook/index_store.json index 1fa028c6..78e47fb7 100644 --- a/data/llama_index_indices/handbook/index_store.json +++ b/data/llama_index_indices/handbook/index_store.json @@ -1 +1 @@ -{"index_store/data": {"0e00cb0d-6b16-4478-9d50-b98984f45bc5": {"__type__": "vector_store", "__data__": "{\"index_id\": \"0e00cb0d-6b16-4478-9d50-b98984f45bc5\", \"summary\": null, \"nodes_dict\": {\"fcd6893a-2299-4252-a491-58ea3ab2027d\": \"fcd6893a-2299-4252-a491-58ea3ab2027d\", \"0136ae18-ab5b-403a-8e88-2246e8600382\": \"0136ae18-ab5b-403a-8e88-2246e8600382\", \"2918ad37-92c2-4140-93ff-faef72f2d9a8\": \"2918ad37-92c2-4140-93ff-faef72f2d9a8\", \"574bcc25-d760-4690-9e9c-734ca1a2faca\": \"574bcc25-d760-4690-9e9c-734ca1a2faca\", \"d9b75cc2-4b54-4de9-834d-ac8d43513af6\": \"d9b75cc2-4b54-4de9-834d-ac8d43513af6\", \"62bb3d89-c999-4a68-9f10-63b27f8fe51f\": \"62bb3d89-c999-4a68-9f10-63b27f8fe51f\", \"62ad20de-4bd1-4ce4-b188-02ee3afa832c\": \"62ad20de-4bd1-4ce4-b188-02ee3afa832c\", \"75867960-b912-4f6e-9246-f0037fe39a38\": \"75867960-b912-4f6e-9246-f0037fe39a38\", \"18541b6e-100d-427b-9e3e-efe271e15ab8\": \"18541b6e-100d-427b-9e3e-efe271e15ab8\", \"c56de485-bf90-4d6c-92ad-bee5e4906542\": \"c56de485-bf90-4d6c-92ad-bee5e4906542\", \"7e68274e-9ab6-471e-9185-c944c59cfaa8\": \"7e68274e-9ab6-471e-9185-c944c59cfaa8\", \"33eadcb9-33ef-4e1c-bee7-03bfbc864821\": \"33eadcb9-33ef-4e1c-bee7-03bfbc864821\", \"64015259-4712-473b-83aa-101859b847e3\": \"64015259-4712-473b-83aa-101859b847e3\", \"9755dfce-542c-4fd4-9159-be398121c20a\": \"9755dfce-542c-4fd4-9159-be398121c20a\", \"3d62184d-17c2-489c-a1d6-6a328080a6b1\": \"3d62184d-17c2-489c-a1d6-6a328080a6b1\", \"2c432e8c-1357-4d82-bb70-f06d795ffb78\": \"2c432e8c-1357-4d82-bb70-f06d795ffb78\", \"112a5e73-1b8e-4e1c-8d4d-d86c9fffc995\": \"112a5e73-1b8e-4e1c-8d4d-d86c9fffc995\", \"a6ae574c-ce44-46ea-8bcd-51daeadd4e33\": \"a6ae574c-ce44-46ea-8bcd-51daeadd4e33\", \"e08d3482-69bf-47bb-baf8-38dfe358b0c3\": \"e08d3482-69bf-47bb-baf8-38dfe358b0c3\", \"2bc907a2-81b3-4f00-996a-0d1337ddd0f4\": \"2bc907a2-81b3-4f00-996a-0d1337ddd0f4\", \"129527e9-ec4e-4f68-95fd-03240a7507b2\": \"129527e9-ec4e-4f68-95fd-03240a7507b2\", \"d1108f8f-6c82-40ca-bf1d-eba84831d72a\": \"d1108f8f-6c82-40ca-bf1d-eba84831d72a\", \"db89096e-87c7-4a7c-ac4d-67f67d6012a3\": \"db89096e-87c7-4a7c-ac4d-67f67d6012a3\", \"718228f9-61dc-44bb-997e-c9d8c401bf75\": \"718228f9-61dc-44bb-997e-c9d8c401bf75\", \"046ac25e-3976-4a1d-9914-e2b860979f2a\": \"046ac25e-3976-4a1d-9914-e2b860979f2a\", \"56594030-d0ed-4a20-9a89-3ffcf1198824\": \"56594030-d0ed-4a20-9a89-3ffcf1198824\", \"9a70dfba-f343-4b28-84c1-b30fe537b95d\": \"9a70dfba-f343-4b28-84c1-b30fe537b95d\", \"caaf5123-07a6-4538-9dc0-fa7c6e01133a\": \"caaf5123-07a6-4538-9dc0-fa7c6e01133a\", \"5adbe930-f5b1-45f1-9d06-982bd4fcc751\": \"5adbe930-f5b1-45f1-9d06-982bd4fcc751\", \"d22f3c5b-84ac-45ca-901e-1d2530796bb6\": \"d22f3c5b-84ac-45ca-901e-1d2530796bb6\", \"30be9a9c-d226-4133-8642-6ca620cc0d21\": \"30be9a9c-d226-4133-8642-6ca620cc0d21\", \"ff8d6def-994a-4295-8f10-af0a6592d856\": \"ff8d6def-994a-4295-8f10-af0a6592d856\", \"a84215e5-c9cc-43b8-a1c2-617a59aa35ac\": \"a84215e5-c9cc-43b8-a1c2-617a59aa35ac\", \"69222f1d-a8bf-45eb-bd90-448ede12b0db\": \"69222f1d-a8bf-45eb-bd90-448ede12b0db\", \"dc58742e-6237-4a06-ab34-f8694a76f6d0\": \"dc58742e-6237-4a06-ab34-f8694a76f6d0\", \"b4e15cd8-6566-4705-b0b2-cc656777a66c\": \"b4e15cd8-6566-4705-b0b2-cc656777a66c\", \"8d1f0547-7a86-4547-80d0-4749c7cd3e2d\": \"8d1f0547-7a86-4547-80d0-4749c7cd3e2d\", \"eb1611e0-048f-4d40-8759-18ea8bb446ee\": \"eb1611e0-048f-4d40-8759-18ea8bb446ee\", \"98b1e8d2-1971-4141-be92-0609195c2280\": \"98b1e8d2-1971-4141-be92-0609195c2280\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} +{"index_store/data": {"dcb34389-b083-482e-be69-b0e0380537aa": {"__type__": "vector_store", "__data__": "{\"index_id\": \"dcb34389-b083-482e-be69-b0e0380537aa\", \"summary\": null, \"nodes_dict\": {\"75cf5ad8-bf0e-4b67-b3dd-ed3272881b09\": \"75cf5ad8-bf0e-4b67-b3dd-ed3272881b09\", \"d0a13454-b117-45a1-a7f3-c088eaae7dce\": \"d0a13454-b117-45a1-a7f3-c088eaae7dce\", \"3c7bf40c-c5e4-40db-80b2-dbb4e0f11289\": \"3c7bf40c-c5e4-40db-80b2-dbb4e0f11289\", \"672cbc89-3888-483a-a14c-7e3ed578d4b4\": \"672cbc89-3888-483a-a14c-7e3ed578d4b4\", \"e11b64d8-ec6b-4956-8a57-ad499b1eb9b7\": \"e11b64d8-ec6b-4956-8a57-ad499b1eb9b7\", \"721230de-13e8-4aa4-be8f-e6bfc5b79200\": \"721230de-13e8-4aa4-be8f-e6bfc5b79200\", \"91d01686-e2e1-4e30-8f24-54bc362bfde6\": \"91d01686-e2e1-4e30-8f24-54bc362bfde6\", \"72f60be5-209a-4251-9961-999d7847be69\": \"72f60be5-209a-4251-9961-999d7847be69\", \"b22dd272-77eb-482f-b515-14e76a55a8b7\": \"b22dd272-77eb-482f-b515-14e76a55a8b7\", \"c8d40a5f-08f1-49b4-aec3-74fe69681315\": \"c8d40a5f-08f1-49b4-aec3-74fe69681315\", \"f5f01aab-661a-4766-9639-edcb7719160c\": \"f5f01aab-661a-4766-9639-edcb7719160c\", \"052be6ea-fc41-49cb-a5fe-5309172d18fc\": \"052be6ea-fc41-49cb-a5fe-5309172d18fc\", \"b6b0ec4b-ec86-4351-b63f-6bd042d13ec2\": \"b6b0ec4b-ec86-4351-b63f-6bd042d13ec2\", \"4855e3ee-b3fc-46fc-a437-576b42bb2b5e\": \"4855e3ee-b3fc-46fc-a437-576b42bb2b5e\", \"f020b5d1-5ac0-4c4d-83f6-ab67bc6dfb48\": \"f020b5d1-5ac0-4c4d-83f6-ab67bc6dfb48\", \"c27977c8-8d38-420a-ae8a-cd48bd5d0f77\": \"c27977c8-8d38-420a-ae8a-cd48bd5d0f77\", \"2a44316f-12b9-4af9-9413-39ce6f9a126d\": \"2a44316f-12b9-4af9-9413-39ce6f9a126d\", \"cd8d3ab6-1259-40a0-a44b-7f679fee56d4\": \"cd8d3ab6-1259-40a0-a44b-7f679fee56d4\", \"f215f5cf-5057-4b73-a09c-a6ef0b073beb\": \"f215f5cf-5057-4b73-a09c-a6ef0b073beb\", \"b5bdd873-3d71-45d3-b88d-06193ffb2cd0\": \"b5bdd873-3d71-45d3-b88d-06193ffb2cd0\", \"ff919679-c51e-4f38-bf87-f5cabb8b85bb\": \"ff919679-c51e-4f38-bf87-f5cabb8b85bb\", \"f32ce356-37da-4a43-a12d-8bf950636c30\": \"f32ce356-37da-4a43-a12d-8bf950636c30\", \"176c89b9-abf7-4e55-bb1c-7af2ccf0f82b\": \"176c89b9-abf7-4e55-bb1c-7af2ccf0f82b\", \"e3729547-1eca-467b-9bb0-fe1804f9a874\": \"e3729547-1eca-467b-9bb0-fe1804f9a874\", \"b33cd473-ff1c-4fd5-9e29-3957daf45389\": \"b33cd473-ff1c-4fd5-9e29-3957daf45389\", \"142c2d96-ae16-4cf2-9256-dd7251e34c94\": \"142c2d96-ae16-4cf2-9256-dd7251e34c94\", \"4acae13b-0545-456d-b97b-aa278ff7ef96\": \"4acae13b-0545-456d-b97b-aa278ff7ef96\", \"5ae511d6-d49d-4ddd-80eb-25edd5a56437\": \"5ae511d6-d49d-4ddd-80eb-25edd5a56437\", \"99d4167f-919f-4a15-bc13-70656440d6a8\": \"99d4167f-919f-4a15-bc13-70656440d6a8\", \"c9459fc0-9e0f-456d-8450-323acb47ce30\": \"c9459fc0-9e0f-456d-8450-323acb47ce30\", \"eabb7bb4-3083-4b5f-9f00-68211f7e32b9\": \"eabb7bb4-3083-4b5f-9f00-68211f7e32b9\", \"9a202e7f-1c69-4845-aca0-5fd6aa403053\": \"9a202e7f-1c69-4845-aca0-5fd6aa403053\", \"53c234b1-1bef-41e7-8d0f-81e4a2e21a09\": \"53c234b1-1bef-41e7-8d0f-81e4a2e21a09\", \"5e4128d2-0246-49c5-97ae-50b5363f547d\": \"5e4128d2-0246-49c5-97ae-50b5363f547d\", \"2b3d28a7-49c8-4f38-92b2-5e2f22c35763\": \"2b3d28a7-49c8-4f38-92b2-5e2f22c35763\", \"d08eb6d7-705b-4369-ab85-17f47f9090b5\": \"d08eb6d7-705b-4369-ab85-17f47f9090b5\", \"ed3797f6-6391-46b7-8c12-723d805edd3f\": \"ed3797f6-6391-46b7-8c12-723d805edd3f\", \"4c2e522d-d8b6-4793-ba0f-38d61ef86ec4\": \"4c2e522d-d8b6-4793-ba0f-38d61ef86ec4\", \"2ece4974-14ce-450b-be09-73076b3913e2\": \"2ece4974-14ce-450b-be09-73076b3913e2\", \"a1aee0ee-beab-4caf-b3f6-a6c22e8e9e0f\": \"a1aee0ee-beab-4caf-b3f6-a6c22e8e9e0f\", \"77848f07-e6f1-4e28-b5e8-2a1e6f01a8a2\": \"77848f07-e6f1-4e28-b5e8-2a1e6f01a8a2\", \"52f57058-d56a-4d99-b021-e100acbf7d99\": \"52f57058-d56a-4d99-b021-e100acbf7d99\", \"ec0b6f9e-fa47-4006-942f-74d62306946c\": \"ec0b6f9e-fa47-4006-942f-74d62306946c\", \"2f45fac7-da65-4dbc-975c-4c0385a61c5a\": \"2f45fac7-da65-4dbc-975c-4c0385a61c5a\", \"3feceeca-3eb9-43ae-95e8-61c9cf5c6d57\": \"3feceeca-3eb9-43ae-95e8-61c9cf5c6d57\", \"84900df3-9ac3-4d8b-a692-cfb617fe1e84\": \"84900df3-9ac3-4d8b-a692-cfb617fe1e84\", \"3603f85b-d8fd-4081-8258-ca892ef85005\": \"3603f85b-d8fd-4081-8258-ca892ef85005\", \"60b8c530-ba1a-41bc-9d6b-3991791bc2b6\": \"60b8c530-ba1a-41bc-9d6b-3991791bc2b6\", \"22d5c08c-b3b9-4ae9-86cd-af3e8edb4af1\": \"22d5c08c-b3b9-4ae9-86cd-af3e8edb4af1\", \"7e725ce8-52cb-49c5-8e0a-bd6d4c21728d\": \"7e725ce8-52cb-49c5-8e0a-bd6d4c21728d\", \"5e5445b6-8ec1-4ab0-ace9-d2f41365a640\": \"5e5445b6-8ec1-4ab0-ace9-d2f41365a640\", \"06acc6e2-25e8-4bf3-9fae-e254fa4a09da\": \"06acc6e2-25e8-4bf3-9fae-e254fa4a09da\", \"35af2b14-e6e5-48fd-9926-2ad98a0ee79a\": \"35af2b14-e6e5-48fd-9926-2ad98a0ee79a\", \"2dbabf73-3621-4277-810f-def259b60568\": \"2dbabf73-3621-4277-810f-def259b60568\", \"308301a6-2983-480c-b771-15de12d77e0f\": \"308301a6-2983-480c-b771-15de12d77e0f\", \"9f03394b-9689-4c1e-a008-2f40d8c0ee0e\": \"9f03394b-9689-4c1e-a008-2f40d8c0ee0e\", \"fce3078e-c270-459f-a637-5009e3c264e1\": \"fce3078e-c270-459f-a637-5009e3c264e1\", \"0efe9dfa-f503-40c3-b065-20103e991baf\": \"0efe9dfa-f503-40c3-b065-20103e991baf\", \"02041b0f-2b6e-4ef5-9bff-b504d45e83c7\": \"02041b0f-2b6e-4ef5-9bff-b504d45e83c7\", \"2d448858-f9d3-4100-99b4-5f915b545d92\": \"2d448858-f9d3-4100-99b4-5f915b545d92\", \"83517c70-7306-4404-b05e-67fb691d01a8\": \"83517c70-7306-4404-b05e-67fb691d01a8\", \"fe552232-5b34-4657-b842-1fd039e24eb2\": \"fe552232-5b34-4657-b842-1fd039e24eb2\", \"60f9d284-345d-448e-b593-0fbe326aa09a\": \"60f9d284-345d-448e-b593-0fbe326aa09a\", \"80badcbb-374e-4a2f-82e0-22acbf1ee2a8\": \"80badcbb-374e-4a2f-82e0-22acbf1ee2a8\", \"b0ac2673-089e-43a9-b004-cb55670d5613\": \"b0ac2673-089e-43a9-b004-cb55670d5613\", \"ff718593-9a32-4079-8566-b2eeccec373d\": \"ff718593-9a32-4079-8566-b2eeccec373d\", \"a0611aa2-9601-457a-9a45-7ebdea9de014\": \"a0611aa2-9601-457a-9a45-7ebdea9de014\", \"f0d8f067-0996-400a-9679-3f8393fc11ff\": \"f0d8f067-0996-400a-9679-3f8393fc11ff\", \"ddf0d0fa-a27a-4231-966b-2d71c5f40d99\": \"ddf0d0fa-a27a-4231-966b-2d71c5f40d99\", \"5aadd0c8-686f-46f2-8311-14f79994b627\": \"5aadd0c8-686f-46f2-8311-14f79994b627\", \"f7f09540-e847-4d0c-a813-b6e580bedcb4\": \"f7f09540-e847-4d0c-a813-b6e580bedcb4\", \"fc8c1d05-99cf-471d-a569-8b4398a28a04\": \"fc8c1d05-99cf-471d-a569-8b4398a28a04\", \"a5af40e6-1d06-41d6-9640-9b0b047b263a\": \"a5af40e6-1d06-41d6-9640-9b0b047b263a\", \"8a8133a4-4245-4942-8cb0-db3cb28c44f9\": \"8a8133a4-4245-4942-8cb0-db3cb28c44f9\", \"2b17d74a-862c-435b-a4fe-b602778b2680\": \"2b17d74a-862c-435b-a4fe-b602778b2680\", \"d27c338e-31f3-4279-a7e5-01daae284dbc\": \"d27c338e-31f3-4279-a7e5-01daae284dbc\", \"baacf820-88ef-4e27-ab64-5a55a04f1e5f\": \"baacf820-88ef-4e27-ab64-5a55a04f1e5f\", \"14a40177-16bb-46f1-96fd-b86f287158c0\": \"14a40177-16bb-46f1-96fd-b86f287158c0\", \"fb1a7658-c476-4a44-b85d-212669923fd8\": \"fb1a7658-c476-4a44-b85d-212669923fd8\", \"94bd70b1-fb83-4c4e-ab35-b1a16a0234b7\": \"94bd70b1-fb83-4c4e-ab35-b1a16a0234b7\", \"b86b8e65-d3fc-4e3b-afe2-48afa23b7a68\": \"b86b8e65-d3fc-4e3b-afe2-48afa23b7a68\", \"a25ada4b-5845-43aa-9c0c-cfd763e4a100\": \"a25ada4b-5845-43aa-9c0c-cfd763e4a100\", \"fef485ab-1d16-4402-9c80-2d89b39599c8\": \"fef485ab-1d16-4402-9c80-2d89b39599c8\", \"25c15c1c-6042-434d-81ab-116505771d66\": \"25c15c1c-6042-434d-81ab-116505771d66\", \"0009b835-6867-4034-a974-e0495b55ed3e\": \"0009b835-6867-4034-a974-e0495b55ed3e\", \"b2588806-3af9-4149-a5a3-95083eb352c0\": \"b2588806-3af9-4149-a5a3-95083eb352c0\", \"16330a08-ad08-496f-a14e-a56c8d8495eb\": \"16330a08-ad08-496f-a14e-a56c8d8495eb\", \"d2150194-dd47-4b24-90d6-24a9ec1930e2\": \"d2150194-dd47-4b24-90d6-24a9ec1930e2\", \"2e92bb78-357e-455b-ab5c-e1e12e4b2da4\": \"2e92bb78-357e-455b-ab5c-e1e12e4b2da4\", \"bc877115-e3e0-4648-bef9-5e10d81a353d\": \"bc877115-e3e0-4648-bef9-5e10d81a353d\", \"939e982a-94d2-49b3-b029-926d0ad796e3\": \"939e982a-94d2-49b3-b029-926d0ad796e3\", \"655b725c-a52f-4e96-93c4-361714c23830\": \"655b725c-a52f-4e96-93c4-361714c23830\", \"9263bd46-63d4-4010-9ef1-ebeb7c96e88f\": \"9263bd46-63d4-4010-9ef1-ebeb7c96e88f\", \"5d83bd6f-d55e-4a3d-b92a-95d2730cec7e\": \"5d83bd6f-d55e-4a3d-b92a-95d2730cec7e\", \"214b63dc-17e6-4093-9efe-b50dac8331a0\": \"214b63dc-17e6-4093-9efe-b50dac8331a0\", \"d04e9b9a-1e28-42c4-ac2a-e59e84cf019b\": \"d04e9b9a-1e28-42c4-ac2a-e59e84cf019b\", \"f4a27cf4-d22f-47b2-bd5e-7cfd3cf286e4\": \"f4a27cf4-d22f-47b2-bd5e-7cfd3cf286e4\", \"4139f092-9cd1-46db-ba5a-5a5759ae4bb1\": \"4139f092-9cd1-46db-ba5a-5a5759ae4bb1\", \"2c693769-1efc-4102-8d1e-253fcede566b\": \"2c693769-1efc-4102-8d1e-253fcede566b\", \"202a5ff9-6f89-4301-a80f-0577d6989b87\": \"202a5ff9-6f89-4301-a80f-0577d6989b87\", \"2977a99a-b5bc-4548-8003-77766a64b591\": \"2977a99a-b5bc-4548-8003-77766a64b591\", \"9950c23a-f73d-423f-b120-fc886fdc8843\": \"9950c23a-f73d-423f-b120-fc886fdc8843\", \"35db1781-d829-46cd-b2df-e30df000dc0d\": \"35db1781-d829-46cd-b2df-e30df000dc0d\", \"9ef54c37-488c-41f4-b826-cf988eb9e138\": \"9ef54c37-488c-41f4-b826-cf988eb9e138\", \"584f6865-e808-41c0-8032-05e75d746feb\": \"584f6865-e808-41c0-8032-05e75d746feb\", \"36f72676-0d86-4d9b-b3c5-18d5cbe0ad06\": \"36f72676-0d86-4d9b-b3c5-18d5cbe0ad06\", \"1fdb1412-26d8-4077-955c-b338014f395c\": \"1fdb1412-26d8-4077-955c-b338014f395c\", \"139ccd73-c4b8-4a69-9349-3584a45b27f6\": \"139ccd73-c4b8-4a69-9349-3584a45b27f6\", \"478492af-909f-4927-afa3-a22f69624c18\": \"478492af-909f-4927-afa3-a22f69624c18\", \"80a01e0f-9042-4493-92d6-a07003cd87a9\": \"80a01e0f-9042-4493-92d6-a07003cd87a9\", \"95e4556b-baf0-40be-a66b-4d2b0eebafb3\": \"95e4556b-baf0-40be-a66b-4d2b0eebafb3\", \"32f9cd78-e1aa-43d6-ad05-0c482996ffb4\": \"32f9cd78-e1aa-43d6-ad05-0c482996ffb4\", \"b0534a2e-7f2a-493d-895f-0ba89a3d940b\": \"b0534a2e-7f2a-493d-895f-0ba89a3d940b\", \"a84349e5-52b8-4073-9487-497ca07f95ee\": \"a84349e5-52b8-4073-9487-497ca07f95ee\", \"59036fe2-a102-4943-b9bf-17e525a18467\": \"59036fe2-a102-4943-b9bf-17e525a18467\", \"f3d35cee-3ccb-41d8-ad38-ff273e598cb5\": \"f3d35cee-3ccb-41d8-ad38-ff273e598cb5\", \"b6473046-4e60-4cac-89fb-ccb09390f1ec\": \"b6473046-4e60-4cac-89fb-ccb09390f1ec\", \"3abae02f-f871-4edb-b3f1-81da237825da\": \"3abae02f-f871-4edb-b3f1-81da237825da\", \"decbaa19-7313-463e-babe-625487666fb0\": \"decbaa19-7313-463e-babe-625487666fb0\", \"e8cd1844-095b-484b-9dad-c95abf3c4373\": \"e8cd1844-095b-484b-9dad-c95abf3c4373\", \"470778ec-4e10-4cb1-9924-88d00b6c258c\": \"470778ec-4e10-4cb1-9924-88d00b6c258c\", \"f6d6b5c8-11e1-49ba-9933-781cd71025df\": \"f6d6b5c8-11e1-49ba-9933-781cd71025df\", \"93ec1759-4667-466e-8bea-d4739b5b8f0b\": \"93ec1759-4667-466e-8bea-d4739b5b8f0b\", \"c1000392-16cf-421a-b25f-5c240de81979\": \"c1000392-16cf-421a-b25f-5c240de81979\", \"91a3f525-e557-44a9-8cff-fffa910a2207\": \"91a3f525-e557-44a9-8cff-fffa910a2207\", \"ea6366c9-d607-441d-b084-f601bb402466\": \"ea6366c9-d607-441d-b084-f601bb402466\", \"a45cd662-89ef-4e64-9475-caae4a08d1f7\": \"a45cd662-89ef-4e64-9475-caae4a08d1f7\", \"65522fe5-fb80-43d0-8032-255f08e75db4\": \"65522fe5-fb80-43d0-8032-255f08e75db4\", \"201432b8-c6a7-4e53-9ae1-5e5e225aaca1\": \"201432b8-c6a7-4e53-9ae1-5e5e225aaca1\", \"5c092d4a-1a6a-42fa-9c88-2c89a652a0c3\": \"5c092d4a-1a6a-42fa-9c88-2c89a652a0c3\", \"0670d79d-270b-40e6-8027-86d4c763781c\": \"0670d79d-270b-40e6-8027-86d4c763781c\", \"9339280a-09ea-42e5-b8f0-5ae819759d6f\": \"9339280a-09ea-42e5-b8f0-5ae819759d6f\", \"6cb2c28c-4858-4f80-b7af-c763074c72db\": \"6cb2c28c-4858-4f80-b7af-c763074c72db\", \"8cb68461-551d-44b1-bd45-789feee27927\": \"8cb68461-551d-44b1-bd45-789feee27927\", \"72157987-ccc4-4b00-b6a9-4206c1635c62\": \"72157987-ccc4-4b00-b6a9-4206c1635c62\", \"d0309d4e-01b1-4bc1-94c9-af1c07a0a294\": \"d0309d4e-01b1-4bc1-94c9-af1c07a0a294\", \"05a15588-4b09-40af-8e2e-e3cfc444a25d\": \"05a15588-4b09-40af-8e2e-e3cfc444a25d\", \"af06e711-3177-4400-bb92-291df03e30dd\": \"af06e711-3177-4400-bb92-291df03e30dd\", \"b9b977cf-0c14-4e1e-bc45-e7620f4d37f2\": \"b9b977cf-0c14-4e1e-bc45-e7620f4d37f2\", \"a2d3b1f4-ad42-4e85-9984-240e9e1ad08d\": \"a2d3b1f4-ad42-4e85-9984-240e9e1ad08d\", \"a130bafd-4da5-4b34-8ec6-a49e3f6f5d97\": \"a130bafd-4da5-4b34-8ec6-a49e3f6f5d97\", \"4a91eaf3-2fa4-4374-a2aa-f9bc3cd25988\": \"4a91eaf3-2fa4-4374-a2aa-f9bc3cd25988\", \"8e3d6776-d318-4d99-bd67-b95466d95eb5\": \"8e3d6776-d318-4d99-bd67-b95466d95eb5\", \"13693d9f-add0-4831-b24e-18baf9b8be19\": \"13693d9f-add0-4831-b24e-18baf9b8be19\", \"70b4a312-c669-4439-89e1-6db8aaadb025\": \"70b4a312-c669-4439-89e1-6db8aaadb025\", \"50dccdcb-69c2-41fa-9490-9234095132f3\": \"50dccdcb-69c2-41fa-9490-9234095132f3\", \"56f95194-e0bf-4d86-bef9-c4112ef570db\": \"56f95194-e0bf-4d86-bef9-c4112ef570db\", \"e8716438-9709-458f-84d4-b7d3fbde4130\": \"e8716438-9709-458f-84d4-b7d3fbde4130\", \"5152f868-b29a-47d3-b9d8-b00239673c47\": \"5152f868-b29a-47d3-b9d8-b00239673c47\", \"998a3b4c-d069-4bed-a7aa-9874021d7572\": \"998a3b4c-d069-4bed-a7aa-9874021d7572\", \"d692095e-53cf-4583-969f-34d0abcb3eb9\": \"d692095e-53cf-4583-969f-34d0abcb3eb9\", \"5d95abb7-0902-4779-8d44-fedef73fd58d\": \"5d95abb7-0902-4779-8d44-fedef73fd58d\", \"ef58638f-76af-4f77-a459-560c3d95561b\": \"ef58638f-76af-4f77-a459-560c3d95561b\", \"91aec09e-c299-451a-bee5-36cc906bf2ce\": \"91aec09e-c299-451a-bee5-36cc906bf2ce\", \"0f6df599-a7d7-4b74-99f7-cddd754c7717\": \"0f6df599-a7d7-4b74-99f7-cddd754c7717\", \"ce949a35-c420-4642-8f65-2ad80b27fe15\": \"ce949a35-c420-4642-8f65-2ad80b27fe15\", \"0067c7fe-dbac-4676-b633-bbd243898fd9\": \"0067c7fe-dbac-4676-b633-bbd243898fd9\", \"93687e9e-a133-4f4a-97eb-6a7c6561d8b8\": \"93687e9e-a133-4f4a-97eb-6a7c6561d8b8\", \"e71be8f0-fe30-480b-9e5c-86141c78d8a4\": \"e71be8f0-fe30-480b-9e5c-86141c78d8a4\", \"8f323bf4-8b81-4f6f-a61f-ac1ca7407c49\": \"8f323bf4-8b81-4f6f-a61f-ac1ca7407c49\", \"9357024f-1e70-4c6e-b046-cc395bfe494d\": \"9357024f-1e70-4c6e-b046-cc395bfe494d\", \"05060b83-66bd-46d0-b5d4-c556fc94bf29\": \"05060b83-66bd-46d0-b5d4-c556fc94bf29\", \"76fe5b6a-11e4-4441-b16d-26cc1fa953b5\": \"76fe5b6a-11e4-4441-b16d-26cc1fa953b5\", \"f5ee3b52-aa3e-4bd0-8f27-79c40c81d3c7\": \"f5ee3b52-aa3e-4bd0-8f27-79c40c81d3c7\", \"23e852e5-02c3-408e-999f-c6fdea194a32\": \"23e852e5-02c3-408e-999f-c6fdea194a32\", \"2219935e-cd84-4325-9c68-e9f3c2e61faa\": \"2219935e-cd84-4325-9c68-e9f3c2e61faa\", \"63f43023-e476-4c1a-ae99-c7774894fb2f\": \"63f43023-e476-4c1a-ae99-c7774894fb2f\", \"b8c9a66f-86ef-4958-b219-f27093a055b8\": \"b8c9a66f-86ef-4958-b219-f27093a055b8\", \"3a824442-4ed5-4847-96d3-dc2ca1324cfa\": \"3a824442-4ed5-4847-96d3-dc2ca1324cfa\", \"47dc984f-45b2-460d-bf79-5ee6e0a84bfd\": \"47dc984f-45b2-460d-bf79-5ee6e0a84bfd\", \"ae06d6a1-33fc-4b36-ae30-afcb8ed34d06\": \"ae06d6a1-33fc-4b36-ae30-afcb8ed34d06\", \"c348e27e-07a9-4eb0-96bf-ba067c1b993f\": \"c348e27e-07a9-4eb0-96bf-ba067c1b993f\", \"542517e7-3531-412e-8101-736be1fcdfe0\": \"542517e7-3531-412e-8101-736be1fcdfe0\", \"c17d5b9f-b642-4903-b56b-8ec46fa02441\": \"c17d5b9f-b642-4903-b56b-8ec46fa02441\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} From 34255bb8a1ae80fffe6e8d4a8a9f05e4966dec3b Mon Sep 17 00:00:00 2001 From: rchan Date: Wed, 12 Jun 2024 23:18:38 +0100 Subject: [PATCH 06/11] fix properly the mapping to azuregpt --- reginald/models/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reginald/models/__init__.py b/reginald/models/__init__.py index 5e4684d7..1ae7abf6 100644 --- a/reginald/models/__init__.py +++ b/reginald/models/__init__.py @@ -48,7 +48,7 @@ def get_model(model_name: str): LlamaIndexGPTAzure, ) - return LlamaIndexGPTOpenAI + return LlamaIndexGPTAzure case "llama-index-gpt-openai": from reginald.models.llama_index.llama_index_openai import ( LlamaIndexGPTOpenAI, From 3ca1c2ba283522c739cca68d5b3e5f6fba84c4e1 Mon Sep 17 00:00:00 2001 From: KatrionaGoldmann Date: Thu, 13 Jun 2024 10:59:11 +0100 Subject: [PATCH 07/11] chore: fix --- poetry.lock | 1 + 1 file changed, 1 insertion(+) diff --git a/poetry.lock b/poetry.lock index 25985655..b68a58e4 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3517,6 +3517,7 @@ files = [ {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_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, {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"}, From c32ca65d2ca1ea8906be85ed446ffad2e24de28c Mon Sep 17 00:00:00 2001 From: Dr Griffith Rees Date: Thu, 13 Jun 2024 11:19:13 +0100 Subject: [PATCH 08/11] chore: update `pyproject.toml` `authors` --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 11e98a96..ff73adc0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,9 @@ authors = ["Evelina Gabasova ", "David Beavan ", "Levan Bokeria ", "Martin O'Reilly ", - "Oliver Strickson "] + "Oliver Strickson ", + "Katriona Goldmann ", + "Griffith Rees "] readme = "README.md" [tool.poetry.dependencies] From 5118d1bc01fadd830e9041ad745a863003ea3d89 Mon Sep 17 00:00:00 2001 From: rchan Date: Thu, 13 Jun 2024 12:08:49 +0100 Subject: [PATCH 09/11] fix passing of data-dir and which-index --- azure/README.md | 4 ++-- reginald/run.py | 10 ++++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/azure/README.md b/azure/README.md index bda24393..af80a647 100644 --- a/azure/README.md +++ b/azure/README.md @@ -48,6 +48,6 @@ You will need to source this file before deploying in the next step. 4. Deploy with Pulumi ```bash -> source .secrets (if this exists) -> AZURE_KEYVAULT_AUTH_VIA_CLI=true pulumi up +source .secrets +AZURE_KEYVAULT_AUTH_VIA_CLI=true pulumi up ``` diff --git a/reginald/run.py b/reginald/run.py index 26bb0993..ef1c6fb1 100644 --- a/reginald/run.py +++ b/reginald/run.py @@ -19,6 +19,8 @@ def main( asyncio.run( run_full_pipeline( + data_dir=data_dir, + which_index=which_index, slack_app_token=slack_app_token, slack_bot_token=slack_bot_token, **kwargs, @@ -38,7 +40,9 @@ def main( elif cli == "app": from reginald.models.app import run_reginald_app - asyncio.run(run_reginald_app(**kwargs)) + asyncio.run( + run_reginald_app(data_dir=data_dir, which_index=which_index, **kwargs) + ) elif cli == "chat": import warnings @@ -46,7 +50,9 @@ def main( from reginald.models.chat_interact import run_chat_interact - run_chat_interact(streaming=streaming, **kwargs) + run_chat_interact( + streaming=streaming, data_dir=data_dir, which_index=which_index, **kwargs + ) elif cli == "create_index": from reginald.models.create_index import create_index From 21d81657969586a78daadb57ad30afbbe645f612 Mon Sep 17 00:00:00 2001 From: Dr Griffith Rees Date: Thu, 13 Jun 2024 14:08:20 +0100 Subject: [PATCH 10/11] feat(ci): add `-h` abbreviation for `--help` --- reginald/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reginald/cli.py b/reginald/cli.py index 076f3c30..0b9c79d7 100644 --- a/reginald/cli.py +++ b/reginald/cli.py @@ -34,7 +34,7 @@ "slack_bot_token": "Slack bot token for the bot.", } -cli = typer.Typer() +cli = typer.Typer(context_settings={"help_option_names": ["-h", "--help"]}) def set_up_logging_config(level: int = 20) -> None: From 9cad1235f14a0f31f6877d018ab2c2ab821e6646 Mon Sep 17 00:00:00 2001 From: rchan Date: Thu, 13 Jun 2024 14:09:42 +0100 Subject: [PATCH 11/11] app shouldnt be a async func --- reginald/models/app.py | 2 +- reginald/run.py | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/reginald/models/app.py b/reginald/models/app.py index 04808e40..beedae0a 100644 --- a/reginald/models/app.py +++ b/reginald/models/app.py @@ -43,7 +43,7 @@ async def channel_mention(query: Query): return app -async def run_reginald_app(**kwargs) -> None: +def run_reginald_app(**kwargs) -> None: # set up response model response_model = setup_llm(**kwargs) app: FastAPI = create_reginald_app(response_model) diff --git a/reginald/run.py b/reginald/run.py index ef1c6fb1..75a3cd69 100644 --- a/reginald/run.py +++ b/reginald/run.py @@ -40,9 +40,7 @@ def main( elif cli == "app": from reginald.models.app import run_reginald_app - asyncio.run( - run_reginald_app(data_dir=data_dir, which_index=which_index, **kwargs) - ) + run_reginald_app(data_dir=data_dir, which_index=which_index, **kwargs) elif cli == "chat": import warnings