diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..edaac7e --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,50 @@ +name: Docs + +on: + release: + types: + - published + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + docs: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: ["ubuntu-latest"] + python-version: ["3.12"] + steps: + - uses: actions/checkout@v4 + - name: Install the latest version of rye + uses: eifinger/setup-rye@v3 + - name: Sync dependencies + shell: bash -l {0} + run: rye sync + - name: Build docs + shell: bash -l {0} + run: rye run docs + - name: Upload HTML artificat + uses: actions/upload-artifact@v4 + with: + name: DocumentationHTML + path: docs/_build/html/ + - name: Commit to gh-pages + run: | + git clone https://github.com/ammaraskar/sphinx-action-test.git --branch gh-pages --single-branch gh-pages + cp -r docs/_build/html/* gh-pages/ + cd gh-pages + touch .nojekyll + git config --local user.email "action@github.com" + git config --local user.name "GitHub Action" + git add . + git commit -m "Update documentation" -a || true + # The above command will fail if no changes were present + - name: Push changes + uses: ad-m/github-push-action@master + with: + branch: gh-pages + directory: gh-pages + force: true diff --git a/Dockerfile b/Dockerfile index cfbb3aa..6b46437 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,4 @@ # https://docs.streamlit.io/deploy/tutorials/docker -# docker build -t alice-rag-llm . -# docker run -p 8501:8501 -e GEMINI_API_TOKEN="AIzaSyA3zVz7txsa4jttqMCAKlKrtPQwXcGb6J8" alice-rag-llm - FROM python:3.12-slim WORKDIR /app diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..d4bb2cb --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = . +BUILDDIR = _build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/_templates/base.rst b/docs/_templates/base.rst new file mode 100644 index 0000000..b7556eb --- /dev/null +++ b/docs/_templates/base.rst @@ -0,0 +1,5 @@ +{{ fullname | escape | underline}} + +.. currentmodule:: {{ module }} + +.. auto{{ objtype }}:: {{ objname }} diff --git a/docs/_templates/class.rst b/docs/_templates/class.rst new file mode 100644 index 0000000..b29757c --- /dev/null +++ b/docs/_templates/class.rst @@ -0,0 +1,32 @@ +{{ fullname | escape | underline}} + +.. currentmodule:: {{ module }} + +.. autoclass:: {{ objname }} + :members: + :show-inheritance: + :inherited-members: + + {% block methods %} + .. automethod:: __init__ + + {% if methods %} + .. rubric:: {{ _('Methods') }} + + .. autosummary:: + {% for item in methods %} + ~{{ name }}.{{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block attributes %} + {% if attributes %} + .. rubric:: {{ _('Attributes') }} + + .. autosummary:: + {% for item in attributes %} + ~{{ name }}.{{ item }} + {%- endfor %} + {% endif %} + {% endblock %} diff --git a/docs/_templates/module.rst b/docs/_templates/module.rst new file mode 100644 index 0000000..15e8848 --- /dev/null +++ b/docs/_templates/module.rst @@ -0,0 +1,62 @@ +{{ fullname | escape | underline}} + +.. automodule:: {{ fullname }} + :members: + + {% block attributes %} + {% if attributes %} + .. rubric:: {{ _('Module Attributes') }} + + .. autosummary:: + {% for item in attributes %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block functions %} + {% if functions %} + .. rubric:: {{ _('Functions') }} + + .. autosummary:: + {% for item in functions %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block classes %} + {% if classes %} + .. rubric:: {{ _('Classes') }} + + .. autosummary:: + :template: class.rst + {% for item in classes %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + + {% block exceptions %} + {% if exceptions %} + .. rubric:: {{ _('Exceptions') }} + + .. autosummary:: + {% for item in exceptions %} + {{ item }} + {%- endfor %} + {% endif %} + {% endblock %} + +{% block modules %} +{% if modules %} +.. rubric:: Modules + +.. autosummary:: + :toctree: + :template: module.rst +{% for item in modules %} + {{ item }} +{%- endfor %} +{% endif %} +{% endblock %} diff --git a/docs/api.rst b/docs/api.rst new file mode 100644 index 0000000..9cd062c --- /dev/null +++ b/docs/api.rst @@ -0,0 +1,12 @@ +API +=== + +Auto-generated summary of the different modules of Alice RAG. + +.. autosummary:: + :toctree: _autosummary + :template: module.rst + :recursive: + + app + store diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000..8c1c8f5 --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,38 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html +import os +import sys + +sys.path.insert(0, os.path.abspath("../src")) + +# -- Project information +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information +project = "Alice RAG" +copyright = "2024" +author = "Philippe Miron" + +# -- General configuration +extensions = [ + "sphinx.ext.autodoc", + "sphinx.ext.mathjax", + "sphinx.ext.viewcode", + "sphinx.ext.autosummary", + "sphinx.ext.doctest", + "sphinx.ext.inheritance_diagram", + "sphinx_copybutton", +] + +autosummary_generate = True +templates_path = ["_templates"] +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] + +# -- Options for HTML output +html_theme = "sphinx_book_theme" +html_logo = "logo.webp" +html_favicon = "favicon.ico" +html_static_path: list[str] = [] + +# sphinx-copybutton settings +copybutton_exclude = ".linenos, .gp" # don't copy prompts or line numbers diff --git a/docs/description.rst b/docs/description.rst new file mode 100644 index 0000000..1f74d09 --- /dev/null +++ b/docs/description.rst @@ -0,0 +1,79 @@ +.. _description: + +Description +=========== + +This page gives a global overview of the application, its components, and the underlying technologies used to build it. The following sections provide a detailed description of the system's architecture, user interaction, and the AI models employed. + +User Interaction +---------------- + +Built using `Streamlit `_, the interface is designed to be user-friendly, intuitive, and efficient for interacting with the Retrieval-Augmented Generation system. The key components are: + +- Chat Window: The primary area where the conversation takes place. This window displays user inputs and the corresponding responses from Gemini in a chat-like format. AI responses are streamed in real-time to enhance user feedback and interaction. A small icon next to the messages makes it easy to distinguish user queries and AI responses. + +- Sidebar: Includes the available model that can be used to query the document. The user can select the desired model from the radio button to optimize the performance of the system. + +- Input Field: A text box where users can type their questions, commonly referred as prompts. + +- Send Button: A button to submit the text entered in the input field. This can be clicked or activated by pressing the Enter key on the keyboard. + +Document Retrieval (VectorStore) +-------------------------------- + +We utilize `LlamaIndex `_ for ingesting the documents, and creating easily creating the vector store. The embedding model used is `BAAI/bge-small-en-v1.5 `_. + +When a user provides a `{query}`, it is appended to the following prefix: `Represent this sentence for searching relevant passages: {query}`, as recommended in `BAAI's documentation `_. + +Note: For this proof of concept, I did not explore many different embedding models. The selected model was chosen based on a recommendation from a RAG tutorial in the `LlamaIndex documentation `_. In a real-world scenario, it would be beneficial to benchmark various models to optimize the user experience. + +Prompt Generation +----------------- + +We combine results from vector store retrieval with the user's query to generate a prompt for the selected Gemini model. + +The prompt was designed based on guidelines provided in the `Gemini documentation `_ and this insightful article on understanding `RAG `_ architecture. + +Specifically, the top relevant passages and the user query are concatenated in the following format: + +.. code-block:: python + + def make_rag_prompt(query: str, relevant_passages: list[str]) -> str: + """Generate the RAG prompt + + Args: + query (str): user query + relevant_passages (list[str]): list of relevant passages obtained from the index + + Returns: + str: the prompt to pass to the LLM API + """ + escaped_passages = " ".join( + passage.replace("'", "").replace('"', "").replace("\n", " ") + for passage in relevant_passages + ) + + prompt = ( + "You are a helpful and informative bot that answers questions using text from " + "the reference passages included below. Be sure to respond in a complete sentence, " + "being comprehensive, including all relevant background information. However, you " + "are talking to a non-technical audience, so be sure to break down complicated " + "concepts and strike a friendly and conversational tone. If the passages are " + "irrelevant to the answer, you may ignore them.\n" + f"QUESTION: '{query}'\n" + f"PASSAGES: '{escaped_passages}'\n\n" + "ANSWER:\n" + ) + + return prompt + +Large Language Model +-------------------- + +Choices of three models from the Gemini's family are available. The choice of model was simply made because Google offer limited free tier API! The current available models are: + +- Gemini 1.0 Pro +- Gemini 1.5 Pro +- Gemini 1.5 Flash + +The first model is from the previous generation, it is slightly faster but returns simpler and less accurate answer as the newer models. The two latest models are more accurate, in practice would be more expensive, and are slightly slower. The default model is set to `Gemini 1.5 Flash`, which provides fast and versatile performance across diverse variety of tasks. The user can change the model on the left sidebar of the interface to optimize their experience. diff --git a/docs/favicon.ico b/docs/favicon.ico new file mode 100644 index 0000000..2681dda Binary files /dev/null and b/docs/favicon.ico differ diff --git a/docs/index.rst b/docs/index.rst new file mode 100644 index 0000000..402147a --- /dev/null +++ b/docs/index.rst @@ -0,0 +1,45 @@ +Alice RAG +========= + +Alice Retrieval-Augmented Generation (RAG) is a proof of concept application designed to answer queries about *Alice's Adventures in Wonderland*, Lewis Carroll's timeless classic. This innovative solution leverages the power of modern AI to combine the strengths of retrieval-based and generation-based approaches. By integrating a language model with a customized knowledge store, "Alice RAG" can accurately and efficiently retrieve and generate responses. + +This project showcases my ability to implement advanced AI techniques, containerization, CI/CD, documentation, and web-based interaction using `Streamlit `_, all while adhering to best practices in software development and deployment. + +Alice RAG stands out by utilizing the LlamaIndex framework to create a vector database from *Alice's Adventures in Wonderland*, enabling precise and contextually relevant responses to user queries. The code then employs Gemini models to generate answers based on the retrieved context, ensuring high-quality and accurate responses. The solution is containerized using Docker, ensuring seamless deployment and scalability, and is designed to be cloud-ready, with optional Infrastructure as Code (IaC) scripts for Azure deployment. The project demonstrates a full-stack AI application reflecting my comprehensive skill set in AI engineering, DevOps, and cloud infrastructure management. Through this project, I aim to illustrate my capability to deliver robust, efficient, and user-friendly AI solutions in a professional setting. + +Getting started +--------------- + +* :doc:`description` +* :doc:`usage` + +.. toctree:: + :hidden: + :maxdepth: 2 + :caption: Getting started + + description + usage + +Reference +--------- + +* :doc:`api` +* GitHub_ + +.. toctree:: + :hidden: + :maxdepth: 2 + :caption: Reference + + api + GitHub + +.. _github: https://github.com/philippemiron/alice-rag-llm + +Indices and tables +------------------ + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/docs/logo.webp b/docs/logo.webp new file mode 100644 index 0000000..ae8dd45 Binary files /dev/null and b/docs/logo.webp differ diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 0000000..32bb245 --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=. +set BUILDDIR=_build + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "" goto help + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/docs/usage.rst b/docs/usage.rst new file mode 100644 index 0000000..408c4bb --- /dev/null +++ b/docs/usage.rst @@ -0,0 +1,44 @@ +.. _usage: + +Usage +===== + +This section provides a detailed guide on how to use the Alice RAG application. The application is designed to answer questions about *Alice's Adventures in Wonderland* using a combination of retrieval-based and generative AI techniques. + +Build the container +------------------- + +To build the container for Alice RAG, follow these steps. The Dockerfile in the repository is configured to set up the necessary environment and dependencies for the application. + +Note: that this requires a functional `Docker `_ installation on your machine. + +.. code-block:: shell + + >>> git@github.com:philippemiron/alice-rag-llm.git + >>> cd alice-rag-llm + >>> docker build -t alice-rag-llm . + +This will create a container image named `alice-rag-llm`, that you should be able to see in your local Docker registry (`docker images`) + +Running locally +--------------- + +To run the container locally and interact with the Alice RAG system, follow these steps: + +- Ensure you have a valid Gemini API token. This token is required to interact with the Gemini model and can be obtained on the Gemini API `website `_ (free tier available). +- Use the following command to run the Docker container, which will expose the application on port 8501, set the `GEMINI_API_TOKEN` environment variable, and run the application on the local machine. Note that in a real-world scenario, this token would be stored securely in a secret management system, but since the image is freely available on DockerHub for this POC, it is passed as an environment variable. + +.. code-block:: shell + + >>> docker run -p 8501:8501 -e GEMINI_API_TOKEN="TOKEN_STRING" alice-rag-llm + +The application will be accessible locally at `http://0.0.0.0:8501 `_. + +Running from DockerHub +---------------------- + +The container is also available on DockerHub as `pmiron/alice-rag-llm `_. Similarly, you can pull the image from the repository and run it directly on your local machine. + +.. code-block:: shell + + >>> docker run -p 8501:8501 -e GEMINI_API_TOKEN="TOKEN_STRING" pmiron/alice-rag-llm:latest diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/alice_rag_llm/__init__.py b/src/alice_rag_llm/__init__.py deleted file mode 100644 index 0e3f6c3..0000000 --- a/src/alice_rag_llm/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -def hello() -> str: - return "Hello from alice-rag-llm!" diff --git a/src/app.py b/src/app.py index 7376424..a0f1c75 100644 --- a/src/app.py +++ b/src/app.py @@ -17,8 +17,10 @@ # https://docs.llamaindex.ai/en/stable/module_guides/models/embeddings/ def init_vector_store() -> VectorIndexRetriever: - """ - Initialize the vector store index + """Initialize the vector store + + Returns: + VectorIndexRetriever: an object to query the index """ # create a class to generate this and save to the image # load book(s) @@ -46,7 +48,8 @@ def init_vector_store() -> VectorIndexRetriever: # https://model.baai.ac.cn/model-detail/100112 # Represent this sentence for searching relevant passages: Settings.embed_model = HuggingFaceEmbedding( - model_name="BAAI/bge-small-en-v1.5", cache_folder="bge-small-en-v1.5/" + model_name="BAAI/bge-small-en-v1.5", + cache_folder=os.path.join(os.path.dirname(__file__), "bge-small-en-v1.5/"), ) documents = StorageContext.from_defaults( @@ -93,7 +96,7 @@ def call_llm(prompt: str) -> Generator[str, None, None]: prompt (str): _description_ Yields: - _type_: _description_ + Generator[str]: LLM response stream """ response = st.session_state["llm"].generate_content(prompt, stream=True) for chunk in response: diff --git a/src/store.py b/src/store.py index 3a4b83f..fb1a552 100644 --- a/src/store.py +++ b/src/store.py @@ -1,29 +1,27 @@ """ -Functions for VectorClass +Module containing VectorClass utility """ -def VectorClass(): - """asdaskjdha akjshdakjshd akjshdakjsh akjshd akjshd akjshdakj shakjshd""" +class VectorClass: + """Class for VectorClass""" def __init__(self, vector, prompt): self.vector = vector self.prompt = prompt + def init_embedding(): + """Init vector stor -def init_vector_store(): - """_summary_ + Returns: + _type_: _description_ + """ + return [] - Returns: - _type_: _description_ - """ - return [] + def store_vector(vector, prompt): + """Save embedding model - -def store_vector(vector, prompt): - """_summary_ - - Args: - vector (_type_): _description_ - prompt (_type_): _description_ - """ + Args: + vector (_type_): _description_ + prompt (_type_): _description_ + """ diff --git a/src/store/default__vector_store.json b/src/store/default__vector_store.json new file mode 100644 index 0000000..629b42d --- /dev/null +++ b/src/store/default__vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"2c486807-00fb-455e-a12b-d3785b3775a6": [-0.08211326599121094, -0.03756788372993469, 0.07200080156326294, 0.0858180969953537, 0.010529537685215473, 0.0320945680141449, 0.0007485211244784296, 0.022032389417290688, -0.054100457578897476, -0.016639333218336105, 0.015326608903706074, 0.0122709721326828, -0.059783123433589935, -0.06751053780317307, -0.08465280383825302, -0.00819468591362238, 0.006753209047019482, -0.07556691765785217, -0.09260670840740204, 0.027575144544243813, 0.05544152110815048, -0.04842104762792587, 0.03562787175178528, 0.019918903708457947, -0.014414520934224129, 0.04838690534234047, 0.029353506863117218, -0.022607095539569855, -0.020614467561244965, -0.16845764219760895, 0.013755506835877895, -0.007149357348680496, -0.016023240983486176, 0.0037040328606963158, 0.03153873607516289, 0.031262148171663284, 0.03484579175710678, -0.0046972488053143024, 0.03418537601828575, 0.013776497915387154, -0.0018605050863698125, 0.02512305974960327, 0.010434800758957863, -0.011926145292818546, 0.059828028082847595, -0.03011133521795273, -0.04725442826747894, -0.021649934351444244, -0.008054802194237709, -0.03799882158637047, -0.06703846156597137, -0.039593081921339035, 0.023048387840390205, -0.023903027176856995, -0.03257093206048012, 0.06405231356620789, 0.0663246363401413, -0.03069123439490795, 0.041563525795936584, -0.005181114189326763, 0.07496108114719391, 0.011503578163683414, -0.1050773486495018, 0.1065613254904747, 0.07165437936782837, 0.017613932490348816, -0.05901190638542175, 0.030089564621448517, 0.0006947870715521276, 0.012218370102345943, -0.0787222608923912, 0.010178818367421627, 0.01591898500919342, 0.034571774303913116, -0.00796215794980526, 0.021408934146165848, 0.03837810829281807, -0.025139911100268364, -0.011813205666840076, -0.029381848871707916, -0.0758136510848999, -0.012005483731627464, -0.007154138758778572, 0.036033619195222855, 0.02092020958662033, -0.03433220088481903, 0.0504094734787941, -0.0271180160343647, -0.02565627545118332, 2.223058618255891e-05, 0.02618836611509323, -0.0558415986597538, -0.012822113931179047, 0.024977965280413628, -0.04848124831914902, 0.03547589108347893, -0.04016698896884918, -0.007110060192644596, 0.07890442758798599, 0.36788210272789, 0.013512639328837395, 0.020823733881115913, 0.01042222511023283, 0.014332548715174198, -0.02467065490782261, 0.010795249603688717, 0.04297899827361107, -0.056526247411966324, 0.03798205778002739, 0.01958775706589222, 0.00314588681794703, 0.02629326470196247, 0.02273365668952465, 0.04823128506541252, 0.011159481480717659, 0.029268963262438774, 0.012210414744913578, -0.02525894157588482, 0.013881242834031582, 0.05556013062596321, 0.008330735377967358, 0.013457532972097397, -0.012143997475504875, -0.027465229853987694, -0.0011142207076773047, -0.024095550179481506, 0.05999622866511345, 0.06833983212709427, -0.019617971032857895, -0.055994946509599686, 0.04358444735407829, -0.01957382634282112, 0.012091333046555519, 0.03350792080163956, -0.010545168071985245, -0.021044665947556496, -0.013719837181270123, -0.003173798555508256, 0.04847555607557297, -0.04912619665265083, -0.012552796863019466, -0.1162499487400055, -0.04938386380672455, -0.0418534018099308, -0.04780258238315582, 0.009413260966539383, 0.052566662430763245, 0.027274800464510918, 0.008221822790801525, 0.046895772218704224, 0.04362490400671959, 0.04366094619035721, -0.012284085154533386, -0.020584924146533012, 0.051895417273044586, 0.017932947725057602, 0.021641075611114502, 0.18105491995811462, -0.019594617187976837, -0.013750484213232994, -0.01248018629848957, -0.018831394612789154, 0.03332916274666786, 0.03316241502761841, -0.003421179484575987, -0.038270656019449234, 0.008117138408124447, -0.0494493804872036, -0.081892229616642, -0.03431675210595131, 0.011147073470056057, 0.05773520842194557, -0.09200532734394073, 0.10297746956348419, 0.017710570245981216, 0.03539511561393738, -0.015876639634370804, 0.010926919057965279, 0.020087888464331627, 0.04059108719229698, -0.05203051120042801, -0.053663142025470734, 0.006412832997739315, -0.004190042149275541, -0.025008942931890488, -0.012335176579654217, -0.013660016469657421, 0.023554308339953423, 0.06793452054262161, -0.031044824048876762, 0.03259919211268425, -0.0194800216704607, -0.02581150084733963, 0.07381938397884369, -0.06430824846029282, -0.06698787957429886, -0.02311106212437153, -0.01973460428416729, -0.046428948640823364, -0.07856110483407974, -0.02056361734867096, -0.04613134264945984, -0.05211964622139931, -0.0006721075624227524, 0.01883028820157051, -0.04735613241791725, 0.047393180429935455, -0.06644786149263382, 0.07516191154718399, 0.02943040058016777, -0.018901608884334564, 0.0035116972867399454, -0.04598980396986008, 0.014798934571444988, -0.03031139075756073, 0.0010479072807356715, 0.022615831345319748, 0.04155160114169121, -0.05832727253437042, 0.0207041185349226, -0.028942683711647987, -0.12649090588092804, -0.05594729632139206, -0.2836238145828247, -0.041671253740787506, -0.013115325942635536, -0.06516233086585999, 0.07094030827283859, -0.06976528465747833, 0.013516735285520554, -0.04633190482854843, 0.03975445032119751, 0.026323329657316208, -0.008509313687682152, -0.07777848094701767, 0.01711133122444153, 0.0019071631832048297, -0.00021119590383023024, 0.03485047444701195, -0.09171784669160843, 0.009317724965512753, 0.020855816081166267, 0.04940330982208252, 0.03687581419944763, 0.03335956111550331, -0.018878407776355743, -0.014162830077111721, -0.026092182844877243, 0.014970298856496811, 0.13077525794506073, 0.03715987130999565, 0.030061829835176468, 0.008913491852581501, 0.013946006074547768, 0.05988423526287079, -0.06567317992448807, -0.026782820001244545, -0.00778229720890522, 0.03437478467822075, -0.024999836459755898, 0.005209397524595261, 0.019563447684049606, -0.03580877184867859, -0.08868066966533661, 0.11178801953792572, 0.023207874968647957, 0.05801175907254219, -0.04657551646232605, 0.020716805011034012, -0.05020761117339134, -0.01840120740234852, -0.018549839034676552, 0.038564544171094894, 0.009540743194520473, 0.023857872933149338, -0.07161472737789154, -0.02478288672864437, -0.048395853489637375, 0.0003183279186487198, -0.02457272633910179, -0.022430168464779854, -0.038544803857803345, 0.009672535583376884, 0.0017806550022214651, -0.02180616930127144, 0.05350182205438614, -0.05137546360492706, -0.0029467460699379444, 0.03139699250459671, -0.0007676499080844223, -0.03092525713145733, 0.023730967193841934, 1.7134161680587567e-05, -0.007703477516770363, 0.03790322691202164, 0.026301883161067963, -0.024329405277967453, -0.030502863228321075, 0.03881559148430824, 0.057539019733667374, 0.0034106732346117496, -0.0030898842960596085, 0.008708781562745571, -0.035418324172496796, -0.02922135964035988, 0.006464974954724312, 0.009668429382145405, -0.04279089346528053, -0.00998129416257143, -0.03608381748199463, -0.045626088976860046, 0.029709091410040855, -0.019074821844697, -0.046287957578897476, 0.04039059951901436, -0.016562340781092644, 0.029137132689356804, 0.0586814321577549, 0.028305940330028534, -0.22410033643245697, 0.0038119673263281584, 0.034107547253370285, 0.059274110943078995, 0.04043624922633171, 0.04127055034041405, -0.0028247886803001165, -0.019267244264483452, 0.03466452285647392, -0.024600032716989517, 0.0929102674126625, -0.003271688474342227, -0.0015370110049843788, -0.06173604354262352, -0.037164632230997086, 0.04706008359789848, 0.06445028632879257, 0.06509576737880707, -0.027077727019786835, 0.04210726544260979, 0.04143723100423813, 0.07637191563844681, 0.12130048125982285, 0.0697491243481636, -0.07730995863676071, -0.0399695485830307, 0.013445780612528324, 0.06212720274925232, 0.03440128266811371, 0.06242546811699867, 0.004992800299078226, 0.033777426928281784, 0.06365726888179779, 0.008394011296331882, -0.00838013831526041, -0.04659539461135864, 0.012844430282711983, 0.013975868932902813, 0.03288992866873741, 0.007350941188633442, -0.06846947222948074, -0.0032692067325115204, 0.0110792126506567, -0.006445593666285276, 0.04410233721137047, 0.015767909586429596, -0.009627935476601124, -0.05307484790682793, -0.07634517550468445, 0.06943000853061676, -0.04665607959032059, -0.04120798781514168, -0.03783753886818886, -0.004211196210235357, 0.029337722808122635, 0.039334334433078766, -0.01642395555973053, 0.036112602800130844, -0.02592036873102188, -0.04181891307234764, -0.05935615673661232, -0.0008989419438876212, 0.09204607456922531, 0.011910357512533665, 0.020738553255796432], "4c27fcde-4cfa-478f-93f8-11e29b973e5c": [-0.0913190096616745, -0.04785330221056938, 0.07224135100841522, 0.08596418797969818, 0.029820241034030914, 0.012317152693867683, 0.04239800199866295, 0.00541377067565918, -0.005575571209192276, -0.016390275210142136, 0.0007737724226899445, -0.017255859449505806, -0.010148001834750175, -0.008732030168175697, -0.03209630399942398, 0.01506632100790739, -0.048715345561504364, -0.04428499937057495, -0.15058664977550507, 0.03611794114112854, 0.0453772135078907, -0.04055934026837349, 0.04412621632218361, 0.009939595125615597, -0.04073171317577362, 0.040549036115407944, 0.03463670611381531, -0.06780127435922623, -0.007468988187611103, -0.15962179005146027, 0.0007735043182037771, -0.014750628732144833, -0.006404147483408451, 0.02242150343954563, 0.03697160631418228, 0.0845724418759346, 0.027261575683951378, 0.003915553912520409, 0.024852784350514412, 0.01568426564335823, 0.02880476415157318, -0.02025078795850277, -0.018032342195510864, -0.013503196649253368, 0.05178153142333031, -0.07408658415079117, 0.04677344486117363, -0.0034606624394655228, 0.0242388267070055, -0.03622131794691086, -0.034225061535835266, 0.003087906865403056, -0.016509009525179863, -0.00945676863193512, -0.00918555073440075, 0.050923630595207214, 0.05337703600525856, 0.008118336088955402, 0.049072060734033585, -0.00647925678640604, 0.09172277897596359, 0.016293663531541824, -0.06736074388027191, 0.03442027047276497, 0.09076279401779175, 0.0012717434437945485, -0.04497486725449562, -0.06250833719968796, 0.0231316015124321, 0.0014171651564538479, 0.018941225484013557, 0.008626455441117287, -0.0037108527030795813, 0.050631798803806305, 0.012558088637888432, 0.028740989044308662, 0.05555674433708191, -0.01408973429352045, 0.011020023375749588, 0.015656745061278343, -0.039746690541505814, 0.026495616883039474, -0.02864919975399971, 0.041630979627370834, -0.0011642399476841092, -0.03993777185678482, 0.007746451068669558, -0.020420430228114128, -0.005885239224880934, -0.04269232600927353, 0.04424974322319031, -0.0441540889441967, -0.03983176127076149, -0.000355719355866313, -0.020508306100964546, -0.013720677234232426, -0.02097989059984684, -0.0009163592476397753, 0.07349906861782074, 0.37651166319847107, 0.00323619251139462, 0.0235374066978693, 0.03604995831847191, 0.03697144612669945, 0.016625234857201576, -0.011482693254947662, 0.0403972752392292, -0.07638470083475113, 0.025318125262856483, 0.06223335489630699, 0.04873362556099892, -0.028424203395843506, 0.03952234983444214, 0.01893681101500988, 0.028469514101743698, 0.004297493491321802, 0.03754901513457298, -0.016898376867175102, -0.019024599343538284, 0.054551709443330765, 0.029992137104272842, 0.011531597934663296, -0.018988853320479393, -0.07012057304382324, -0.00999135710299015, -0.012544416822493076, 0.050038836896419525, 0.049932025372982025, -0.008413249626755714, -0.061959050595760345, -0.0074259028770029545, -0.0727318674325943, 0.031040869653224945, 0.0013551986776292324, -0.003466164693236351, 0.014123896136879921, 0.023262977600097656, 0.001664595678448677, 0.06652410328388214, -0.0613289512693882, 0.0012776338262483478, -0.09862814098596573, -0.03965733200311661, 0.012438438832759857, 0.00721612386405468, 0.02146662026643753, 0.07153922319412231, -0.0016793019603937864, 0.024650031700730324, 0.034590303897857666, 0.007039798889309168, -0.0038974701892584562, -0.02765357866883278, -0.05103960260748863, 0.04176634922623634, -0.02810775861144066, 0.000693223555572331, 0.12492701411247253, -0.004681508056819439, 0.008621743880212307, 0.014706987887620926, -0.04764712601900101, 0.01731710322201252, -0.011200553737580776, -0.002890906762331724, 0.019883397966623306, 5.810492075397633e-05, -0.054886866360902786, -0.009607014246284962, -0.04915367066860199, -0.011357080191373825, 0.01842097006738186, -0.10483071208000183, 0.04177291318774223, -0.04313679784536362, -0.05026281625032425, -0.044436629861593246, -0.019841019064188004, 0.005503237713128328, 0.017862621694803238, -0.04933367297053337, -0.06665006279945374, 0.03716844692826271, 0.0594736747443676, -0.030872255563735962, -0.03578631207346916, 0.02989729307591915, 0.005856824107468128, 0.010956798680126667, -0.013521860353648663, 0.03242401406168938, -0.0013692426728084683, -0.007005920168012381, 0.014247137121856213, -0.02790597453713417, -0.04465341567993164, 0.01282722968608141, -7.3335220804438e-05, -0.049092553555965424, 0.002071460010483861, -0.03915226086974144, -0.07624246180057526, -0.048801910132169724, 0.011529291979968548, 0.02817673794925213, 0.00515311025083065, 0.06273487210273743, -0.029727356508374214, 0.09475996345281601, 0.022475358098745346, -0.02539662830531597, -0.05634755641222, -0.018012750893831253, 0.007031843066215515, -0.013662888668477535, -0.00629927683621645, -0.01437846664339304, 0.03179025650024414, -0.027192318812012672, 0.0006360088591463864, -0.009473951533436775, -0.13230566680431366, -0.07989897578954697, -0.30685821175575256, -0.025181321427226067, -0.0188578050583601, -0.04384063184261322, 0.05732670798897743, -0.08479614555835724, -0.026108786463737488, -0.05019536241889, 0.030998995527625084, -0.03982391953468323, 0.01376019325107336, -0.07400541007518768, 0.04020299017429352, 0.0024780603125691414, -0.004000048618763685, 0.05174749717116356, -0.06066127493977547, 0.004525042604655027, -0.019050907343626022, 0.07174569368362427, -0.02535334974527359, 0.05676959455013275, 0.005271191708743572, -0.030947845429182053, -0.09450512379407883, -0.0027532645035535097, 0.16242191195487976, 0.04816920682787895, 0.06974659115076065, -0.037011273205280304, -0.00230590277351439, 0.03359861299395561, -0.03237004578113556, -0.01141148991882801, 0.0029836620669811964, 0.022712968289852142, 0.008667738176882267, 0.010209008120000362, 0.02893427386879921, -0.009962035343050957, -0.04436935856938362, 0.08845102041959763, 0.03518785163760185, 0.01681612990796566, -0.04563751816749573, 0.04382820799946785, -0.04548865929245949, 0.011332593858242035, 0.006391894072294235, 0.0345139242708683, 0.0349947065114975, 0.031622275710105896, -0.06805223971605301, -0.051884640008211136, 0.020766042172908783, 0.006552515551447868, -0.04534954950213432, -0.011241870932281017, -0.028883542865514755, 0.04628104716539383, -0.027268804609775543, 0.0051243482157588005, 0.04801514372229576, -0.05140640214085579, -0.04963894933462143, 0.009457414038479328, 0.004487530328333378, -0.02125527523458004, 0.0040409681387245655, -0.030388735234737396, -0.0543423593044281, 0.09241176396608353, -0.030457496643066406, -0.011495226062834263, 0.03386799991130829, 0.016307158395648003, 0.043947815895080566, 0.03424952179193497, -0.04348771274089813, 0.05113815888762474, 0.05237564072012901, -0.011995377019047737, -0.006759196054190397, -0.0026202795561403036, -0.030827146023511887, 0.005607647821307182, -0.011816923506557941, -0.07012809067964554, 0.05596115440130234, -0.01785499043762684, -0.05238964036107063, 0.0025058691389858723, -0.04753606393933296, -0.007875173352658749, 0.03997691720724106, -0.020447639748454094, -0.2557750642299652, 0.05850088223814964, 0.029810789972543716, 0.03918056562542915, 0.0281932782381773, 0.03556104004383087, 0.023969382047653198, -0.0036011356860399246, 0.03522171080112457, 0.02080894634127617, 0.04827652871608734, -0.039605509489774704, 0.0024335363414138556, -0.01891317032277584, -0.04413186386227608, 0.02652336098253727, 0.010165401734411716, 0.06321539729833603, -0.04523172602057457, 0.04788023233413696, 0.03237763047218323, 0.0847087949514389, 0.12527799606323242, 0.06551852077245712, -0.07425641268491745, -0.0517299510538578, -0.03480580821633339, 0.028890032321214676, 0.014827391132712364, 0.012013895437121391, -0.002008305862545967, 0.025038573890924454, -0.02319622039794922, 0.001637449604459107, 0.027358803898096085, -0.05302403122186661, 0.017396878451108932, 0.05591398850083351, 0.09271924942731857, -0.04641677439212799, -0.007491844240576029, -0.016663579270243645, 0.03227924555540085, -0.003258632030338049, 0.05461171641945839, 0.0061221737414598465, 0.021972035989165306, -0.031588371843099594, -0.08884382247924805, 0.02711423486471176, -0.06947504729032516, -0.0468980111181736, 0.046835798770189285, 0.012037710286676884, 0.06667022407054901, 0.04495973140001297, -0.020846974104642868, 0.028971897438168526, -0.0076760887168347836, -0.06692638993263245, -0.018230607733130455, -0.012342249043285847, 0.0933489128947258, -0.035147204995155334, -0.004026340786367655], "8c55f38d-fcd4-4e9d-b108-83965b3dd7f8": [-0.07690365612506866, -0.020461134612560272, 0.044138114899396896, 0.05307144671678543, 0.017209114506840706, 0.008134579285979271, -0.006276925094425678, 0.00666841072961688, 0.005507034249603748, -0.03370126709342003, 0.015097917057573795, -0.013117164373397827, -0.023847222328186035, 0.006719568744301796, -0.027524620294570923, 0.054651711136102676, -0.026205580681562424, -0.01693250797688961, -0.08490988612174988, 0.046294916421175, 0.04145776107907295, 0.002254541963338852, 0.028511015698313713, 0.03163826838135719, 0.0006468715728260577, 0.047554533928632736, 0.022343482822179794, -0.04678983613848686, -0.04289506375789642, -0.13621364533901215, 0.009318363852798939, -0.00436189491301775, -0.021810097619891167, 0.0061638494953513145, -0.01747908443212509, 0.09858843684196472, 0.01507548987865448, 0.02697368897497654, 0.0017513141501694918, 0.026756150647997856, 0.031567901372909546, -0.015052031725645065, 0.0261759664863348, -0.03245651349425316, 0.07466939836740494, -0.019984349608421326, 0.028454044833779335, -0.016878752037882805, -0.02118556573987007, -2.000216227315832e-05, -0.023805491626262665, -0.027230745181441307, -0.0816340520977974, -0.005517771001905203, -0.02401159331202507, 0.056350234895944595, 0.03750421479344368, 0.02542164921760559, 0.04187993332743645, 0.03312043845653534, 0.04835757240653038, -0.007634417619556189, -0.11172566562891006, 0.030199166387319565, 0.09563066810369492, 0.029073158279061317, -0.05356937274336815, -0.012414824217557907, 0.030630338937044144, -0.002479845890775323, 0.0010935345198959112, 0.016732661053538322, -0.0009284805855713785, 0.051625799387693405, -0.005148721858859062, 0.005584138445556164, 0.016590673476457596, -0.01073251012712717, 0.03981691226363182, -0.03368731960654259, 0.00924720149487257, 0.033027417957782745, -0.08687321096658707, 0.046120017766952515, 0.02216464839875698, -0.06653349101543427, 0.015951799228787422, 0.006546218879520893, -0.012698305770754814, -0.02059667743742466, 0.026867153123021126, -0.06804896146059036, -0.014157254248857498, 0.058615196496248245, -0.01513628475368023, -0.04622756689786911, 0.0004756244597956538, 0.012717057950794697, 0.04166925698518753, 0.4113444983959198, -0.010226979851722717, 0.0359371080994606, 0.032474253326654434, 0.06515457481145859, -0.04384395107626915, -0.02080855518579483, 0.028773233294487, -0.08766613900661469, 0.051544830203056335, 0.03403700143098831, 0.014446689747273922, -0.007716290187090635, 0.04035305604338646, 0.011337554082274437, 0.006261059083044529, 0.041430555284023285, 0.036732446402311325, -0.02845567837357521, -0.08185559511184692, 0.02527587115764618, 0.006254471372812986, 0.003963570576161146, 0.02236178144812584, -0.05669224262237549, -0.012445833534002304, -0.04642340913414955, 0.07005783915519714, 0.04932195320725441, 0.028225496411323547, -0.04091053828597069, 0.06538153439760208, -0.10074084997177124, -0.001416466780938208, 0.006638773716986179, 0.021882658824324608, 0.03888292983174324, 0.044882453978061676, 0.027725597843527794, 0.018019644543528557, -0.02768828719854355, -0.011370520107448101, -0.10598798096179962, -0.0533117800951004, 0.011385458521544933, 0.011876561678946018, 0.04882989451289177, 0.010734966024756432, -0.0004115728079341352, 0.05086924880743027, 0.010545111261308193, 0.01947367936372757, -0.006471638102084398, -0.02553080953657627, -0.04217180982232094, 0.02137831039726734, -0.011960121802985668, 0.012687185779213905, 0.05725593864917755, -0.03042147494852543, 0.018770262598991394, 0.05657922476530075, -0.03145502507686615, 0.02036156877875328, 0.03736766055226326, 0.0231044702231884, 0.020756423473358154, -0.05157861113548279, -0.021005066111683846, 0.014659357257187366, -0.019690660759806633, 0.037729185074567795, 0.016725685447454453, -0.028059078380465508, 0.01930132880806923, 0.008484043180942535, -0.015308934263885021, -0.039665453135967255, -0.007921157404780388, -0.006634892895817757, 0.01894601620733738, -0.0753215104341507, -0.05647869035601616, 0.054774414747953415, 0.03700334206223488, -0.052613288164138794, -0.021177168935537338, -5.977270120638423e-05, -0.016125880181789398, 0.014385133981704712, -0.062770776450634, 0.015023032203316689, -0.018900377675890923, -0.023558972403407097, -0.004650820512324572, -0.04101947322487831, -0.03070383332669735, 0.014678573235869408, 0.008447220548987389, 0.0010863118804991245, 0.004696671850979328, -0.018427802249789238, -0.04639563336968422, -0.043473776429891586, 0.009866245090961456, 0.023820793256163597, 0.00977143831551075, 0.0787765234708786, -0.014065089635550976, 0.07859659940004349, -0.0019810788799077272, -0.006374493706971407, -0.08717692643404007, 0.031022831797599792, -0.014991716481745243, 0.019973089918494225, -0.01162002794444561, 0.008375385776162148, -0.03158674016594887, -0.043693907558918, 0.0161287821829319, -0.029144108295440674, -0.12657785415649414, -0.06853660196065903, -0.3096959590911865, -0.021982619538903236, 0.030814403668045998, -0.061237286776304245, 0.05775848776102066, -0.061950232833623886, -0.002782823285087943, -0.03191564604640007, 0.04087356850504875, -0.0022915955632925034, 0.041707947850227356, -0.08773672580718994, 0.04659836366772652, -0.005178229883313179, -0.017123166471719742, 0.017048941925168037, -0.06069377437233925, 0.034335263073444366, 0.0035985694266855717, 0.05726321041584015, -0.024019882082939148, 0.03172795847058296, -0.04716738685965538, -0.07926057279109955, -0.050196170806884766, 0.018524397164583206, 0.14309923350811005, 0.06476101279258728, 0.05826156958937645, -0.023669445887207985, -0.0011414650361984968, 0.045952584594488144, 0.0104431863874197, -0.03673392906785011, 0.007361320778727531, -0.003671688260510564, 0.0014805838000029325, -0.0167546384036541, -0.01540625561028719, -0.034560639411211014, -0.063274085521698, 0.0803847536444664, 0.04835833981633186, 0.03095780871808529, -0.0817682221531868, -0.000744623364880681, -0.06212542951107025, 0.0378759391605854, 0.020014742389321327, 0.0163964182138443, 0.013597180135548115, 0.0355381965637207, -0.044618166983127594, -0.033464495092630386, 0.010882172733545303, -0.02398633398115635, -0.053586699068546295, -0.008533243089914322, -0.044404707849025726, 0.03318042308092117, -0.02718122862279415, 0.006173194386065006, 0.04565157741308212, -0.011292139068245888, -0.01964072324335575, 0.02610006369650364, -0.003572504734620452, -0.017538737505674362, 0.013103332370519638, 0.0017377615440636873, -0.011172670871019363, 0.09718683362007141, -0.012164176441729069, -0.024801909923553467, 0.023373525589704514, -0.002043184358626604, 0.016187267377972603, 0.04333909973502159, -0.05736728757619858, 0.023215189576148987, 0.06249186396598816, -0.033040378242731094, -0.00506545277312398, 0.005729413591325283, -0.02776939608156681, -0.02506789192557335, 0.011049658991396427, -0.06547816842794418, 0.04251636564731598, -0.011995641514658928, -0.05276082828640938, 0.024754969403147697, -0.03283071890473366, -0.024117305874824524, 0.03101874142885208, -0.059834882616996765, -0.2767331302165985, 0.036877796053886414, 0.014287490397691727, 0.04302256181836128, -0.010626610368490219, 0.04371672496199608, 0.055132899433374405, 0.042403046041727066, -0.01748673804104328, -0.0008643431356176734, 0.02452482096850872, -6.976622535148636e-05, -0.0004961607628501952, -0.025217818096280098, -0.037100981920957565, 0.01265351939946413, 0.005119257140904665, 0.07812482863664627, -0.03286861628293991, 0.03670041263103485, 0.02749152109026909, 0.08438100665807724, 0.1318562775850296, 0.0793301984667778, -0.04796209931373596, -0.04875359311699867, -0.022596146911382675, 0.029981302097439766, 0.021315570920705795, 0.02385634556412697, -0.018420841544866562, 0.0032545863650739193, -0.02052479423582554, -0.0002325219684280455, 0.02477397210896015, -0.08019135892391205, 0.01893148198723793, 0.055232591927051544, 0.0871797502040863, -0.06070878729224205, -0.028495371341705322, -0.027548713609576225, 0.024009637534618378, 0.003591379849240184, 0.09456692636013031, 0.009389564394950867, 0.01553634274750948, -0.01240904163569212, -0.09817681461572647, -0.01259717345237732, -0.04903291538357735, -0.015335557982325554, 0.027569768950343132, -0.0095085883513093, 0.035487253218889236, 0.06037842854857445, -0.02201353758573532, 0.018308481201529503, -0.0159847941249609, -0.0766097903251648, -0.005722824018448591, -0.048356834799051285, 0.10310614109039307, -0.08810079097747803, 0.02245156466960907], "bb99a80b-7739-42ae-83b9-f993f4e68a8d": [-0.07386806607246399, -0.02683214098215103, 0.051911622285842896, 0.09909085929393768, -0.0017878669314086437, -0.0025292602367699146, 0.0486360527575016, 0.02267099730670452, 0.015774302184581757, -0.007821524515748024, 0.00012044344475725666, -0.0043820966966450214, -0.028731035068631172, -0.00720912916585803, -0.029858432710170746, 0.0002554114325903356, -0.007726689800620079, -0.067176952958107, -0.1396852284669876, 0.028693923726677895, 0.02874458022415638, -0.03949674591422081, 0.0580412782728672, 0.03654370829463005, -0.03709913790225983, 0.03439726307988167, 0.012533607892692089, -0.04517820477485657, -0.011465520597994328, -0.13699117302894592, -0.002276795217767358, -0.03248349949717522, 0.0003973101847805083, 0.001563688856549561, 0.006669668015092611, 0.08798811584711075, 0.03869692608714104, -0.012198617681860924, 0.018395371735095978, 0.03099372424185276, 0.0382443331182003, -0.015469620935618877, -0.04427558556199074, -0.01223794836550951, 0.0027142325416207314, -0.04685356840491295, 0.03659578412771225, -0.03556864336133003, 0.017094986513257027, -0.010515152476727962, -0.03449603542685509, -0.03067367896437645, -0.009707281365990639, -0.02347402647137642, -0.03017176315188408, 0.08715315908193588, 0.029140546917915344, 0.006905807182192802, 0.04796570912003517, 0.02414584346115589, 0.04831859469413757, 0.001750801457092166, -0.10004872828722, 0.07823621481657028, 0.05709842965006828, -0.008879861794412136, -0.08985093235969543, -0.023609312251210213, 0.03149480000138283, 0.02929677627980709, -0.00915098749101162, -0.010138921439647675, -0.01009403821080923, 0.03762616589665413, 0.029427675530314445, 0.01800859160721302, 0.06451213359832764, -0.005609058775007725, 0.037157174199819565, -0.025631073862314224, -0.09522493928670883, 0.028733326122164726, -0.04290153086185455, 0.031944312155246735, -0.012031098827719688, -0.020837871357798576, -0.01804739236831665, 0.006834798026829958, -0.021177029237151146, -0.03675425425171852, 0.008956138044595718, -0.05946677178144455, -0.020440399646759033, 0.0027839660178869963, -0.03994109481573105, -0.031142666935920715, -0.0003502142208162695, -0.0004464373632799834, 0.013545878231525421, 0.4130706489086151, 0.030324259772896767, 0.02628658339381218, 0.024272136390209198, 0.026392197236418724, 0.0026643406599760056, 0.008504470810294151, 0.013647961430251598, -0.0691661387681961, 0.05407748743891716, 0.056866828352212906, 0.011694922111928463, -0.018224529922008514, 0.06513314694166183, -0.007691674865782261, 0.06521613895893097, 0.03199329227209091, 0.09456229209899902, -0.014159584417939186, -0.01414264552295208, 0.02151068113744259, 0.02132512629032135, 0.027919912710785866, -0.022564049810171127, -0.04362167418003082, 0.06067677587270737, -0.039164721965789795, 0.0669889897108078, 0.05659427493810654, -0.0053045679815113544, -0.07055220752954483, 0.05479349195957184, -0.09419051557779312, 0.0178720373660326, -0.004411795642226934, -0.01761891506612301, 0.027078799903392792, 0.053912077099084854, -0.0023924638517200947, 0.07212424278259277, -0.084298275411129, -0.004753727465867996, -0.0995597392320633, -0.021242352202534676, -0.0068038892932236195, 0.02723953314125538, 0.017914295196533203, 0.058565959334373474, -0.008707939647138119, 0.011712468229234219, 0.028495343402028084, 0.03684694692492485, -0.013599337078630924, -0.03002290241420269, -0.026341192424297333, 0.0428113155066967, -0.0246320441365242, 0.012843594886362553, 0.11236359179019928, 0.015157012268900871, 0.017915768548846245, 0.05649219825863838, -0.028599215671420097, 0.017379673197865486, -0.013854414224624634, -0.00048740883357822895, 0.012887543067336082, -0.05447233468294144, -0.06280786544084549, -0.029945475980639458, -0.008451959118247032, 0.038175731897354126, 0.035295408219099045, -0.10128925740718842, 0.04606214538216591, -0.05510036274790764, -0.032798998057842255, -0.059539325535297394, 0.02053496241569519, 0.01445846725255251, -0.0018939828732982278, -0.07252981513738632, -0.0605839341878891, 0.035375528037548065, 0.06301665306091309, -0.038258519023656845, -0.03667992353439331, -0.020046958699822426, -0.047226566821336746, -0.0321417935192585, -0.03677554801106453, 0.03132850304245949, -0.016300152987241745, 0.015456613153219223, 0.0007399677415378392, -0.054339174181222916, -0.0627964437007904, 0.02138396166265011, -0.0011755629675462842, -0.030322764068841934, -0.027447355911135674, -0.07354791462421417, -0.06928117573261261, -0.057257819920778275, 0.022120701149106026, 0.04463360086083412, 0.02127184346318245, 0.03116169199347496, 0.01885412633419037, 0.07976372539997101, -0.019574226811528206, -0.027888791635632515, -0.07762730121612549, 0.012392132543027401, 0.02350885607302189, -0.056934550404548645, 0.021179568022489548, -0.019114946946501732, 0.0125293442979455, 0.0010798675939440727, 0.0050133527256548405, -0.02602345310151577, -0.10866279155015945, -0.017651032656431198, -0.2891506254673004, -0.04192226007580757, 0.0024950469378381968, -0.04358571767807007, 0.03484347090125084, -0.09984065592288971, -0.010741178877651691, -0.040041662752628326, 0.04217958822846413, -0.03020593710243702, -0.02067197486758232, -0.025099696591496468, 0.02756914123892784, 0.020819317549467087, -0.0021029256749898195, 0.09749425202608109, -0.02267959527671337, -0.01617194525897503, 0.0012593482388183475, 0.037423741072416306, 0.008205641992390156, 0.020296264439821243, -0.003086649812757969, -0.03286035731434822, -0.025520632043480873, 0.018558358773589134, 0.16733184456825256, 0.104679636657238, 0.03782486915588379, 0.0078108343295753, 0.01974760927259922, 0.01126004382967949, -0.044686995446681976, -0.03216612711548805, -0.010554417036473751, 0.014609537087380886, -0.008506654761731625, 8.207489008782431e-05, 0.017912834882736206, -0.014283808879554272, -0.06564447283744812, 0.048011135309934616, -0.009729806333780289, -0.017741601914167404, -0.037252336740493774, 0.02649051882326603, -0.02675761468708515, 0.006055071949958801, 0.026851516216993332, 0.014830217696726322, 0.03689955174922943, 0.05425634980201721, -0.06096844747662544, -0.028411980718374252, 0.015669221058487892, -0.01735597662627697, -0.04109873250126839, -0.01842837780714035, -0.024679552763700485, 0.02323734201490879, -0.03735371306538582, 0.015605713240802288, -0.011324106715619564, -0.06640297174453735, -0.00030913768569007516, 0.06278777122497559, -0.02313632145524025, -0.005550800357013941, 0.018855201080441475, 0.010134587064385414, -0.05261635035276413, 0.07242224365472794, 0.028043461963534355, -0.026942545548081398, 0.038535475730895996, 0.03456511348485947, 0.039166104048490524, 0.03580859303474426, -0.04288669675588608, 0.0008363883825950325, 0.05655781179666519, -0.05815289542078972, 0.017898935824632645, -0.008643983863294125, -0.004125664941966534, 0.05018337815999985, -0.026341712102293968, -0.05224482715129852, 0.04545077309012413, -0.0006283588008955121, -0.02811819687485695, 0.03009849041700363, -0.07663068920373917, -0.032478541135787964, 0.01000581681728363, -0.005720399785786867, -0.25532102584838867, 0.03595361486077309, 0.030235880985856056, 0.061789266765117645, 0.00018722336972132325, 0.06106023117899895, 0.01406848430633545, -0.014749989844858646, -0.05359058827161789, -0.019400907680392265, 0.0555800162255764, -0.012135460041463375, 0.010173470713198185, 0.009918546304106712, -0.027285665273666382, 0.023444656282663345, 0.04303455352783203, 0.05667063966393471, -0.06562765687704086, 0.001440290710888803, 0.05189794301986694, 0.024224473163485527, 0.1530895233154297, 0.061168771237134933, -0.0578983910381794, -0.05034667253494263, -0.031639549881219864, 0.03068958967924118, -0.0007535377517342567, 0.011947349645197392, -0.0022659627720713615, 0.007581270299851894, 0.031896211206912994, 0.014484486542642117, 0.018615394830703735, -0.05034381151199341, -0.00893366802483797, 0.04844677820801735, 0.06051941588521004, -0.039955902844667435, -0.02084100805222988, 0.015227904543280602, 0.036120589822530746, -0.027332723140716553, 0.0470724031329155, 0.01842563785612583, -0.020807676017284393, 0.027535395696759224, -0.0597890168428421, 0.0413062609732151, -0.05107542499899864, -0.030028222128748894, 0.03496268764138222, 0.006437125150114298, 0.03258374705910683, 0.03470546379685402, -0.010174174793064594, 0.020641757175326347, 0.007023877464234829, -0.025966528803110123, -0.04497261345386505, 0.0095793716609478, 0.09545258432626724, -0.002922570100054145, 0.02124790847301483], "6ada6637-2304-4a9c-bd5e-9c1c1fa0b44b": [-0.058757662773132324, -0.06629081815481186, 0.06294651329517365, 0.05451887473464012, -0.009408281184732914, 0.013789267279207706, 0.0529266893863678, -0.05402759090065956, -0.012890269048511982, -0.015190189704298973, 0.013520152308046818, 0.007837205193936825, -0.02999499998986721, -0.05381053686141968, 0.0035256154369562864, -0.0037161593791097403, -0.02858729474246502, -0.0158645361661911, -0.12465127557516098, 0.06450137495994568, 0.003983933012932539, -0.013943124562501907, 0.029493298381567, 0.0017079644603654742, -0.04333646222949028, 0.03888940438628197, 0.033812299370765686, -0.06056442856788635, -0.025135112926363945, -0.1446373164653778, -0.02179756946861744, 0.014408007264137268, -0.013199757784605026, -0.007814456708729267, -0.0002115736569976434, 0.06085047870874405, 0.02871289849281311, 0.014779312536120415, 0.004845993127673864, 0.0011780388886108994, 0.027221200987696648, -0.012286732904613018, -0.020057154819369316, -0.023699259385466576, 0.040365491062402725, -0.03487052395939827, 0.012828584760427475, -0.03006717562675476, 0.014777014032006264, -0.028077859431505203, -0.07869654893875122, 0.027566123753786087, -0.016379820182919502, 0.010968629270792007, -0.0019217588705942035, 0.03959299251437187, 0.057686176151037216, 0.011106855235993862, 0.04456198588013649, 0.0496029369533062, 0.08790043741464615, 0.02494484931230545, -0.07884491980075836, 0.01106188539415598, 0.11109355837106705, -0.007804491091519594, -0.045192569494247437, -0.0523533970117569, 0.038528867065906525, 0.05435995012521744, 0.02634406089782715, 0.01969175785779953, -0.025456279516220093, 0.012884484604001045, 0.016010625287890434, -0.014166374690830708, -0.013293381780385971, -0.04097961634397507, 0.03606099262833595, 0.007945219986140728, -0.06189388781785965, -0.02317134104669094, -0.04770307615399361, 0.06778191030025482, -0.04831204563379288, -0.01434478722512722, 0.000290788448182866, -0.03125760331749916, -0.03662834316492081, 0.001976060913875699, 0.0154765285551548, -0.026972761377692223, -0.011637027375400066, 0.007665926590561867, -0.02159728668630123, -0.06704843044281006, -0.035655420273542404, 0.014878606423735619, 0.059037405997514725, 0.37034016847610474, 0.0404340885579586, 0.020770903676748276, 0.036059122532606125, 0.029744325205683708, -0.010701995342969894, 0.011109736748039722, 0.03567870706319809, -0.09485308080911636, 0.0345524325966835, 0.049866896122694016, 0.04172411188483238, -0.02127724513411522, 0.08205582201480865, -0.007427192758768797, 0.04535337910056114, -0.004194288980215788, 0.042160119861364365, -0.03276770934462547, -0.022921539843082428, 0.020476875826716423, -0.005643444135785103, -0.01871822029352188, -0.01705295220017433, -0.053181618452072144, -0.02749934233725071, -0.03516428545117378, 0.01966528594493866, 0.05254756659269333, 0.022478453814983368, -0.03499838337302208, 0.012681146152317524, -0.0416119322180748, 0.040849413722753525, 0.04968598484992981, -0.00813394133001566, 0.028294192627072334, 0.026886245235800743, 0.001995913917198777, 0.07828199118375778, -0.09426018595695496, -0.0377948060631752, -0.08002644777297974, 0.01571078598499298, -0.0174221470952034, 0.0020245907362550497, 0.05394577980041504, 0.03719441592693329, -0.0038908207789063454, 0.03733658418059349, 0.015002201311290264, 0.043102920055389404, -0.006787374150007963, -0.03341739624738693, -0.02941632829606533, 0.016669582575559616, -0.03301548212766647, -0.0003331280895508826, 0.14054611325263977, 0.023105502128601074, 0.02334405854344368, 0.06531146168708801, -0.009456225670874119, 0.0023338268510997295, -0.011323440819978714, 0.03488655760884285, -0.02396831102669239, -0.010990846902132034, -0.05698072165250778, -0.07513873279094696, -0.023598290979862213, 0.02240789495408535, 0.041033949702978134, -0.10768761485815048, 0.0854845866560936, -0.026489242911338806, -0.031727004796266556, -0.04946310073137283, -0.03381173685193062, -0.02676151506602764, 0.022028695791959763, -0.04560219496488571, -0.06356140226125717, -0.037540338933467865, 0.03291112557053566, -0.04958232864737511, -0.025446472689509392, 0.03687158226966858, -0.009243886917829514, 0.00470631942152977, -0.002073120791465044, 0.031806256622076035, 0.05187714472413063, -0.03287896141409874, 0.021800590679049492, -0.052797626703977585, -0.06163347512483597, -0.015229161828756332, -0.04147925600409508, -0.047115277498960495, -0.028183475136756897, -0.037750665098428726, -0.02787127159535885, -0.09874601662158966, 0.054069846868515015, 0.01933833211660385, 0.002283967798575759, 0.0873500257730484, -0.04378371685743332, 0.08778290450572968, 0.007313503883779049, -0.013480071909725666, -0.017267223447561264, 0.011570899747312069, -0.0014547868631780148, 0.009424066171050072, -0.027877753600478172, 0.023627443239092827, 0.009883470833301544, -0.04881640896201134, -0.007359932642430067, 0.005964032374322414, -0.09225025027990341, -0.11670873314142227, -0.3032841682434082, 0.02233821153640747, -0.06897473335266113, -0.035775069147348404, 0.03212384879589081, -0.05286266282200813, -0.005204163491725922, -0.04539746791124344, 0.008828808553516865, -0.08013008534908295, 0.04531722143292427, -0.03377761319279671, 0.012028471566736698, 0.08424224704504013, -0.060557592660188675, 0.028090521693229675, -0.03454568609595299, 0.04112779349088669, 0.015350871719419956, 0.0508493110537529, 0.036016885191202164, 0.03514043614268303, 0.018104085698723793, -0.061630625277757645, -0.07181916385889053, 0.010947694070637226, 0.16001775860786438, 0.039688095450401306, 0.03874288499355316, -0.05771739035844803, -0.025222301483154297, 0.022366870194673538, -0.028960971161723137, -0.00448413472622633, 0.03438352793455124, 0.055108629167079926, 0.02977951243519783, 0.07057676464319229, 0.009857943281531334, -0.019914431497454643, -0.0386374294757843, 0.10461793094873428, -0.014082405716180801, 0.00809448678046465, -0.036459412425756454, -0.0009976181900128722, 0.009146355092525482, 0.015527009032666683, -7.754222315270454e-05, 0.021077636629343033, 0.01990012638270855, 0.042551591992378235, -0.033989954739809036, -0.013001427985727787, -0.022299259901046753, 0.015328630805015564, -0.009961371310055256, 0.025208275765180588, -0.01703406684100628, 0.06598273664712906, -0.017481716349720955, 0.0417528972029686, 0.04638034477829933, -0.028183475136756897, -0.02209443971514702, 0.015476837754249573, -0.0449884869158268, -0.026068683713674545, 0.043402232229709625, -0.047735605388879776, -0.03967214375734329, 0.050710082054138184, -5.8840596466325223e-05, -0.023251140490174294, 0.04305513948202133, 0.051473602652549744, 0.008744766935706139, 0.04735761135816574, -0.026833996176719666, -0.017414964735507965, 0.022400841116905212, -0.05766887217760086, -0.00355956400744617, -0.023749064654111862, -0.02797541581094265, 0.01525880303233862, -0.027118248865008354, -0.04789614677429199, 0.05984480306506157, -0.028735417872667313, -0.04192902520298958, 0.03307454288005829, -0.05084739252924919, 0.01252633985131979, 0.026808274909853935, -0.012140789069235325, -0.26034992933273315, 0.04823528975248337, 0.041733287274837494, 0.06478766351938248, -0.02915075793862343, 0.06827041506767273, 0.005539478734135628, 0.019261183217167854, 0.03200738877058029, -0.043952539563179016, 0.07717006653547287, -0.028407927602529526, 0.003927606623619795, -0.005992007441818714, -0.021698007360100746, -0.006991296540945768, 0.04631059616804123, 0.06668195873498917, -0.07641693949699402, 0.0538080669939518, 0.0008036053040996194, 0.10439781844615936, 0.1410123109817505, 0.030271368101239204, -0.0531274639070034, -0.06893718242645264, 0.010079252533614635, 0.03461982682347298, 0.02796579711139202, 0.06650158017873764, 0.0042179543524980545, -0.017956582829356194, 0.007610487286001444, 0.01573798432946205, 0.0439714640378952, -0.06590072810649872, 0.001999627100303769, 0.009836222045123577, 0.07006244361400604, -0.050511542707681656, -0.027385560795664787, 0.01582060195505619, -0.04896683990955353, 0.02439092844724655, 0.036098163574934006, -0.028890101239085197, 0.036298029124736786, 0.006308678071945906, -0.033329278230667114, 0.02735799178481102, -0.0414915569126606, -0.010733233764767647, 0.017909320071339607, 0.01382986456155777, 0.03084990195930004, 0.015308831818401814, -0.01973755657672882, 0.023824667558073997, -0.00750448415055871, -0.01186736486852169, -0.018610278144478798, -0.020515499636530876, 0.08696804195642471, -0.03144184127449989, 0.007985392585396767], "160c8748-dc41-4bac-ab9f-8de97a0e3a14": [-0.07589147984981537, -0.011456695385277271, 0.05982241407036781, 0.052311789244413376, 0.02504691481590271, -0.019385293126106262, 0.09336236864328384, 0.008746189065277576, -0.05957571417093277, -0.032841239124536514, 0.0047723688185215, 0.01203231606632471, -0.0476008839905262, -0.037277430295944214, -0.022291427478194237, 0.03400636464357376, -0.0002958259719889611, -0.07341491430997849, -0.12657640874385834, 0.034269362688064575, 0.023811211809515953, -0.0427999310195446, 0.018817678093910217, -0.00937292817980051, -0.0243204478174448, 0.032494302839040756, 0.06794179975986481, -0.02544569782912731, -0.01968456245958805, -0.11477460712194443, 0.0210269708186388, 0.03059658408164978, -0.018858201801776886, -0.04851507022976875, -0.03395386412739754, 0.07185518741607666, 0.04493139311671257, -0.021163349971175194, -0.01395553257316351, 0.0015364870196208358, 0.036119673401117325, -0.007812835276126862, -0.025514822453260422, 0.0023117181845009327, 0.038506798446178436, -0.02315513975918293, 0.00431103678420186, 0.014656487852334976, 0.0095988679677248, -0.03512760251760483, -0.07572886347770691, -0.02246844954788685, 0.01390472985804081, 0.008711145259439945, 0.0008144259336404502, 0.0027359924279153347, 0.05054579675197601, -0.00012787729792762548, 0.0346306636929512, 0.020815150812268257, 0.02735012024641037, 0.024661267176270485, -0.04130509868264198, 0.026984279975295067, 0.046595342457294464, 0.0097738616168499, -0.07628119736909866, -0.015901435166597366, 0.041627466678619385, 0.05032052844762802, -0.0056820097379386425, 0.024139447137713432, -0.010773166082799435, 0.0613500252366066, -0.01613844931125641, 0.01203989703208208, 0.02863132767379284, -0.015475820749998093, 0.02290119230747223, 0.05092201381921768, -0.0756867527961731, -0.02212292142212391, -0.027085719630122185, 0.04153819382190704, -0.004436458460986614, -0.04207490384578705, 0.012756181880831718, -0.0014380111824721098, -0.023796679452061653, -0.005559580400586128, 0.027616102248430252, -0.04448355734348297, -0.013279801234602928, 0.013609218411147594, -0.0057719736360013485, -0.02331107296049595, -0.024800358340144157, 0.01776534877717495, 0.0241752490401268, 0.37483879923820496, 0.022707968950271606, 0.009155997075140476, -0.014126574620604515, -0.011879549361765385, -0.0037254486232995987, 0.018114686012268066, 0.03242745250463486, -0.07142625749111176, 0.015950895845890045, 0.040627118200063705, 0.030954433605074883, 0.0073710596188902855, 0.03774931654334068, 0.002062759594991803, 0.048918191343545914, 0.025721531361341476, 0.08393219113349915, -0.05977106839418411, -0.026825647801160812, -0.011928372085094452, 0.03926936909556389, 0.03474605083465576, -0.01722833514213562, -0.024124717339873314, 0.03593568503856659, -0.008447998203337193, 0.035695526748895645, 0.057346146553754807, -0.011768786236643791, -0.050719261169433594, -0.00413140095770359, -0.09842082858085632, 0.047689054161310196, 0.03329697251319885, 0.0028372800443321466, 0.020021459087729454, -0.007732802536338568, -0.01461954414844513, 0.09964996576309204, -0.010118592530488968, -0.04587121680378914, -0.08969496190547943, -0.051792629063129425, -0.014164994470775127, 0.02967967838048935, 0.03707823157310486, 0.07050707191228867, -0.0251639261841774, 0.01787906512618065, 0.04363354668021202, 0.048233162611722946, -0.014708498492836952, -0.06901808828115463, -0.016762692481279373, 0.00038614883669652045, -0.025487594306468964, 0.03274054080247879, 0.10688593983650208, 0.05177848041057587, 0.02963189408183098, 0.07856348901987076, -0.01291442010551691, 0.052430059760808945, -0.03805835545063019, -0.006255201529711485, 0.012743650935590267, -0.005051369778811932, -0.06029385328292847, -0.006317906081676483, 0.004038210492581129, 0.04176395758986473, 0.046629399061203, -0.061065301299095154, 0.07916958630084991, -0.04931594803929329, -0.02491416037082672, -0.0185564998537302, 0.010527954436838627, -0.015186863020062447, 0.031353194266557693, 0.0262371264398098, -0.009022380225360394, 0.0156243359670043, 0.0696786418557167, -0.0405789352953434, -0.040852274745702744, 0.02091945894062519, -0.05488801747560501, 0.0103929303586483, 0.0038591716438531876, -0.010816909372806549, 0.024120431393384933, -0.06028709560632706, 0.055649545043706894, -0.045266587287187576, -0.04049578309059143, 0.014737412333488464, -0.009993670508265495, -0.06513863056898117, 0.03225323185324669, -0.04743596538901329, -0.023144125938415527, -0.07594835758209229, 0.0379326157271862, 0.04694825038313866, 0.020993929356336594, 0.03600491210818291, -0.04117009788751602, 0.07642804831266403, 0.0022068913094699383, -0.030477313324809074, -0.0038627502508461475, -0.001059780945070088, 0.009738963097333908, -0.007300130557268858, -0.015954596921801567, 0.025078006088733673, 0.03267630934715271, -0.042007286101579666, -0.01581631414592266, 0.013312638737261295, -0.11373050510883331, -0.07675066590309143, -0.3211919963359833, 0.015092553570866585, -0.02892332524061203, -0.042093511670827866, 0.04695012792944908, -0.05552738532423973, 0.015105625614523888, -0.06209754943847656, -0.013708562590181828, -0.01990257203578949, -0.015424762852489948, -0.04016967862844467, 0.026185568422079086, -0.01197486650198698, -0.034176502376794815, 0.0196783859282732, -0.018621215596795082, -0.001490633119828999, 0.04459094628691673, 0.08058471977710724, -0.023559480905532837, 0.021746652200818062, 0.025740329176187515, -0.039188310503959656, -0.025546351447701454, -0.0027092790696769953, 0.1861853003501892, 0.07225769758224487, -0.014955195598304272, -0.025957999750971794, 0.0023287434596568346, 0.02565040998160839, -0.006876459810882807, -0.03917442634701729, -0.001700980239547789, 0.030876480042934418, 0.01823301613330841, 0.0051863365806639194, -0.008157780393958092, 0.0013739123241975904, -0.05282766371965408, 0.06858507543802261, -0.04001234844326973, -0.04296407848596573, -0.0725322887301445, -0.005408128257840872, -0.027990732342004776, -0.059911392629146576, -0.015262966975569725, 0.052759215235710144, 0.04650392755866051, 0.07586725801229477, -0.06198076531291008, -0.044427745044231415, -0.0033116277772933245, -0.027090968564152718, -0.07953902333974838, 0.034797362983226776, -0.06258168816566467, 0.0339067280292511, -0.03265247493982315, 0.028285885229706764, 0.012824960052967072, -0.08263647556304932, -0.036780670285224915, 0.008174439892172813, -0.00364863034337759, -0.04222250357270241, 0.04068968445062637, 0.02258000709116459, -0.07002568244934082, 0.07969927787780762, -0.03994538262486458, -0.058104053139686584, 0.047867510467767715, 0.038233883678913116, -0.010569323785603046, 0.011689769104123116, -0.06017330661416054, 0.03674566000699997, 0.028122399002313614, -0.014541547745466232, 0.003086199052631855, -0.020499568432569504, -0.04684216529130936, -0.023959772661328316, -0.015966571867465973, -0.03636857494711876, 0.05018630623817444, 0.008997409604489803, -0.0303499698638916, 0.0350150503218174, -0.03684467822313309, -0.019514009356498718, 0.05100538209080696, -0.01749376766383648, -0.2990321218967438, 0.041497211903333664, 0.027355864644050598, 0.07299179583787918, 0.025924593210220337, 0.04843195900321007, 0.030631830915808678, -0.0038058902136981487, -0.003686533309519291, -0.00887113343924284, 0.06773357093334198, -0.039783038198947906, 0.012259888462722301, -3.9156679122243077e-05, -0.04261370375752449, -0.030288556590676308, 0.0224458035081625, 0.0495053194463253, -0.06510098278522491, 0.058759067207574844, 0.019927678629755974, 0.06261791288852692, 0.12661805748939514, 0.04323370382189751, -0.0664765015244484, -0.016075294464826584, -0.030657730996608734, 0.029073694720864296, 0.016744771972298622, 0.044720608741045, -0.007199159823358059, 0.012322313152253628, 0.022924227640032768, 0.016447538509964943, 0.07893097400665283, -0.06490517407655716, -0.01793331652879715, -0.011521398089826107, 0.07336585223674774, -0.02446746826171875, -0.018635515123605728, 0.01491714920848608, -0.021042386069893837, 0.00447451788932085, 0.03441881760954857, 0.01863241381943226, 0.018448589369654655, -0.028058305382728577, -0.07551130652427673, 0.021103233098983765, 0.0002807733544614166, -0.024832429364323616, 0.03885223716497421, 0.02922661416232586, 0.07499963045120239, -0.02043108083307743, -0.055807966738939285, 0.005969766061753035, 0.020750630646944046, -0.039428286254405975, -0.04193336144089699, -0.001331001752987504, 0.11624552309513092, 0.02290712110698223, -0.008576870895922184], "c6677b6e-8cdd-4cf9-8fa5-30e37bf8efae": [-0.07341720163822174, -0.03311605751514435, 0.06686236709356308, 0.05917365103960037, 0.002448707353323698, 0.05791459605097771, 0.08606326580047607, -0.0282162856310606, -0.024578534066677094, -0.010537576861679554, 0.00872176606208086, -0.009415913373231888, -0.0179910846054554, -0.0012954891426488757, 0.03329058364033699, 0.04812590777873993, -0.01501809898763895, -0.018392961472272873, -0.15198861062526703, 0.0457177497446537, 0.060752883553504944, -0.02823997661471367, 0.014131707139313221, -0.014986943453550339, -0.030968839302659035, 0.011953341774642467, 0.005163994152098894, -0.045761238783597946, -0.018039507791399956, -0.13074012100696564, 0.006473244167864323, 0.032604970037937164, -0.033472273498773575, -0.0345698744058609, -0.010458379983901978, 0.03388459235429764, 0.044189535081386566, 0.004614649806171656, -0.010390984825789928, 0.005559234879910946, 0.0011924388818442822, -0.02962723933160305, -0.040841031819581985, 0.004517900757491589, 0.06430990248918533, -0.06671221554279327, 0.014737866818904877, -0.02331610396504402, 0.01026857178658247, -0.050016820430755615, -0.08175013959407806, 0.017880162224173546, -0.004140486009418964, 0.008810105733573437, -0.020966650918126106, 0.026711609214544296, 0.04765003174543381, 0.007925181649625301, 0.04658624157309532, 0.04556119441986084, 0.09469287097454071, 0.030254634097218513, -0.05340194329619408, 0.029652126133441925, 0.10218369960784912, 0.02242709882557392, -0.061148323118686676, -0.06059706211090088, 0.01633221097290516, 0.03824087977409363, -0.005188485141843557, 0.0327630490064621, 0.01600179821252823, 0.04971250891685486, -0.009123471565544605, 0.022167980670928955, 0.0033974142279475927, -0.002720110584050417, 0.03266154229640961, 0.04594363272190094, -0.09393387287855148, -0.002347229979932308, -0.06138615682721138, 0.04745399206876755, -0.017911572009325027, -0.021203801035881042, 0.005324298515915871, -0.014956701546907425, -0.016501905396580696, -0.020523495972156525, 0.015143228694796562, -0.01428908295929432, -0.03187735006213188, 0.0026996140368282795, -0.017952613532543182, -0.028502821922302246, -0.03954466059803963, -0.0186438150703907, 0.007670395076274872, 0.38261449337005615, 0.049605581909418106, 0.013280478306114674, 0.030082635581493378, 0.012925607152283192, -0.026861347258090973, -0.010464213788509369, 0.03189259395003319, -0.10276196897029877, 0.0015607387758791447, 0.04376877471804619, 0.026601066812872887, -0.039056289941072464, 0.022156456485390663, 0.006201142445206642, 0.03518372029066086, -0.0006986123044043779, 0.07328743487596512, -0.03706567361950874, -0.03954393044114113, 0.021016592159867287, 0.03565821796655655, 0.029882067814469337, -0.009861879982054234, -0.04552749916911125, 0.011726569384336472, -0.013433163985610008, 0.04737072438001633, 0.06865694373846054, -0.004687997978180647, -0.031436238437891006, 0.03849900886416435, -0.06274843961000443, 0.054784197360277176, 0.0022178911603987217, 0.023460878059267998, 0.027109820395708084, 0.022751279175281525, -0.01070292666554451, 0.048047833144664764, -0.03771504387259483, -0.014887657016515732, -0.136506125330925, -0.013587547466158867, 0.019802873954176903, -0.0150885796174407, 0.038900263607501984, 0.028286559507250786, 0.008041071705520153, 0.017111176624894142, 0.061868999153375626, 0.026923205703496933, -0.011719579808413982, -0.0307281706482172, -0.026753103360533714, 0.03188428282737732, 0.0005034232744947076, -0.004343219101428986, 0.10100247710943222, 0.04895254224538803, -0.0021943715400993824, 0.07450755685567856, -0.005213018506765366, 0.012362356297671795, -0.06455783545970917, 0.037138015031814575, 0.011096073314547539, -0.052145667374134064, -0.031622264534235, -0.056922029703855515, -0.025542009621858597, 0.023159209638834, 0.029105855152010918, -0.11187879741191864, 0.06325086951255798, -0.013703794218599796, -0.03716636821627617, -0.00026338404859416187, -0.025222981348633766, -0.021997729316353798, 0.029123809188604355, -0.03931036219000816, -0.026341049000620842, 0.040286630392074585, 0.0468597337603569, -0.03857108950614929, -0.042114537209272385, 0.040612250566482544, -0.025047946721315384, 0.013657591305673122, -0.010846612975001335, 0.024882160127162933, -0.0002447326551191509, -0.07713256776332855, 0.06296887248754501, -0.0512731708586216, -0.03123343549668789, 0.01242896355688572, -0.034843966364860535, -0.038211748003959656, -0.02779976651072502, -0.01303927693516016, -0.04860629513859749, -0.08104444295167923, 0.009034927934408188, -0.009886260144412518, 0.0024299989454448223, 0.08850926905870438, -0.046875808387994766, 0.12306556850671768, 0.017177361994981766, -0.036088645458221436, -0.03387296199798584, -0.005830029491335154, 0.012452579103410244, -0.024481214582920074, 0.01632305234670639, -0.014282741583883762, -0.002019248204305768, -0.03576575592160225, 0.00785947497934103, -0.010030061937868595, -0.1125992089509964, -0.07731139659881592, -0.3034493327140808, 0.01639997586607933, -0.04557705670595169, -0.02868034504354, 0.04727230221033096, -0.03714004531502724, -0.025281110778450966, -0.040735434740781784, 0.012489593587815762, -0.02764854021370411, 0.04435998946428299, -0.05496585741639137, 0.028303736820816994, 0.04591594636440277, -0.033831268548965454, -0.015176991000771523, -0.023611417040228844, -0.0022926614619791508, 0.022284874692559242, 0.06680646538734436, 0.004494441207498312, -0.006680450402200222, 0.0377330519258976, -0.048486292362213135, -0.042703114449977875, -0.022832704707980156, 0.1525580734014511, 0.0690331682562828, 0.038375187665224075, -0.05673903226852417, 0.0011621221201494336, 0.03221346437931061, -0.02740197442471981, -0.03127044439315796, 0.017565906047821045, 0.012729682959616184, 0.014753543771803379, -0.000943738326895982, -0.015013860538601875, -0.013942147605121136, -0.0708228051662445, 0.07683030515909195, -0.027385078370571136, -0.018318017944693565, -0.04265284538269043, 0.03827076777815819, 0.0024244298692792654, 0.029427504166960716, 0.02049393579363823, 0.07703543454408646, 0.019665107131004333, 0.024553388357162476, -0.0746980682015419, -0.015350417234003544, -0.015279130078852177, 0.02433840185403824, -0.06705321371555328, 0.00019888521637767553, -0.03486844524741173, 0.043754685670137405, -0.047365959733724594, 0.033106595277786255, 0.03702162206172943, -0.0687720775604248, -0.013767541386187077, -0.005393375642597675, -0.015659205615520477, -0.0180314090102911, 0.012900750152766705, -0.03269226849079132, -0.0521041676402092, 0.045671090483665466, -0.02127864398062229, -0.04854113981127739, 0.04522775486111641, 0.04763949662446976, 0.011907371692359447, 0.029019879177212715, -0.034759167581796646, 0.02353082224726677, 0.012475105002522469, -0.04846462607383728, -0.016965501010417938, -0.01251345593482256, -0.0351584292948246, -0.012149697169661522, -0.016794489696621895, -0.052005089819431305, 0.051540475338697433, -0.040903545916080475, -0.04288722574710846, 0.023092146962881088, -0.0556521862745285, 0.021339047700166702, 0.026868294924497604, -0.03397924453020096, -0.2724432051181793, 0.04827195778489113, 0.04288060590624809, 0.07985468208789825, 0.0065938676707446575, 0.039143625646829605, -0.016721704974770546, 0.03488888218998909, -0.01250437367707491, -0.03111805021762848, 0.08730437606573105, -0.03403622284531593, 0.031075337901711464, -0.0033246411476284266, -0.062004879117012024, 0.007199819665402174, 0.014519117772579193, 0.08699396997690201, -0.0679163858294487, 0.01783602684736252, 0.023496141657233238, 0.08680049329996109, 0.1290922462940216, 0.046586502343416214, -0.06955525279045105, -0.05750434473156929, 0.015292849391698837, 0.022281132638454437, 0.011555733159184456, 0.017536913976073265, 0.007391441613435745, 0.02301056869328022, 0.007409664336591959, 0.02473524585366249, 0.07194029539823532, -0.08645500987768173, -0.021561091765761375, 0.022347725927829742, 0.0763578936457634, -0.015525422058999538, -0.010388839058578014, 0.035411249846220016, -0.013959545642137527, 0.030371293425559998, 0.04811549186706543, 0.015873977914452553, 0.03738919645547867, 0.0011024130508303642, -0.06406549364328384, 0.013161794282495975, 0.014036142267286777, -0.012720772996544838, 0.05579644814133644, -0.0006421831785701215, 0.04051622003316879, 0.010798873379826546, -0.020614920184016228, 0.012716338969767094, -0.001198443816974759, -0.010688024573028088, 0.004704486578702927, 0.0007274544332176447, 0.11037275940179825, -0.014135502278804779, 0.005061644595116377], "ee8665a9-0a40-4b77-b307-10438f99e061": [-0.06743056327104568, -0.02986503206193447, 0.0709843561053276, 0.0626838207244873, -0.006686243694275618, 0.008490514941513538, 0.027144556865096092, 0.00928408745676279, -0.024413028731942177, -0.019019829109311104, 0.016392622143030167, -0.009594522416591644, -0.05188644304871559, -0.03648962453007698, -0.00819249264895916, 0.033898353576660156, -0.01334824413061142, -0.019219134002923965, -0.1259838491678238, 0.06401396542787552, 0.04327637329697609, -0.04484625533223152, 0.034913320094347, 0.004628932569175959, -0.026060471311211586, 0.019740639254450798, -0.010740418918430805, -0.04009871184825897, -0.009703454561531544, -0.13988813757896423, -0.004634613636881113, 0.03019440919160843, -0.0017472257604822516, -0.0032325335778295994, 0.007939593866467476, 0.05425077676773071, 0.05016004666686058, 0.016297638416290283, 0.015572207048535347, 0.0034396755509078503, 0.013418079353868961, 0.023679740726947784, -0.03452250361442566, -0.025378022342920303, 0.07869679480791092, 0.002857007086277008, 0.00550622446462512, 0.029946651309728622, 0.0025224697310477495, -0.0025103329680860043, -0.06785649806261063, -0.034467194229364395, -0.011551612056791782, 0.026055919006466866, 0.017173482105135918, 0.06855562329292297, 0.04768138378858566, -0.03070979379117489, 0.04755670204758644, 0.020810674875974655, 0.04797808453440666, 0.02846357226371765, -0.066105417907238, 0.047293152660131454, 0.08527213335037231, -0.018414106220006943, -0.08159740269184113, -0.04963920637965202, 0.008846517652273178, 0.06415922939777374, -0.016847210004925728, 0.024864977225661278, 0.023038383573293686, 0.034532371908426285, 0.004719949793070555, 0.028462469577789307, 0.04503191262483597, -0.0030420017428696156, 0.02977159060537815, 0.011607460677623749, -0.07749282568693161, -0.0078005436807870865, -0.04723228141665459, 0.07786358147859573, -0.012731189839541912, -0.06278154999017715, 0.019123530015349388, -0.005557408556342125, -0.017432812601327896, -0.03638869524002075, 0.017928022891283035, -0.04029286280274391, -0.045503582805395126, -0.0023549452889710665, -0.028092538937926292, -0.03544420748949051, -0.03590100258588791, 0.01339421421289444, 0.02615371346473694, 0.4190172553062439, 0.027978375554084778, 0.0009233539458364248, 0.04154745861887932, 0.040057290345430374, -0.02844308502972126, 0.011053770780563354, 0.021773425862193108, -0.07203882932662964, 0.03987623006105423, 0.06272824108600616, 0.019412806257605553, -0.0010506459511816502, 0.016449585556983948, -0.011279840022325516, 0.03695215284824371, 0.016568774357438087, 0.052125852555036545, -0.019082603976130486, -0.0360056608915329, -0.013646144419908524, 0.021711129695177078, 0.019896594807505608, 0.006803248077630997, -0.024389373138546944, -0.025987088680267334, -0.03753703460097313, 0.07368981093168259, 0.04252771660685539, -0.0037406659685075283, -0.021577442064881325, 0.023578094318509102, -0.06514833122491837, 0.003167122369632125, 0.02508552558720112, 0.0023861960507929325, 0.012602941133081913, 0.033668216317892075, -0.01043076254427433, 0.07360347360372543, -0.04647308960556984, -0.02702813781797886, -0.11946061998605728, -0.03359068185091019, -0.01981016993522644, 0.021806392818689346, 0.0946190133690834, 0.013139712624251842, -0.0014053061604499817, 0.03762208670377731, 0.0375264436006546, 0.01362568885087967, 0.008487324230372906, -0.002394546987488866, -0.042491503059864044, 0.015410150401294231, 0.00596285704523325, 0.006129367742687464, 0.10873693227767944, -0.0031660955864936113, -0.003004354191944003, 0.08673299103975296, -0.003225002670660615, 0.026114027947187424, -0.03731684014201164, 0.0581212043762207, -0.03515736013650894, -0.013865329325199127, -0.030921492725610733, -0.03174580633640289, 0.014232751913368702, 0.03599007800221443, 0.0007784183253534138, -0.08998291194438934, 0.06771041452884674, 0.010011729784309864, -0.020370841026306152, -0.02983165718615055, 0.007326570805162191, -0.010739141143858433, 0.04377774894237518, -0.013095345348119736, -0.04427524283528328, 0.006503691431134939, 0.04434489831328392, -0.07064192742109299, -0.05328633263707161, 0.003588289488106966, -0.007037090603262186, 0.014212622307240963, -0.008866206742823124, -0.0029742552433162928, 0.01999753899872303, -0.08102553337812424, -0.011447113007307053, -0.04079395905137062, -0.040036916732788086, -0.03259389102458954, 0.017442898824810982, -0.04518774896860123, -0.02933136746287346, -0.03193199262022972, 0.002985473955050111, -0.06507307291030884, 0.006080992985516787, -0.02062061056494713, -0.0017930726753547788, 0.04544036462903023, -0.04471393674612045, 0.07745328545570374, 0.032915472984313965, -0.04966308921575546, -0.06160544604063034, -0.02102491445839405, 0.022588754072785378, -0.00933884922415018, 0.00430161040276289, 0.037609439343214035, 0.031062772497534752, -0.04375632852315903, 0.01702304556965828, 0.00201455969363451, -0.14723168313503265, -0.07532630115747452, -0.3242500424385071, 0.008542572148144245, -0.016633378341794014, -0.0673644095659256, 0.024466002359986305, -0.06497501581907272, -0.0012776112416759133, -0.012753458693623543, 0.0011061035329475999, -0.055552102625370026, 0.03298720717430115, -0.07658515125513077, 0.007759586907923222, 0.03151107579469681, -0.039271485060453415, -0.0013118147617205977, -0.051353052258491516, -0.00016303126176353544, 0.024168144911527634, 0.06329891085624695, 0.018333744257688522, 0.04235628992319107, -0.010324484668672085, -0.05856392905116081, -0.0646442100405693, -0.009029209613800049, 0.15003444254398346, 0.06414878368377686, 0.03958200290799141, -0.034172311425209045, 0.011306545697152615, 0.0299638994038105, -0.03503904864192009, 0.005361083894968033, 0.020305132493376732, 0.010094735771417618, -0.0073763346299529076, -0.038308944553136826, -0.0037217207718640566, 0.014176871627569199, -0.07943281531333923, 0.04334381967782974, 0.0022104214876890182, 0.01169284712523222, -0.049078524112701416, 0.024150509387254715, -0.01783350110054016, -0.008047172799706459, 0.022643132135272026, 0.034098509699106216, -0.010399105958640575, 0.021772462874650955, -0.06942357122898102, -0.03806862235069275, -0.006848604418337345, -0.021811218932271004, -0.03899936378002167, -0.014116792008280754, -0.02723744325339794, 0.0573907345533371, -0.02903478778898716, 0.02177562564611435, 0.01966572366654873, -0.04359712824225426, -0.013986755162477493, 0.01907728984951973, -0.030876945704221725, 0.0042619542218744755, 0.0197588037699461, 0.007923523895442486, -0.004872788675129414, 0.01775500737130642, 0.005086912773549557, -0.019808420911431313, 0.07296005636453629, 0.028823258355259895, 0.03829796612262726, 0.04120364785194397, -0.031657107174396515, 0.001856792951002717, 0.022760311141610146, -0.038871027529239655, -0.02756991982460022, 0.006537091452628374, -0.020536895841360092, -0.0530448853969574, -0.004973416682332754, -0.04928422346711159, 0.054009076207876205, -0.031797856092453, -0.03964998573064804, 0.02848849445581436, -0.0493909977376461, 0.016378380358219147, 0.006710394285619259, 0.02097795344889164, -0.312787801027298, 0.05837373435497284, 0.04268317669630051, 0.06573769450187683, -0.006407873705029488, 0.040413789451122284, 0.030615368857979774, 0.02803952433168888, 0.03850466385483742, -0.01327677071094513, 0.050868768244981766, -0.016303859651088715, 0.04541268199682236, -0.01815662905573845, -0.04970969259738922, 0.026562798768281937, 0.034469280391931534, 0.033980462700128555, -0.03383198007941246, 0.023253336548805237, 0.015554675832390785, 0.040648359805345535, 0.14545387029647827, 0.0812394991517067, -0.077676922082901, -0.06761772185564041, -0.025629419833421707, 0.028611039742827415, 0.033431317657232285, 0.013851992785930634, 0.0006500381277874112, -0.0024609852116554976, -0.01302314829081297, 0.016424501314759254, 0.024021951481699944, -0.043302085250616074, 0.009472988545894623, 0.04304264485836029, 0.10149437189102173, 0.006868555210530758, -0.01646345667541027, 0.007897218689322472, 0.013225756585597992, 0.01353338360786438, 0.057115018367767334, -0.010922128334641457, 0.013603061437606812, 0.01826835237443447, -0.04255864396691322, 0.010728607885539532, -0.008089844137430191, -0.034082043915987015, 0.006948338821530342, 0.03186725825071335, 0.03154908865690231, 0.006223428063094616, -0.019416840746998787, -0.013938282616436481, -0.028368011116981506, -0.031959548592567444, -0.027922311797738075, -0.020283302292227745, 0.08316483348608017, -0.020521191880106926, 0.035857342183589935], "4203f0ce-85fa-413d-9c3c-21a3198706b9": [-0.06002458930015564, -0.03470548242330551, 0.08566304296255112, 0.11534366756677628, 0.02211957983672619, 0.017152100801467896, 0.08159222453832626, -0.012712087482213974, 0.008953532204031944, -0.03521786630153656, 0.02479393780231476, -0.01685619354248047, 0.006511351093649864, -0.03501394763588905, 0.0017292022239416838, 0.037633076310157776, -0.0033496057149022818, -0.025622384622693062, -0.1541217565536499, 0.06111738458275795, 0.0025883777998387814, -0.04271060228347778, 0.02763412892818451, 0.02337048389017582, -0.07157085835933685, -0.010377195663750172, 0.031210530549287796, -0.017788158729672432, -0.0018838504329323769, -0.14700151979923248, 0.012069601565599442, -0.0018869235645979643, 0.000558089988771826, 0.001908704056404531, 0.04234641045331955, 0.06222226470708847, 0.034717947244644165, -0.008568407967686653, 0.005505110137164593, 0.02655193768441677, -0.014071156270802021, -0.05601208657026291, -0.02390454150736332, -0.005745758768171072, 0.05556733161211014, -0.02905425615608692, 0.03606913238763809, 0.005942382849752903, 0.034359343349933624, -0.03918192908167839, -0.007449752651154995, 0.006912789773195982, -0.018165383487939835, 0.0036998942960053682, -0.007121689151972532, 0.027245741337537766, 0.07490309327840805, 0.01791253872215748, 0.08270799368619919, 0.017525624483823776, 0.039960116147994995, 0.030389046296477318, -0.050359684973955154, 0.039267975836992264, 0.08890838921070099, 0.02630981244146824, -0.07987552881240845, -0.052241288125514984, 0.03208713233470917, 0.0452352911233902, -0.032371122390031815, -0.004682663828134537, 0.03149925917387009, 0.0066916621290147305, -0.016017861664295197, 0.049305666238069534, 0.05635788291692734, 0.012837698683142662, 0.04044326767325401, 0.041536614298820496, -0.03727246820926666, 0.032305214554071426, -0.06436165422201157, 0.03841157257556915, -0.019393660128116608, -0.042209405452013016, 0.030494429171085358, 0.016984792426228523, -0.02551363594830036, -0.02167387120425701, 0.003051887731999159, 0.006692499853670597, 0.005925499368458986, -0.0013878984609618783, -0.03963351249694824, -0.033000655472278595, -0.04643430933356285, -0.007340992800891399, 0.01589919626712799, 0.4207986891269684, 0.029922472313046455, 0.007364865858107805, 0.055700838565826416, 0.03562796488404274, -0.009852921590209007, -0.02207910269498825, 0.010394219309091568, -0.07939089089632034, 0.0130916191264987, 0.033632464706897736, 0.03546230494976044, -0.04737269505858421, 0.038154713809490204, -0.0400431789457798, 0.05308340862393379, -0.03034072183072567, 0.06746107339859009, -0.02338871732354164, -0.031104514375329018, 0.0430847704410553, 0.040940314531326294, 0.0333288349211216, -0.0123305544257164, -0.052042070776224136, 0.022546567022800446, -0.01847391203045845, 0.08190570026636124, 0.07040224969387054, -0.029844531789422035, -0.06360290944576263, 0.04540481045842171, -0.036857087165117264, -0.0050097014755010605, 0.01986093446612358, 0.00716399447992444, -0.0012160104233771563, -0.02064509503543377, -0.02772023156285286, 0.06563730537891388, -0.04719337821006775, 0.005219197832047939, -0.15140710771083832, -0.06292600929737091, 0.009273570030927658, -0.014690938405692577, 0.035042401403188705, -0.0022812113165855408, 0.010142792947590351, -0.0015796881634742022, 0.03698629140853882, 0.0365171954035759, -0.011539141647517681, -0.0412176139652729, -0.010176578536629677, 0.03869757428765297, -0.013077453710138798, -0.01828651688992977, 0.11830735951662064, 0.052014101296663284, 0.021650485694408417, 0.09621454030275345, -0.02304682508111, 0.004176137037575245, -0.05240533873438835, 0.051577672362327576, 0.006842741742730141, -0.027259977534413338, -0.05073792114853859, -0.05882665142416954, -0.005374168045818806, 0.016495928168296814, 0.008754999376833439, -0.09708552807569504, 0.06945780664682388, -0.03936074301600456, -0.039038289338350296, 0.005642817821353674, -0.011933010071516037, 0.021362729370594025, 0.021314186975359917, -0.05937280133366585, -0.018455469980835915, 0.032577257603406906, 0.038640860468149185, -0.040504761040210724, -0.02727191522717476, -0.005835468415170908, 0.006136659067124128, 0.013953745365142822, -0.032487913966178894, 0.013194484636187553, 0.024128159508109093, -0.039974506944417953, 0.015549381263554096, -0.040344301611185074, -0.026598051190376282, -0.030221737921237946, -0.026523148640990257, -0.01738254353404045, 0.006698130164295435, -0.031828731298446655, -0.006097998004406691, -0.026643041521310806, 0.01156616024672985, -0.02216475084424019, 0.025338446721434593, 0.07247002422809601, -0.04570430889725685, 0.0634322464466095, 0.01651250384747982, -0.028458300977945328, -0.051237884908914566, 0.008272175677120686, 0.016261711716651917, -0.04200603812932968, 0.011043265461921692, -0.020260494202375412, -0.008244562894105911, 0.009976881556212902, 0.01350228302180767, -0.015597915276885033, -0.12079641222953796, -0.05404588580131531, -0.3153913617134094, -0.0015207621036097407, -0.013500458560883999, -0.039097510278224945, 0.06442869454622269, -0.06831855326890945, -0.012002764269709587, -0.04347676411271095, 0.01788375899195671, -0.017486928030848503, 0.03421163931488991, -0.0570935420691967, 0.022395746782422066, 0.06327346712350845, -0.009832029230892658, 0.008198401890695095, -0.02748267725110054, 0.0021466538310050964, 0.0441865399479866, 0.015032936818897724, 0.007425344083458185, 0.008402020670473576, 0.0538477823138237, -0.019933514297008514, -0.03282987326383591, 0.024917101487517357, 0.15105010569095612, 0.07926658540964127, 0.023351894691586494, -0.008620934560894966, 0.009846767410635948, -0.009114998392760754, -0.015840426087379456, -0.03949812799692154, 0.033849433064460754, 0.007443098817020655, 0.021424002945423126, -0.03060983493924141, 0.012223377823829651, -0.007308334577828646, -0.04519244283437729, 0.05742121860384941, 0.03796432167291641, -0.011208092793822289, -0.03140190616250038, 0.057527974247932434, -0.006981981452554464, 0.016631444916129112, -0.010759969241917133, 0.039548929780721664, 0.006373737473040819, -0.0050270529463887215, -0.08950677514076233, -0.0345534048974514, -0.025192661210894585, 0.011877703480422497, -0.0657283216714859, -0.02590450458228588, -0.008137212134897709, 0.054727986454963684, -0.020971467718482018, -0.007975972257554531, 0.046809691935777664, -0.056821078062057495, -0.04349924251437187, 0.0012072453973814845, 0.017269961535930634, -0.02870180271565914, -0.003042150754481554, -0.02875821478664875, -0.03346307948231697, 0.031656503677368164, 0.001981141744181514, -0.02458340860903263, 0.02974078617990017, -0.0011396289337426424, 0.003728418378159404, -0.014143912121653557, -0.0485583059489727, 0.017324253916740417, 0.027310259640216827, -0.06560536473989487, -0.011401771567761898, -0.03254365175962448, -0.03405749797821045, -0.005731955170631409, -0.04476868361234665, -0.013346770778298378, 0.06690942496061325, -0.0030847061425447464, -0.09076240658760071, 0.011672023683786392, -0.09628088772296906, -0.01258931215852499, 0.01697925478219986, -0.007094393949955702, -0.2569953501224518, 0.03791554272174835, 0.003213515505194664, 0.07452208548784256, -0.014746468514204025, 0.07254310697317123, -0.023631637915968895, -0.006001971196383238, 8.489647007081658e-05, -0.01922602578997612, 0.08051268756389618, -0.019656872376799583, 0.01780451089143753, 0.02671041153371334, -0.028457386419177055, 0.030528878793120384, -0.00397034827619791, 0.05969567969441414, -0.06992094218730927, 0.07165409624576569, 0.01129174418747425, 0.05079873651266098, 0.11248931288719177, 0.03386911004781723, -0.027600569650530815, -0.027928311377763748, -0.0014738632598891854, 0.029864788055419922, 0.01692015863955021, -0.016005856916308403, -0.029966741800308228, 0.04519634321331978, -0.01811971515417099, -0.004177374765276909, 0.044614993035793304, -0.09312553703784943, -0.007183609530329704, 0.03129962459206581, 0.07455416023731232, -0.022074664011597633, -0.03168928995728493, 0.012230434454977512, 0.02530767396092415, 0.007257839199155569, 0.06735614687204361, 0.031741973012685776, 0.00804735068231821, -0.03156021609902382, -0.08724000304937363, 0.0293419286608696, -0.04010968655347824, -0.031039157882332802, 0.04568932577967644, 0.042588695883750916, 0.00730114383623004, 0.036686450242996216, -0.025168526917696, 0.003645039163529873, 0.0006328874733299017, -0.038988497108221054, -0.0183235052973032, 0.0033582032192498446, 0.05506535992026329, -0.035760972648859024, -0.014400599524378777], "e0440273-311e-4c23-ab1b-e60c6869591c": [-0.07008151710033417, -0.04073241353034973, 0.054254744201898575, 0.07264354825019836, -0.008300762623548508, 0.004727919586002827, 0.04184550791978836, -0.03776711970567703, -0.040765430778265, -0.05615810304880142, 0.03794453665614128, 0.002011698205024004, -0.01928599737584591, -0.015242368914186954, -0.04853474348783493, 0.039081066846847534, -0.019381003454327583, -0.042972154915332794, -0.1275276243686676, 0.024161281064152718, 0.008661185391247272, -0.03633987903594971, 0.01104523241519928, 0.027268629521131516, -0.02644558809697628, 0.03766239061951637, 0.023213490843772888, -0.02937859483063221, -0.010439190082252026, -0.14733584225177765, 0.03534935787320137, 0.0176401250064373, -0.013243875466287136, -0.02084016613662243, 0.012125722132623196, 0.06599581986665726, 0.016245832666754723, 0.025059660896658897, 0.022419637069106102, 0.02416224405169487, 0.010594054125249386, -0.03940921649336815, -0.006848729215562344, -0.017886143177747726, 0.06723134964704514, -0.04742933809757233, -0.014122647233307362, 0.05701686814427376, -0.019533773884177208, 0.001348955207504332, -0.03609408810734749, -0.02316739410161972, -0.02137933112680912, 0.06600869446992874, -0.054174382239580154, 0.08320213109254837, 0.04056990146636963, 0.03418508544564247, 0.06743946671485901, 0.023081989958882332, 0.05201345682144165, 0.05506507679820061, -0.05110333487391472, 0.11786080151796341, 0.07810103893280029, 0.048678625375032425, -0.06707064807415009, -0.08500446379184723, -0.014462903141975403, -0.0028889214154332876, -0.023812798783183098, 0.027233146131038666, 0.019164487719535828, 0.06842401623725891, 0.025359243154525757, 0.039553623646497726, -0.02665058523416519, 0.006731309462338686, 0.036336809396743774, 0.04633534699678421, -0.0422186516225338, 0.0008837134228087962, -0.067345529794693, -0.01228649728000164, 0.021107416599988937, -0.060662128031253815, 0.003769405884668231, 0.0061398278921842575, -0.013949565589427948, -0.03983931243419647, -0.016424544155597687, -0.014275435358285904, 0.013776957057416439, 0.013579178601503372, 0.01717999577522278, -0.04754245653748512, -0.028006762266159058, 0.03675369173288345, 0.03055601380765438, 0.3855748772621155, 0.010183450765907764, -0.002164909616112709, 0.04316052794456482, 0.04908646643161774, -0.03766157478094101, -0.0009083104669116437, 0.0123904999345541, -0.05182398483157158, 0.03480520471930504, 0.01241268776357174, -0.02134764939546585, -0.02729220874607563, 0.04930385947227478, -0.018449848517775536, 0.005432218313217163, 0.0019265603041276336, 0.03572627529501915, -0.023885147646069527, -0.00511317839846015, 0.00027038439293392, 0.013381417840719223, 0.009195120073854923, -0.05042605847120285, -0.051200706511735916, 0.003400240559130907, -0.005762267392128706, 0.03616375848650932, 0.012800401076674461, -0.036872122436761856, -0.04842296615242958, 0.044059135019779205, -0.06922698765993118, -0.027651386335492134, 0.026288539171218872, -0.0051590995863080025, 0.023032285273075104, 0.0006520409369841218, 0.018438272178173065, 0.04526657238602638, -0.023835299536585808, -0.014341263100504875, -0.0772624984383583, -0.04021691530942917, 0.04141903296113014, -0.017141150310635567, 0.0697326809167862, 0.008720647543668747, -0.0014765902888029814, 0.058634594082832336, 0.07900771498680115, -0.016601437702775, -0.011798521503806114, -0.03667335957288742, -0.00658028107136488, 0.015007358975708485, -0.011477561667561531, 0.028227761387825012, 0.08865777403116226, 0.01939668320119381, -0.006070730742067099, 0.08271076530218124, 0.028422174975275993, 0.037456102669239044, 0.026826191693544388, 0.004710938315838575, 2.6720468667917885e-05, -0.05820750817656517, -0.056634571403265, -0.00285183428786695, -0.030146770179271698, 0.04909238964319229, 0.028260542079806328, -0.04636711999773979, 0.09776467084884644, 0.010144445113837719, -0.06682142615318298, -0.04155050963163376, 0.046388667076826096, 0.011771909892559052, 0.025649258866906166, -0.019323859363794327, -0.06698355823755264, -0.007104893680661917, 0.03258073702454567, -0.048457060009241104, -0.07612752914428711, 0.05633635073900223, -0.01837654784321785, 0.009260309860110283, -0.037686724215745926, 0.07995140552520752, 0.053944479674100876, -0.052170563489198685, 0.04305433854460716, -0.02993839420378208, -0.024591811001300812, 0.03304222226142883, -0.042796436697244644, 0.014401986263692379, -0.013223403133451939, -0.045542214065790176, 0.022208809852600098, -0.028630875051021576, 0.018661441281437874, -0.005632681306451559, 0.029137693345546722, 0.06335671991109848, -0.07119928300380707, 0.15430888533592224, 0.03393741697072983, 0.0004877212049905211, -0.05842801555991173, -0.0129840187728405, -0.00013228700845502317, -0.02221427671611309, 0.004783852491527796, 0.008894202299416065, 0.013931655324995518, -0.028486981987953186, -0.011560932733118534, -0.020335886627435684, -0.09057562053203583, -0.06263094395399094, -0.301919162273407, -0.006124523002654314, -0.03175809606909752, -0.014131378382444382, 0.030454033985733986, -0.04982255399227142, 0.0017761101480573416, -0.01649356447160244, 0.058966975659132004, -0.023023933172225952, -0.010502004995942116, -0.018490152433514595, 0.02324315719306469, 0.04941562935709953, -0.05021729692816734, -0.032732367515563965, -0.027557887136936188, 0.004846703726798296, 0.08892520517110825, 0.020702673122286797, -0.03246156871318817, 0.028717106208205223, 0.015915002673864365, -0.06972286850214005, -0.03230844810605049, -0.010490546002984047, 0.16777223348617554, 0.044060755521059036, 0.027226043865084648, -0.005987423937767744, -0.010610661469399929, 0.0053360252641141415, 0.004946031607687473, -0.026832902804017067, 0.039115771651268005, 0.014333700761198997, 0.003431862685829401, -0.019921617582440376, -0.0012058898573741317, -0.03631678968667984, -0.07031980901956558, 0.01903887465596199, 0.025353968143463135, -0.01159446407109499, -0.10558950901031494, 0.0193927101790905, -0.016806889325380325, 0.031108221039175987, 0.009701535105705261, 0.04629495367407799, 0.007142144721001387, 0.007785567082464695, -0.06161286309361458, -0.05163747817277908, -0.043339964002370834, -0.01956014893949032, -0.05269622802734375, 0.022151567041873932, -0.029088851064443588, 0.023046988993883133, -0.038580745458602905, -0.005530822090804577, 0.025289801880717278, -0.04713006317615509, -0.03829263895750046, 0.007883201353251934, -0.03174556791782379, -0.034871943295001984, 0.004668013192713261, -0.02023426815867424, -0.0002993100497405976, 0.0632515698671341, -0.009674213826656342, -0.05265555530786514, -0.006987263914197683, -0.013133334927260876, 0.00784449465572834, 0.05122269690036774, 0.022810515016317368, 0.02572968229651451, 0.02745969034731388, -0.0237406138330698, -0.03334244340658188, -0.006160869728773832, -0.02049463428556919, -0.02794710546731949, 0.010120447725057602, -0.015874236822128296, 0.04388643801212311, -0.008942642249166965, -0.02165629342198372, 0.02886209264397621, 0.005083519499748945, -0.030208993703126907, -0.0035467897541821003, -0.02326681651175022, -0.2807581424713135, 0.06463678926229477, -0.021509287878870964, 0.05640089139342308, -0.023807909339666367, 0.01440224889665842, -0.013670629821717739, -0.02028174325823784, 0.018393581733107567, -0.01037854328751564, 0.08360736072063446, -0.03910520672798157, 0.004974312614649534, -0.030875086784362793, -0.03182074800133705, 0.04728373512625694, 0.008185946382582188, 0.08940828591585159, -0.024678697809576988, 0.05958307161927223, 0.048198238015174866, 0.09336785972118378, 0.1637088805437088, 0.052200645208358765, -0.04276300594210625, -0.016269026324152946, 0.011611709371209145, 0.030017996206879616, 0.04694412276148796, 0.0392749048769474, -0.03523656353354454, 0.0043222359381616116, -0.007074776571244001, 0.0017331959679722786, 0.018441395834088326, -0.05940689519047737, -0.03803296014666557, -0.02749810926616192, 0.06441432982683182, -0.0034919013269245625, 0.001113586244173348, 0.013412535190582275, -0.03557596355676651, 0.01349570695310831, 0.11971040815114975, 0.03518017753958702, 0.06739970296621323, 0.005583018530160189, -0.10168983042240143, -0.028589444234967232, -0.026551267132163048, -0.04013776779174805, 0.03212929517030716, -0.004978670738637447, 0.0318826399743557, 0.025417668744921684, -0.035377345979213715, -0.025111358612775803, -0.004955868702381849, -0.04980093613266945, -0.02462402544915676, -0.026121370494365692, 0.062179937958717346, -0.02124042809009552, -0.056860022246837616], "b28e90df-47fc-4443-90bb-fb148f26137a": [-0.10062301158905029, -0.06382985413074493, 0.09937409311532974, 0.09648837894201279, -0.018834810703992844, 0.03907515108585358, 0.03269346058368683, -0.02738380990922451, -0.023901287466287613, -0.03297202289104462, 0.024222983047366142, -0.018433980643749237, -0.016824951395392418, -0.024980122223496437, -0.030693041160702705, 0.05010662600398064, 0.013812167569994926, -0.009226629510521889, -0.14538894593715668, 0.040255263447761536, 0.01691746525466442, -0.016684293746948242, 0.032915450632572174, 0.0157678984105587, -0.03369278833270073, 0.012747294269502163, 0.030773891136050224, -0.020695598796010017, -0.0025732298381626606, -0.11967942863702774, -0.009350629523396492, 0.004444361198693514, -0.016665475443005562, 0.010888672433793545, 0.02603876031935215, 0.07432392239570618, 0.03770763799548149, 0.002129803877323866, 0.006322131026536226, 0.049780987203121185, -0.01612241007387638, -0.006091451738029718, -0.012017211876809597, -0.026581138372421265, 0.06556054204702377, -0.0267360657453537, 0.035895053297281265, -0.03770070895552635, -0.004126048181205988, -0.009011655114591122, -0.03697260469198227, -0.026693210005760193, -0.030543316155672073, 0.018965087831020355, -0.023806948214769363, 0.07505150884389877, 0.0896005779504776, -0.014769353903830051, 0.04333414137363434, 0.0009598328033462167, 0.06258542090654373, 0.043780650943517685, -0.060224030166864395, 0.07427777349948883, 0.08213062584400177, 0.024431807920336723, -0.08341718465089798, -0.04790819436311722, -0.0001411265111528337, 0.03378285840153694, -0.029081614688038826, -0.005505539011210203, 0.03285548463463783, 0.023860184475779533, 0.009462563320994377, 0.005578205920755863, 0.02359532006084919, -0.013123730197548866, 0.058672476559877396, 0.0353933684527874, -0.06630054116249084, 0.005164413712918758, -0.04977240040898323, 0.027966851368546486, -0.010356809943914413, -0.06955820322036743, 0.037418365478515625, -0.039065394550561905, -0.020768003538250923, -0.01385926641523838, 0.01426402386277914, -0.04505748301744461, 0.01820835843682289, -0.02867833338677883, -0.020647205412387848, -0.013468261808156967, -0.040018051862716675, -0.007578113116323948, 0.012172120623290539, 0.3935939073562622, 0.027469370514154434, 0.021607108414173126, 0.02147482894361019, 0.033816419541835785, -0.03252008184790611, 0.023738853633403778, 0.01548962015658617, -0.06826066970825195, 0.009935981594026089, 0.0349123515188694, -0.00797477550804615, -0.011218220926821232, 0.05618837848305702, 0.003093525068834424, 0.047622986137866974, -0.020632147789001465, 0.018977472558617592, -0.02544228360056877, 0.016982773318886757, 0.024319034069776535, 0.030173441395163536, 0.0030154266860336065, -0.014408075250685215, -0.0612291656434536, 0.05085073411464691, -0.04036732017993927, 0.052727364003658295, 0.04903179407119751, -0.008761951699852943, -0.07082437723875046, 0.017618224024772644, -0.039037127047777176, -0.003369099460542202, 0.033813074231147766, 0.012426086701452732, 0.02599593810737133, 0.02374238707125187, -0.005319349933415651, 0.07252892851829529, -0.010086205787956715, 0.0002528193290345371, -0.12824960052967072, -0.06652093678712845, -0.006950942799448967, -0.013059292919933796, 0.04620910435914993, 0.042885616421699524, 0.024997159838676453, 0.035187236964702606, 0.060673631727695465, 0.014833157882094383, 0.00984229613095522, -0.002912683179602027, -0.03192565590143204, 0.043230775743722916, -0.031592074781656265, 0.011427601799368858, 0.12193423509597778, -0.002655158517882228, 0.009539876133203506, 0.06851865351200104, -0.02334916777908802, 0.007474488113075495, -0.048830997198820114, 0.017715563997626305, 0.000652870861813426, -0.039451319724321365, -0.04398251324892044, -0.007496111560612917, -0.014272180385887623, 0.011434027925133705, 0.027115099132061005, -0.1089145764708519, 0.07054696977138519, -0.027888910844922066, -0.04021672531962395, -0.018836334347724915, -0.013261266052722931, -0.014251130633056164, 0.04089522361755371, -0.04193519428372383, -0.07923232018947601, 0.0010062941582873464, 0.046171292662620544, -0.07931695133447647, -0.03391534835100174, 0.024038227275013924, -0.014867131598293781, 0.02702365070581436, -0.0342131070792675, 0.02870434895157814, 0.012355421669781208, -0.044403936713933945, 0.010517830960452557, -0.03797971457242966, -0.02898591198027134, -0.0005406956770457327, -0.020972220227122307, -0.02152221091091633, -0.010191644541919231, -0.036590054631233215, -0.01700782962143421, -0.05820981785655022, 0.009485222399234772, 0.02116399072110653, 0.0032255486585199833, 0.07590064406394958, -0.04316885769367218, 0.13389401137828827, 0.013503897935152054, -0.027169113978743553, -0.06706929206848145, 0.021074486896395683, 0.016536248847842216, -0.022529058158397675, 0.016071124002337456, -0.016295097768306732, 0.03823929280042648, -0.019086383283138275, -0.005769193638116121, -0.033745042979717255, -0.10028329491615295, -0.08570751547813416, -0.3017723858356476, 0.012705300934612751, -0.019258374348282814, -0.05929698422551155, 0.034531768411397934, -0.09320913255214691, 0.020624881610274315, -0.06645704060792923, 0.04783935844898224, -0.05299888551235199, -0.006574965547770262, -0.07111146301031113, 0.03592147305607796, 0.011304737068712711, -0.02445436641573906, 0.0006014173268340528, -0.04832087829709053, 0.0007363416370935738, 0.03874794766306877, 0.05111866816878319, -0.0017817325424402952, 0.02813415788114071, 0.039094749838113785, -0.0686885267496109, -0.028798513114452362, -0.008958851918578148, 0.1300867795944214, 0.06608898192644119, 0.051136791706085205, -0.030146894976496696, -0.010436850599944592, 0.02784918248653412, -0.023063616827130318, -0.03514266014099121, 0.05258478969335556, 0.03408190235495567, -0.0019614086486399174, -0.03752092272043228, 0.021057119593024254, -0.00985906831920147, -0.047261595726013184, 0.10081213712692261, 0.019551850855350494, -0.01841231808066368, -0.06862655282020569, 0.00980533566325903, 0.006632958073168993, 0.007087504491209984, 0.000814899627584964, 0.005562460515648127, 0.03756563737988472, 0.02358602173626423, -0.055035028606653214, -0.04810699075460434, -0.033287208527326584, -0.012015032581984997, -0.034283533692359924, 0.008032608777284622, -0.027621084824204445, 0.0337955616414547, -0.009454485960304737, -0.027436351403594017, 0.04875238612294197, -0.06967087835073471, -0.04203956201672554, -0.003821685677394271, 0.03022729977965355, -0.025173330679535866, 0.002422805642709136, 0.021862011402845383, -0.04073471575975418, 0.03408022224903107, 0.01947646215558052, -0.03784392401576042, 0.0036783579271286726, -0.007142109330743551, -0.02092786319553852, 0.04382145032286644, -0.06971835345029831, 0.00251203216612339, 0.008209221065044403, -0.0510903000831604, -0.010166802443563938, 1.3871056580683216e-05, -0.03508957475423813, -0.04476258531212807, -0.017763342708349228, -0.04097440838813782, 0.06064215302467346, -0.033202458173036575, -0.03758588060736656, 0.04943183436989784, -0.03156993165612221, -0.0035287211649119854, 0.04653191193938255, 0.007834650576114655, -0.2782439887523651, 0.019123412668704987, 0.004963994957506657, 0.06555423885583878, -0.00938018411397934, 0.08882275223731995, 0.008124765940010548, -0.027832522988319397, -0.0009030853980220854, -0.023109322413802147, 0.06431884318590164, -0.007570277433842421, 0.017336880788207054, 0.011279317550361156, -0.013672037981450558, 0.03988835960626602, 0.033952172845602036, 0.07449505478143692, -0.05518561229109764, 0.04253501072525978, 0.031300418078899384, 0.06667613983154297, 0.13544097542762756, 0.053764235228300095, -0.0509285144507885, -0.053350310772657394, -0.013943248428404331, 0.05267113447189331, 0.0320691280066967, 0.02505737729370594, -0.017587164416909218, 0.040541987866163254, -0.011530844494700432, 0.011362990364432335, 0.0194456297904253, -0.05402769148349762, -0.04900514706969261, 0.012548405677080154, 0.07603343576192856, 0.002941275481134653, -0.03224385157227516, 0.03683876991271973, 0.016397686675190926, 0.03243209421634674, 0.045726995915174484, 0.009806225076317787, 0.04384905472397804, 0.009119080379605293, -0.09819993376731873, 0.04760210961103439, -0.038596875965595245, -0.012292496860027313, 0.060311004519462585, -0.0071879238821566105, 0.04009697213768959, 0.01544626709073782, 0.003640245646238327, 0.019595663994550705, 0.015171583741903305, -0.056013453751802444, -0.010628396645188332, -0.018959416076540947, 0.06850916147232056, -0.00556109007447958, 0.023996923118829727], "e6c9a6c4-3755-4f6c-926f-f3dcbda6ad7f": [-0.03647415712475777, -0.05123695731163025, 0.05877869203686714, 0.04954642057418823, -0.02922041341662407, 0.033397696912288666, 0.02260339818894863, -0.005744569469243288, -0.001157269231043756, -0.04510095342993736, 0.020467540249228477, -0.054908525198698044, -0.02204800210893154, -0.0418589748442173, -0.025481071323156357, 0.041345495730638504, -0.026095110923051834, 0.027070345357060432, -0.12086249142885208, 0.0758657231926918, 0.012502274475991726, -0.01739431545138359, 0.0236361064016819, -0.012007944285869598, -0.08282743394374847, 0.016910746693611145, 0.02536262758076191, -0.005436995532363653, -0.021821066737174988, -0.13440702855587006, -0.0051210420206189156, 0.03123711235821247, -0.0368477888405323, -0.01844772882759571, 0.02480587549507618, 0.07997199892997742, 0.04977470636367798, -0.025855015963315964, -0.01607079990208149, 0.01735755056142807, -0.022756952792406082, -0.01085395086556673, -0.035105932503938675, 0.010945132002234459, 0.07373803853988647, -0.01490016095340252, 0.04296303912997246, -0.027266565710306168, 0.021869029849767685, -0.02174132503569126, -0.04357507452368736, 0.015572766773402691, 0.02583749033510685, -0.0023223208263516426, -0.011600064113736153, 0.03333987668156624, 0.07224515825510025, 0.013837151229381561, 0.0499715618789196, 0.008110673166811466, 0.06350156664848328, 0.03849434480071068, -0.07723180949687958, 0.04305275157094002, 0.10327736288309097, 0.009067703038454056, -0.07701276987791061, -0.009081578813493252, 0.038240473717451096, 0.03296227008104324, -0.038360655307769775, 0.0027038566768169403, 0.0020414877217262983, 0.05289119854569435, 0.024426588788628578, 0.015086391009390354, 0.039100851863622665, 0.030223047360777855, 0.04892692342400551, 0.007837609387934208, -0.03686356544494629, -0.013762264512479305, -0.030454309657216072, 0.046146225184202194, -0.025444520637392998, -0.02482377365231514, 0.01270227786153555, -0.021373091265559196, -0.0212375707924366, 0.00201701489277184, -0.021370988339185715, -0.05041283741593361, 0.019167842343449593, 0.00835791788995266, -0.012823453173041344, -0.007240130566060543, -0.02946438267827034, -0.0011819445062428713, 0.018251286819577217, 0.4198189079761505, 0.031061436980962753, 0.029925398528575897, 0.029382241889834404, 0.035886798053979874, -0.02024565450847149, -0.0076707154512405396, 0.05397866666316986, -0.11292663216590881, 0.018475759774446487, 0.010332117788493633, 0.013928364031016827, -0.0350637249648571, 0.07163465768098831, 0.003244353225454688, 0.01648016646504402, -0.009423637762665749, 0.04575619846582413, -0.049016665667295456, -0.038736194372177124, 0.04510946571826935, -0.019521793350577354, -0.018762663006782532, -0.024443985894322395, -0.044472649693489075, -0.010464238934218884, -0.028974521905183792, 0.07157420367002487, 0.04909750074148178, -0.004317270126193762, -0.06881118565797806, 0.047637246549129486, -0.06604787707328796, -0.010423477739095688, 0.0594232939183712, 0.0366533063352108, 0.002307639457285404, 0.015430022962391376, -0.020864035934209824, 0.02970856986939907, -0.03373922035098076, -0.02895401231944561, -0.12156857550144196, -0.02661530300974846, -0.03572215139865875, 0.021813416853547096, 0.05102336406707764, 0.02664719708263874, -0.02129531465470791, 0.03984897956252098, 0.07390738278627396, 0.02534801885485649, -0.004376414697617292, -0.020469965413212776, -0.029854588210582733, 0.007849237881600857, -0.025840725749731064, -0.005418307613581419, 0.1153792068362236, 0.011123842559754848, 0.0050633857026696205, 0.07727845758199692, -0.011659524403512478, 0.006885047070682049, -0.02954971417784691, 0.05102654919028282, 0.006131426896899939, -0.03138439357280731, -0.030151670798659325, -0.05334040895104408, -0.011774339713156223, -0.019614193588495255, 0.03553246706724167, -0.029330477118492126, 0.025362465530633926, -0.034240271896123886, -0.056019123643636703, 0.003141487715765834, -0.02523205429315567, -0.030082762241363525, 0.061130788177251816, -0.04528627544641495, -0.04081638529896736, -0.007085494231432676, 0.06171741336584091, -0.05656593665480614, -0.037793874740600586, 0.028776684775948524, -0.015173040330410004, 0.02229655347764492, -0.01885969378054142, 0.028446992859244347, -0.0077715469524264336, -0.01860184594988823, -0.006161828991025686, -0.02930568903684616, -0.04221022129058838, 0.004100799560546875, -0.0427003875374794, -0.03649119660258293, -0.029944129288196564, -0.05978519842028618, -0.025506939738988876, -0.06734219938516617, 0.023847324773669243, 0.005966016091406345, 0.017326053231954575, 0.06254588067531586, -0.06122872605919838, 0.07957470417022705, 0.01909228228032589, -0.03041640669107437, -0.04681310057640076, 0.0009635386522859335, 0.005069223698228598, 0.020523544400930405, -0.013167614117264748, 0.023816676810383797, 0.011339535005390644, -0.04849007725715637, -0.012957548722624779, 0.006931360810995102, -0.11059542000293732, -0.10280171781778336, -0.3057774305343628, -0.008737655356526375, -0.02396676503121853, -0.04190061613917351, 0.0611402690410614, -0.07933828234672546, -0.025294426828622818, -0.028211580589413643, 0.055557940155267715, -0.059554874897003174, 0.061128366738557816, -0.050843480974435806, 0.020062969997525215, 0.06815065443515778, -0.03144507482647896, 0.005983447190374136, -0.011695479974150658, 0.009108244441449642, 0.05743018910288811, 0.0763610452413559, -0.030466819182038307, 0.020296268165111542, 0.01508314162492752, -0.022168969735503197, -0.031067192554473877, 0.01161258015781641, 0.1832786351442337, 0.08578911423683167, 0.030765052884817123, -0.02497211843729019, -0.041784174740314484, 0.03769947960972786, -0.004994823131710291, -0.03410134091973305, 0.028696121647953987, 0.047947417944669724, 0.01378701627254486, 0.019727608188986778, 0.0028870231471955776, 0.007568258326500654, -0.051099762320518494, 0.06651249527931213, 0.004480242729187012, 0.001342994743026793, -0.08018361032009125, -0.00678090937435627, -0.016868717968463898, 0.0014117449754849076, -0.0021646730601787567, 0.025551006197929382, -0.002935338532552123, 0.004427356645464897, -0.059126924723386765, -0.025612372905015945, 0.0016015825094655156, 0.019789626821875572, -0.013784239999949932, -0.017228079959750175, -0.06442767381668091, 0.0048700966872274876, -0.004016979597508907, 0.021936289966106415, 0.030713416635990143, -0.06433127075433731, -0.015765180811285973, -0.010692720301449299, 0.00877078901976347, -0.024415502324700356, 0.010003315284848213, -0.015528629533946514, -0.05279390141367912, 0.07060714066028595, 0.05396594479680061, -0.06041356176137924, 0.016054397448897362, 0.014255214482545853, 0.0023437808267772198, 0.03823297470808029, -0.02062262035906315, -0.028402723371982574, 0.044476430863142014, -0.06518244743347168, 0.00850698072463274, 0.01207665354013443, -0.02263450436294079, -0.017030788585543633, -0.0017844196408987045, -0.03870753198862076, 0.04098500683903694, -0.019174544140696526, -0.0675748810172081, 0.05923503264784813, -0.05399420112371445, 0.00930884201079607, 0.023580225184559822, -0.025401664897799492, -0.2840336859226227, 0.03559686616063118, 0.014844520948827267, 0.055933598428964615, -0.003173094242811203, 0.05626969411969185, 0.030856596305966377, 0.018584461882710457, -0.013197139836847782, 0.017787011340260506, 0.042530011385679245, 0.001965376315638423, 0.009012882597744465, 0.012579990550875664, -0.03825381025671959, 0.01268150843679905, 0.02440231665968895, 0.04709875211119652, -0.04987851530313492, 0.053688399493694305, 0.037102121859788895, 0.06571969389915466, 0.10105092078447342, 0.0390150211751461, -0.03307002782821655, -0.0407295785844326, -0.030120084062218666, 0.0032869339920580387, 0.03849746659398079, 0.03893186151981354, -0.017282696440815926, 0.022519521415233612, -0.0017746579833328724, 0.024296697229146957, 0.04206465929746628, -0.07260815799236298, -0.021534781903028488, 0.03730273246765137, 0.09816133230924606, -0.06634534150362015, -0.024828817695379257, 0.012743078172206879, 0.0413336418569088, 0.019759606570005417, 0.03425104171037674, 0.0029157614335417747, 0.016809385269880295, -0.03715299814939499, -0.05465346947312355, 0.030211959034204483, -0.04001632705330849, -0.031596649438142776, 0.0510760098695755, -0.013951956294476986, 0.06176275759935379, 0.039339639246463776, -0.03624963015317917, -0.004276976455003023, 0.008136801421642303, -0.05103076249361038, 0.003846109611913562, -0.01812758855521679, 0.0826248973608017, -0.03338584676384926, 0.047098610550165176], "7cafdc7d-5b5b-4de9-9d10-c785f70d6ebf": [-0.06379898637533188, -0.03458668664097786, 0.06583640724420547, 0.061553169041872025, -0.021433517336845398, -0.011704758740961552, 0.05297431722283363, 0.03667772561311722, 0.01763193868100643, -0.04954693466424942, -0.01213410496711731, -0.04558494687080383, -0.043946266174316406, -0.014199279248714447, -0.002078389283269644, 0.018502483144402504, -0.020294250920414925, -0.054743748158216476, -0.10743645578622818, 0.024152006953954697, -0.0029770878609269857, -0.03333756700158119, 0.04427419975399971, -0.002408721949905157, -0.05282268300652504, 0.038292888551950455, -0.01574755646288395, 0.003035597037523985, 0.003971365746110678, -0.149420365691185, -0.006042407359927893, -0.020469224080443382, -0.030776740983128548, -0.008418544195592403, 0.0017997557297348976, 0.07746299356222153, 0.04792195186018944, -0.013305787928402424, -0.020204024389386177, 0.03154629096388817, -0.004661438055336475, -0.026475263759493828, -0.021354125812649727, 0.005593424662947655, 0.0735652893781662, -0.03019309602677822, 0.02536795288324356, -0.054263196885585785, 0.02493670955300331, -0.03558330237865448, -0.008447973057627678, -0.04367494210600853, 0.027706079185009003, -0.015979981049895287, -0.020982304587960243, 0.07997201383113861, 0.07171615213155746, 0.008742512203752995, 0.056636881083250046, 0.0035194989759474993, 0.038136936724185944, 0.04296543076634407, -0.09008540213108063, 0.08956044912338257, 0.04548599570989609, 0.012780077755451202, -0.062537282705307, -0.008991331793367863, 0.026397323235869408, 0.05748992785811424, -0.0382518544793129, -0.005304557736963034, 0.005126855801790953, 0.026729188859462738, 0.04674818366765976, 0.03288748115301132, 0.037126366049051285, 0.03841289505362511, 0.061478666961193085, -0.0070577384904026985, -0.05487298592925072, -0.004603092558681965, -0.021803826093673706, -0.012617552652955055, 0.012838792987167835, -0.04042288661003113, 0.0011876580538228154, 0.00882795825600624, -0.006766384467482567, -0.050765588879585266, -0.016813555732369423, -0.04298427700996399, 0.015886781737208366, -0.019100498408079147, -0.011990061961114407, -0.03238074854016304, -0.03243573009967804, 0.002750648884102702, -0.002556340303272009, 0.37060266733169556, 0.009142395108938217, 0.008231904357671738, 0.047590311616659164, 0.013070731423795223, -0.012758437544107437, 7.943603122839704e-05, 0.017813250422477722, -0.07179152965545654, 0.009624244645237923, 0.04528412967920303, -0.006780390162020922, -0.04356042668223381, 0.07794762402772903, 0.012798546813428402, 0.0685620829463005, -0.009801977314054966, 0.06611165404319763, -0.057857103645801544, 0.010449660941958427, 0.05499936267733574, 0.06569600105285645, -0.005076138768345118, -0.026472343131899834, -0.034894440323114395, 0.05131470784544945, -0.035573560744524, 0.05189846456050873, 0.0394199900329113, 0.002837264910340309, -0.05871767923235893, 0.06865792721509933, -0.051913727074861526, -0.013956326991319656, 0.04870506376028061, 0.049174610525369644, 0.012025660835206509, -0.02182919718325138, -0.01878518797457218, 0.042224060744047165, -0.04030430689454079, -0.02052287757396698, -0.13992834091186523, -0.023759296163916588, -0.006527088116854429, 0.0004604457935784012, 0.033858466893434525, 0.05209978669881821, -0.05257629603147507, 0.02500101365149021, 0.07391513884067535, 0.04274674132466316, 0.0015524794580414891, -0.011637046933174133, -0.04284346103668213, 0.0022292006760835648, 0.005747237242758274, 0.016944536939263344, 0.12475354224443436, 0.010665606707334518, -0.0033759381622076035, 0.055193573236465454, -0.02159317024052143, -0.0008864229312166572, -0.004846930969506502, 0.041870225220918655, 0.016373196616768837, -0.04527643322944641, -0.045345909893512726, -0.050456393510103226, -0.00020999604021199048, 0.02697296440601349, 0.021524805575609207, -0.09401968121528625, 0.05338944122195244, -0.05704354867339134, -0.039546407759189606, -0.057568375021219254, -0.011320029385387897, -0.0012543589109554887, 0.02142513357102871, -0.030955445021390915, -0.07997534424066544, -0.01041528582572937, 0.0673605427145958, -0.04906556010246277, -0.03538740426301956, 0.016073912382125854, -0.03603343665599823, -0.001562917372211814, -0.03374987468123436, 0.04979413375258446, 0.01726478338241577, 0.026378300040960312, -0.013017481192946434, -0.0416489914059639, -0.0383894108235836, 0.017889846116304398, -0.03013310581445694, -0.024229824542999268, -0.03361215069890022, -0.05235239863395691, -0.059619877487421036, -0.05337383225560188, 0.045269910246133804, 0.014691921882331371, 0.02229982428252697, 0.052551887929439545, -0.02757999114692211, 0.09987614303827286, 0.004815463442355394, -0.019488750025629997, -0.03581707924604416, -0.011962472461163998, -0.004953114781528711, -0.009745203889906406, 0.030375493690371513, 0.007805731147527695, 0.017897481098771095, 0.000989622320048511, 0.017522046342492104, -0.007253947667777538, -0.10251611471176147, -0.054003361612558365, -0.2952689528465271, -0.04758191481232643, 0.014918745495378971, -0.09168146550655365, 0.0578310526907444, -0.07902435213327408, 0.0453738272190094, -0.05557180941104889, 0.06662844121456146, -0.018725892528891563, -0.023716606199741364, -0.05840354412794113, 0.04862666875123978, 0.0023505527060478926, -0.0330783873796463, 0.055277518928050995, 0.018755801022052765, 0.00786368828266859, 0.051515743136405945, 0.023201895877718925, -0.01512086857110262, 0.02524304948747158, 0.026608819141983986, -0.03144324570894241, -0.03741007670760155, 0.038856759667396545, 0.16862888634204865, 0.09728571027517319, 0.019339559599757195, 0.03006461076438427, -0.015182837843894958, 0.04911963269114494, -0.017251811921596527, -0.020439554005861282, 0.0017761235358193517, 0.0717170462012291, 0.01930154673755169, -0.010416784323751926, 0.028311507776379585, 0.014537891373038292, -0.06082605570554733, 0.03871557489037514, -0.018467366695404053, -0.005032691638916731, -0.08309523016214371, 0.028719544410705566, 0.0036550567019730806, -0.02124481089413166, -0.011996084824204445, 0.0340791717171669, -0.0030853624921292067, 0.04241387918591499, -0.05057058110833168, -0.026180105283856392, -0.026945918798446655, 0.007611285895109177, -0.042142484337091446, -0.016182566061615944, -0.04028872400522232, 0.02511618658900261, 0.006865435279905796, -0.02001548558473587, 0.012304764240980148, -0.06225420907139778, -0.024272361770272255, -0.0061155445873737335, -0.004299931228160858, -0.047150131314992905, 0.028542326763272285, 0.05076582357287407, -0.07670015096664429, 0.08365137130022049, 0.06250344216823578, -0.07037945091724396, 0.01973969116806984, 0.02971072308719158, 0.026990585029125214, 0.04699704796075821, -0.04110010713338852, 0.0009167214157059789, 0.039349157363176346, -0.04016666114330292, -0.005965459626168013, 0.0008608674397692084, -0.0317121222615242, -0.034791965037584305, -0.00020121975103393197, -0.0364571288228035, 0.05638226494193077, -0.03239811584353447, -0.06193242222070694, 0.05846979469060898, -0.0632929652929306, -0.024973390623927116, 0.030475664883852005, 0.009877296164631844, -0.27945423126220703, 0.018557049334049225, 0.047785259783267975, 0.08929506689310074, 0.017375431954860687, 0.03832501173019409, -0.032202839851379395, -0.042373329401016235, -0.049709487706422806, -0.02109927125275135, 0.0683523640036583, -0.0038924221880733967, -0.011591996066272259, 0.015574903227388859, -0.015555106103420258, 0.04027969017624855, 0.032222431153059006, 0.07685576379299164, -0.03499481454491615, 0.04415532574057579, 0.04179522395133972, 0.0047061508521437645, 0.15176264941692352, 0.023309029638767242, -0.05390485003590584, -0.049413710832595825, -0.04281418025493622, 0.012246079742908478, 0.03401461988687515, 0.013118259608745575, -0.03801367059350014, 0.0053002252243459225, 0.019165346398949623, 0.007255211006850004, -0.004495295695960522, -0.052274592220783234, -0.034525830298662186, 0.017453022301197052, 0.08681045472621918, -0.027159279212355614, -0.011215222999453545, 0.046173132956027985, 0.013091936707496643, -0.014460002072155476, 0.021806340664625168, 0.03781643137335777, 0.011260135099291801, -0.020732827484607697, -0.08955010026693344, 0.0256601981818676, -0.04561638459563255, -0.03174350783228874, 0.037214990705251694, 0.01841445453464985, 0.0035822021309286356, 0.01981312781572342, 0.0024129149969667196, -0.006780077703297138, 0.016335876658558846, -0.012188022956252098, -0.015170826576650143, -0.017776982858777046, 0.09840027987957001, 0.012212979607284069, 0.04695047438144684], "c4665ae7-ffad-4ece-9aae-7bab82bf571e": [-0.04881230741739273, -0.025183390825986862, 0.035849373787641525, 0.06514368951320648, 0.007913568057119846, 0.003460514359176159, 0.031861692667007446, 0.02101033739745617, -0.010680506005883217, -0.02772613614797592, -0.002975005656480789, -0.02300027571618557, -0.02190122753381729, -0.05777517333626747, -0.009100193157792091, 0.04776763543486595, 0.0019613602198660374, -0.019214557483792305, -0.14570941030979156, 0.045392364263534546, -0.017059454694390297, -0.05260221287608147, 0.05778227001428604, -0.0017936894437298179, -0.025779403746128082, 0.03475165367126465, 0.0027031763456761837, -0.02431151457130909, -0.025967946276068687, -0.12112996727228165, 0.01573016867041588, -0.017987430095672607, 0.005237591452896595, -0.025732943788170815, 0.008104092441499233, 0.07213591039180756, 0.06748449802398682, -0.03026733547449112, -0.016336524859070778, 0.06748317182064056, -0.005708605516701937, -0.02945026196539402, -0.003998434171080589, 0.005389444530010223, 0.045496199280023575, -0.006392913870513439, 0.012748092412948608, -0.07870856672525406, -0.001096645020879805, -0.03293590620160103, -0.014805367216467857, -0.052293404936790466, 0.0031993056181818247, -0.017237436026334763, -0.02907421812415123, 0.06793045997619629, 0.058848898857831955, 0.003855485236272216, 0.02665819227695465, -0.0039047927130013704, 0.03646015748381615, 0.04848724231123924, -0.0974726751446724, 0.09926590323448181, 0.06777362525463104, 0.01331494189798832, -0.0889037474989891, 0.011957996524870396, -0.006199515890330076, 0.05268559977412224, -0.050513606518507004, 0.004160633776336908, 0.023325467482209206, 0.02875247597694397, 0.026245472952723503, 0.04095356538891792, 0.03709101304411888, 0.034238580614328384, 0.049678876996040344, -0.03716667741537094, -0.07675003260374069, 0.0032180079724639654, -0.039949044585227966, 0.0032009920105338097, 0.01795314997434616, -0.07000405341386795, -0.006609711796045303, 0.0009876705007627606, -0.046432796865701675, -0.028114890679717064, 0.007174375467002392, -0.025020111352205276, 0.0336688794195652, -0.02016432210803032, -0.02123081125319004, -0.005192840006202459, -0.031096603721380234, -0.006200341507792473, 0.00731659634038806, 0.38180866837501526, 0.002095488365739584, 0.004857060499489307, 0.02001434750854969, -0.022530479356646538, -0.00882669910788536, 0.004795172717422247, 0.03376559913158417, -0.06655212491750717, 0.02771519310772419, 0.10043440014123917, 0.029953137040138245, -0.010735566727817059, 0.06133401393890381, 0.007643057499080896, 0.07019928097724915, -0.01943601481616497, 0.08475727587938309, -0.03921894356608391, 0.009559793397784233, 0.02633686363697052, 0.026221856474876404, -0.0023202896118164062, -0.013283438980579376, -0.026486389338970184, 0.060828741639852524, -0.04817205294966698, 0.04478864744305611, 0.08346705138683319, -0.0011754402657970786, -0.07798746228218079, 0.025831440463662148, -0.0650666356086731, -0.027913669124245644, 0.03814475238323212, 0.04936891794204712, 0.0003989076940342784, -0.0315614677965641, 0.0012218992924317718, 0.03960537910461426, -0.022813847288489342, -0.01037729624658823, -0.14243115484714508, -0.03742503374814987, -0.028934186324477196, 0.004151664208620787, 0.04122941941022873, 0.06304479390382767, -0.04958634078502655, -0.002164964098483324, 0.07880368828773499, 0.03726450353860855, -0.02741159312427044, -0.007143909577280283, -0.03372003510594368, -0.009759960696101189, 0.0022550611756742, -0.016978982836008072, 0.10427305847406387, -0.015871262177824974, 0.004525267984718084, 0.07441794872283936, -0.00975373201072216, 0.02532714232802391, -0.006499740295112133, 0.03865848481655121, -0.01162060908973217, -0.07394510507583618, -0.03830361366271973, -0.005996438674628735, 0.005860673263669014, 0.008723271079361439, 0.019204407930374146, -0.07276652008295059, 0.021677011623978615, -0.04710062965750694, -0.017991328611969948, -0.0390864759683609, -0.012149826623499393, -0.01401252206414938, 0.03396770358085632, -0.03404734656214714, -0.05159064009785652, -0.027947241440415382, 0.050068195909261703, -0.061586327850818634, -0.020180927589535713, -0.013154531829059124, -0.015558695420622826, 0.003987799398601055, -0.018756473436951637, 0.03139133378863335, 0.015126830898225307, 0.005617187358438969, -0.027124570682644844, -0.05525466799736023, -0.03721204027533531, -0.0007807306828908622, 0.0007786991191096604, -0.004166893661022186, -0.03202466666698456, -0.03752053901553154, -0.06574667990207672, -0.05631570145487785, 0.05971579626202583, 0.03113448992371559, 0.027881288900971413, 0.038805097341537476, -0.05013157054781914, 0.09511847048997879, 0.02544409967958927, -0.013417930342257023, -0.04764055460691452, -0.021660320460796356, 0.0313265323638916, -0.007960840128362179, 0.047715116292238235, -0.009326438419520855, 0.004207212943583727, 0.0001913697924464941, 0.023963961750268936, -0.0031603339593857527, -0.07962054759263992, -0.0632481500506401, -0.2978277802467346, -0.02308608777821064, -0.02517741359770298, -0.07497013360261917, 0.05187031254172325, -0.06832803785800934, 0.023672983050346375, -0.06931424885988235, 0.060601431876420975, 0.01999325305223465, -0.014444486238062382, -0.060851987451314926, 0.02780209295451641, 0.03600144758820534, -0.01593373529613018, 0.070777527987957, -0.04414699226617813, 0.021676436066627502, 0.03631800785660744, 0.0502203106880188, -0.011166648007929325, 0.0176493301987648, 0.03582906350493431, -0.05146908015012741, 0.00035722923348657787, 0.04845110699534416, 0.15922576189041138, 0.0748191550374031, 0.02600167691707611, 0.03965713083744049, -0.01681111939251423, 0.04983149841427803, -0.06574498116970062, -0.023302938789129257, 0.007306360173970461, 0.07652246206998825, -0.0012776710791513324, -0.012800612486898899, 0.011209040880203247, -0.0065053729340434074, -0.09041140228509903, 0.07338797301054001, -0.031170547008514404, -0.03873048722743988, -0.06055154651403427, 0.01864113286137581, 0.001093945000320673, -0.0024007016327232122, 0.0050384788773953915, 0.029347000643610954, -0.011610719375312328, 0.05808655545115471, -0.024315908551216125, -0.01399242877960205, -0.007990842685103416, 0.0029445693362504244, -0.03708457201719284, -0.014526263810694218, -0.018401773646473885, 0.03471839800477028, 0.0075217802077531815, -0.03946423530578613, -0.01458654459565878, -0.06356997787952423, -0.008285418152809143, 0.004974474664777517, -0.018897375091910362, -0.03806402161717415, -0.0013085694517940283, 0.0473334826529026, -0.04660444334149361, 0.04510996490716934, 0.06366737931966782, -0.05493640899658203, 0.015357078984379768, 0.018599139526486397, 0.00967262964695692, 0.02193475142121315, -0.058799441903829575, -0.01572309620678425, 0.05164878070354462, -0.03768935427069664, 0.02001989260315895, -0.0054575796239078045, -0.019275037571787834, -0.05181809514760971, -0.005315521731972694, -0.003615711582824588, 0.07821262627840042, -0.031093232333660126, -0.05360366404056549, 0.06050217151641846, -0.03490550443530083, -0.018691446632146835, 0.017438016831874847, -0.0033309010323137045, -0.28222420811653137, 0.006644533481448889, 0.049322642385959625, 0.07008635252714157, 0.02277328446507454, 0.07815777510404587, -0.019291996955871582, -0.024699045345187187, -0.04639964550733566, -0.02630643919110298, 0.05976278334856033, 0.019098225980997086, -0.0006682215607725084, 0.004891301970928907, 0.0035977328661829233, 0.02150646597146988, 0.01753254421055317, 0.09190961718559265, -0.03890267014503479, 0.0769757404923439, 0.040180545300245285, -0.014194952324032784, 0.15271957218647003, 0.019097289070487022, -0.03476440906524658, -0.032464463263750076, -0.03469478711485863, 0.033607613295316696, 0.028455181047320366, 0.009908565320074558, -0.018856367096304893, -0.02101595140993595, 0.03753500431776047, -0.02161579765379429, -0.008053713478147984, -0.06979735940694809, -0.028950100764632225, 0.016094829887151718, 0.06523329019546509, -0.000614073418546468, -0.041252922266721725, 0.051573704928159714, 0.015283038839697838, 0.0003861927834805101, 0.06379902362823486, 0.025695931166410446, 0.011335810646414757, -0.025798268616199493, -0.055016934871673584, 0.03367891535162926, -0.050398409366607666, -0.06946983933448792, 0.013440988957881927, 0.0061120884492993355, 0.010490341112017632, 0.04550360143184662, -0.002354357158765197, -0.003621947020292282, 0.0039778416976332664, -0.023790467530488968, -0.014778832904994488, -0.007618915755301714, 0.09272048622369766, -0.012940624728798866, 0.06892100721597672], "f839fe67-453e-4385-a719-4f527a31f3b4": [-0.06484349071979523, -0.0009723792900331318, 0.02393082156777382, 0.06627105921506882, -0.016359202563762665, 0.02469690702855587, 0.0014067242154851556, -0.021884746849536896, -0.03602826967835426, -0.02379865013062954, -0.004892153199762106, -0.01980355940759182, -0.023250136524438858, -0.07878678292036057, -0.009053275920450687, 0.04613179340958595, -0.03263997286558151, 0.015381117351353168, -0.08770173043012619, 0.0775267630815506, -0.03539682924747467, -0.028491957113146782, 0.03104960173368454, 0.051670368760824203, -0.048165302723646164, 0.02515299990773201, 0.030011264607310295, -0.040434762835502625, -0.020102860406041145, -0.15689370036125183, 0.01526200957596302, -0.016861675307154655, -0.04533001407980919, -0.022765224799513817, 0.008563201874494553, 0.06021447852253914, 0.06182851269841194, -0.027370557188987732, 0.022849297150969505, 0.01807302050292492, -0.01650572568178177, -0.011900004930794239, -0.011137054301798344, -0.0027037772815674543, 0.0615023672580719, -0.041312966495752335, 0.03257029503583908, 0.0014559030532836914, -0.0011144682066515088, -0.03228749334812164, 0.005570809356868267, 0.016869831830263138, -0.002048610243946314, -0.005851588677614927, -0.006718916352838278, 0.08299297839403152, 0.05715729296207428, 0.008053766563534737, 0.0331883430480957, -0.021611426025629044, -0.014310778118669987, 0.0370139479637146, -0.11001027375459671, 0.07904186844825745, 0.10830645263195038, 0.06337187439203262, -0.07645878195762634, 0.002652072114869952, 0.0013830760726705194, 0.02980419062077999, -0.06473077833652496, 0.0165404099971056, 0.022061405703425407, 0.001690831035375595, 0.01581394299864769, 0.03484468534588814, 0.04427490010857582, 0.03582132235169411, 0.05033189803361893, -0.050116393715143204, -0.0568598248064518, 0.012921336106956005, -0.02770911157131195, -0.012639976106584072, 0.03104521334171295, -0.02512432634830475, -0.004369397182017565, -0.028721440583467484, -0.043111033737659454, -0.04567430540919304, 0.004097513388842344, -0.03635033592581749, -0.010847292840480804, 0.015705225989222527, -0.03252960368990898, 0.009060035459697247, -0.018317289650440216, 0.027674958109855652, 0.04293636232614517, 0.40232306718826294, -0.0010654678335413337, -0.0019410362001508474, 0.032715603709220886, 0.014288914389908314, 0.004260421730577946, -0.018543951213359833, -0.004120131954550743, -0.07261645793914795, 0.06261779367923737, 0.0798775777220726, 0.017345203086733818, 0.022224061191082, 0.06509242951869965, 0.01744695007801056, 0.029179666191339493, -0.03741325065493584, 0.016779763624072075, -0.027966832742094994, -0.07537121325731277, -0.00965047162026167, 0.048216234892606735, -0.018699247390031815, -0.01145391259342432, -0.0011730027617886662, 0.04293564707040787, -0.025346750393509865, 0.060871776193380356, 0.06486762315034866, 0.006807554513216019, -0.06019795686006546, -0.01077516283839941, -0.02362542785704136, -0.050099413841962814, 0.022561391815543175, -0.0017456477507948875, -0.05949213355779648, -0.04057784751057625, -0.007198761682957411, 0.04148389771580696, -0.05679439753293991, -0.0666191428899765, -0.12107907235622406, 0.0024347391445189714, -0.05665137618780136, 0.025332309305667877, 0.029037276282906532, 0.029265234246850014, -0.0405266173183918, 0.0036129863001406193, 0.09699650853872299, 0.018659939989447594, 0.02617361582815647, -0.015253852121531963, -0.04530873894691467, -0.011908398941159248, 0.018688172101974487, 0.0005949551705271006, 0.13955850899219513, 0.015298077836632729, -0.0036929049529135227, 0.0650947317481041, -0.01946684904396534, 0.021121371537446976, -0.018625065684318542, 0.06122671440243721, -0.0339551717042923, -0.009133758023381233, -0.035052452236413956, -0.0927802324295044, 0.0335015207529068, 0.009634917601943016, 0.013563090935349464, -0.07679352164268494, 0.05258673429489136, -0.025675831362605095, -0.0016924062510952353, -0.02833276242017746, 0.009892957285046577, 0.017228934913873672, 0.028038861230015755, 0.013745746575295925, -0.030918311327695847, -0.04361681640148163, 0.031889356672763824, -0.046330176293849945, -0.022982364520430565, -0.03397948667407036, -0.028136804699897766, -0.014136328361928463, -0.029218290001153946, 0.03469742462038994, 0.05389229580760002, -0.036045245826244354, -0.012301236391067505, -0.056672435253858566, -0.03563893213868141, -0.005137483589351177, -0.010770894587039948, -0.016875693574547768, -0.04000477120280266, -0.07957785576581955, -0.038914840668439865, -0.06599146127700806, 0.0610274001955986, 0.01396958902478218, 0.034450773149728775, 0.006397370249032974, -0.05834160000085831, 0.1062302440404892, 0.030905291438102722, -0.01358995120972395, -0.014620953239500523, 0.02298363298177719, 0.013514885678887367, -0.006327626761049032, 0.013926399871706963, 0.009194865822792053, 0.04229280352592468, -0.06601464748382568, 0.0019992925226688385, 0.04823289066553116, -0.0917077288031578, -0.05092736706137657, -0.2991853654384613, -0.02114391326904297, 0.032630011439323425, -0.07024574279785156, 0.07833041995763779, -0.08638337254524231, 0.025128165259957314, -0.05496395379304886, 0.006642364431172609, -0.02839624136686325, 0.02635021135210991, -0.04592747241258621, 0.05025298148393631, 0.05423465743660927, -0.03191428631544113, 0.053003277629613876, -0.009231832809746265, 0.018239494413137436, 0.061602648347616196, 0.06538860499858856, -0.009491853415966034, 0.042048048228025436, -0.0024061137810349464, -0.03402082622051239, -0.02356438711285591, 0.04925064370036125, 0.18340516090393066, 0.05568134784698486, 0.011101881973445415, -0.006828861776739359, -0.01385344099253416, 0.02981678768992424, -0.055464524775743484, -0.027429183945059776, 0.009710215032100677, 0.06022481247782707, 0.03534127399325371, -0.008065035566687584, 0.01348110567778349, -0.018484102562069893, -0.0771305188536644, 0.0654313787817955, -0.006125657819211483, 0.0181816965341568, -0.06007643789052963, -0.012677226215600967, 0.011252698488533497, -0.02967926301062107, -0.013886921107769012, 0.015579812228679657, 0.04972283914685249, 0.01468326523900032, -0.026119152083992958, -0.017209434881806374, 0.0007080993382260203, -0.0015042588347569108, -0.0440002977848053, 0.03063836321234703, -0.05018336698412895, 0.014511749148368835, 0.024630649015307426, -0.011764046736061573, -0.008830818347632885, -0.024258967489004135, -0.02306065894663334, 0.007857165299355984, -0.026276737451553345, -0.03377852961421013, 0.01857936382293701, -0.005461561027914286, -0.04680095985531807, -0.004261961206793785, -0.0016515575116500258, -0.06696426868438721, 0.03252691030502319, 0.010564416646957397, -0.0027412064373493195, -0.0005641601164825261, -0.012833844870328903, -0.01010205503553152, 0.06383991986513138, -0.05769982188940048, 0.007429090328514576, 0.006856017280369997, -0.030958060175180435, -0.03798888623714447, -0.036712802946567535, 0.019389690831303596, 0.034248292446136475, -0.026889612898230553, -0.04961736500263214, 0.048399895429611206, -0.08011828362941742, 0.011057373136281967, 0.03242979943752289, -0.010031323879957199, -0.2906573712825775, 0.031203487887978554, 0.027089465409517288, 0.07809189707040787, 0.026903705671429634, 0.05184520408511162, 0.011605353094637394, -0.027385085821151733, -0.03885038569569588, 0.04190971329808235, 0.07284936308860779, 0.008006865158677101, -0.02807280234992504, -0.002120429649949074, 0.012816919945180416, 0.03877029940485954, 0.018228929489850998, 0.04231008142232895, -0.07912228256464005, 0.023939456790685654, 0.005923905409872532, 0.013297304511070251, 0.10472328215837479, 0.03767349570989609, -0.03021489642560482, -0.011029948480427265, -0.017963843420147896, -0.0022396943531930447, 0.027727359905838966, 0.028258245438337326, 0.01336615439504385, -0.0038688203785568476, 0.033011700958013535, 0.006026666145771742, 0.008380996994674206, -0.030442696064710617, 0.010935899801552296, 0.002624309388920665, 0.05770311877131462, -0.008724083192646503, -0.015033195726573467, 0.030240029096603394, 0.0481199212372303, 0.018270516768097878, 0.02545773610472679, 0.04966338723897934, 0.013383021578192711, -0.01787038892507553, -0.061634428799152374, 0.06884775310754776, -0.07272835075855255, -0.039341893047094345, 0.010450619272887707, 0.03644229471683502, 0.05946347489953041, 0.015339414589107037, -0.01207366120070219, -0.00914118904620409, 0.02527444064617157, 0.02223728410899639, -0.03518257662653923, -0.060403626412153244, 0.06308826059103012, 0.0021364318672567606, 0.03106696531176567], "2a109748-864a-43e3-afb0-fbd276017f26": [-0.08165726810693741, 0.010582104325294495, 0.03505620360374451, 0.029964685440063477, 0.012290798127651215, -0.032202910631895065, 0.0863964855670929, -0.004648539703339338, -0.000496378808747977, -0.030482495203614235, -0.020817814394831657, -0.04125415161252022, -0.006307170260697603, -0.055397599935531616, -0.0013929009437561035, 0.011655816808342934, -0.04527382552623749, -0.018503742292523384, -0.09201669692993164, 0.04399300739169121, 0.019280705600976944, -0.009888316504657269, 0.013612867332994938, -0.013994954526424408, -0.061804305762052536, 0.02659870870411396, 0.021913230419158936, -0.019549746066331863, 0.002728839870542288, -0.11193983256816864, 0.0020507790613919497, -0.03465210273861885, 0.0015640524215996265, -0.010988584719598293, 0.00934576615691185, 0.07519187033176422, 0.056136250495910645, -0.03691886365413666, -0.0028321233112365007, 0.05197233706712723, -0.011982103809714317, -0.01951451227068901, -0.009048180654644966, 0.03054683841764927, 0.05856756865978241, -0.051484838128089905, 0.01920110359787941, -0.046723514795303345, -0.007438533008098602, -0.018784748390316963, -0.030066868290305138, 0.012379404157400131, -0.007056823931634426, -0.028524987399578094, -0.0148129528388381, 0.09808485954999924, 0.02850213460624218, 0.03269502520561218, 0.054149288684129715, -0.03370025008916855, 0.017347080633044243, 0.023601505905389786, -0.09785494208335876, 0.08803629130125046, 0.07524815946817398, 0.01522163674235344, -0.08011709153652191, -0.029713446274399757, -0.03456048667430878, 0.01582740992307663, -0.00504284305498004, -0.027195565402507782, 0.02169969491660595, 0.025324886664748192, -0.010925211012363434, 0.02555101178586483, 0.008170800283551216, 0.012075090780854225, 0.025945760309696198, -0.033397648483514786, -0.06257619708776474, 0.05014771223068237, -0.07117854058742523, 0.008502579294145107, 0.005075904540717602, -0.05471523106098175, -0.003936403430998325, 0.026705099269747734, 0.0339992493391037, -0.0417947918176651, 0.06016140431165695, -0.03460576757788658, -0.008378521539270878, 0.019612113013863564, -0.018663186579942703, 0.028873523697257042, -0.03325476869940758, 0.0161437951028347, -0.02344571053981781, 0.39132073521614075, 0.027357254177331924, 0.016909876838326454, -0.018599456176161766, -0.016920585185289383, -0.00525678088888526, -0.00392871955409646, 0.021001681685447693, -0.07190103828907013, 0.017052534967660904, 0.05943179875612259, 0.034650593996047974, -0.025256523862481117, 0.07363374531269073, -0.005883718840777874, 0.05996032804250717, -0.010815520770847797, -0.010662696324288845, -0.01824517734348774, -0.059949763119220734, -0.015162634663283825, 0.018226465210318565, -0.010736693628132343, 0.012172367423772812, -0.044944074004888535, 0.021825755015015602, 0.013696656562387943, 0.06432090699672699, 0.05669843778014183, 0.030932361260056496, -0.05283582583069801, -0.0049468036741018295, -0.056077852845191956, 0.01276327483355999, 0.0397116020321846, 0.04537705332040787, 0.0330362468957901, 0.0042928894981741905, -0.019661717116832733, 0.05627191811800003, 0.00013680716801900417, -0.02788614295423031, -0.1442551165819168, -0.009190887212753296, 0.020915422588586807, -0.041446126997470856, 0.020376509055495262, 0.06132660061120987, -0.07330072671175003, -0.003033591667190194, 0.08842197060585022, 0.025315554812550545, -0.0027690634597092867, -0.010502282530069351, -0.04606243595480919, -0.02978374809026718, -0.014471440576016903, 0.0335921049118042, 0.09503330290317535, 0.013211864046752453, 0.011108622886240482, 0.06186748296022415, -0.05791250243782997, -0.042807020246982574, -0.00615517096593976, 0.04640207067131996, -0.030146067962050438, -0.030056823045015335, -0.04971347749233246, -0.04840368777513504, -0.013964086771011353, 0.024993430823087692, 0.025643177330493927, -0.07353469729423523, 0.03854430839419365, -0.057678330689668655, -0.023165103048086166, -0.038745708763599396, 0.024028701707720757, -0.013634349219501019, 0.03477362170815468, 0.0019435076974332333, -0.008765408769249916, -0.05233233794569969, 0.0646209642291069, -0.05402553454041481, -0.0017558647086843848, -0.022910529747605324, -0.053022436797618866, 0.020925672724843025, -0.004699692130088806, 0.03407761827111244, 0.04702906683087349, -0.016849948093295097, -0.02189529687166214, -0.061106126755476, -0.03425097092986107, 0.012787410989403725, 0.029812481254339218, -0.003311228472739458, 0.04028116539120674, -0.06560198217630386, -0.04679809510707855, -0.02220231294631958, 0.05381979048252106, 0.054201390594244, 0.03653227537870407, 0.050481293350458145, -0.06365709006786346, 0.08396433293819427, 0.026273557916283607, -0.039376430213451385, -0.03467268869280815, 0.018851740285754204, 0.019625889137387276, 0.012034041807055473, 0.030584754422307014, 0.027953902259469032, -0.005755238234996796, -0.05429685115814209, 0.0022872700355947018, -3.890047446475364e-05, -0.08494195342063904, -0.028661459684371948, -0.3275551199913025, -0.06064800173044205, -0.030034586787223816, -0.028004052117466927, 0.06054903566837311, -0.06252221018075943, 0.05095459893345833, -0.023790093138813972, 0.03980935737490654, -0.03777753561735153, -0.018864594399929047, -0.03400016576051712, 0.06263791024684906, 0.051997311413288116, -0.024302201345562935, 0.10539446026086807, -0.0050262403674423695, 0.03289810195565224, 0.07760326564311981, 0.060223132371902466, 0.00528645608574152, 0.07877576351165771, -0.007747733034193516, -0.058023013174533844, -0.05395898595452309, 0.028903378173708916, 0.14603842794895172, 0.05689007416367531, 0.00044588494347408414, -0.011988721787929535, 0.01567503809928894, 0.025707969442009926, -0.005304563790559769, -0.050454188138246536, 0.03176262974739075, 0.03605908155441284, -0.0034071747213602066, 0.003644677111878991, 0.03238978236913681, -0.001023978227749467, -0.04727035388350487, 0.019763158634305, -0.013303958810865879, 0.03846462443470955, -0.05403510853648186, 0.019008422270417213, -0.020578591153025627, -0.042174678295850754, -0.013479559682309628, 0.05910494923591614, 0.010115007869899273, 0.08541284501552582, -0.012499673292040825, 0.002579466672614217, -0.02297675423324108, -0.002740381984040141, -0.055453576147556305, -0.018578551709651947, -0.02636745199561119, 0.02598344348371029, 0.04120563343167305, 0.00376034970395267, 0.0016660570399835706, -0.060523901134729385, -0.02885187789797783, 0.011463386937975883, 0.007545243948698044, -0.04247872531414032, 0.011805921792984009, 0.02172454632818699, -0.04513492435216904, 0.0330352820456028, -0.0053481971845030785, -0.033826570957899094, -0.026421573013067245, 0.021192802116274834, 0.04852372035384178, 0.021703137084841728, -0.052530426532030106, -0.009485617280006409, 0.04178319126367569, -0.06517446041107178, 0.02557245083153248, -0.017890989780426025, -0.06112655624747276, 0.006057356018573046, 0.007755433674901724, -0.03432365134358406, 0.046199772506952286, -0.05066912621259689, -0.06025556102395058, 0.03238948434591293, -0.01450622733682394, -0.020423948764801025, -0.0027418239042162895, 0.00800053495913744, -0.2937115728855133, 0.03590431809425354, 0.03896436095237732, 0.07206708192825317, 0.043821949511766434, 0.05650107562541962, -0.0056264325976371765, -0.037448376417160034, -0.07867543399333954, 0.01906600408256054, 0.05071531981229782, -0.04468805715441704, -0.02880045957863331, -0.013937417417764664, -0.03483964875340462, 0.02609494887292385, 0.06419220566749573, 8.800878276815638e-06, -0.10684491693973541, -0.011991070583462715, 0.03501439839601517, 0.005103376694023609, 0.10894272476434708, 0.04235899820923805, -0.05392352119088173, -0.032576270401477814, 0.007703591138124466, -0.03210864216089249, 0.014642438851296902, 0.022185802459716797, -0.013339993543922901, -0.021547215059399605, 0.018762633204460144, -0.01595217175781727, 0.023433202877640724, -0.01629571057856083, -0.024953778833150864, 0.04979103431105614, 0.05214338377118111, 0.002425552112981677, -0.05191228911280632, 0.060341205447912216, -0.002490479266270995, -0.00462030153721571, 0.005221540108323097, 0.06085331737995148, 0.014240052551031113, -0.028652407228946686, -0.04065518453717232, 0.054891929030418396, -0.05744096636772156, -0.008536490611732006, 0.014833995141088963, 0.03465157374739647, 0.04091562703251839, -0.01253520604223013, 0.002743863733485341, 0.03372122347354889, 0.038353096693754196, 0.01701071299612522, -0.018294595181941986, -0.024601589888334274, 0.12329645454883575, 0.042105045169591904, 0.013790537603199482], "25041e74-2cb2-43c1-ae33-3a8d833bcb5d": [-0.06905501335859299, 0.017514988780021667, 0.013048624619841576, 0.03804681450128555, -0.03232703357934952, -0.00848955288529396, 0.0395134836435318, 0.00975738000124693, -0.016979606822133064, -0.02948223613202572, 0.0014699327293783426, 0.014169570989906788, -0.05698731541633606, -0.05715212970972061, -0.03602563217282295, -0.023243961855769157, -0.036714356392621994, -0.009148558601737022, -0.048648856580257416, 0.030292516574263573, 0.02771042287349701, -0.01831294223666191, -0.03220842778682709, 0.013862608931958675, -0.007489351090043783, 0.030404698103666306, 0.008870896883308887, -0.04959115386009216, -0.0519801527261734, -0.20237690210342407, 0.03888903930783272, -0.02310856431722641, -0.00589711731299758, -0.012443892657756805, 0.006449543870985508, 0.08517656475305557, 0.04592609405517578, -0.0316409096121788, -0.031727831810712814, 0.02210848592221737, 0.014010627754032612, 0.015156039036810398, -0.01938805915415287, 0.008423695340752602, 0.0903601199388504, -0.0282015148550272, 0.006395637523382902, -0.01783834584057331, 0.0285221878439188, 0.0024114197585731745, -0.018995799124240875, 0.014610973186790943, -0.025601599365472794, -0.04904422163963318, 8.275829895865172e-05, 0.06229151040315628, 0.04040287435054779, 0.07442621141672134, 0.004118795972317457, -0.025460418313741684, 0.042355749756097794, 0.039413124322891235, -0.09306871145963669, 0.09194839000701904, 0.051041651517152786, 0.001480342703871429, -0.05991377308964729, 0.025258954614400864, -0.0464601032435894, 0.07821302115917206, 0.018185922876000404, -0.00862455926835537, 0.02495112642645836, 0.022109029814600945, 0.0014862525276839733, 0.04390343278646469, -0.0024411731865257025, -0.032244786620140076, 0.010393190197646618, 0.004280655644834042, -0.03519624099135399, -0.010257851332426071, -0.021992415189743042, 0.043630219995975494, 0.01712944358587265, -0.04294797405600548, 0.05536351352930069, 0.008795700035989285, -0.005863129161298275, -0.007457425817847252, 0.047537580132484436, -0.014820733107626438, -0.029736829921603203, 0.0007748109055683017, -0.021062856540083885, 0.0034486912190914154, -0.00604874175041914, 0.003169265342876315, 0.049897197633981705, 0.4242327809333801, 0.011881820857524872, 0.009948539547622204, 0.013395627960562706, 0.033116042613983154, -0.030201489105820656, -0.011476941406726837, -0.0048442319966852665, -0.045826319605112076, 0.031756509095430374, 0.03228728845715523, 0.039835747331380844, 0.010010038502514362, 0.08195678144693375, 0.004014893900603056, 0.0397380068898201, 0.03318023309111595, -0.015467379242181778, -0.026235144585371017, -0.05206214636564255, 0.020293138921260834, 0.03616008907556534, 0.0016291671199724078, -0.027438754215836525, -0.046026334166526794, -0.027701497077941895, -0.027454722672700882, 0.06642484664916992, 0.05733311548829079, 0.014479640871286392, -0.0965079739689827, 0.05801590904593468, -0.07882964611053467, -0.06665097177028656, 0.04029262065887451, 0.005720128770917654, -0.044902775436639786, 0.011972173117101192, 0.0008515115478076041, 0.026751147583127022, -0.045251939445734024, -0.0041542560793459415, -0.08411047607660294, 0.03930654004216194, -0.019509207457304, -0.0196085125207901, 0.023155590519309044, 0.006490776780992746, -0.022526472806930542, 0.06851494312286377, 0.06055854633450508, 0.012390957213938236, -0.015902923420071602, -0.05518762767314911, -0.04062461853027344, -0.005053011234849691, -0.023236095905303955, 0.02899036556482315, 0.11529051512479782, -0.0224424060434103, -0.014707026071846485, -0.005913470406085253, 0.0039032003842294216, 0.00446345517411828, 0.047565676271915436, 0.03877384960651398, -0.04080616682767868, -0.029823530465364456, -0.03530948609113693, -0.062394168227910995, -0.053279805928468704, 0.01568002440035343, 0.0013390142703428864, -0.10803032666444778, 0.03729606792330742, 0.0016151453601196408, -0.016009164974093437, -0.03404780849814415, 0.0014438687358051538, -0.000531347468495369, 0.0399523563683033, 0.013531526550650597, -0.04764021933078766, -0.016844792291522026, 0.04064667224884033, -0.019779250025749207, -0.03756139799952507, -0.02032863162457943, -0.05332772433757782, 0.05118853598833084, -0.005561104044318199, 0.032885000109672546, 0.026685969904065132, -0.00028778609703294933, 0.013580940663814545, -0.02046298049390316, -0.025388337671756744, 0.005896717309951782, -0.03219972923398018, -0.0012697221245616674, 0.014213099144399166, -0.1494058221578598, -0.032112739980220795, -0.04559478908777237, 0.021314678713679314, 0.06105989217758179, 0.04089072719216347, 0.027456792071461678, -0.06704434752464294, 0.09912651032209396, 0.053124722093343735, -0.031182000413537025, -0.03909267857670784, -0.03309262543916702, 0.01570405811071396, 0.018581870943307877, 0.0292974803596735, 0.01814553141593933, 0.007891307584941387, -0.06984924525022507, -0.02358567714691162, -0.032920144498348236, -0.03179461881518364, 0.014657740481197834, -0.30396759510040283, -0.06856071203947067, -0.06880836188793182, -0.025566792115569115, 0.04926772788167, -0.039928633719682693, 0.024540983140468597, -0.027722472324967384, 0.0028462137561291456, -0.00698654493317008, 0.046424996107816696, -0.08129796385765076, 0.023783186450600624, -0.01983773335814476, -0.007122131530195475, 0.0641569048166275, -0.05872926115989685, 0.012720446102321148, 0.04371241107583046, 0.04666062444448471, 0.008063009940087795, 0.058819081634283066, 0.02775343880057335, -0.042316682636737823, -0.07017210870981216, 0.01838631182909012, 0.16322851181030273, 0.04556402936577797, 0.055709123611450195, 0.02580169029533863, 0.021874280646443367, 0.056770533323287964, -0.054367270320653915, -0.013045214116573334, -0.008545076474547386, -0.005859934724867344, -0.007969178259372711, -0.033086761832237244, 0.017038317397236824, -0.013273332267999649, -0.029974259436130524, 0.05649254098534584, -0.001643298426643014, -0.009075312875211239, -0.06055775284767151, 0.02293894812464714, 0.0015659629134461284, 0.007359671872109175, -0.017517438158392906, 0.07754015922546387, 0.04686589166522026, 0.06813295185565948, 0.01643173024058342, -0.009746319614350796, 0.03368726745247841, -0.0034779903944581747, -0.04464351385831833, -0.017910202965140343, -0.03437834605574608, 0.05566764995455742, -0.010270033963024616, 0.019401121884584427, 0.026373593136668205, -0.017735520377755165, -0.022815397009253502, 0.018157703801989555, 0.010095620527863503, -0.07289482653141022, 0.0423777736723423, 0.0017240626038983464, -0.03785884752869606, 0.043286457657814026, -0.04699202626943588, -0.05810071900486946, 0.03567805141210556, 0.028111528605222702, 0.06267237663269043, -0.04417671263217926, -0.01069243811070919, 0.039040837436914444, 0.04724876955151558, 0.0050585465505719185, -0.019610999152064323, 0.024402370676398277, -0.06980187445878983, -0.005166128743439913, 0.02682446502149105, 0.00608248682692647, 0.030775975435972214, -0.007492154370993376, -0.042960602790117264, 0.030874796211719513, -0.017616061493754387, 0.01982160285115242, -0.005308413878083229, -0.00683256471529603, -0.29041537642478943, 0.049007099121809006, 0.03132087364792824, 0.0763157531619072, 0.007851463742554188, 0.04295964166522026, 0.008076985366642475, 0.007972460240125656, -0.021534234285354614, 0.04222242534160614, 0.04913489520549774, 0.037344351410865784, -0.04509352147579193, 0.005920802243053913, -0.008718677796423435, 0.023769071325659752, -0.007749061565846205, 0.03181445226073265, -0.03651135042309761, 0.0297516118735075, 0.050958774983882904, 0.006116784643381834, 0.11666160821914673, 0.008650355041027069, -0.03895402327179909, -0.032964639365673065, 0.0026191705837845802, -0.002217054134234786, 0.010745251551270485, 0.011137793771922588, -0.02784297987818718, -0.011612609028816223, -0.013425501994788647, -0.016928182914853096, 0.02017822302877903, -0.06130532920360565, 0.0014556024689227343, 0.032149363309144974, 0.07591837644577026, 0.0006347381859086454, -0.043348412960767746, -0.02139843814074993, -0.002048324327915907, -0.012282286770641804, 0.02119317650794983, 0.04208126291632652, 0.0376131534576416, -0.066335529088974, -0.05725514143705368, 0.024406131356954575, -0.05185466259717941, -0.07682958245277405, -0.007845479063689709, -0.030076881870627403, -0.005630176514387131, 0.037465982139110565, -0.047474563121795654, 0.039235323667526245, 0.03878093883395195, 0.01817646622657776, -0.03193763270974159, -0.03504203259944916, 0.10211464762687683, 0.01417433749884367, 0.006674792617559433], "b18627a3-d1da-495c-afee-5f0ac6c982f4": [-0.08627347648143768, -0.004828362725675106, 0.04180338978767395, 0.054676152765750885, -0.005676629953086376, -0.00291393487714231, 0.06467396765947342, -0.0047674234956502914, -0.023526519536972046, -0.028758548200130463, 0.01796301081776619, -0.024925552308559418, -0.02049783058464527, -0.06003508344292641, -0.00018232190632261336, 0.03330441936850548, -0.026488283649086952, -0.07256100326776505, -0.14216092228889465, 0.03134859353303909, 0.02593441680073738, -0.04829191789031029, 0.021810906007885933, -0.003782303538173437, -0.038707830011844635, 0.008728635497391224, -0.0006163343787193298, -0.05210777372121811, -0.021478857845067978, -0.11566793918609619, -0.0032860056962817907, 0.020433563739061356, 0.037085212767124176, -0.054668787866830826, 0.01380089856684208, 0.08311820775270462, 0.05396227911114693, -0.03083992190659046, -0.0033072640653699636, 0.04023386910557747, 0.007792880292981863, -0.0066782161593437195, -0.04910442978143692, -0.009150207974016666, 0.0378827303647995, -0.106205053627491, 0.01551566831767559, -0.03171735256910324, 0.054377321153879166, 0.0003541891637723893, -0.04656461998820305, -0.004784909076988697, -0.00455688638612628, 0.0063834055326879025, -0.03438008949160576, 0.05247441306710243, 0.005361624527722597, 0.026331575587391853, 0.022596299648284912, -0.04556409269571304, 0.03576677665114403, 0.014313999563455582, -0.020855003967881203, 0.055443648248910904, 0.05962406471371651, 0.03346080705523491, -0.05352165922522545, 0.025700746104121208, -0.04398535192012787, 0.020787179470062256, 0.01217004656791687, -0.006783180870115757, 0.039219554513692856, 0.05415903031826019, 0.017049910500645638, 0.030239509418606758, 0.05106605589389801, 0.008627288043498993, 0.018619470298290253, 0.019526757299900055, -0.09254814684391022, 0.0043058861047029495, -0.022293180227279663, 0.03596522659063339, -0.015784459188580513, -0.06878826022148132, -0.001320927869528532, -0.008169945329427719, -0.022034551948308945, -0.048127856105566025, 0.03009459376335144, -0.03153670206665993, 0.007095711305737495, 0.010771814733743668, -0.017882566899061203, 0.006287488155066967, -0.0478522852063179, -0.026135196909308434, 0.01536043081432581, 0.3794914782047272, 0.03520258888602257, -0.00860570464283228, 0.05846765637397766, -0.0034274121280759573, -0.0018199441256001592, 0.014021593146026134, -0.0028545011300593615, -0.05020931363105774, 0.025817817077040672, 0.07563617080450058, -0.015823189169168472, -0.0007691026548855007, 0.08691854029893875, -0.004263316281139851, 0.04641687870025635, 0.009973155334591866, 0.010911524295806885, -0.012579958885908127, 0.011788202449679375, 0.051321350038051605, 0.03895081952214241, 0.01291537843644619, -0.047121740877628326, -0.0761149525642395, 0.00047785305650904775, -0.007673170883208513, 0.0394735187292099, 0.08294973522424698, 0.04096575453877449, -0.04151506721973419, 0.042519260197877884, -0.08836476504802704, -0.020866364240646362, 0.03876994922757149, 0.029405804350972176, -0.008730084635317326, 0.013620571233332157, -0.04061845690011978, 0.07825217396020889, -0.01731506548821926, -0.012400323525071144, -0.1370677500963211, -0.05215926840901375, -0.0055778417736291885, -0.006009738426655531, 0.023722445592284203, 0.015156369656324387, -0.03489726036787033, -0.01580089144408703, 0.06116461753845215, 0.030517203733325005, -0.023770874366164207, -0.02408396080136299, -0.04857487976551056, 0.0014761792263016105, -0.017726538702845573, 0.04786010831594467, 0.10136851668357849, -0.011050896719098091, 0.04154038429260254, 0.09657356142997742, -0.024261685088276863, -0.012127785012125969, 0.003400385845452547, 0.05163564905524254, 0.0015019109705463052, -0.03711031749844551, -0.03523195534944534, -0.0029833149164915085, -0.0031066895462572575, 0.02977796457707882, 0.028745923191308975, -0.11105301976203918, 0.03855454549193382, -0.03475966304540634, -0.005742121487855911, -0.049317315220832825, -0.01641673594713211, -0.02278175763785839, 0.01499417144805193, -0.04982823133468628, -0.03321993723511696, -0.05981544777750969, 0.06556271761655807, -0.0339624360203743, -0.04652717709541321, 0.0028405834455043077, -0.05176664516329765, 0.018445875495672226, 0.021055901423096657, 0.019451169297099113, 0.01695505902171135, 0.00614948570728302, -0.00520240468904376, -0.06299608945846558, -0.06502945721149445, -0.0023858454078435898, 0.009432906284928322, -0.02991766668856144, -0.0075982119888067245, -0.056388530880212784, -0.04375061020255089, -0.05688357725739479, 0.05491013079881668, 0.06340961903333664, 0.03279467672109604, 0.031013943254947662, -0.06274250894784927, 0.08501611649990082, -0.00408542575314641, -0.010766916908323765, -0.022948717698454857, 0.03135337680578232, 0.054638028144836426, 0.01071682758629322, -0.0013537732884287834, 0.04965702444314957, 0.01921142265200615, -0.04285437613725662, -0.015603505074977875, -0.04232269525527954, -0.1048375815153122, -0.06509532034397125, -0.32085731625556946, -0.02902381308376789, -0.012192568741738796, -0.07765518873929977, 0.06732229888439178, -0.007966745644807816, -0.002045784145593643, -0.01961655542254448, 0.024585289880633354, -0.0345052070915699, -0.012065470218658447, -0.036757491528987885, 0.028668995946645737, 0.04610278829932213, -0.005312753841280937, 0.04768945649266243, -0.0625205934047699, 0.05535268038511276, 0.057798001915216446, 0.03733903914690018, -0.013585083186626434, 0.043229054659605026, -0.018374882638454437, -0.03127988055348396, -0.062452320009469986, 0.011119275353848934, 0.15575599670410156, 0.06376607716083527, 0.03850528225302696, -0.015309171751141548, 0.022623419761657715, 0.07001399993896484, -0.009532506577670574, -0.044838543981313705, 0.037989649921655655, 0.03506013751029968, -0.037795159965753555, -0.0040018935687839985, 0.017310136929154396, 0.011446340940892696, -0.0931982472538948, 0.06278933584690094, -0.006198151968419552, -0.01190730556845665, 0.004972272086888552, 0.030449721962213516, -0.05078054964542389, 0.0007986175478436053, -0.007493903860449791, 0.061632152646780014, -0.008340779691934586, 0.0616348460316658, -0.0216765645891428, -0.02899257466197014, 0.05547120049595833, 0.0040293107740581036, -0.031942445784807205, -0.02110924944281578, 0.01503841858357191, 0.04469728097319603, -0.00915601197630167, 0.0027888587210327387, -0.00423019053414464, -0.06644726544618607, -0.03114946372807026, -0.007392636965960264, 0.012901075184345245, -0.07034104317426682, 0.05408967658877373, -0.009447319433093071, -0.009627696126699448, 0.04992488771677017, 0.031012143939733505, -0.0412060022354126, 0.002519509056583047, 0.03299497067928314, 0.0642339289188385, 0.01832873746752739, -0.045938827097415924, 0.002640871098265052, 0.07010409235954285, 0.017993556335568428, -0.009795856662094593, 0.002912929281592369, -0.082210473716259, 0.010720276273787022, -0.008591466583311558, 0.012531283311545849, 0.04793400689959526, -0.00847257487475872, -0.034272629767656326, 0.044028446078300476, -0.040478624403476715, -0.016890959814190865, 0.038380175828933716, 0.024401560425758362, -0.26889336109161377, 0.020369017496705055, 0.05972937121987343, 0.06999332457780838, 0.017626658082008362, 0.0909930095076561, 0.008653847500681877, -0.018461275845766068, 0.009264566004276276, -0.012182161211967468, 0.05415487661957741, -0.01343371532857418, 0.0034047679509967566, -0.01928514428436756, -0.015125438570976257, 0.004262321162968874, 0.04581872373819351, 0.018148234114050865, -0.07836106419563293, 0.035087596625089645, 0.025599660351872444, 0.025586076080799103, 0.10740765184164047, 0.0402984656393528, -0.08081609755754471, -0.006399817299097776, 0.024077169597148895, 0.023686915636062622, -0.008791803382337093, 0.022298280149698257, 0.02009141631424427, -0.0005481951520778239, -0.010454891249537468, -0.016775140538811684, -0.013743913732469082, -0.09072577953338623, -0.03157566860318184, 0.02038300223648548, 0.07613110542297363, 0.014070677570998669, -0.027650268748402596, 0.0008501546108163893, -0.04141790047287941, 0.011446991004049778, 0.06654930114746094, 0.04420985281467438, 0.022693322971463203, -0.06330427527427673, -0.10332445055246353, 0.011753393337130547, -0.031179022043943405, -0.048006102442741394, 0.015026870183646679, -0.004670968744903803, 0.01849651150405407, -0.013066374696791172, -0.04984921216964722, 0.00744948536157608, 0.04707460477948189, 0.02478484809398651, -0.019792849197983742, -0.019050341099500656, 0.08720683306455612, -0.010351681150496006, 0.04415755718946457], "5c084f96-5468-4d47-9633-d651fdee2c06": [-0.0716589093208313, -0.008003327064216137, 0.021081997081637383, 0.04107527807354927, -0.003271897789090872, -0.013740098103880882, 0.03758658468723297, -0.001148388721048832, 0.006130089983344078, -0.04854646697640419, 0.018265796825289726, 0.008597631007432938, -0.025454841554164886, -0.030541835352778435, -0.003793329931795597, 0.030975066125392914, -0.038683414459228516, -0.011729233898222446, -0.09381109476089478, 0.060053568333387375, -0.013043847866356373, -0.05776862055063248, 0.05277568846940994, -0.006921257358044386, -0.054903823882341385, 0.04174068942666054, 0.02413175441324711, -0.06400550156831741, -0.02519342117011547, -0.14294032752513885, -0.0006800404516980052, -0.01783241517841816, -0.008000852540135384, -0.0031863406766206026, -0.0013799439184367657, 0.06290478259325027, 0.016819188371300697, -0.021023264154791832, -0.020141931250691414, 0.03887820243835449, -0.004673967137932777, 0.003726186463609338, 0.007963228970766068, -0.0056487563997507095, 0.06425361335277557, -0.04528461769223213, 0.03869735449552536, -0.06889164447784424, 0.01246460247784853, 0.0038592952769249678, -0.049277547746896744, -0.012835954315960407, 0.002909585600718856, 0.010755883529782295, -0.032728955149650574, 0.05014254152774811, 0.09114934504032135, 0.023460954427719116, 0.05615608021616936, -0.0030447114259004593, 0.05336425080895424, 0.011064438149333, -0.07470451295375824, 0.06803416460752487, 0.10064322501420975, 0.002753736451268196, -0.07148910313844681, -0.009678426198661327, -0.008486890234053135, 0.05157921463251114, -0.031822770833969116, 0.004432510584592819, 0.024873143061995506, 0.06845665723085403, -0.01396472193300724, 0.02416241727769375, 0.047220125794410706, -0.012618880718946457, 0.04557666927576065, -0.026625514030456543, -0.08008107542991638, 0.0002787881239783019, -0.060380589216947556, 0.015319379977881908, -0.018138261511921883, -0.03840808570384979, -0.007330663036555052, -0.027224067598581314, 0.0035512407775968313, -0.03873246908187866, 0.05542919784784317, -0.02808559499680996, -0.015486895106732845, -0.0021196098532527685, -0.03514089435338974, -0.03544532507658005, -0.04105474799871445, 0.00629993062466383, 0.014171826653182507, 0.40871044993400574, 0.019454555585980415, -0.0057731508277356625, 0.0035777809098362923, 0.013526272028684616, 0.019209811463952065, 0.04050375148653984, 0.022395409643650055, -0.079363614320755, 0.008105653338134289, 0.06489810347557068, 0.024649623781442642, -0.012085935100913048, 0.06033146008849144, 0.0206989087164402, 0.0933256596326828, 0.008612596429884434, 0.052753154188394547, -0.046626538038253784, -0.036164652556180954, 0.016070101410150528, 0.04034208133816719, -0.009990866295993328, -0.04074852541089058, -0.03506404161453247, 0.07105328887701035, -0.028816506266593933, 0.038281314074993134, 0.07448174059391022, 0.03573397174477577, -0.1007298156619072, 0.0027030936907976866, -0.049280256032943726, -0.0002705231308937073, 0.03785385563969612, 0.05661506950855255, 0.02641133777797222, -0.0049242726527154446, 0.005398241803050041, 0.03605349361896515, -0.05803592875599861, -0.009202687069773674, -0.16010497510433197, -0.05435660108923912, -0.008259406313300133, 0.004936686251312494, 0.036593902856111526, 0.06711976230144501, -0.03789079934358597, -0.009584384970366955, 0.06666730344295502, 0.01623859815299511, 0.012951958924531937, -0.015252218581736088, -0.05242786183953285, 0.005341827869415283, -0.005768198054283857, -0.0018437503604218364, 0.11080312728881836, -0.009364825673401356, 0.023812465369701385, 0.08583135157823563, 0.007540661841630936, 0.02345178835093975, -0.02296902984380722, 0.042411983013153076, 0.015914134681224823, -0.026594381779432297, -0.0086368378251791, -0.015068464912474155, -0.02005956694483757, 0.00822137575596571, -0.01538566779345274, -0.08075892180204391, 0.02452399581670761, -0.06972165405750275, -0.038215380162000656, -0.0271157156676054, -0.030400725081562996, -0.019018135964870453, 0.048940256237983704, -0.03348657488822937, -0.04610684886574745, -0.0227009579539299, 0.054527994245290756, -0.02522120624780655, -0.03862696513533592, 0.021619414910674095, -0.01936567947268486, 0.015247819945216179, -0.018171273171901703, 0.04133274033665657, 0.028225403279066086, 0.004286331590265036, 0.006725682411342859, -0.06015880033373833, -0.05596976354718208, 0.028009846806526184, -0.0294891856610775, -0.03995385393500328, 0.008394641801714897, -0.0189210195094347, -0.056764520704746246, -0.08582565188407898, 0.024615097790956497, 0.024463387206196785, 0.021370816975831985, 0.03590595722198486, -0.050840120762586594, 0.08912623673677444, -0.006181594915688038, -0.03892490640282631, -0.040778640657663345, 0.027934791520237923, 0.0292728953063488, -0.01539612840861082, 0.008227532729506493, -0.00034010058152489364, 0.026122812181711197, 0.008074916899204254, 0.01612028107047081, -0.02955004572868347, -0.07292785495519638, -0.030234552919864655, -0.29575207829475403, -0.037294451147317886, -0.044334668666124344, -0.0651954859495163, 0.04076796770095825, -0.04711184650659561, 0.015972493216395378, -0.055068183690309525, 0.03153405711054802, -0.009162034839391708, 0.017269428819417953, -0.06968250870704651, 0.05060869827866554, -0.026384590193629265, -0.04713314771652222, 0.04775260016322136, -0.04745008051395416, 0.05076653137803078, 0.028717949986457825, 0.049074672162532806, -0.017289243638515472, 0.016395583748817444, 0.025774909183382988, -0.05638909339904785, -0.03319820761680603, 0.04595651850104332, 0.16384580731391907, 0.08121197670698166, 0.022199567407369614, 0.0076327030546963215, -0.0032689080107957125, 0.0479668527841568, -0.02508958801627159, -0.020401744171977043, 0.013753673061728477, 0.04093588888645172, -0.019457589834928513, 0.00551664549857378, 0.02015603519976139, -0.0068732500076293945, -0.0983339175581932, 0.05764133855700493, -0.016086868941783905, -0.006126079708337784, -0.059799738228321075, 0.004236862529069185, -0.004474892280995846, -0.018354792147874832, 0.032845135778188705, 0.030598310753703117, -0.005849209148436785, 0.042241014540195465, -0.0018622359493747354, -0.0028167851269245148, -0.004971314687281847, -0.004420015960931778, -0.06788580119609833, 0.012630115263164043, -0.03254770115017891, 0.028018904849886894, 0.024795662611722946, 0.01610608771443367, 0.052047982811927795, -0.05812002718448639, -0.029189176857471466, -0.01291303988546133, 0.02744089625775814, -0.0227490346878767, 0.017377236858010292, 0.01445823535323143, -0.061998091638088226, 0.05247799679636955, 0.0015288266586139798, -0.07371056079864502, 0.01800595037639141, 0.022372467443346977, 0.011897612363100052, 0.03352893888950348, -0.058162521570920944, -0.0019365049665793777, 0.041209448128938675, -0.03020004741847515, -0.0007180204847827554, 0.021410049870610237, -0.026202449575066566, -0.0011148549383506179, -0.0008320490596815944, 0.00244643515907228, 0.09846698492765427, -0.036974526941776276, -0.06641159951686859, 0.04827011004090309, -0.03906749188899994, -0.014160350896418095, -0.007598534692078829, 0.033472947776317596, -0.27755168080329895, 0.03400655835866928, 0.010381493717432022, 0.07489171624183655, 0.02603844180703163, 0.01958221197128296, -0.01698763482272625, -0.011564199812710285, -0.05238693580031395, -0.009798452258110046, 0.06591635197401047, 0.001514792675152421, -0.05129259452223778, -0.015954647213220596, -0.01839945837855339, 0.009126965887844563, 0.045851416885852814, 0.05887247994542122, -0.05122008174657822, 0.03540206700563431, 0.019654961302876472, 0.043425045907497406, 0.14272454380989075, 0.04472042992711067, -0.021271778270602226, -0.018113968893885612, 0.007322216406464577, 0.004363875836133957, -0.003927010111510754, -0.011153573170304298, -0.0246435534209013, -0.027930080890655518, 0.00965242087841034, -0.008273553103208542, 0.01408948190510273, -0.037646979093551636, -0.03664269670844078, 0.011926545761525631, 0.08892613649368286, 0.03234216570854187, -0.0478726401925087, 0.026195000857114792, 0.03164634481072426, -0.002560308203101158, 0.039151791483163834, 0.06284972280263901, -0.0005788631387986243, -0.04380049929022789, -0.0827220231294632, 0.06448029726743698, -0.06130397692322731, -0.018987732008099556, 0.03463201969861984, -0.011793810874223709, 0.0053077032789587975, -0.005952526815235615, 0.019164688885211945, 0.02053956128656864, 0.03209996595978737, -0.019724968820810318, -0.04250466451048851, 0.03493347018957138, 0.10147493332624435, 0.02462117001414299, 0.013176572509109974], "1e10b962-1bf2-4135-9844-a8b37395269b": [-0.07759588211774826, -0.04701446741819382, 0.028089409694075584, 0.05850920453667641, -0.0034204793628305197, -0.01266908086836338, 0.0393066331744194, 0.020289618521928787, 0.012643796391785145, -0.03656788915395737, 0.03192172199487686, -0.01739932782948017, -0.005975971929728985, -0.024942127987742424, -0.02381339855492115, 0.04815806448459625, -0.013923631981015205, -0.03363442420959473, -0.12491443753242493, 0.03943859413266182, 0.01183175016194582, -0.06107278913259506, 0.017507467418909073, 0.00966025423258543, -0.021720247343182564, 0.04694681614637375, -0.002145948354154825, -0.035132527351379395, -0.012404526583850384, -0.14961937069892883, -0.02636617235839367, 0.003217521123588085, -0.012846575118601322, -0.014842425473034382, 0.003973700571805239, 0.07611934840679169, 0.05438971519470215, -0.051854703575372696, 0.017553193494677544, 0.07003723829984665, 0.021134059876203537, -0.018018899485468864, -0.02590833604335785, 0.0115011902526021, 0.021022053435444832, -0.03557946905493736, -0.003740242449566722, -0.06224234402179718, 0.0380583256483078, -0.022930042818188667, -0.05535426735877991, -0.014069441705942154, -0.014661038294434547, 0.019853966310620308, -0.009877648204565048, 0.07072515040636063, 0.06034812703728676, 0.015333464369177818, 0.031980305910110474, -0.00568383140489459, 0.03402463719248772, 0.017214199528098106, -0.08740052580833435, 0.06094248965382576, 0.0516694150865078, 0.018626026809215546, -0.07341989874839783, 0.0011500818654894829, -0.003974982537329197, 0.05789525434374809, -0.034353531897068024, -0.01510324515402317, 0.012448608875274658, 0.08073700964450836, 0.015711717307567596, 0.021792449057102203, 0.07832767069339752, -0.005179973319172859, 0.046392954885959625, 0.012279476970434189, -0.09694969654083252, 0.019104402512311935, -0.037871330976486206, 0.03875159099698067, -0.015935568138957024, -0.04373285174369812, 0.015935158357024193, -0.05194300413131714, -0.03167138621211052, -0.035977836698293686, -0.014022397808730602, -0.018853340297937393, 0.0009201515931636095, -0.03890758380293846, -0.04719749093055725, 0.018911372870206833, -0.02242995798587799, -0.02736680768430233, 0.013140302151441574, 0.4023003578186035, 0.049222126603126526, 0.016595901921391487, 0.041775789111852646, -0.0017413392197340727, 0.006010727025568485, 0.008214994333684444, 0.013941182754933834, -0.0858796015381813, 0.035314835608005524, 0.056033484637737274, 0.01887696050107479, -0.003532466245815158, 0.06399981677532196, -0.002023504115641117, 0.06878884136676788, -0.015323987230658531, 0.06769806891679764, -0.04970042407512665, -0.004537696484476328, -0.0011198318097740412, -0.0008042760891839862, 0.029580581933259964, -0.010707654990255833, -0.04035095125436783, 0.06783632934093475, -0.03761860355734825, 0.061106402426958084, 0.06875266879796982, -0.018429668620228767, -0.053538329899311066, 0.04875196889042854, -0.06737205386161804, 0.02874005399644375, 0.014637078158557415, 0.023854419589042664, 0.00012087244249414653, -0.0028046562802046537, -0.01930072158575058, 0.03303343057632446, -0.08485109359025955, -0.02095920592546463, -0.16873429715633392, -0.039001643657684326, -0.01061122864484787, -0.00887006614357233, 0.045863859355449677, 0.06845340877771378, -0.021016325801610947, 0.014960846863687038, 0.04095218703150749, 0.016711262986063957, -0.03876311704516411, 0.009808951988816261, -0.01302312035113573, 0.04935131222009659, -0.014902484603226185, -0.01214346569031477, 0.14932985603809357, -0.04590997099876404, 0.040842004120349884, 0.08191794902086258, -0.03517742455005646, 0.0133814113214612, -0.05938738211989403, 0.03003367967903614, 0.010216271504759789, -0.06956586986780167, -0.042950112372636795, -0.02252698317170143, 0.0049802944995462894, 0.01917192153632641, 0.034409165382385254, -0.08823010325431824, 0.022700564935803413, -0.05070148780941963, -0.008499146439135075, 0.007556089200079441, -0.0018293419852852821, 0.0007168017327785492, 0.03010784648358822, -0.06419084966182709, -0.04827803745865822, -0.03183073177933693, 0.07188676297664642, -0.053595006465911865, -0.043578650802373886, -0.0328260101377964, -0.045500919222831726, 0.0028813250828534365, -0.03164897859096527, 0.05042235925793648, 0.002697008429095149, -0.009809894487261772, 0.00939155649393797, -0.06170324608683586, -0.05613255500793457, 0.00447780592367053, -0.022139038890600204, -0.022850235924124718, -0.011791774071753025, -0.024336637929081917, -0.08938340842723846, -0.05265318974852562, 0.04089907184243202, 0.012991336174309254, 0.03880458325147629, 0.057716429233551025, -0.018838463351130486, 0.06230262666940689, 0.011956753209233284, 0.0065338024869561195, -0.05746227502822876, 0.0036345019470900297, 0.029845548793673515, -0.012381081469357014, 0.05496485158801079, -0.014162697829306126, 0.006814565509557724, 0.0038935281336307526, 0.006403832696378231, -0.0013973661698400974, -0.09253612160682678, -0.023732131347060204, -0.2907758057117462, -0.0055689685977995396, -0.022368988022208214, -0.0907617136836052, 0.06787926703691483, -0.0683799535036087, 0.0050307027995586395, -0.041047342121601105, 0.045288603752851486, -0.05684776231646538, -0.0017193448729813099, -0.07743974775075912, 0.06164566054940224, 0.05670775845646858, -0.011544423177838326, 0.04694943502545357, -0.042527034878730774, 0.01697627641260624, 0.01007246132940054, 0.020358948037028313, 0.009763995185494423, 0.004862773232161999, -0.011077390052378178, -0.046243276447057724, -0.011702441610395908, 0.025402894243597984, 0.15406177937984467, 0.07318169623613358, 0.018600691109895706, 0.012257952243089676, 0.008613689802587032, 0.0541032999753952, -0.03880860656499863, -0.022514700889587402, 0.013809437863528728, 0.048987895250320435, -0.007817868143320084, -0.003999118227511644, -0.016136817634105682, -0.00043544123764149845, -0.06862520426511765, 0.08658196777105331, -0.001923571340739727, 0.003333012806251645, -0.03809924051165581, 0.0009461126755923033, -0.012155603617429733, 0.010853552259504795, -0.0004017593455500901, 0.023625779896974564, 0.020852621644735336, 0.038366030901670456, -0.00985723827034235, -0.01718265749514103, 0.01698305457830429, 0.010837888345122337, -0.01661522686481476, 0.009525817818939686, -0.018003514036536217, 0.04960234835743904, 0.0010538807837292552, 0.008476643823087215, 0.022805696353316307, -0.05081339180469513, -0.014751564711332321, 0.001538383774459362, 0.015862802043557167, -0.02935507334768772, 0.008682495914399624, 0.008751894347369671, -0.046997278928756714, 0.05208660662174225, 0.011631080880761147, -0.06928330659866333, 0.034060999751091, 0.016916248947381973, 0.015066687017679214, 0.009966321289539337, -0.05939459055662155, -0.017390744760632515, 0.06282256543636322, -0.08600600063800812, 0.004308895207941532, 0.007049914449453354, -0.04760506749153137, 0.030101662501692772, -5.897122900933027e-05, 0.006959522608667612, 0.06641479581594467, -0.03346775472164154, -0.04036723077297211, 0.044136542826890945, -0.03008088655769825, -0.020211050286889076, 0.008965188637375832, 0.012479099445044994, -0.2616533041000366, 0.04500186815857887, 0.039919931441545486, 0.04605456441640854, 0.008124659769237041, 0.07444353401660919, -0.04000651836395264, -0.01939982920885086, -0.041875895112752914, -0.009029312059283257, 0.06356577575206757, 0.0038465175312012434, 0.01738622598350048, -0.022400733083486557, -0.047178104519844055, 0.06333008408546448, 0.03093121387064457, 0.03170083090662956, -0.04860172048211098, 0.021220451220870018, 0.03139964118599892, 0.04915112257003784, 0.12626387178897858, 0.024300167337059975, -0.055814314633607864, -0.06307544559240341, -0.02389203943312168, 0.04593833163380623, 0.0007117785862646997, 0.008140169084072113, -0.020660458132624626, 0.028266776353120804, 0.021779803559184074, -0.010229971259832382, 0.0016934712184593081, -0.04939960315823555, -0.046526454389095306, 0.019062569364905357, 0.07763734459877014, 0.0006933868280611932, -0.04064121097326279, 0.04933754727244377, 0.025014396756887436, 0.021234920248389244, 0.04112042486667633, 0.03361654281616211, 0.015164867974817753, -0.008353274315595627, -0.06232050433754921, 0.059847380965948105, -0.04629731923341751, -0.03559631109237671, 0.022884290665388107, -0.021660223603248596, 0.0020944862626492977, 0.02594897896051407, -0.0033599145244807005, 0.022143982350826263, 0.011096345260739326, -0.019699186086654663, -0.02982153929769993, -0.005457006394863129, 0.11091697961091995, -0.0012548021040856838, 0.0420827753841877], "9c977b29-2b5e-4adb-ac39-8cd17e89d6a0": [-0.07250142097473145, -0.07328035682439804, 0.09112856537103653, 0.07591931521892548, 0.02142835035920143, -0.023630617186427116, 0.0453101247549057, 0.012601310387253761, -0.03902917355298996, -0.0038064285181462765, 0.028588352724909782, 0.009690852835774422, 0.010814530774950981, -0.08478838950395584, -0.02156161144375801, 0.018596215173602104, -0.024161754176020622, -0.051142118871212006, -0.13820575177669525, 0.08205240964889526, 0.015022342093288898, -0.07538732886314392, 0.060212306678295135, 0.02948220819234848, -0.05310593172907829, 0.017694925889372826, 0.014007852412760258, 0.005056191235780716, -0.024919923394918442, -0.15294915437698364, -0.01760842837393284, 0.003813918447121978, -0.03045588918030262, -0.008324721828103065, 0.04870881512761116, 0.0508807934820652, 0.05771515518426895, -0.05483892187476158, 0.022364243865013123, 0.057658851146698, 0.011866461485624313, -0.02737554721534252, -0.008552988059818745, 0.010737977921962738, 0.039034146815538406, -0.016925040632486343, 0.027337398380041122, -0.005361134186387062, -0.01023208349943161, -0.06727390736341476, -0.015387140214443207, -0.015517600812017918, -0.028477303683757782, 0.034741345793008804, 0.010945226065814495, 0.0870385468006134, 0.07449599355459213, 0.0052648563869297504, 0.050325047224760056, 0.0034467580262571573, 0.07043170928955078, 0.10441340506076813, -0.10360828042030334, 0.06978528201580048, 0.08606435358524323, 0.02891390770673752, -0.06330285221338272, -0.023111464455723763, 0.02795650064945221, 0.06539565324783325, -0.05238109827041626, -0.013738845475018024, -0.008772418834269047, 0.020797614008188248, -0.023901280015707016, 0.03565682843327522, 0.032422713935375214, 0.0003702996764332056, 0.020223377272486687, 0.007722679991275072, -0.11422401666641235, 0.038641612976789474, -0.01934979110956192, 0.0328182615339756, -0.01863226108253002, -0.019403528422117233, 0.03134671598672867, -0.06652355194091797, -0.020227428525686264, 0.0010660089319571853, -0.008990301750600338, -0.016310488805174828, -0.005609216168522835, 0.018712013959884644, -0.07036808878183365, 0.005372772924602032, 0.0028703201096504927, 3.8010592106729746e-05, 0.04171478748321533, 0.40458056330680847, 0.011570371687412262, -0.016023829579353333, 0.03182065486907959, 0.0035860466305166483, -0.008064327761530876, 0.02185429446399212, 0.022991839796304703, -0.05778656527400017, 0.010518806986510754, 0.0680898055434227, 0.007237536832690239, 0.029661020264029503, 0.037241581827402115, -0.0016722267027944326, 0.05384376645088196, -0.01443907804787159, 0.028077278286218643, 0.008508222177624702, 0.002998734824359417, 0.008507838472723961, 0.026257116347551346, -0.009837745688855648, -0.009289566427469254, -0.04559188336133957, 0.02331443689763546, -0.028248395770788193, 0.08055366575717926, 0.06837593019008636, -0.025486763566732407, -0.024730704724788666, -0.015475809574127197, -0.0047745490446686745, 0.012083119712769985, 0.01580854505300522, -0.0210542194545269, 0.020856918767094612, -0.025502461940050125, -0.021855443716049194, 0.04828448221087456, -0.049107469618320465, -0.027551503852009773, -0.13486433029174805, -0.03090151585638523, -0.0243443064391613, -0.014295028522610664, 0.010253122076392174, 0.04872991517186165, 0.00976265873759985, 0.006709157954901457, 0.06570352613925934, 0.04036816954612732, 0.04699547588825226, -0.016541296616196632, -0.004011321812868118, 0.04673116281628609, 0.003427899908274412, 0.006000668276101351, 0.15946544706821442, -0.014652874320745468, 0.01900961436331272, 0.006928577553480864, -0.020150838419795036, 0.01967468112707138, -0.038839519023895264, 0.024145176634192467, -0.031115712597966194, -0.01111245434731245, -0.01864224672317505, -0.021360212936997414, -0.03915838897228241, -0.0024169348180294037, 0.0176409762352705, -0.1208634153008461, 0.04854881763458252, -0.06664564460515976, -0.007106774020940065, -0.052294470369815826, -0.00769495964050293, 0.01956157386302948, 0.004661693703383207, -0.062335867434740067, -0.048063814640045166, 0.025380076840519905, 0.05460037663578987, -0.044465478509664536, -0.03947005420923233, -0.01995527744293213, 0.009179573506116867, 0.02698572911322117, 0.020086102187633514, 0.0286689605563879, 0.045955318957567215, -0.0011598411947488785, -0.001014189561828971, -0.04445713013410568, -0.05283600836992264, -0.022720137611031532, 0.0022853075060993433, -0.012345305643975735, -0.011073501780629158, -0.010688194073736668, -0.07075179368257523, -0.016282623633742332, 0.02882998436689377, 0.006508450955152512, 0.01233484223484993, 0.0774315744638443, -0.038552090525627136, 0.04361020028591156, 0.0010221338598057628, 0.006827779579907656, -0.022562136873602867, 0.004409434273838997, -0.01259454432874918, -0.03262566030025482, 0.008913842029869556, -0.015139942057430744, 0.03898679092526436, -0.00030741511727683246, 0.00457532936707139, -0.029470747336745262, -0.10940023511648178, -0.017898162826895714, -0.3010213375091553, -0.01318290363997221, 0.0028111892752349377, -0.058173563331365585, 0.05747044086456299, -0.10391300916671753, 0.01511328388005495, -0.026397010311484337, 0.0299982950091362, -0.021425150334835052, 0.01815486140549183, -0.07142596691846848, 0.02006804198026657, 0.03634687513113022, 0.031279951333999634, 0.06786638498306274, -0.042887039482593536, -0.029372811317443848, 6.771094194846228e-05, 0.02656656689941883, 0.009344975464046001, 0.023684099316596985, 0.012745662592351437, -0.007293898146599531, -0.030896872282028198, 0.005653746891766787, 0.12419991195201874, 0.03857142850756645, 0.01828135922551155, -0.02523963153362274, 0.005370134487748146, 0.02601296454668045, -0.05789672210812569, 0.015357282012701035, 0.026866968721151352, 0.04503341019153595, -0.008743032813072205, 0.04142361134290695, 0.03058263286948204, -0.0015212456928566098, -0.06722644716501236, 0.07357516139745712, 0.0393088161945343, 0.0214009340852499, -0.002246716059744358, 0.03447098657488823, -0.051706328988075256, -0.012650526128709316, 0.010655133984982967, 0.03223855048418045, 0.01460464671254158, 0.004749629646539688, -0.04104689508676529, -0.006586369127035141, -0.010660967789590359, -0.003253091126680374, -0.015126626938581467, 0.0026212232187390327, -0.01849495619535446, 0.09710657596588135, -0.01313812006264925, 0.002825631760060787, 0.03939678519964218, -0.07647351920604706, -0.016586001962423325, -0.00833654124289751, -0.0005780623177997768, -0.01695667952299118, -0.00098153215367347, -0.00916308257728815, -0.03603403642773628, 0.023981992155313492, 0.01818539761006832, -0.024539656937122345, 0.01650804467499256, 0.020814215764403343, 0.021262994036078453, 0.007414015009999275, -0.04933061823248863, 0.01828080415725708, 0.06271857768297195, -0.07325411587953568, 0.006880046799778938, -0.04000366851687431, -0.020660167559981346, -0.030468523502349854, -0.009098543785512447, -0.01934327557682991, 0.045277975499629974, 0.021394599229097366, -0.06581021845340729, 0.02203553542494774, -0.04135825112462044, 0.00151344935875386, 0.02741629257798195, -0.026871029287576675, -0.2510056793689728, -0.0117615582421422, 0.03465680032968521, 0.05991481989622116, -0.0001079420544556342, 0.0374714732170105, -0.028523039072752, -0.07102512568235397, 0.019490405917167664, 0.005901007447391748, 0.07525654882192612, -0.05287403613328934, 0.006291583180427551, 0.014668765477836132, -0.024066384881734848, 0.06484480947256088, 0.019365081563591957, 0.03159656375646591, -0.1176292821764946, 0.08266492933034897, 0.019227445125579834, 0.019663959741592407, 0.1636166274547577, 0.05164521187543869, -0.032369375228881836, -0.06370798498392105, -0.019519176334142685, 0.0452420711517334, 0.04615962505340576, 0.01119293738156557, -0.017142403870821, 0.014166025444865227, 0.012125283479690552, 0.021340366452932358, -0.0020103631541132927, -0.06732282042503357, -0.01996755227446556, 0.009501966647803783, 0.05290983244776726, -0.036852627992630005, -0.06626744568347931, 0.01503613218665123, -0.025150233879685402, -0.00780066242441535, 0.0006297950749285519, 0.026755092665553093, -0.025273483246564865, -0.025231871753931046, -0.059283655136823654, 0.06414243578910828, -0.04249604046344757, -0.05749349668622017, 0.02146262489259243, -0.014162330888211727, 0.01578287035226822, 0.030039256438612938, -0.008544540964066982, -0.008352233096957207, -0.009257449768483639, -0.028096940368413925, -0.027683060616254807, 0.00843726098537445, 0.0651298314332962, -0.012277277186512947, 0.008661910891532898], "525f4ace-6468-4482-8704-b40282846811": [-0.07918024808168411, -0.03578925505280495, 0.07807061076164246, 0.04726266860961914, 0.010581652633845806, -0.015731768682599068, 0.02612595073878765, 0.04601867124438286, -0.0025800256989896297, -0.032020483165979385, 0.023738224059343338, -0.025141168385744095, -0.047611698508262634, -0.05923384800553322, 0.025532983243465424, 0.03548857942223549, -0.012267343699932098, -0.07415619492530823, -0.1373506337404251, 0.05038829147815704, -0.012602956034243107, -0.03651990741491318, 0.02404962293803692, 0.009489317424595356, -0.03803744539618492, 0.022422954440116882, 0.059105969965457916, -0.04699348658323288, -0.032913751900196075, -0.12634268403053284, 0.005673056934028864, 0.023541273549199104, 0.009985841810703278, -0.018513552844524384, -0.008718094788491726, 0.0418444387614727, 0.04987284913659096, 0.0003870247455779463, -0.003781022969633341, 0.04802747443318367, 0.01693030446767807, -0.03507646918296814, -0.03916367515921593, -0.021228047087788582, 0.05884722247719765, -0.05607839673757553, 0.024559607729315758, -0.01744508370757103, 0.00990266539156437, -0.026136279106140137, -0.05560839921236038, -0.018474029377102852, -0.018735328689217567, 0.03816629946231842, 0.015170732513070107, 0.016818031668663025, 0.02468891628086567, -0.016857454553246498, 0.046970054507255554, 0.036056868731975555, 0.05480752885341644, 0.013160085305571556, -0.06845194101333618, 0.05413917079567909, 0.050926148891448975, -0.0022375585976988077, -0.07578429579734802, 0.009763325564563274, 0.057924799621105194, 0.11540758609771729, -0.017518412321805954, 0.017747968435287476, -0.026245884597301483, 0.06726113706827164, 0.011131499893963337, -0.005598343443125486, 0.054126013070344925, -0.011179265566170216, 0.07411139458417892, 0.021802520379424095, -0.06584609299898148, -0.02346997708082199, -0.024004526436328888, 0.042201802134513855, -0.026259152218699455, -0.025879692286252975, 0.002467928919941187, -0.03447142243385315, -0.04702293872833252, -0.03853973373770714, -0.03260247781872749, -0.003496637102216482, 0.0038638089317828417, 0.00032098693191073835, -0.03560511767864227, -0.0417814701795578, -0.03969721123576164, -0.013737804256379604, 0.04067465290427208, 0.37875086069107056, 0.04095618799328804, 0.01911824941635132, 0.05344787985086441, 0.015029741451144218, 0.013781131245195866, 0.005064734257757664, 0.03436039760708809, -0.06638427078723907, 0.014813288114964962, 0.054278597235679626, -0.018553728237748146, 0.022204691544175148, 0.06178354099392891, 0.0009112686384469271, 0.06935197860002518, 0.017853865399956703, 0.075615294277668, -0.04055052995681763, -0.03753223642706871, -0.008561681024730206, 0.037061113864183426, 0.032072704285383224, -0.01258264109492302, -0.029627369716763496, 0.00800362415611744, -0.016280747950077057, 0.019904639571905136, 0.058744024485349655, -0.021327000111341476, -0.060039032250642776, 0.012816051952540874, -0.06239346042275429, 0.05127519369125366, 0.04062741994857788, 0.013894470408558846, 0.03136596456170082, 0.007256085518747568, -0.018943309783935547, 0.07569589465856552, -0.056436650454998016, -0.0012189238332211971, -0.08703818917274475, -0.0029991352930665016, -0.03332383185625076, -0.0015431002248078585, 0.0660267099738121, 0.04740377143025398, -0.016170475631952286, 0.03455853462219238, 0.057928431779146194, 0.04048566520214081, 0.01997300051152706, -0.004652348347008228, -0.047070760279893875, 0.025424152612686157, -0.041244134306907654, 0.03170286864042282, 0.13764671981334686, 0.0014537778915837407, 0.015059851109981537, 0.05724545195698738, -0.009933408349752426, 0.03267575427889824, -0.03681137412786484, 0.020880939438939095, -0.017427612096071243, -0.005720500368624926, -0.026775605976581573, -0.013316609896719456, 0.008161201141774654, 0.06431349366903305, 0.04869747534394264, -0.11715061217546463, 0.06721070408821106, -0.035377439111471176, -0.02766648679971695, -0.03747145086526871, -0.008206188678741455, -0.008433181792497635, 0.01935483142733574, -0.02098269760608673, -0.020734522491693497, 0.010621532797813416, 0.08907312154769897, -0.05218040570616722, -0.04086897522211075, 0.05293194577097893, -0.04214084893465042, 0.023212073370814323, -0.01977500692009926, -0.012781323865056038, 0.03875511512160301, -0.02776142954826355, 0.007322810124605894, -0.05378914996981621, -0.07041554152965546, -0.010183492675423622, -0.032572340220212936, -0.045838579535484314, -0.012151322327554226, -0.03399175778031349, -0.02519465796649456, -0.06879687309265137, 0.05182791128754616, 0.018196456134319305, 0.02775525487959385, 0.04765232279896736, -0.04013729467988014, 0.07397904247045517, -0.005761091597378254, -0.002979630371555686, -0.06648166477680206, 0.050273675471544266, -0.017921937629580498, -0.05515079200267792, 0.008260907605290413, 0.008324197493493557, -0.0030764553230255842, -0.006014649290591478, -0.018251707777380943, -0.0164419524371624, -0.0698162242770195, -0.03119789808988571, -0.325866162776947, 0.01341366209089756, -0.01826523058116436, -0.04737255349755287, 0.0031803457532078028, -0.06334158033132553, 0.014716326259076595, -0.048994895070791245, 0.034566301852464676, -0.07687585055828094, 0.03925051540136337, -0.05497099831700325, 0.026104537770152092, -0.01462112832814455, -0.025080913677811623, 0.028370428830385208, -0.01907501369714737, 0.019570257514715195, 0.013971495442092419, 0.008856522850692272, -0.01498529501259327, 0.03990945219993591, 0.013609484769403934, -0.0320962592959404, -0.054185718297958374, 0.013289269059896469, 0.15400175750255585, 0.07415372878313065, -0.00728252436965704, -0.031534526497125626, 0.012875949032604694, 0.07345828413963318, -0.0047630867920815945, 0.0005917599773965776, 0.018894623965024948, 0.020227350294589996, 0.0079190107062459, 0.020407238975167274, 0.020351357758045197, 0.0002763498923741281, -0.10763035714626312, 0.09297376871109009, -0.0029309806413948536, -0.017534930258989334, -0.06393443793058395, -0.003998368512839079, -0.03224867954850197, -0.026522565633058548, -0.019487878307700157, 0.034063950181007385, 0.030363058671355247, 0.040492672473192215, -0.06437715888023376, -0.0304851233959198, 0.007249678950756788, -0.022205378860235214, -0.015860391780734062, 0.0368506982922554, -0.03546830266714096, 0.01666182652115822, -0.02597666345536709, 0.012830338440835476, 0.012674147263169289, -0.03400114178657532, -0.024071920663118362, 0.0005468016024678946, -0.0019152392633259296, -0.023179693147540092, 0.023178711533546448, 0.010985104367136955, -0.034756142646074295, 0.0641045868396759, 0.0010652405908331275, -0.011350821703672409, 0.08095384389162064, 0.004902753047645092, -0.05222402513027191, 0.0412144660949707, -0.10286954045295715, 0.028468698263168335, 0.013726930133998394, -0.07930652797222137, 0.027752848342061043, -0.02632199600338936, -0.009705686010420322, -0.034622468054294586, 0.0033494874369353056, -0.041029106825590134, 0.03888287767767906, 0.013079279102385044, -0.03214934095740318, 0.04103139042854309, -0.037017907947301865, -0.01114304643124342, 0.017886677756905556, -0.025886647403240204, -0.27879491448402405, 0.009132522158324718, 0.02408383972942829, 0.07957154512405396, -0.006640838459134102, 0.03598674759268761, 0.0014850213192403316, 0.016396915540099144, -0.009613050147891045, 0.014466465450823307, 0.038892246782779694, -0.03445212170481682, 0.01984352432191372, 0.0524795800447464, -0.05750912427902222, 0.014855471439659595, 0.009077812545001507, 0.03502388298511505, -0.0955849289894104, 0.008875797502696514, 0.028900165110826492, 0.04414756968617439, 0.12135805189609528, 0.04983026161789894, -0.07864732295274734, -0.03148395195603371, -0.005292524117976427, 0.003648060141131282, 0.053566042333841324, 0.03080320544540882, -0.01885540969669819, 0.0043158158659935, 0.012730647809803486, 0.03842815384268761, 0.07305973023176193, -0.09028132259845734, -0.015870628878474236, 0.01702047511935234, 0.05926670879125595, -0.037682563066482544, -0.014091414399445057, 0.0013694415101781487, -0.022445110604166985, 0.026733091101050377, 0.04070614278316498, 0.005262312013655901, 0.015867292881011963, -0.010493994690477848, -0.07981371879577637, 0.05094371363520622, -0.04826699197292328, -0.01703708991408348, 0.04664773494005203, 0.010272540152072906, 0.04488546401262283, 0.030364831909537315, -0.03580721095204353, -0.011137430556118488, 0.02247888222336769, -0.028126269578933716, -0.007891258224844933, -0.03490239009261131, 0.10265778750181198, -0.004743994679301977, 0.008840857073664665], "11a31fba-c851-494f-888d-137034ec349b": [-0.07820800691843033, -0.01049753837287426, 0.09559977799654007, 0.06714078783988953, -0.009692763909697533, 0.03373396024107933, -0.007039448246359825, -0.02263895981013775, -0.031797654926776886, -0.0025422340258955956, -8.914400677895173e-05, 0.021126998588442802, -0.027400081977248192, -0.019177928566932678, -0.007246115244925022, 0.021792035549879074, -0.00024395454965997487, -0.004102741368114948, -0.18307046592235565, 0.018232369795441628, -0.006892761215567589, -0.026777558028697968, 0.06456918269395828, 0.00440015085041523, 0.001767900655977428, 0.018565811216831207, -0.006550146732479334, -0.05246352404356003, -0.017934616655111313, -0.12293444573879242, -0.013703071512281895, 0.039766762405633926, -0.01758364401757717, -0.017166242003440857, 0.002564168069511652, 0.08697928488254547, 0.03579334169626236, 0.019796477630734444, 0.009388633072376251, 0.035928960889577866, 0.027306050062179565, 0.013464884832501411, -0.031312860548496246, -0.02007141150534153, 0.05346480384469032, -0.021492546424269676, 0.020441362634301186, -0.016379548236727715, 0.020548148080706596, -0.008657697588205338, -0.06352003663778305, -0.03758206591010094, -0.02103837952017784, 0.04649810865521431, -0.044034719467163086, 0.0381791889667511, 0.03240544721484184, 0.008887011557817459, 0.037698011845350266, 0.03215554356575012, 0.041808195412158966, 0.02528771013021469, -0.08815571665763855, 0.05448198691010475, 0.06252078711986542, 0.008022121153771877, -0.039850711822509766, -0.030625617131590843, 0.04361225292086601, 0.06377469748258591, -0.010468441992998123, 0.013573108240962029, 0.009242474101483822, 0.061920203268527985, 0.0375523678958416, 0.021418340504169464, 0.04524290934205055, 0.0015638695331290364, 0.08390439301729202, 0.03935028240084648, -0.07231320440769196, 0.004589315503835678, -0.05001225695014, 0.03128914535045624, -0.04235079884529114, -0.0443502701818943, 0.003292710054665804, -0.047426577657461166, -0.016225170344114304, -0.021088581532239914, -0.004973642528057098, -0.019078703597187996, -0.003549993969500065, 0.012405403889715672, 0.0012691523879766464, -0.06510628759860992, -0.05070475488901138, -0.00019502185750752687, 0.021469570696353912, 0.3741963803768158, 0.017511796206235886, 0.05291653424501419, -0.00612042797729373, 0.004892571363598108, -0.026229145005345345, -0.00527192885056138, 0.03237464651465416, -0.07205028086900711, 0.042196281254291534, 0.03326516970992088, 0.004564605187624693, -0.020159689709544182, 0.021336672827601433, 0.006806135643273592, 0.06559059023857117, -0.016712572425603867, 0.051748599857091904, -0.023080045357346535, -0.018044359982013702, 0.03889932483434677, 0.02119855023920536, 0.03434978052973747, -0.02219768427312374, -0.029880812391638756, 0.01804731786251068, -0.04442691057920456, 0.06009968742728233, 0.06940826028585434, -0.026264134794473648, -0.07095236331224442, 0.009642642922699451, -0.07551256567239761, -0.007764939218759537, 0.007439742796123028, 0.008021026849746704, 0.02017025649547577, -0.030862588435411453, 0.027660448104143143, 0.08376134932041168, -0.006275293882936239, 0.002012627897784114, -0.07938136905431747, -0.05350186303257942, -0.0010451063280925155, 0.012400031089782715, 0.06687650829553604, 0.08314082026481628, 0.039556827396154404, 0.050770435482263565, 0.050566162914037704, 0.025758007541298866, 0.028205854818224907, -0.05228624865412712, -0.029147295281291008, 0.06289923936128616, -0.01965564861893654, 5.4431631724582985e-05, 0.08315009623765945, 0.031016729772090912, -0.008093621581792831, 0.030942924320697784, -0.005434039514511824, 0.030699873343110085, -0.03595271334052086, 0.03466574102640152, 0.008809356018900871, -0.022916408255696297, -0.019513841718435287, -0.03514256328344345, 0.03097967803478241, 0.0647178590297699, 0.02927199937403202, -0.08444856107234955, 0.06869272887706757, 0.0032714607659727335, -0.05318904668092728, -0.0038488833233714104, -0.05172354727983475, -0.019943971186876297, 0.04300392419099808, -0.022284461185336113, -0.05136464163661003, 0.007946095429360867, 0.0706619918346405, -0.07877243310213089, -0.02722497098147869, 0.04096904397010803, -0.02895161882042885, 0.023853987455368042, -0.005062119569629431, 0.00692696264013648, 0.029176095500588417, -0.0425872765481472, -0.002886004513129592, -0.020314566791057587, -0.037205327302217484, -0.02362711913883686, 0.011805995367467403, -0.028079582378268242, 0.002997039817273617, -0.06373317539691925, -0.023354051634669304, -0.05864807963371277, 0.007910087704658508, -0.002367282286286354, 0.03784843161702156, 0.033980946987867355, -0.028039440512657166, 0.11684079468250275, 0.00633535161614418, -0.024004096165299416, -0.052610959857702255, 0.01200332585722208, 0.0024889521300792694, -0.008955162949860096, 0.01952982135117054, -0.015026108361780643, 0.006484492681920528, -0.01910094916820526, -0.03724769130349159, -0.02506205253303051, -0.10218681395053864, -0.07862579822540283, -0.3283677101135254, 0.05665341392159462, -0.00042909206240437925, -0.08017805218696594, -0.003654856001958251, -0.09332014620304108, 0.006852028891444206, -0.055426985025405884, 0.02937863953411579, -0.05722220242023468, -0.007927695289254189, -0.05817374587059021, 0.05160991847515106, 0.007639841642230749, -0.010546019300818443, 0.004672060254961252, -0.02452942542731762, 0.011758589185774326, 0.03228418529033661, 0.0436454601585865, 0.007645853329449892, 0.018215153366327286, 0.01794220507144928, -0.09644736349582672, -0.014304829761385918, 0.008018759079277515, 0.12550121545791626, 0.05389527976512909, 0.028881317004561424, -0.028817815706133842, 0.03482724353671074, 0.027011966332793236, -0.03525339066982269, -0.03133779019117355, 0.039675790816545486, 0.016141055151820183, 0.011146625503897667, 0.006296265870332718, -0.014740783721208572, -0.012984829023480415, -0.05960375443100929, 0.1101665273308754, 0.0036061990540474653, -0.021007701754570007, -0.09324076771736145, 0.008249527774751186, 0.0062471781857311726, -0.006984342355281115, -0.007270230911672115, 0.011202224530279636, -0.025925958529114723, 0.016678795218467712, -0.05681939795613289, -0.030895406380295753, -0.013572925701737404, -0.0193985216319561, -0.053273070603609085, 0.03795741870999336, -0.015714745968580246, 0.03086194582283497, -0.046112511307001114, 0.016899511218070984, 0.03824228420853615, -0.050790801644325256, -0.038312505930662155, -0.02701646462082863, -0.009386490099132061, -0.01664760708808899, 0.006947741843760014, -0.036316897720098495, -0.03664296120405197, 0.07270477712154388, -0.00027065540780313313, -0.046811528503894806, 0.059222374111413956, 0.028484433889389038, -0.0243324413895607, 0.047480110079050064, -0.07479555904865265, 0.02796080894768238, -0.028913740068674088, -0.08271464705467224, -0.006499224808067083, 0.01228848285973072, -0.030987614765763283, -0.037733208388090134, -0.014907492324709892, -0.07469449192285538, 0.03948533907532692, -0.0007981451344676316, -0.05549066141247749, 0.06742710620164871, -0.06676709651947021, -0.007905110716819763, 0.02995079942047596, -0.02617775835096836, -0.26457178592681885, 0.024606432765722275, 0.014017640613019466, 0.05063185468316078, 0.023719701915979385, 0.0647992193698883, 0.005592543166130781, 0.05114753916859627, 0.03378034010529518, 0.01595410518348217, 0.05983620509505272, -0.01730361208319664, 0.024312693625688553, 0.016087396070361137, -0.023458486422896385, 0.05792147293686867, 0.02098410204052925, 0.05261283367872238, -0.07660815864801407, 0.038573238998651505, 0.03528057038784027, 0.06316328048706055, 0.09439603984355927, 0.09669923782348633, -0.05562063679099083, -0.050557248294353485, -0.03338681906461716, 0.03759871423244476, 0.030217638239264488, 0.003720128908753395, -0.02476852759718895, 0.049858301877975464, 0.006488211452960968, 0.0213624257594347, 0.02167118526995182, -0.075650155544281, -0.012218445539474487, -0.008285441435873508, 0.06355902552604675, -0.005507847759872675, -0.019938474521040916, 0.011315960437059402, 0.001841444754973054, 0.047749556601047516, 0.07438932359218597, -0.024014784023165703, 0.029739318415522575, -0.01624862477183342, -0.10394077003002167, 0.028879767283797264, -0.03436833247542381, 0.029088307172060013, 0.08192536979913712, 0.017393793910741806, 0.03041074238717556, 0.022619618102908134, -0.01932850293815136, -0.01993776112794876, 0.013893702067434788, -0.05383988469839096, -0.026647718623280525, -0.03400497883558273, 0.04101051390171051, -0.012347589246928692, 0.025909632444381714], "0d0abb6b-626a-4c17-93ee-420c9623e6a1": [-0.083576999604702, -0.08403778821229935, 0.08160055428743362, 0.06362023204565048, 0.004256760235875845, 0.02655242756009102, 0.03222992271184921, -0.014424264430999756, -0.01590929925441742, -0.01070339698344469, -0.0013446890516206622, -0.017114950343966484, -0.02685067616403103, -0.03358416259288788, -0.010599581524729729, 0.026612363755702972, -0.025292668491601944, 0.0027318978682160378, -0.13639551401138306, 0.029526231810450554, 0.010686522349715233, 0.0015556949656456709, 0.03532985597848892, 0.024492062628269196, -0.07451213896274567, -0.001040946925058961, 0.006037361454218626, -0.042596105486154556, 0.018110167235136032, -0.1377590447664261, -0.036441411823034286, 0.015086301602423191, 0.010555505752563477, -0.01365489698946476, 0.022712377831339836, 0.07616075873374939, 0.02722756378352642, 0.007341485936194658, 0.015119544230401516, 0.023496413603425026, 0.01603681407868862, -0.006896720267832279, 0.0020326029043644667, -0.06915069371461868, 0.0694589912891388, -0.016307061538100243, 0.030329201370477676, 0.002429625717923045, 0.0030318056233227253, -0.006935427896678448, -0.058616768568754196, 0.010332741774618626, -0.026171423494815826, -0.018208932131528854, -0.008112500421702862, 0.04531266167759895, 0.05902674049139023, -0.0006136895972304046, 0.06374805420637131, -0.005620216950774193, 0.0658545196056366, 0.010472632013261318, -0.08890727162361145, 0.07568959146738052, 0.08335117250680923, 0.014402042143046856, -0.021353933960199356, -0.036099888384342194, 0.005143225193023682, 0.04789193347096443, -0.035312145948410034, -0.018575742840766907, 0.02736208215355873, 0.021314917132258415, -0.010065559297800064, 0.010993865318596363, 0.06253919005393982, 0.006100185215473175, 0.04505384340882301, 0.02799023501574993, -0.06390362977981567, 0.005023377947509289, -0.03337610885500908, 0.04045988246798515, -0.05073204264044762, -0.03529514744877815, 0.009506436064839363, -0.02073931321501732, -0.002278759144246578, -0.05793582648038864, -0.0015089883236214519, -0.025789586827158928, -0.03725593909621239, 0.036620110273361206, -0.013927130959928036, -0.012937129475176334, -0.012635013088583946, 0.016879159957170486, -0.001062273746356368, 0.3990146219730377, 0.019137294963002205, 0.021043553948402405, 0.02091815136373043, -0.019362058490514755, 0.008125606924295425, -0.006494313478469849, 0.017335379496216774, -0.07013870030641556, 0.00806226022541523, 0.10157478600740433, 0.042331576347351074, -0.021719129756093025, 0.042119015008211136, 0.007566817104816437, 0.05107342451810837, -0.00830393098294735, 0.03521043807268143, -0.032556191086769104, 0.0121086984872818, 0.0041338675655424595, 0.05580773577094078, -0.012150920927524567, -0.009996576234698296, -0.04703958332538605, -0.004667548928409815, -0.0324588380753994, 0.07281357795000076, 0.07469215989112854, -0.011451047845184803, -0.059583019465208054, -0.006147323176264763, -0.0785607397556305, 0.016762712970376015, 0.03293091431260109, 0.029877781867980957, 0.03615189343690872, 0.029907453805208206, -0.014152140356600285, 0.06860353797674179, -0.017929676920175552, -0.012334686703979969, -0.16675744950771332, -0.015710555016994476, 0.03200297802686691, -0.01955500990152359, 0.03627318888902664, 0.0076568471267819405, 0.02928932011127472, 0.030412528663873672, 0.04282015562057495, 0.019221588969230652, 0.036768946796655655, 0.000306205649394542, -0.025164416059851646, 0.05044561251997948, -0.03422919660806656, 0.014416222460567951, 0.15397413074970245, 0.022641677409410477, 0.0037240274250507355, 0.039216164499521255, -0.02637135423719883, 0.005146846640855074, -0.06234398111701012, 0.03169295936822891, -0.007116066757589579, -0.0527273491024971, -0.052243076264858246, -0.016259096562862396, -0.01741105131804943, 0.034417878836393356, 0.03493890538811684, -0.11980956792831421, 0.025972973555326462, -0.06157011166214943, 0.0029247936327010393, -0.012899876572191715, -0.05055095627903938, -0.016414634883403778, 0.02650330774486065, -0.06197820231318474, -0.06225583702325821, 0.018910514190793037, 0.0642327070236206, -0.02668413333594799, -0.04132802411913872, 0.010793774388730526, -0.03951453045010567, 0.05887308344244957, 0.005252942442893982, 0.02249462530016899, 0.06337146461009979, -0.026570217683911324, 0.007054958958178759, -0.04789401963353157, -0.04634563997387886, 0.009876344352960587, 0.0409979410469532, -0.012818406336009502, -0.006971906870603561, -0.011173081584274769, -0.054052527993917465, -0.07172800600528717, 0.009620935656130314, 0.0012912931852042675, 0.02122313156723976, 0.025925012305378914, -0.02809879370033741, 0.06042519584298134, -0.006289854645729065, -0.02808312512934208, -0.06010802462697029, 0.05864867940545082, 0.011535226367413998, -0.026169709861278534, -0.002164370147511363, -0.028027836233377457, 0.0013883220963180065, 0.015212993137538433, -0.007624993100762367, -0.017440155148506165, -0.10194245725870132, -0.0795406773686409, -0.3100227117538452, -0.01045232079923153, -0.013142072595655918, -0.00916005577892065, 0.03395137935876846, -0.05548341944813728, 0.05085214227437973, -0.0737382173538208, 0.022468237206339836, -0.04802975058555603, 0.016575630754232407, -0.05283709987998009, 0.04328525811433792, -0.012307317927479744, 0.03690512850880623, 0.0372435636818409, -0.060024749487638474, 1.9188444639439695e-05, 0.04569603502750397, 0.05275319144129753, 0.0018223229562863708, -0.013239162974059582, -0.024444863200187683, -0.0338498018682003, -0.035563983023166656, 0.012673108838498592, 0.15031981468200684, 0.06129495054483414, 0.024752894416451454, -0.025937974452972412, 0.009830649010837078, 0.01370936632156372, -0.059251025319099426, 0.006818936672061682, 0.0270464476197958, 0.02835477516055107, 0.010702780447900295, 0.038806140422821045, 0.027830783277750015, 0.04479049891233444, -0.08690175414085388, 0.09363196045160294, 0.02351987175643444, 0.02979503571987152, -0.0370466411113739, 0.022393329069018364, -0.041976284235715866, 0.03700193017721176, 0.010877843014895916, 0.004856729879975319, 0.01722085289657116, 0.07397458702325821, -0.027141528204083443, -0.016205087304115295, -0.005837318953126669, 0.010568344965577126, -0.010465065948665142, 0.012844584882259369, -0.007652985397726297, 0.04972628876566887, -0.018518973141908646, 0.00037304172292351723, 0.0385335311293602, -0.06337124854326248, -0.04762711003422737, 0.01390371099114418, 0.017634756863117218, 0.00040023733163252473, -0.007654713466763496, -0.00451101828366518, -0.008615942671895027, 0.07000461220741272, 0.032392993569374084, -0.007860742509365082, -0.004540166351944208, 0.03286143019795418, 0.035001691430807114, -0.018506044521927834, -0.08769942820072174, -0.0026402967050671577, 0.0428871288895607, -0.06013145297765732, -0.00014274285058490932, -0.03230281174182892, -0.018303288146853447, -0.008981669321656227, -0.022683346644043922, -0.011337469331920147, 0.0705321729183197, -0.028858238831162453, -0.04364015907049179, 0.0240514874458313, -0.054011356085538864, -0.017808914184570312, 0.0061970120295882225, -0.02255537360906601, -0.2741307318210602, 0.06729725748300552, 0.05399859696626663, 0.03595581650733948, -0.040964532643556595, 0.01444458868354559, -0.017249535769224167, -0.04122285544872284, 0.015958918258547783, -0.02107056975364685, 0.015977736562490463, -0.025828050449490547, -0.008745410479605198, 0.02320231683552265, -0.030367771163582802, 0.05164460092782974, 0.03478626161813736, 0.04902483522891998, -0.08694495260715485, 0.031073186546564102, -0.010917695239186287, 0.07716462016105652, 0.12290365993976593, 0.06278498470783234, -0.027929875999689102, -0.07013312727212906, -0.02425001934170723, 0.008697109296917915, 0.012288316152989864, 0.002962275641039014, 0.012661525048315525, -0.01021703239530325, -0.0007371982210315764, -0.00015208548575174063, 0.011239051818847656, -0.07248048484325409, -0.022041337564587593, 0.0013794883852824569, 0.08267252892255783, -0.021823298186063766, -0.061812251806259155, 0.020579682663083076, 0.004165174905210733, -0.0063394042663276196, 0.020732590928673744, 0.0008559865527786314, 0.04560527205467224, -0.04612287878990173, -0.0670783519744873, 0.05272926762700081, -0.03280065581202507, -0.02750694938004017, 0.06111526116728783, 0.008222086355090141, 0.041663654148578644, 0.008719333447515965, -0.0018160801846534014, -0.021030789241194725, -0.006237199064344168, -0.005366853438317776, -0.02304714173078537, 0.0031066949013620615, 0.06802188605070114, -0.04294751212000847, 0.041378043591976166], "82aa444e-5073-4b50-b902-1396d1d859c6": [-0.08487969636917114, -0.04227697104215622, 0.04565730318427086, 0.03445190563797951, 0.007647419348359108, 0.009043831378221512, 0.04922223463654518, -0.0377570204436779, 0.02902313321828842, -0.0543631874024868, 0.009674523025751114, -0.0019963234663009644, -0.030046608299016953, -0.05182798579335213, 0.010988796129822731, 0.029015233740210533, -0.021732812747359276, -0.026034630835056305, -0.09417111426591873, 0.02729879878461361, 0.029987309128046036, -0.021136324852705002, 0.03140007704496384, 0.01811200939118862, -0.03787066787481308, 0.02903677336871624, -0.002847037510946393, -0.061959393322467804, -0.007229525130242109, -0.15529415011405945, -0.008165809325873852, -0.027429798617959023, -0.005179339554160833, 0.00678273057565093, 0.022211719304323196, 0.0705997422337532, -0.002734011271968484, 0.027950095012784004, 0.02549682930111885, 0.04432784020900726, 0.009070299565792084, 0.014124034903943539, -0.021082555875182152, -0.03366170823574066, 0.068825863301754, -0.026745297014713287, 0.01697523705661297, -0.05879900977015495, 0.004288330674171448, 0.000790596182923764, -0.0669260323047638, -0.012885663658380508, -0.004121396224945784, 0.0067769312299788, -0.01666858233511448, 0.06441371142864227, 0.05071308836340904, 0.00781990122050047, 0.05943942815065384, -0.03568677976727486, 0.07412733882665634, -0.010246029123663902, -0.0781562402844429, 0.08098878711462021, 0.09226332604885101, 0.00848469790071249, -0.05929754674434662, -0.018650058656930923, -0.028443358838558197, 0.04138658568263054, -0.044165562838315964, -0.009024844504892826, 0.01271502673625946, 0.03764750063419342, 0.0201690923422575, 0.013876750133931637, 0.027083629742264748, -0.005294385831803083, 0.012586573138833046, 0.009822618216276169, -0.09158299118280411, -0.004348852671682835, -0.046235326677560806, 0.0128540163859725, -0.029328035190701485, -0.04663771390914917, 0.04742879793047905, -0.01570727862417698, -0.027330823242664337, -0.042245883494615555, 0.011311572976410389, -0.04842928424477577, 0.005635804496705532, 0.022027302533388138, -0.014618529938161373, -0.015145719982683659, -0.027109257876873016, 0.014603879302740097, -0.000586473208386451, 0.41831842064857483, 0.014610020443797112, -0.023617006838321686, 0.011690761893987656, -0.016269056126475334, 0.004128971137106419, 0.009790335781872272, -0.0002716779417824, -0.06577660143375397, -0.008088534697890282, 0.09797753393650055, 0.04438380151987076, 0.030341118574142456, 0.06384989619255066, 0.008698821067810059, 0.07491988688707352, -0.017588671296834946, 0.033974748104810715, -0.026134898886084557, -0.021638646721839905, 0.028792403638362885, 0.03589179366827011, -0.006327842362225056, -0.0065733143128454685, -0.03518876060843468, -0.0033312076702713966, -0.011119105853140354, 0.053805723786354065, 0.07001806795597076, 0.016335945576429367, -0.05458385497331619, 0.028802255168557167, -0.07949098944664001, 0.014934460632503033, 0.05266217887401581, 0.03122279793024063, 0.026101654395461082, 0.03564433380961418, -0.020180733874440193, 0.04112688824534416, -0.028838418424129486, 0.006404805928468704, -0.14162661135196686, -0.033430762588977814, 0.006062569096684456, 0.010239504277706146, 0.06714418530464172, -0.006753132678568363, -0.012414269149303436, 0.025446129962801933, 0.024589741602540016, 0.014421248808503151, 0.021409455686807632, -0.005061616189777851, -0.028079217299818993, 0.05761826038360596, -0.03183798864483833, 0.011220622807741165, 0.13647542893886566, 0.017881067469716072, 0.03619375824928284, 0.04604467377066612, -0.04066096246242523, 0.01361817866563797, -0.03445623815059662, 0.017998646944761276, -0.018219327554106712, -0.05280161648988724, -0.028735043480992317, -0.04784873500466347, -0.00901428610086441, 0.021177487447857857, 0.01800442487001419, -0.1043342873454094, 0.06313733011484146, -0.01598910056054592, -0.00372013240121305, -0.046327706426382065, -0.007734527811408043, -0.008066193200647831, 0.018131006509065628, -0.027662476524710655, -0.0826597586274147, 0.015281854197382927, 0.03477385640144348, -0.031938765197992325, -0.018979888409376144, 0.00018427683971822262, -0.06234516575932503, 0.052198849618434906, -0.020785581320524216, 0.03457242622971535, 0.04673899710178375, -0.002274543046951294, 0.018322477117180824, -0.05928215757012367, -0.06364959478378296, -0.014069393277168274, 0.019971873611211777, -0.035417623817920685, 0.0016768532805144787, -0.025354526937007904, -0.02338714525103569, -0.08258777111768723, 0.016378726810216904, 0.019402826204895973, 0.053244031965732574, 0.012213394045829773, -0.0525355264544487, 0.06423822045326233, 0.017941880971193314, -0.026418356224894524, -0.042838454246520996, 0.022209390997886658, 0.022070350125432014, 0.007251322735100985, -0.0020448944997042418, 0.0019336211262270808, 0.005595095455646515, -0.03618081659078598, -0.007679545320570469, -0.033075008541345596, -0.1040988564491272, -0.0631975457072258, -0.31625741720199585, -0.010377749800682068, -0.016729893162846565, -0.043839965015649796, 0.019541731104254723, -0.0642937496304512, 0.023937633261084557, -0.04951246455311775, 0.04040608927607536, -0.04651349410414696, -0.008028821088373661, -0.05719533562660217, 0.05143634229898453, -0.01280160341411829, -0.014527881518006325, 0.07507254928350449, -0.0531257800757885, 0.015131483785808086, 0.04352918267250061, 0.07628078758716583, 0.019877007231116295, 0.04527783766388893, -0.03146188706159592, -0.0051034847274422646, -0.02663331851363182, 0.021596381440758705, 0.14712265133857727, 0.0675886869430542, 0.051230888813734055, 0.005138633772730827, 0.003373011713847518, 0.0662652850151062, -0.0546744167804718, -0.023669753223657608, 0.015180147252976894, 0.05645144358277321, 0.011045762337744236, 0.035571061074733734, 0.007092053070664406, 0.023449372500181198, -0.07437379658222198, 0.07236478477716446, 0.002453753026202321, -0.014135539531707764, -0.03364170342683792, 0.014250707812607288, -0.022542007267475128, -0.016403375193476677, 0.02270347997546196, 0.036839816719293594, 0.03786400333046913, 0.03757726401090622, -0.03393208980560303, -0.007546260952949524, 0.007081316318362951, 0.003418820211663842, -0.00484433863312006, 0.024575529620051384, -0.020299067720770836, 0.026810482144355774, 0.01679988205432892, -0.013556486926972866, 0.025642413645982742, -0.0448707640171051, -0.021178850904107094, 0.02409476414322853, -0.02620181255042553, -0.0004916711477562785, -0.010409696027636528, -0.016946127638220787, -0.04036295413970947, 0.03176421299576759, 0.009605812840163708, -0.06800609827041626, 0.010777337476611137, 0.03966371342539787, 0.03357992321252823, 0.03596627339720726, -0.0649033710360527, -0.03580940142273903, 0.016116833314299583, -0.02877344936132431, -0.012113532982766628, 0.005166028626263142, -0.04963946342468262, -0.02573305182158947, -0.01328690443187952, 0.014920459128916264, 0.07236729562282562, -0.03152969107031822, -0.01856369897723198, 0.043468836694955826, -0.01278171967715025, -0.012456147000193596, 0.03817630931735039, 0.005258659366518259, -0.2869984805583954, 0.027897818014025688, 0.062055379152297974, 0.07205730676651001, -0.017253177240490913, 0.02192416414618492, -0.03125099465250969, -0.027384545654058456, -0.008917886763811111, -0.01575680449604988, 0.034884560853242874, -0.010045556351542473, -0.023347334936261177, -0.00999860092997551, -0.06422971189022064, 0.025381945073604584, 0.07901447266340256, 0.03144057095050812, -0.06400464475154877, 0.04261968284845352, -0.0059092664159834385, 0.05422224849462509, 0.14520926773548126, 0.06352999061346054, -0.04229250177741051, -0.07049968093633652, -0.007670220918953419, 0.01554013043642044, -0.005215109791606665, 0.04218925163149834, -0.01050918735563755, -0.0005830301670357585, 0.022946195676922798, 0.0021640174090862274, -0.017387863248586655, -0.08777610212564468, -0.01969939097762108, 0.012373853474855423, 0.08735960721969604, -0.018913574516773224, -0.049991268664598465, 0.022569917142391205, 0.025689315050840378, -0.015905868262052536, 0.04402913525700569, 0.012768145650625229, 0.01565888710319996, -0.024215158075094223, -0.07155768573284149, 0.03464715927839279, -0.056458041071891785, -0.030558018013834953, 0.018019596114754677, -0.0066125402227044106, 0.03576938807964325, 0.02337460219860077, -0.005882910452783108, -0.009057275019586086, 0.02814607135951519, -2.1417959942482412e-05, -0.0375693179666996, -0.003783510299399495, 0.09186248481273651, 0.005891424138098955, 0.03874931484460831], "c21a250f-de9f-4e2d-b2e9-f026feac7b72": [-0.08996769040822983, -0.028627291321754456, 0.07523009181022644, 0.04853609576821327, -0.02740081213414669, 0.015437765046954155, 0.025502018630504608, -0.018009157851338387, -0.023874593898653984, -0.02816860005259514, -0.019855506718158722, 0.02831641398370266, -0.04752674698829651, -0.04199448600411415, -0.01576293632388115, 0.04719536751508713, -0.023769652470946312, 0.004304812755435705, -0.13386960327625275, 0.047699060291051865, 0.02708468958735466, -0.00860931072384119, 0.012594226747751236, 0.019929468631744385, -0.05894209071993828, 0.020237306132912636, 0.022584587335586548, -0.05450042337179184, -0.027346979826688766, -0.13905563950538635, -0.03770378232002258, -0.03200601413846016, -0.02078159712255001, -0.021085597574710846, 0.03428618609905243, 0.06834734976291656, 0.02227538265287876, 0.0074411374516785145, -0.01529370155185461, 0.028672831133008003, 0.013330664485692978, 0.0016037870664149523, -0.009573116898536682, -0.07508499175310135, 0.059728145599365234, -0.014996778219938278, 0.02631896547973156, -0.03693443164229393, -0.008311931043863297, 0.014254222624003887, -0.034142352640628815, -0.016922708600759506, -0.04351254180073738, 0.009415614418685436, 0.0008292925776913762, 0.038158122450113297, 0.058136846870183945, 0.017056521028280258, 0.0653613805770874, -0.008887381292879581, 0.037625111639499664, 0.02067452482879162, -0.11230539530515671, 0.09716316312551498, 0.047928694635629654, 0.007782453205436468, -0.07181356102228165, -0.019774816930294037, 0.00983316358178854, 0.0711195319890976, -0.04117761552333832, 0.005473817698657513, 0.008143843151628971, 0.01713278703391552, 0.0018165683140978217, 0.011934978887438774, 0.02654246799647808, -0.004575367085635662, 0.036398813128471375, 0.016095200553536415, -0.061606522649526596, 0.01338093914091587, -0.06877022981643677, 0.005197910126298666, -0.03236325830221176, -0.04406803846359253, 0.052359726279973984, -0.028450671583414078, -0.020312875509262085, -0.041448384523391724, 0.014733041636645794, -0.01521318405866623, -0.0245207529515028, 0.025156032294034958, -0.035845767706632614, -0.03922126442193985, 0.01997181586921215, -0.002984090941026807, 0.03880038857460022, 0.3745307922363281, 0.026129499077796936, -0.0077896928414702415, 0.017515825107693672, 0.014192010276019573, -0.013908886350691319, 0.01928316056728363, 0.024386489763855934, -0.05287708714604378, 0.02050318382680416, 0.06115495786070824, 0.01610741950571537, -0.0011324991937726736, 0.06640293449163437, 0.009289227426052094, 0.04316111281514168, -0.007359486073255539, 0.07126025855541229, -0.022961782291531563, -0.026072926819324493, 0.015373438596725464, 0.06884807348251343, 0.0041101668030023575, -0.01704033464193344, -0.04867386445403099, 0.015368849039077759, -0.04881960526108742, 0.08940111100673676, 0.062156468629837036, 0.019210821017622948, -0.03725872188806534, 0.030232444405555725, -0.03714883327484131, 0.021886540576815605, 0.02256428450345993, 0.0021591992117464542, 0.029951853677630424, 0.026257751509547234, 0.02819337323307991, 0.05347009375691414, -0.02874794229865074, -0.0034112194553017616, -0.11250538378953934, -0.04571281373500824, -0.010037023574113846, 0.005696834065020084, 0.005134723149240017, 0.005150462966412306, -0.009547033347189426, 0.02219528704881668, 0.024697741493582726, 0.02275712415575981, -0.019440852105617523, -0.020668072625994682, -0.03185652196407318, 0.0556974783539772, -0.03158935531973839, -0.0064027574844658375, 0.1449795812368393, 0.01807713508605957, -0.006600499618798494, 0.04405015707015991, -0.0715879276394844, 0.023891296237707138, -0.07607193291187286, 0.032510921359062195, -0.01015758328139782, -0.0721287801861763, -0.022419927641749382, -0.031481146812438965, -0.03535708785057068, -0.003929227124899626, 0.017121944576501846, -0.13727782666683197, 0.02223443239927292, -0.03535828739404678, -0.030436217784881592, -0.02799917943775654, 0.009250613860785961, -0.023789262399077415, 0.04030830040574074, -0.0441063791513443, -0.05768134817481041, 0.021819081157445908, 0.037147484719753265, -0.04371368885040283, -0.042937323451042175, 0.018039662390947342, -0.03472510725259781, 0.04100111871957779, -0.008722848258912563, 0.014649130403995514, 0.03561723977327347, -0.023346783593297005, 0.0189400352537632, -0.047716766595840454, -0.00812599528580904, 0.0024722532834857702, -0.001968867378309369, -0.0025027336087077856, -0.004820170346647501, -0.03083195351064205, -0.05542295053601265, -0.057640038430690765, 0.037639640271663666, 0.03461798280477524, 0.057740941643714905, 0.03974360600113869, -0.03802986443042755, 0.07277090847492218, -0.008966878987848759, -0.03918812423944473, -0.05775000900030136, 0.013849557377398014, 0.006775012239813805, 0.034835755825042725, 0.03688709810376167, -0.015615500509738922, 0.016737835481762886, -0.04765797778964043, 0.044361162930727005, 0.004716033115983009, -0.11579189449548721, -0.03533735126256943, -0.3001217842102051, -0.01408793218433857, 0.01668061688542366, -0.06444453448057175, 0.04944571480154991, -0.08396215736865997, -0.00401095999404788, -0.05918632820248604, 0.003321853233501315, -0.009769025258719921, 0.02579672448337078, -0.08688423782587051, 0.05098577216267586, -0.0038520439993590117, -0.01824444904923439, 0.05755087360739708, -0.04785137251019478, 0.010091032832860947, 0.026850614696741104, 0.08292096853256226, 0.019306212663650513, 0.011280861683189869, 0.031182123348116875, -0.08415834605693817, -0.029214804992079735, 0.02607101760804653, 0.1361495554447174, 0.06609875708818436, 0.08173885941505432, -0.023591874167323112, 0.037098851054906845, 0.032042041420936584, -0.07265287637710571, 0.013373772613704205, 0.04595436900854111, 0.037005115300416946, 0.019861144945025444, 0.001736819394864142, 0.0321674644947052, -0.018857736140489578, -0.08285921066999435, 0.10670870542526245, 0.027759309858083725, 0.01066581066697836, -0.033250585198402405, 0.03635513409972191, -0.059317052364349365, 0.003908475395292044, -0.015507309697568417, -0.006631998810917139, 0.05851501226425171, 0.05855477973818779, -0.06044004112482071, -0.007715940475463867, 0.021498722955584526, -0.008068971335887909, -0.0502375103533268, 0.023785952478647232, -0.025213636457920074, 0.028872229158878326, 0.005518775898963213, 0.016272950917482376, 0.03823345527052879, -0.04548996314406395, -0.010709010064601898, 0.0027329069562256336, -0.009200526401400566, 0.014505071565508842, -0.0005320680211298168, 0.02457517385482788, -0.026568742468953133, 0.02475004643201828, 0.011809359304606915, -0.004343080800026655, 0.01747925393283367, 0.03864564001560211, -0.004802369046956301, 0.024689849466085434, -0.08504192531108856, 0.039304956793785095, 0.027841567993164062, -0.07304377853870392, -0.03945084288716316, -0.01891421340405941, -0.04718242958188057, -0.007273838855326176, 0.002899476094171405, -0.0005792382871732116, 0.07716581970453262, -0.0038968336302787066, -0.04924893379211426, 0.026008447632193565, -0.003718276508152485, 0.011116087436676025, 0.008715075440704823, -0.02420402131974697, -0.27100634574890137, 0.024926193058490753, 0.03542530536651611, 0.06638513505458832, -0.00684054521843791, 0.022833749651908875, -0.027350926771759987, -0.004286893643438816, -0.013878760859370232, 0.0023756998125463724, 0.057977933436632156, -0.005279320292174816, -0.010290460661053658, 0.012051495723426342, -0.04287106543779373, 0.010368761606514454, 0.06709706783294678, 0.045193832367658615, -0.07393886893987656, 0.03319230303168297, -0.009693888016045094, 0.04165946692228317, 0.13451096415519714, 0.04966750741004944, -0.016517044976353645, -0.0896669551730156, -0.03716284781694412, 0.055352382361888885, 0.02132946439087391, 0.052190352231264114, -0.031103504821658134, -0.03991692140698433, 0.06309927999973297, 0.016530795022845268, 0.04489380493760109, -0.03724830970168114, -0.014769816771149635, 0.051207948476076126, 0.04986095055937767, -0.04642442986369133, -0.09166204929351807, 0.04599259793758392, 0.0320996455848217, 0.002004093024879694, 0.01590675301849842, 0.02558654174208641, -0.007923034951090813, -0.014099746942520142, -0.08539445698261261, 0.07910562306642532, -0.03850313648581505, -0.00805933028459549, -0.0031393233221024275, 0.004289991222321987, -0.0074146282859146595, 0.05666707083582878, -0.013528084382414818, -0.006049961782991886, -0.007220551837235689, -0.03726841136813164, -0.026573872193694115, 0.010233651846647263, 0.10894276201725006, -0.007125458214432001, 0.022600317373871803], "ca94437a-258d-4e48-b8c8-0aa25499e748": [-0.07757200300693512, -0.03679240122437477, 0.054302845150232315, 0.07622510939836502, 0.0006816958193667233, 0.00767179299145937, 0.02156662940979004, -0.009170698933303356, -0.02032545395195484, -0.004194400738924742, 0.007942857220768929, -0.015437639318406582, -0.0043946425430476665, -0.04506489261984825, -0.01788899302482605, 0.04975223168730736, -0.056674420833587646, -0.02103978767991066, -0.14598459005355835, 0.04082295671105385, -0.02496689185500145, -0.03329988941550255, 0.032226111739873886, 0.025126894935965538, -0.030036436393857002, 0.021327834576368332, -0.002769310725852847, 0.002696950687095523, -0.002431804547086358, -0.1039610207080841, 8.005763811524957e-05, 0.004852876532822847, 0.01533457636833191, -0.02768760919570923, 0.010236324742436409, 0.11379053443670273, 0.03364669159054756, -0.013195917941629887, 0.016451949253678322, 0.03620630502700806, 0.033434946089982986, -0.012809175066649914, -0.01883717253804207, -0.015828697010874748, 0.024755334481596947, -0.03321610018610954, 0.017155203968286514, -0.022950155660510063, 0.003472342621535063, -0.019351216033101082, -0.02822926454246044, -0.03188943490386009, -0.024400118738412857, -0.023954810574650764, 0.015554077923297882, 0.05229083448648453, 0.023405659943819046, 0.006481803022325039, 0.048562679439783096, 0.018354564905166626, 0.011157780885696411, 0.038149163126945496, -0.0626106932759285, 0.0520738922059536, 0.08625368028879166, 0.01581059955060482, -0.05472562834620476, -0.05090789869427681, 0.020945686846971512, 0.0716809555888176, -0.021419299766421318, 0.032489825040102005, 0.01773221231997013, 0.02432055026292801, -0.0033051930367946625, 0.05365678295493126, 0.02934936434030533, 0.04452360048890114, 0.016763409599661827, 0.0275393296033144, -0.10924511402845383, 0.007903508841991425, -0.06275837868452072, 0.04132727533578873, -0.058962248265743256, -0.024851838126778603, -0.0027662343345582485, -0.005351275205612183, 0.02989022806286812, -0.031665876507759094, 0.03758266195654869, -0.013673465698957443, -0.035053182393312454, -0.020296188071370125, -0.016382744535803795, -0.01578022539615631, -0.036241378635168076, 0.005359436850994825, 0.02312004379928112, 0.3911017179489136, 0.018692053854465485, -0.023867789655923843, 0.016875945031642914, -0.009648693725466728, -0.0011304047657176852, -0.008081790059804916, -0.006332413759082556, -0.05697914585471153, 0.05413250997662544, 0.07610456645488739, 0.03811638429760933, -0.025446422398090363, 0.03231469914317131, 0.023800568655133247, 0.051171060651540756, 0.0229299645870924, 0.07192445546388626, -0.03253374248743057, -0.022967180237174034, -0.010657921433448792, 0.03826455771923065, 0.014426331967115402, 0.007621629163622856, -0.07782234251499176, -0.007601740770041943, 0.010386508889496326, 0.0554824136197567, 0.05790216848254204, -0.026702381670475006, -0.033768922090530396, 0.008705218322575092, -0.09132863581180573, 0.05798327922821045, 0.011309873312711716, -0.007449709344655275, 0.0074538784101605415, 0.05890612304210663, -0.012715568765997887, 0.04507908970117569, -0.06785707920789719, -0.01243351399898529, -0.10653895884752274, -0.017849650233983994, -0.0313914492726326, 0.005877165589481592, 0.015653375536203384, 0.0541222020983696, 0.004699963144958019, 0.026624420657753944, 0.015841057524085045, 0.010269912891089916, 0.003133514430373907, -0.041608333587646484, -0.0188909862190485, 0.03680041804909706, -0.023381175473332405, -0.03272256255149841, 0.11321849375963211, 0.028341565281152725, 0.00953051820397377, 0.057138264179229736, -0.03695903345942497, 9.524605411570519e-05, -0.048347923904657364, 0.03540044650435448, 0.000322677253279835, -0.026492353528738022, -0.026632139459252357, -0.014597629196941853, -0.008573086932301521, 0.016604576259851456, 0.019186900928616524, -0.11859478801488876, 0.055152587592601776, -0.04485515505075455, -0.029434887692332268, -0.045873887836933136, -0.005643857177346945, -0.011730312369763851, 0.051887672394514084, -0.04235412925481796, -0.051295384764671326, 0.03305497765541077, 0.062271252274513245, -0.0539979450404644, -0.0444389209151268, -0.021243613213300705, -0.019312983378767967, 0.004364457447081804, -0.04968941956758499, 0.004831796512007713, 0.04008116200566292, -0.03408248350024223, -0.017452342435717583, -0.03963042423129082, -0.0061101410537958145, -0.020903650671243668, 0.0030733526218682528, -0.03328026831150055, 0.02942791022360325, -0.03941229358315468, -0.05881676450371742, -0.05457685887813568, 0.017993520945310593, -0.009629079140722752, -0.026538047939538956, 0.05368153005838394, -0.028201600536704063, 0.09272468090057373, 0.011569345369935036, 0.020124586299061775, -0.042110640555620193, -0.011854915879666805, -0.014479800127446651, -0.02474157325923443, 0.008126848377287388, -0.01898231729865074, 0.028139038011431694, -0.017543377354741096, 0.004285781644284725, 0.023676028475165367, -0.11615186184644699, -0.06278853863477707, -0.3270350992679596, -0.012136169709265232, 0.005537755787372589, -0.053796637803316116, 0.04666202515363693, -0.0572919063270092, 0.01574126072227955, -0.07014667987823486, -0.019209491088986397, -0.08024440705776215, 0.05411369353532791, -0.06924620270729065, 0.04500826448202133, 0.06398279964923859, -0.0215156227350235, 0.010335086844861507, -0.043478306382894516, 0.013064553961157799, 0.014806571416556835, 0.027763936668634415, 0.022064851596951485, 0.015261941589415073, 0.007726547308266163, -0.07537677139043808, -0.04533974453806877, 0.031767502427101135, 0.17162297666072845, 0.06570645421743393, 0.08497009426355362, -0.01564345881342888, 0.009485529735684395, -0.008698811754584312, -0.009299280121922493, -0.0031950748525559902, 0.027246616780757904, 0.056970495730638504, 0.02986472100019455, -0.0021569663658738136, 0.02112860418856144, -0.01640157401561737, -0.058963045477867126, 0.09143435209989548, -0.0047045014798641205, -0.0402386374771595, -0.03789595887064934, 0.0373213067650795, -0.04530999809503555, 0.02349822409451008, 0.03691846877336502, 0.009486645460128784, 0.022880403324961662, 0.08308841288089752, -0.055602528154850006, -0.01755526289343834, -0.002172708511352539, 0.015207448974251747, -0.05548474192619324, -0.002366782398894429, -0.020412413403391838, 0.07586853206157684, -0.011851286515593529, -0.00690383929759264, 0.04582252353429794, -0.06018632650375366, -0.021988695487380028, 0.010846019722521305, -0.012050587683916092, -0.01523851789534092, -0.017003698274493217, 0.00936558935791254, -0.03023306466639042, 0.052324216812849045, 0.005787812639027834, -0.025896558538079262, 0.027818506583571434, 0.002545763272792101, 0.008032345212996006, 0.028370622545480728, -0.06479838490486145, 0.02086629532277584, 0.0390019416809082, -0.08884244412183762, -0.000761070114094764, -0.015347934328019619, -0.010775377973914146, 0.006809699814766645, -0.023505710065364838, -0.049760207533836365, 0.07380151003599167, -0.02442311868071556, -0.012237180024385452, 0.03449367359280586, -0.060189347714185715, 0.017648203298449516, 0.04291068762540817, -0.005988845601677895, -0.2924254834651947, 0.03603315353393555, 0.004914599005132914, 0.036942899227142334, 0.0016563270473852754, 0.06539857387542725, 0.008470595814287663, 0.0484602116048336, 0.039269138127565384, -0.010429431684315205, 0.04331221804022789, -0.011733032763004303, 0.013533663004636765, 0.01724000833928585, -0.024554047733545303, 0.009654701687395573, 0.03642791509628296, 0.04895893484354019, -0.07532130926847458, 0.035619862377643585, 0.024378761649131775, 0.035462941974401474, 0.15225651860237122, 0.05267404392361641, -0.03540249168872833, -0.04058024287223816, -0.042661797255277634, 0.021252205595374107, 0.01204512920230627, 0.014531303197145462, 0.010459373705089092, 0.03280765935778618, -0.002371835056692362, -0.008879152126610279, -0.002669867128133774, -0.041276127099990845, -0.016521744430065155, 0.041386500000953674, 0.05250048264861107, -0.010797882452607155, -0.04724671691656113, 0.02619612030684948, 0.05187785625457764, 0.01694229058921337, 0.04806797206401825, -0.007190799806267023, 0.02601182833313942, -0.03599591180682182, -0.07722552865743637, 0.06313558667898178, -0.03465600311756134, -0.02154162898659706, 0.013462217524647713, -0.000798776454757899, 0.06901422888040543, 0.012097100727260113, 0.007610410451889038, 0.018799804151058197, -0.006439859047532082, -0.04950576275587082, -0.016045784577727318, -0.054417021572589874, 0.09222127497196198, -0.02520962804555893, 0.003605426987633109], "b086b9a1-6dc8-4a5a-a632-e779ebb3cf28": [-0.08697763830423355, -0.024592531844973564, 0.06289166957139969, 0.07035823911428452, -0.006175806745886803, 0.037027619779109955, 0.026701131835579872, 0.005326798185706139, -0.004812533967196941, 0.008565164171159267, -0.004517639521509409, -0.048854488879442215, -0.03393885865807533, -0.028224820271134377, -0.039283785969018936, 0.02063298411667347, 0.002939113648608327, -0.021974796429276466, -0.11078476905822754, 0.04842156916856766, 0.009413261897861958, -0.022756638005375862, 0.017541248351335526, 0.0010642767883837223, -0.022267034277319908, 0.017092447727918625, -0.012923125177621841, -0.060544587671756744, -0.013167775236070156, -0.12291514128446579, 0.026076896116137505, 0.021044651046395302, 0.016887351870536804, 0.003230269765481353, -0.00801377184689045, 0.0994885191321373, 0.04237401857972145, 0.025566641241312027, -0.008236818946897984, 0.05573996528983116, 0.04150959104299545, 0.007150872610509396, -0.05446109175682068, -0.0328642874956131, 0.049867793917655945, -0.05114812031388283, -0.02840079553425312, -0.03682822361588478, 0.029971951618790627, -0.038299717009067535, -0.057467032223939896, -0.01603022776544094, 0.015772640705108643, -0.0010283332085236907, -0.025897078216075897, 0.029154427349567413, 0.09694107621908188, 0.013651518151164055, 0.0434003621339798, 0.00385872065089643, 0.034210722893476486, 0.07120746374130249, -0.06178842857480049, 0.05871998518705368, 0.06509381532669067, -0.013965604826807976, -0.09111317992210388, -0.00763648422434926, -0.002731765853241086, 0.07926390320062637, -0.017661307007074356, 0.008134208619594574, 0.024026742205023766, 0.020883722230792046, 0.051479220390319824, 0.012193799018859863, 0.04595659673213959, 0.01912817358970642, 0.03642502427101135, 0.0355079211294651, -0.08479522168636322, 0.0029584174044430256, -0.06361085921525955, -0.0004529358702711761, -0.026304202154278755, -0.07762272655963898, -0.0002395043266005814, -0.05636121332645416, 0.017035700380802155, 0.029306933283805847, 0.04448426514863968, -0.059755753725767136, -0.026513971388339996, -0.02967943251132965, -0.021703895181417465, -0.002120872028172016, -0.019282592460513115, -0.004011956043541431, -0.027393508702516556, 0.36998581886291504, 0.016283158212900162, 0.015407088212668896, 0.04181617125868797, 0.00420931912958622, 0.008335381746292114, 0.03501966968178749, 0.010483886115252972, -0.02432892471551895, -0.021398741751909256, 0.07151486724615097, -0.006042213179171085, -0.022106662392616272, 0.015839161351323128, 0.0014211841626092792, 0.05582107603549957, -0.021453307941555977, 0.05636849254369736, -0.030910400673747063, 0.020349055528640747, 0.03631041944026947, 0.04161360114812851, 0.02254900336265564, -0.017181366682052612, -0.0673794224858284, 0.025178981944918633, -0.043132685124874115, 0.026614541187882423, 0.10461798310279846, -0.026843121275305748, -0.09012780338525772, 0.016522694379091263, -0.0590444914996624, 0.0031472560949623585, 0.0039515309035778046, 0.045337773859500885, -0.009970875456929207, 0.02808328904211521, -0.012426906265318394, 0.07209008187055588, -0.005893498193472624, -0.03228860720992088, -0.13077765703201294, -0.010792461223900318, -0.03846454247832298, 0.0016931543359532952, 0.04103739932179451, 0.08120700716972351, -0.015948588028550148, 0.024821829050779343, 0.04812532663345337, 0.014605837874114513, -0.033512044697999954, -0.016703801229596138, -0.022351643070578575, 0.04491716995835304, -0.03390815854072571, -0.003498051781207323, 0.10754550248384476, 0.015667781233787537, -0.0025229593738913536, 0.04212789237499237, -0.01752392016351223, 0.025232162326574326, -0.026398181915283203, 0.023268530145287514, -0.014900489710271358, -0.09917943179607391, -0.054322462528944016, 0.0016901930794119835, -0.03162794187664986, 0.027046652510762215, 0.0050943694077432156, -0.08624325692653656, 0.017112214118242264, -0.09026964753866196, -0.024777648970484734, -0.02059214375913143, 0.015421446412801743, 0.0013200076064094901, 0.0066071259789168835, 0.0028838214930146933, -0.05745672434568405, 0.015331355854868889, 0.050137341022491455, -0.06316474825143814, -0.015213936567306519, 0.03615622594952583, -0.02255525439977646, -0.001278882846236229, -0.022549737244844437, 0.0217735655605793, 0.014546673744916916, -0.06050318107008934, -0.023061426356434822, -0.07080557197332382, -0.03710249811410904, -0.06975015997886658, 0.0018325188430026174, -0.00222257268615067, -0.013900723308324814, -0.03465821593999863, -0.08904744684696198, -0.030387183651328087, 0.0035060790833085775, 0.05023724585771561, 0.00865459255874157, 0.04465102031826973, -0.02561648190021515, 0.08665195852518082, 0.041982501745224, -0.0032024614047259092, -0.003530791960656643, -0.015347309410572052, 0.02181006222963333, -0.015474052168428898, 0.037826161831617355, -0.0510261245071888, 0.03535528853535652, -0.04321092367172241, 0.016264071688055992, 0.006540247704833746, -0.09906203299760818, -0.04499663785099983, -0.30393871665000916, -0.02391638420522213, -0.036334626376628876, -0.04349731281399727, 0.041153647005558014, -0.0787799060344696, 0.03541165590286255, -0.05644265562295914, 0.03484303131699562, -0.04602586477994919, 0.008627433329820633, -0.04441032558679581, 0.018810948356986046, 0.016287893056869507, -0.014569968916475773, 0.04028597101569176, -0.052449919283390045, -0.01128299068659544, 0.06074067950248718, 0.07767965644598007, -0.005468384828418493, -0.004738436080515385, 0.020009024068713188, -0.0007230761693790555, -0.018587926402688026, -0.006120250094681978, 0.15661685168743134, 0.06543364375829697, 0.04457074776291847, -0.020340239629149437, 0.005287710577249527, 0.02586294338107109, -0.024085044860839844, -0.02892223931849003, 0.020621877163648605, 0.04231259226799011, 0.03588714078068733, 0.014304166659712791, 0.03428307920694351, 0.004677347373217344, -0.09495501965284348, 0.1082199364900589, -0.01958703063428402, -0.024782922118902206, -0.024638008326292038, 0.039711203426122665, 0.0005405556294135749, -0.002118442440405488, -0.027205798774957657, 0.054026052355766296, 0.004843008238822222, 0.06710774451494217, -0.0627870261669159, -0.04054614156484604, -0.008374586701393127, 0.01728445664048195, -0.0406302772462368, -0.0094063775613904, -0.011466188356280327, 0.044243600219488144, -0.014053409919142723, -0.05203673988580704, 0.043720077723264694, -0.0948868915438652, -0.03536912426352501, 0.009321548976004124, -0.021520430222153664, -0.025772176682949066, -0.015482683666050434, 0.012003429234027863, -0.02135614864528179, 0.07401004433631897, 0.015549699775874615, -0.025617696344852448, 0.023318927735090256, -0.016088275238871574, 0.0375230610370636, -0.0029153551440685987, -0.06470164656639099, -0.018289124593138695, 0.057809095829725266, -0.029289476573467255, 0.014029145240783691, -0.028957508504390717, -0.024683557450771332, -0.026831669732928276, 0.014255831949412823, -0.014565846882760525, 0.0947318971157074, -0.005482513457536697, -0.035208843648433685, 0.021675093099474907, -0.05420908331871033, -0.031703002750873566, 0.0314699150621891, 0.02226933091878891, -0.26009002327919006, 0.04361022263765335, 0.029447035863995552, 0.10560528188943863, -0.014784682542085648, 0.06688622385263443, -0.010042443871498108, -0.04831722006201744, 0.02647843025624752, -0.006665548775345087, 0.0250242929905653, -0.0054586962796747684, 0.031049029901623726, 0.01717628724873066, -0.0351475365459919, 0.01101959403604269, -0.014170845970511436, 0.07864174246788025, -0.049699634313583374, -0.011588506400585175, 0.0394795686006546, 0.031003162264823914, 0.13056695461273193, 0.02864711545407772, -0.07832769304513931, -0.04601297900080681, -0.04871390387415886, 0.04775462672114372, 0.0052933660335838795, -0.0012433590600267053, 0.00799640268087387, 0.034055281430482864, -0.0312654934823513, 0.009461067616939545, -0.007423562463372946, -0.03012394718825817, -0.0052283750846982, 0.026710407808423042, 0.11172173917293549, 0.00940218660980463, 0.008956730365753174, 0.03165522217750549, 0.04030459374189377, 0.0019313092343509197, 0.03275415301322937, 0.009287687949836254, 0.047296542674303055, -0.016009654849767685, -0.06751071661710739, 0.06603299081325531, -0.02638506330549717, -0.03991888463497162, 0.0403568260371685, -0.0020584496669471264, 0.0548526905477047, 0.041556429117918015, -0.008589775301516056, 0.003911914303898811, -0.03186449036002159, -0.04124104231595993, -0.017954694107174873, -0.08287816494703293, 0.08097505569458008, 0.036962106823921204, 0.048989977687597275], "864dd49d-de1d-41da-8e10-5b39b130d97b": [-0.05454928055405617, -0.03422700613737106, 0.022523516789078712, 0.03871726617217064, 0.016686908900737762, 3.4952154237544164e-05, 0.05163007974624634, -0.009412477724254131, -0.04236800968647003, -0.029558280482888222, 0.028613418340682983, -0.030392220243811607, -0.00490004476159811, -0.03398730605840683, 0.007139245979487896, 0.07237710803747177, -0.0005472577759064734, -0.04839755967259407, -0.13212363421916962, 0.042765747755765915, 0.04401734843850136, -0.017407068982720375, -0.0021949775982648134, 0.020787319168448448, -0.008702240884304047, 0.0362245999276638, -0.021693965420126915, -0.04139500483870506, 0.025665398687124252, -0.1517174243927002, 0.0230554211884737, 0.01822500303387642, -0.0038676224648952484, -0.024286901578307152, -0.012768913991749287, 0.094732366502285, 0.031672026962041855, -0.03369862586259842, 0.02475241757929325, 0.032392509281635284, 0.04703770577907562, 0.0026298537850379944, -0.032940514385700226, -0.02501237578690052, 0.020699486136436462, -0.016273008659482002, 0.013841104693710804, -0.014146148227155209, 0.004994626622647047, -0.04646173492074013, -0.05482167750597, -0.022752754390239716, -0.009798864834010601, -0.0012769607128575444, -0.039716340601444244, 0.03178019821643829, 0.07044530659914017, 0.007755215745419264, 0.043699491769075394, 0.02840101160109043, 0.027860289439558983, 0.018133262172341347, -0.06363599747419357, 0.06652499735355377, 0.07076387852430344, 0.004734532907605171, -0.10733702778816223, -0.018068378791213036, 0.022579127922654152, 0.07187237590551376, -0.012369072064757347, -0.007192426826804876, -0.012808157131075859, 0.03859779238700867, 0.02862393483519554, 0.01827622950077057, 0.028419125825166702, -0.02035873383283615, 0.04332695156335831, 0.01919480785727501, -0.049304477870464325, 0.017483241856098175, -0.05084554851055145, 0.0029833733569830656, -0.005518915597349405, -0.06651270389556885, -0.006281301379203796, 0.00902519840747118, -0.0022820152807980776, 0.016614576801657677, 0.027521824464201927, -0.06012686714529991, -0.0001430479605915025, -0.03163710609078407, -0.02184218168258667, -0.006508823949843645, -0.034772809594869614, -0.01606385037302971, 0.014361200854182243, 0.4138917028903961, 0.016750456765294075, 0.0020277996081858873, 0.04224112629890442, 0.035520825535058975, -0.016414428129792213, 0.003718153340741992, 0.018731137737631798, -0.05068536475300789, 0.0638728216290474, 0.06787082552909851, 0.0007129893638193607, -0.01526606921106577, 0.035725437104701996, 0.0033098109997808933, 0.009109358303248882, 0.017365790903568268, 0.07060248404741287, -0.03606386110186577, -0.011923650279641151, -0.008225200697779655, 0.05464059114456177, 0.052527230232954025, 0.02462812513113022, -0.031142158433794975, 0.039556004106998444, -0.03187175095081329, 0.0431007444858551, 0.05919463932514191, -0.018309716135263443, -0.024397321045398712, 0.06527519971132278, -0.055980339646339417, 0.030181758105754852, -0.02137947827577591, 0.00916746724396944, 0.005390758626163006, 0.03738345950841904, -0.019340604543685913, 0.05430426821112633, -0.019860586151480675, -0.040430985391139984, -0.12073720991611481, 0.012242610566318035, -0.02160286344587803, -0.02267763949930668, 0.08439061045646667, 0.054335758090019226, 0.0009887133492156863, 0.015180363319814205, 0.026933567598462105, -0.02680923603475094, -0.019538328051567078, -4.932679803459905e-05, -0.010320502333343029, 0.06394104659557343, -0.0193294920027256, 0.0010114667238667607, 0.07594310492277145, 0.013624976389110088, 0.028372569009661674, 0.051674794405698776, 0.02382308430969715, 0.00741305947303772, -0.0017165991012006998, 0.06126999482512474, -0.014453751966357231, -0.09344573318958282, -0.06524869054555893, -0.03248872980475426, -0.014255324378609657, 0.03952522948384285, 0.04819796606898308, -0.0682516098022461, 0.06167418509721756, -0.00621915003284812, -0.05016870051622391, -0.020987698808312416, 0.014690983109176159, 0.00808747485280037, 0.01982373557984829, -0.010546567849814892, -0.062104202806949615, -0.00711927842348814, 0.07175115495920181, -0.05288095772266388, -0.09044937789440155, 0.008743195794522762, -0.024327993392944336, -0.007695838809013367, -0.021591702476143837, -0.0041655441746115685, 0.0047699990682303905, -0.029780637472867966, 0.0291852168738842, -0.04719926789402962, -0.015670493245124817, -0.004243724048137665, -0.025211220607161522, -0.04220358654856682, -0.02089782804250717, -0.02586650475859642, -0.038110874593257904, -0.055857572704553604, 0.046043869107961655, -0.0012027807533740997, 0.03605992719531059, 0.057807616889476776, -0.013481777161359787, 0.13214774429798126, 0.006845257245004177, -0.019043225795030594, -0.035478897392749786, -0.03495914861559868, 0.07263132184743881, -0.009274233132600784, 0.01266875397413969, -0.006826151628047228, -0.020799553021788597, -0.05343035236001015, -0.024773234501481056, 0.01243317499756813, -0.09499215334653854, -0.0553613156080246, -0.3214106857776642, 0.007846741005778313, -0.010691235773265362, -0.023851852864027023, 0.01232986431568861, -0.0656932145357132, 0.02197619155049324, -0.029272593557834625, 0.0323428250849247, -0.04425063356757164, -0.016839370131492615, -0.040244005620479584, 0.03568912297487259, 0.014124859124422073, -0.0051230196841061115, 0.014963406138122082, -0.019979272037744522, -0.0018043420277535915, 0.027851631864905357, 0.045912522822618484, 0.004895396064966917, 0.0008341707289218903, 0.02845156192779541, -0.06103032827377319, -0.03731377050280571, -0.035485055297613144, 0.18707510828971863, 0.09610498696565628, 0.017573220655322075, -0.012829291634261608, 0.02095663733780384, 0.03176086023449898, -0.046862632036209106, -0.0904005765914917, 0.019148103892803192, -0.010794103145599365, -0.0018561634933575988, -0.011673049069941044, -0.011046057567000389, -0.012645138427615166, -0.048858270049095154, 0.053460657596588135, -0.05548736825585365, -0.012160960584878922, -0.043372295796871185, -0.0032506396528333426, 0.00391771923750639, 0.020156869664788246, 0.01895318552851677, 0.03991323709487915, 0.006100967526435852, 0.037658292800188065, -0.04489264264702797, -0.027636229991912842, -0.050187982618808746, 0.0034198935609310865, -0.06723494082689285, -0.05361052230000496, -0.025991814211010933, 0.047443222254514694, -0.0699729472398758, 0.07945789396762848, -0.029641253873705864, -0.061781998723745346, -0.017768794670701027, 0.016999760642647743, -0.010384001769125462, -0.04075440764427185, 0.008957975544035435, -0.03161157667636871, -0.04103308171033859, 0.05915946140885353, -0.012082978151738644, -0.04194561764597893, 0.026102283969521523, 0.036098260432481766, 0.003350065555423498, 0.0007552250172011554, -0.022684451192617416, -0.019519945606589317, 0.02390335313975811, -0.013449224643409252, 0.00570726441219449, -0.0017506255535408854, -0.03109736740589142, -0.0044462610967457294, -0.020279616117477417, -0.0422075130045414, 0.054692432284355164, 0.007664267905056477, -0.02534336782991886, 0.021556861698627472, -0.047005824744701385, -0.06714580953121185, -0.012329090386629105, -0.022558555006980896, -0.2698930501937866, 0.05731432884931564, 0.02836517058312893, 0.06083877384662628, 0.010053643956780434, 0.09373819828033447, 0.01873721182346344, -0.00011390845611458644, 0.011152257211506367, -0.005950427148491144, 0.06853075325489044, -0.018676087260246277, 0.027991587296128273, 0.008133147843182087, -0.023974938318133354, 0.006589990574866533, 0.04284607991576195, 0.048496320843696594, -0.024639766663312912, 0.01912986859679222, 0.06087707728147507, 0.03168625757098198, 0.13866057991981506, 0.08392825722694397, -0.059417881071567535, -0.04946523159742355, -0.06077708676457405, 0.038166970014572144, 0.03058377094566822, 0.03351401537656784, -0.0032774442806839943, 0.03280928358435631, 0.027668269351124763, 0.004163858946412802, 0.013054163195192814, -0.06787087768316269, 0.009964105673134327, 0.020951293408870697, 0.06587328761816025, 0.01132834330201149, -0.01856406405568123, -0.013141722418367863, -0.01996886543929577, 0.030225519090890884, 0.06711151450872421, 0.009931475855410099, 0.02608359046280384, -0.017114950343966484, -0.06549306213855743, 0.019618017598986626, -0.05099606513977051, -0.037496887147426605, 0.03232796490192413, 0.03443386033177376, 0.042587995529174805, -0.005227866116911173, -0.027011584490537643, -0.011204734444618225, -0.015339748002588749, -0.015561969950795174, -0.03397313132882118, -0.01457617711275816, 0.09829563647508621, 0.01602053828537464, 0.030458107590675354], "83db070a-a453-44c7-af9f-630b992bfc10": [-0.05981713905930519, -0.018434584140777588, 0.03123621828854084, 0.04493233934044838, -0.03174848482012749, 0.021206991747021675, 0.046602509915828705, 0.008759040385484695, -0.010939610190689564, -0.0334981270134449, 0.031143607571721077, -0.00746039068326354, -0.012470175512135029, -0.06026565656065941, 0.01317560113966465, 0.04679279401898384, 0.0002656265569385141, -0.03402310982346535, -0.1336136907339096, 0.0667775571346283, 0.02983473427593708, -0.04644877836108208, 0.02600798010826111, 0.03302445262670517, -0.02871568873524666, 0.03279323875904083, -0.0029814518056809902, -0.01009016577154398, 0.002891381038352847, -0.1413908153772354, -0.0039505972526967525, 0.008734356611967087, -0.01166045293211937, -0.012021888978779316, 0.042978398501873016, 0.06881430745124817, 0.005495889112353325, -0.020469876006245613, -0.026567067950963974, 0.04587489739060402, 0.025419846177101135, -0.01938711851835251, -0.021183516830205917, -0.010945133864879608, 0.034826748073101044, -0.018348801881074905, 0.03635464236140251, -0.005660122726112604, -0.012007187120616436, -0.04206683486700058, -0.05586860328912735, -0.021923204883933067, 0.01985868066549301, 0.014312581159174442, -0.025716861709952354, 0.06049945577979088, 0.09172587841749191, 0.04334894195199013, 0.05112061649560928, -0.01734200306236744, 0.023840872570872307, 0.026458751410245895, -0.07250408828258514, 0.0767287164926529, 0.05001750960946083, -0.0010778072755783796, -0.10391225665807724, -0.05212638899683952, 0.004127488471567631, 0.04345472529530525, -0.03817052021622658, -0.006343531422317028, -0.00662178685888648, 0.025053488090634346, 0.05245855450630188, 0.03366615250706673, 0.018183395266532898, -0.011250095441937447, 0.05864058434963226, 0.03548009321093559, -0.039865877479314804, 0.03103388287127018, -0.05046825855970383, -0.00392399774864316, 0.011996589601039886, -0.06248144432902336, 0.02134876325726509, 0.005393435247242451, -0.02593061327934265, 0.014416361227631569, 0.02820824459195137, -0.06327340006828308, 0.025956425815820694, -0.013466003350913525, -0.03946826979517937, -0.012202886864542961, -0.01424920279532671, 0.008078229613602161, 0.02712905779480934, 0.41145768761634827, 0.009276408702135086, 0.012438063509762287, 0.028005145490169525, 0.03705701231956482, -0.014493312686681747, 0.00178242358379066, 0.016261352226138115, -0.09773064404726028, 0.022181108593940735, 0.06286785006523132, 0.027468562126159668, -0.011043236590921879, 0.06628802418708801, -0.00952926930040121, 0.011356140486896038, -0.00023503348347730935, 0.05625408515334129, -0.04438242316246033, -0.02005549892783165, 0.0004725474282167852, 0.01305726170539856, 0.031044742092490196, 0.007197747007012367, -0.023217028006911278, 0.03666184842586517, -0.03137959912419319, 0.050340913236141205, 0.0672057718038559, 0.008593881502747536, -0.039506103843450546, 0.051025815308094025, -0.03723670914769173, 0.036114778369665146, 0.034685611724853516, 0.012716029770672321, 0.02810332551598549, 0.030926670879125595, -0.015942281112074852, 0.036684148013591766, -0.023271990939974785, -0.0032013983000069857, -0.1345849484205246, -0.03216494247317314, -0.0032706211786717176, -0.01932317577302456, 0.06973564624786377, 0.028515812009572983, -0.02073807828128338, 0.0001643733266973868, 0.07825156301259995, -0.039896026253700256, 0.019826039671897888, -0.024245524778962135, 0.0015023498563095927, 0.015340575948357582, -0.02297387644648552, 0.0011007424909621477, 0.10899805277585983, -0.01195276528596878, 0.038043372333049774, 0.0914677083492279, 0.01680760830640793, 0.006870395503938198, 0.0006200127536430955, 0.08622970432043076, 0.02777702361345291, -0.05935784429311752, -0.04811600595712662, -0.011925214901566505, -0.01537690032273531, 0.006371152587234974, 0.011793192476034164, -0.07055726647377014, 0.03610512241721153, -0.030248204246163368, -0.046333398669958115, -0.0007237280951812863, -0.020766859874129295, 0.017587551847100258, 0.057812806218862534, 0.011188225820660591, -0.05305955931544304, -0.00806456245481968, 0.058701176196336746, -0.06731118261814117, -0.08988415449857712, 0.0005451664910651743, -0.035937607288360596, 0.0005126512260176241, -0.05994400754570961, 0.009485099464654922, 0.00773412361741066, 0.0198798980563879, 0.02226213924586773, -0.050253961235284805, -0.04180232807993889, 0.01739116758108139, -0.032882027328014374, -0.05745233967900276, -0.02319025993347168, 0.0012838088441640139, 0.014162645675241947, -0.024184491485357285, 0.03305657580494881, -0.017273621633648872, 0.036135561764240265, 0.05062808468937874, -0.06552252918481827, 0.12009390443563461, -0.0027221941854804754, -0.02480490133166313, -0.04601616784930229, -0.019294725731015205, 0.03431113064289093, -0.02612144686281681, 0.014838985167443752, 0.005818810313940048, -0.02391572669148445, -0.010074184276163578, 0.0036827698349952698, -0.059034351259469986, -0.06687595695257187, -0.08028821647167206, -0.31011655926704407, -0.026364801451563835, -0.01641073264181614, -0.024536721408367157, 0.04446889087557793, -0.06743078678846359, 0.03054562769830227, -0.037208233028650284, 0.05458522215485573, -0.039328452199697495, -0.020323915407061577, -0.04109083488583565, 0.018221765756607056, 0.02299296297132969, -0.005160147324204445, 0.03070381097495556, -0.012879015877842903, 0.016269369050860405, 0.010705948807299137, 0.05691133812069893, -0.056226737797260284, 0.0029395350720733404, 0.03838297724723816, -0.0986085906624794, -0.028121670708060265, 0.027749525383114815, 0.16114556789398193, 0.09073951840400696, -0.0034972026478499174, 0.011090360581874847, -0.018208248540759087, 0.025400536134839058, -0.021635085344314575, -0.06448397785425186, 0.05957727134227753, -0.009154475294053555, 0.024683373048901558, -0.0495951808989048, 0.02117118425667286, -0.01697004958987236, -0.034578971564769745, 0.04412417486310005, -0.022255346179008484, 0.0036707527469843626, -0.04617657884955406, -0.019897447898983955, -0.011995664797723293, -0.0007755151018500328, 0.0030454988591372967, 0.04825529083609581, -0.006025081500411034, 0.05030866712331772, -0.01487848162651062, 0.004631902556866407, -0.03281819820404053, -0.017854060977697372, -0.059074241667985916, -0.040810324251651764, 0.009675943292677402, 0.03702443093061447, -0.002253229497000575, 0.052568480372428894, 0.004178900271654129, -0.050187014043331146, -0.0008710065740160644, -0.0152176758274436, 0.0035836058668792248, -0.050432343035936356, -0.003644234035164118, -0.004388584289699793, -0.013721761293709278, 0.07200101017951965, 0.018822835758328438, -0.06691569834947586, 0.003906238591298461, -0.005147147923707962, 0.0035777671728283167, 0.03460703045129776, -0.056172776967287064, -0.04179831221699715, 0.03614142909646034, -0.026801832020282745, 0.0077181546948850155, -0.012378619983792305, -0.07543031871318817, -0.028481291607022285, -0.015761978924274445, -0.04441877081990242, 0.10304422676563263, -0.007878686301410198, -0.04865184798836708, 0.06371442973613739, -0.030896229669451714, -0.036264557391405106, 0.009628117084503174, 0.0030017306562513113, -0.28035104274749756, 0.03057166188955307, 0.04751543328166008, 0.061597760766744614, 0.002917682519182563, 0.08392154425382614, 0.013258252292871475, -0.005289726424962282, -0.03769873455166817, -0.009048078209161758, 0.026949888095259666, -0.003989235032349825, 0.03410401567816734, 0.0146951824426651, -0.02021646499633789, 0.019130658358335495, 0.049749426543712616, 0.010052821598947048, -0.03869025036692619, 0.003984974231570959, 0.0021854666993021965, -0.013663549907505512, 0.1554337590932846, 0.07009397447109222, -0.04718188941478729, -0.06414693593978882, -0.011090390384197235, 0.021635888144373894, 0.012878507375717163, 0.040889494121074677, -0.004758039955049753, 0.017672099173069, -0.007756676059216261, 0.013515440747141838, 0.010010926052927971, -0.08995460718870163, -0.026696575805544853, -0.030794799327850342, 0.08519648015499115, 0.001714782789349556, -0.018077576532959938, 0.010517297312617302, 0.010870327241718769, 0.017582954838871956, 0.04687971994280815, 0.03322213143110275, 0.0032258182764053345, 0.008712141774594784, -0.09381070733070374, 0.02211260423064232, -0.05488748103380203, 0.013052231632173061, 0.0011453672777861357, 0.015344461426138878, 0.04373800754547119, 0.016554895788431168, -0.04155030846595764, -0.0030273220036178827, -0.015160954557359219, -0.035553764551877975, -0.031370822340250015, 0.014020119793713093, 0.09223439544439316, 0.003412027610465884, 0.029264187440276146], "91082429-933a-44e2-ada6-494afaab7d5c": [-0.058715030550956726, 0.0047184135764837265, 0.040983669459819794, 0.03113558515906334, -0.008275569416582584, 0.009532490745186806, 0.022373856976628304, -0.0151444710791111, -0.03964870795607567, -0.05365978181362152, 0.015879197046160698, 0.007669129874557257, -0.03570537641644478, -0.01994604431092739, 0.00356761715374887, 0.041656333953142166, -0.0121872304007411, 0.016807109117507935, -0.13583089411258698, 0.05783418193459511, 0.041883811354637146, -0.020284511148929596, 0.013857291080057621, 0.010810785926878452, -0.02077587880194187, 0.01500092726200819, 0.00920755136758089, -0.035317495465278625, 0.005008898209780455, -0.10732588171958923, 0.0034442816395312548, -0.02003183774650097, -0.00119401968549937, -0.034151628613471985, 0.02135835401713848, 0.0654878243803978, -0.0031208868604153395, 0.0035484659019857645, -0.013866175897419453, 0.05197390168905258, 0.009585733525454998, 0.025279980152845383, -0.004965594969689846, -0.001491821021772921, 0.04844130948185921, 0.021899815648794174, -0.0026331963017582893, -0.01781400665640831, 0.025164883583784103, 0.007532516028732061, -0.074414923787117, -0.010230563580989838, -0.0011106159072369337, 0.03361322358250618, -0.03215166553854942, 0.02281154878437519, 0.035356368869543076, 0.04175795987248421, 0.01653478294610977, 0.026864398270845413, 0.01106988824903965, 0.022269578650593758, -0.10731827467679977, 0.09174297004938126, 0.049876801669597626, 0.01267915591597557, -0.08084101974964142, -0.015633396804332733, 0.003458107355982065, 0.023623257875442505, -0.04736414924263954, -0.021369770169258118, 0.036203183233737946, 0.05940195545554161, 0.01086815819144249, 0.03742659464478493, 0.03220107778906822, -0.045068807899951935, 0.015963928773999214, -0.012932654470205307, -0.029287591576576233, 0.039564359933137894, -0.09017564356327057, -0.012911166995763779, -0.059988170862197876, -0.05090877041220665, 0.0030927194748073816, -0.027325961738824844, -0.021329475566744804, -0.005201051943004131, 0.003976046107709408, -0.035398270934820175, -0.006409567780792713, -0.017009012401103973, 0.0016072692815214396, -0.005617229733616114, 0.0014125178568065166, 0.02624748833477497, -0.02651110291481018, 0.3866102993488312, 0.021102171391248703, -0.0034850393421947956, 0.02980218641459942, 0.017096640542149544, -0.030135679990053177, 0.02064908854663372, 0.005821045022457838, -0.06542161852121353, 0.052371200174093246, 0.08161124587059021, 0.03403586149215698, 0.011989965103566647, 0.06896016746759415, 0.005815289914608002, 0.013711639679968357, 0.003452037926763296, 0.054209157824516296, -0.03329325467348099, -0.029064375907182693, 0.0010095825418829918, 0.029637446627020836, 0.02878517657518387, -0.02674270235002041, -0.008891424164175987, 0.005969134625047445, -0.0603528693318367, 0.07878836989402771, 0.09794104099273682, 0.046643033623695374, -0.07929003983736038, 0.0214631836861372, -0.028877494856715202, 0.003254873910918832, 0.024334024637937546, -0.009982111863791943, 0.031620658934116364, 0.01543907355517149, -0.013086296617984772, 0.059266507625579834, -0.0074344053864479065, -0.019453316926956177, -0.15001118183135986, -0.08195864409208298, 0.0004315797705203295, 0.0012593497522175312, 0.06865587085485458, 0.06608596444129944, -0.011513887904584408, 0.012572675943374634, 0.05140702426433563, 0.006550733000040054, 0.022283397614955902, 0.04316085949540138, -0.017745504155755043, 0.02093832567334175, -0.008467878215014935, 0.0078106895089149475, 0.09237778186798096, -0.001777301775291562, -0.0032515882048755884, 0.0646863654255867, 0.006217265035957098, -0.019457314163446426, 0.012379766441881657, 0.05109170079231262, -0.02116953395307064, -0.07196003198623657, -0.047581061720848083, -0.010223288089036942, -0.01638433337211609, 0.08315731585025787, 0.0002567172341514379, -0.03620026260614395, 0.067576102912426, -0.034708548337221146, 0.0142662413418293, -0.00763999717310071, -0.005541959311813116, 0.020788948982954025, 0.05743652582168579, -0.01868358626961708, -0.09187082201242447, -0.04677174985408783, 0.051465053111314774, -0.0788600817322731, -0.07346133887767792, 0.018227670341730118, -0.026491837576031685, 0.04197162017226219, -0.0738569125533104, 0.03220459073781967, 0.047235310077667236, -0.03379612788558006, 0.022060304880142212, -0.06047816202044487, -0.023105839267373085, -0.009143493138253689, -0.02859521098434925, -0.03127662092447281, -0.026260392740368843, -0.011404898948967457, -0.037819840013980865, -0.025619253516197205, 0.03135290369391441, 0.0009393536020070314, 0.02557736448943615, 0.013154621236026287, -0.043182190507650375, 0.12512561678886414, 0.022052934393286705, -0.02388649992644787, -0.047717880457639694, 0.017261123284697533, 0.04691038280725479, -0.008317280560731888, 0.02873259410262108, -0.040524616837501526, 0.002846428891643882, -0.013086941093206406, 0.0012584344949573278, -0.0020888906437903643, -0.07437237352132797, -0.08798734843730927, -0.33150652050971985, -0.01902305707335472, 0.003339282004162669, -0.03542529419064522, 0.04487600922584534, -0.07534211128950119, 0.043569695204496384, -0.02668536640703678, 0.065517358481884, -0.05814741551876068, -0.03564716503024101, -0.02734866552054882, 0.028190456330776215, -0.002659349702298641, -0.03374173492193222, 0.01770603097975254, 0.0020573351066559553, -0.018971584737300873, 0.03794962167739868, 0.0364583320915699, -0.014152038842439651, 0.01184809673577547, 0.040012702345848083, -0.05081832408905029, 0.010578453540802002, -0.009646066464483738, 0.17542660236358643, 0.06587771326303482, 0.008066004142165184, -0.0035697943530976772, 0.019095150753855705, 0.002062537707388401, -0.021997030824422836, -0.041234828531742096, 0.04291544854640961, 0.01235439907759428, 0.0022669110912829638, -0.048688460141420364, 0.007834951393306255, -0.0048724086955189705, -0.07744482904672623, 0.06372857838869095, 0.009060966782271862, 0.01681121438741684, -0.10641907900571823, -0.029359089210629463, -0.027815809473395348, -0.020923510193824768, 0.019478576257824898, 0.03766811266541481, 0.018022974953055382, 0.051196906715631485, -0.03224285691976547, 0.005770287476480007, -0.029147038236260414, -0.05252154916524887, -0.07371695339679718, -0.00890433695167303, -0.02753026969730854, 0.01872185803949833, -0.036787912249565125, 0.03714495524764061, 0.03861141949892044, -0.058550767600536346, 0.004986165557056665, -0.02403242327272892, 0.030334491282701492, -0.06362703442573547, -0.009433217346668243, -0.012625010684132576, 0.011236879974603653, 0.06052267923951149, -0.040797147899866104, -0.06205612048506737, -0.008587826043367386, 0.02364792302250862, 0.021725451573729515, 0.01683325320482254, -0.024405645206570625, 0.006339659448713064, -0.006126055493950844, -0.035213060677051544, -0.021852068603038788, 0.01741594634950161, -0.04068730026483536, -0.07044477015733719, -0.025947416201233864, -0.0038142490666359663, 0.08195909857749939, 0.004753751214593649, -0.04939216747879982, 0.048284757882356644, -0.057103510946035385, -0.03531720116734505, -0.011131682433187962, -0.0018035352695733309, -0.3037658929824829, 0.04089606925845146, -0.018879253417253494, 0.057285889983177185, -0.007872969843447208, 0.09041334688663483, 0.041266780346632004, 0.01971461810171604, -0.01330876536667347, 0.01493820920586586, 0.04594896361231804, -0.020115572959184647, 0.026107532903552055, 0.015034393407404423, -0.019317511469125748, -0.02632523700594902, 0.03015921637415886, 0.03386623039841652, -0.050436072051525116, 0.020846620202064514, 0.013466589152812958, 0.06338036060333252, 0.1317228078842163, 0.07029377669095993, -0.021819455549120903, 0.004995900671929121, -0.0020872591994702816, 0.03264431655406952, 0.04540291801095009, 0.034225478768348694, -0.010718915611505508, 0.00913370493799448, 0.01911841332912445, 0.04008011892437935, 0.005913415923714638, -0.04743742570281029, -0.0450441911816597, -0.017786867916584015, 0.07796210050582886, 0.003205682151019573, -0.022157806903123856, 0.015698017552495003, -0.0015094741247594357, 0.0006586908712051809, 0.055103473365306854, 0.011654878035187721, 0.02033286914229393, 0.013549912720918655, -0.07352187484502792, 0.01716991886496544, -0.05512688681483269, -0.02801326848566532, 0.04302205145359039, 0.011634127236902714, 0.047697246074676514, -0.008207142353057861, -0.01620815135538578, -0.02296266332268715, -0.0049169776029884815, -0.010639917105436325, -0.03221539780497551, -0.0008656178251840174, 0.08257227391004562, 0.0373738631606102, 0.03437512740492821], "6ffdc1b6-485a-4391-884a-60cdcf9f6728": [-0.04424186050891876, -0.004147582221776247, 0.013198398053646088, 0.027727363631129265, -0.04831510782241821, 0.03720541670918465, 0.03880979120731354, 0.005903891287744045, -0.009428868070244789, -0.005549486726522446, 0.02207963541150093, -0.040425051003694534, -0.03710690140724182, -0.028431814163923264, 6.619359191972762e-05, 0.0426337867975235, 0.013492293655872345, -0.03185374662280083, -0.11887849122285843, 0.07310573011636734, 0.05976278334856033, -0.056983064860105515, 0.034872811287641525, 0.00150880531873554, 0.0022441234905272722, 0.017220912501215935, -0.029696283861994743, -0.04435453191399574, 0.03214501217007637, -0.1594727635383606, 0.011311938054859638, 0.01639362797141075, 0.0037975951563566923, -0.04420389607548714, -0.010283867828547955, 0.0971732884645462, 0.021654246374964714, -0.03133070468902588, -0.014996670186519623, 0.03846755623817444, 0.035182081162929535, 0.04368351027369499, -0.021025191992521286, -0.012269901111721992, 0.03886115178465843, -0.0056678010150790215, -0.004036154597997665, -0.006631887052208185, 0.002378774108365178, -0.018834874033927917, -0.04717039689421654, -0.02838178165256977, 0.015829700976610184, 0.003379885572940111, -0.028339341282844543, 0.019168423488736153, 0.057398080825805664, 0.02419079653918743, 0.03531266748905182, 0.008087332360446453, 0.00292570679448545, 0.025036239996552467, -0.0773790255188942, 0.06736785918474197, 0.06907544285058975, -0.0002741414064075798, -0.10436724871397018, -0.02125723287463188, -9.651247091824189e-05, 0.08078215271234512, -0.002300238236784935, -0.011172863654792309, 0.034741051495075226, 0.0252040047198534, 0.027045143768191338, 0.022244080901145935, 0.04289359971880913, 0.0032107841689139605, 0.08020785450935364, 0.026788480579853058, -0.03412959724664688, -0.012067500501871109, -0.06606069952249527, 0.028866125270724297, -0.040256571024656296, -0.09168475866317749, 0.029092250391840935, 0.001131131430156529, -0.0367698110640049, 0.02571886219084263, 0.0271124467253685, -0.07437017560005188, -0.012697356753051281, -0.0329890213906765, -0.02109476365149021, -0.04195035248994827, -0.031632211059331894, -0.004207069519907236, 0.027678819373250008, 0.43477553129196167, 0.030486011877655983, 0.0400739423930645, 0.022350626066327095, -0.0025886392686516047, -0.022244753316044807, 0.015562938526272774, 0.0008543478907085955, -0.06596770137548447, 0.0706716850399971, 0.054995860904455185, 0.041537024080753326, 0.0032848326954990625, 0.029915248975157738, 0.01186087355017662, 0.0025696633383631706, -0.018530847504734993, 0.04464203864336014, -0.047275494784116745, 0.0025618502404540777, -0.005535813048481941, 0.036863092333078384, 0.0635085180401802, 0.009000604040920734, -0.03589888662099838, 0.03350035101175308, -0.041512295603752136, 0.06250070035457611, 0.062181565910577774, 0.0028758824337273836, -0.04659471660852432, 0.05994143337011337, -0.06464226543903351, 0.03440842032432556, 0.005872337147593498, 0.023530390113592148, 0.013181563466787338, 0.04622286185622215, -0.009015968069434166, 0.03922224044799805, -0.03607155382633209, -0.02682379074394703, -0.12645919620990753, -0.041075028479099274, -0.01762888953089714, 0.0031098711770027876, 0.07671627402305603, 0.03788422793149948, -0.013631525449454784, 0.00398156326264143, 0.0233457088470459, -0.01831468567252159, -0.01312880590558052, -0.0017033667536452413, 8.768159023020416e-05, 0.06142651289701462, -0.02300759218633175, -0.016844652593135834, 0.10479231178760529, 0.007924040779471397, 0.010687245987355709, 0.0698600709438324, 0.04373485594987869, 0.025402696803212166, -0.03186141327023506, 0.07242749631404877, -0.0013282602885738015, -0.08415817469358444, -0.021525561809539795, -0.013500339351594448, -0.02066858857870102, 0.0248813945800066, 0.024024723097682, -0.09435659646987915, 0.04570555314421654, -0.03553496301174164, -0.034330908209085464, -0.02515709213912487, 7.528121932409704e-05, -0.01577557437121868, 0.05755774304270744, -0.0011762926587834954, -0.06992872804403305, 0.033907655626535416, 0.02433544397354126, -0.07493579387664795, -0.07284209132194519, 0.007854456081986427, -0.026157569140195847, 0.01705208793282509, -0.04362187534570694, 0.00727022485807538, 0.019680025056004524, -0.03689240291714668, 0.027703968808054924, -0.04897667467594147, -0.04458010196685791, 0.006205165758728981, -0.001141499262303114, -0.06065133213996887, -0.0008215957786887884, -0.012096108868718147, -0.02512226440012455, -0.04127248004078865, 0.07922591269016266, -0.016957256942987442, 0.032936129719018936, 0.06415833532810211, -0.026956602931022644, 0.12396031618118286, -0.0014743077335879207, -0.03701045736670494, -0.05706988275051117, -0.03830617293715477, 0.031809840351343155, -0.0022485684603452682, 0.047612182796001434, 0.02476705238223076, -0.016663193702697754, -0.012304417788982391, 0.002255628351122141, -0.024077974259853363, -0.08596793562173843, -0.06964843720197678, -0.30569732189178467, -0.030223172158002853, -0.017322571948170662, -0.044386766850948334, 0.042117685079574585, -0.04667488485574722, 0.03445493057370186, -0.04616722837090492, 0.05173838138580322, -0.0583733469247818, -0.027751479297876358, -0.03265497088432312, 0.02758967876434326, 0.004028341267257929, -0.0382428802549839, 0.02339192107319832, -0.025202151387929916, 0.01636674255132675, 0.026583487167954445, 0.029272383078932762, -0.01607722043991089, 0.013744043186306953, -0.0015794133068993688, -0.06862950325012207, -0.03663783520460129, 0.0025928316172212362, 0.15285897254943848, 0.08994637429714203, -0.0012576912995427847, -0.00016683513240423054, 0.01671954058110714, -0.00383758288808167, -0.03704351186752319, -0.02421843446791172, 0.03488892689347267, 0.004793964792042971, 0.01782568357884884, -0.05843290686607361, -0.02274971641600132, 0.008268347010016441, -0.051855962723493576, 0.05720631778240204, -0.021178113296628, -0.02298688516020775, -0.05162815377116203, -0.002293940167874098, -0.015506016090512276, 0.009024521335959435, 0.01274868007749319, 0.04256770387291908, -0.022084254771471024, 0.06461791694164276, -0.0318225659430027, -0.020593056455254555, -0.0056785405613482, -0.013174552470445633, -0.0708102434873581, -0.05561201274394989, -0.023391397669911385, 0.042342204600572586, -0.051316458731889725, 0.009757328778505325, -0.010791316628456116, -0.059670791029930115, -0.04178761690855026, 0.012437836267054081, -0.014827200211584568, -0.04488697275519371, -0.008698733523488045, -0.017477866262197495, -0.004864235874265432, 0.07368583232164383, 0.009516707621514797, -0.05549585819244385, 0.02048497088253498, -3.6925473978044465e-05, 0.014928089454770088, 0.033068783581256866, -0.012017576023936272, -0.016164595261216164, 0.0311728548258543, -0.011742917820811272, 0.013777612708508968, -0.00317406072281301, -0.04602018743753433, -0.02404073067009449, -0.0006833511288277805, -0.019734490662813187, 0.07941221445798874, -0.02278442494571209, -0.008490805514156818, 0.06290971487760544, -0.017689799889922142, -0.020292853936553, -0.026361845433712006, -0.01596917398273945, -0.2773098349571228, 0.053259942680597305, 0.02716212347149849, 0.06186215579509735, -0.016229163855314255, 0.09734892845153809, 0.019939230754971504, 0.011620193719863892, 0.005250726826488972, -0.019957132637500763, 0.0435950830578804, -0.01986626349389553, 0.03811998292803764, 0.021228419616818428, -0.015412194654345512, 0.010546461679041386, 0.003132479963824153, 0.03547810763120651, -0.028585003688931465, 0.015459883958101273, 0.03856547176837921, 0.031930942088365555, 0.13297617435455322, 0.06794372946023941, -0.04503175616264343, -0.041786376386880875, -0.04445277154445648, 0.02826789952814579, 0.0045715258456766605, 0.042148198932409286, 0.010751668363809586, 0.016373436897993088, 0.02308424934744835, 0.00435977429151535, -0.0035736262798309326, -0.057303037494421005, -0.0007611149339936674, -0.010966143570840359, 0.07287030667066574, 0.024614054709672928, -0.0013709439663216472, -0.022709794342517853, 0.042474452406167984, 0.010537289083003998, 0.043138742446899414, 0.029853833839297295, 0.011630658060312271, -0.010180681943893433, -0.06807103008031845, 0.022715909406542778, -0.07275085151195526, -0.00621128361672163, 0.03592395782470703, 0.009723502211272717, 0.018174083903431892, -0.001455012708902359, -0.02706776186823845, -0.004993964917957783, -0.009336581453680992, -0.030598042532801628, -0.021797413006424904, -0.0338255874812603, 0.06336355209350586, 0.011751232668757439, 0.06281076371669769], "95dca97f-5aff-45ef-98fc-180a28d96776": [-0.09281206130981445, -0.015012113377451897, 0.06427173316478729, 0.08558756858110428, -0.024845806881785393, 0.03452310711145401, 0.04981999471783638, -0.007957164198160172, -0.012466821819543839, -0.008043434470891953, 0.021815329790115356, -0.05117903649806976, -0.06118306890130043, -0.03759341686964035, 0.0019176590722054243, 0.02882297709584236, -0.02375945635139942, -0.024240609258413315, -0.12665823101997375, 0.04648321866989136, -0.03768022358417511, -0.02595612406730652, 0.04953581839799881, 0.013815282844007015, -0.024035008624196053, 0.025535350665450096, 0.015716414898633957, -0.07532208412885666, 0.011869189329445362, -0.16182370483875275, -0.003594393376260996, 0.05126392841339111, -0.01821795292198658, -0.037240833044052124, 0.013105805963277817, 0.10540565848350525, 0.0053037069737911224, 0.018170690163969994, 0.020172400400042534, 0.020355110988020897, 0.022585725411772728, 0.02711954526603222, -0.04308677092194557, -0.04129068925976753, 0.0772053450345993, -0.010909971781075, 0.05180306360125542, 0.0053522344678640366, 0.018538709729909897, 0.00027043939917348325, -0.054453395307064056, -0.034900836646556854, -0.008411943912506104, -0.007881994359195232, -0.008295643143355846, 0.01787572354078293, 0.02450529858469963, 0.017891662195324898, 0.031873442232608795, 0.04250924289226532, 0.03643500432372093, 0.027741564437747, -0.059473492205142975, 0.03192781284451485, 0.09307544678449631, 0.022976117208600044, -0.029520947486162186, -0.05421089753508568, 0.038914754986763, 0.06741713732481003, -0.018543507903814316, 0.005923372693359852, 0.007025443948805332, 0.05375385284423828, -0.009571680799126625, 0.047871414572000504, 0.07853710651397705, -0.008030076511204243, 0.06353870779275894, 0.013157479465007782, -0.075017549097538, 0.0234987735748291, -0.03635166957974434, 0.04433680325746536, -0.02221100777387619, -0.0469198152422905, 0.011432013474404812, -0.0025363850872963667, 0.00022800268197897822, -0.021182281896471977, -0.020169036462903023, -0.02345086634159088, -0.008305404335260391, -0.021480659022927284, -0.015188608318567276, -0.0009706877171993256, -0.045809704810380936, 0.04013960808515549, 0.0024892932269722223, 0.40249213576316833, -0.012055573984980583, 0.021965110674500465, 0.017069296911358833, 0.01820150576531887, 0.014955032616853714, -0.029365699738264084, 0.019923096522688866, -0.07997270673513412, 0.003176808124408126, 0.06270523369312286, 0.04600220546126366, -0.01659424602985382, 0.025389445945620537, -9.912830137182027e-05, 0.047804322093725204, -0.023053713142871857, 0.05549107491970062, -0.02553783357143402, -0.05444306507706642, 0.009589888155460358, -0.008696530945599079, 0.009558197110891342, 0.015623215585947037, -0.05207214504480362, -0.01256524957716465, 0.0015149229438975453, 0.022189322859048843, 0.056390102952718735, 0.01512057799845934, -0.081656314432621, 0.04891214892268181, -0.10508086532354355, 0.029641013592481613, 0.04038311913609505, 0.002414189511910081, -0.009707033634185791, 0.022425690665841103, -0.002209568163380027, 0.04280693829059601, -0.03093069978058338, -0.028358349576592445, -0.13364674150943756, -0.03246661275625229, -0.0038203431759029627, -0.014978013932704926, 0.07033587247133255, 0.0074045839719474316, 0.015390727669000626, 0.04277242720127106, 0.026917601004242897, 0.0350162498652935, -0.009254773147404194, -0.07115385681390762, 0.007348374463617802, 0.056077051907777786, -0.00213335151784122, 0.02349909581243992, 0.07575734704732895, 0.02333458513021469, 0.026527324691414833, 0.07895442098379135, -0.05094144120812416, -0.009775000624358654, -0.0060937292873859406, 0.05882924050092697, -0.004267747513949871, -0.014178825542330742, -0.0046420712023973465, -0.012552955187857151, -0.003453000681474805, 0.06969206780195236, 0.014467309229075909, -0.0852796882390976, 0.02489708922803402, -0.043529752641916275, -0.013835030607879162, -0.027010563760995865, -0.03441998362541199, -0.023632798343896866, 0.026105904951691628, 0.03186666592955589, -0.02824331633746624, 0.014533194713294506, 0.0502505749464035, -0.05562243610620499, -0.04519893229007721, 0.014772593975067139, -0.011417779140174389, 0.02394227497279644, -0.03739973157644272, 0.01649969071149826, -0.029970280826091766, -0.046029239892959595, 0.020238053053617477, -0.026851635426282883, -0.06257019937038422, 0.004527029115706682, 0.008387373760342598, -0.064934641122818, 0.014100088737905025, -0.011496002785861492, 0.031445156782865524, -0.062129732221364975, 0.009000767953693867, -0.012755520641803741, 0.0065687610767781734, 0.025797398760914803, -0.03152036294341087, 0.10111307352781296, 0.046152353286743164, -0.017428837716579437, -0.002009752904996276, 0.04460001364350319, 0.03928498551249504, -0.006706823129206896, -0.024112895131111145, 0.007205480709671974, 0.030691979452967644, -0.04397668316960335, 0.006625426467508078, -0.012079792097210884, -0.14661504328250885, -0.07723329961299896, -0.3223506212234497, -0.02081681787967682, 0.01063077338039875, -0.03518244996666908, 0.048689477145671844, -0.04343796893954277, -0.007350055035203695, -0.030186396092176437, 0.00702766003087163, -0.07859407365322113, -0.005454337690025568, -0.0169249027967453, -0.002260390901938081, -0.035275399684906006, 0.002968187676742673, 0.021441059187054634, 0.0304422490298748, -0.0007786378264427185, 0.006022189743816853, 0.039457228034734726, 0.016741735860705376, 0.006531490944325924, -0.03283020853996277, -0.05390935763716698, -0.07225914299488068, 0.017605511471629143, 0.16450874507427216, 0.08085954934358597, 0.01970977894961834, -0.046180445700883865, -0.008387903682887554, 0.005525260232388973, -0.0403287410736084, -0.03963156044483185, 0.027727436274290085, 0.03970443829894066, 0.014980498701334, -0.010069013573229313, -0.0019126191036775708, 0.018287349492311478, -0.034905772656202316, 0.06383351236581802, -0.013855420984327793, 0.007621384225785732, -0.04279773309826851, 0.019344380125403404, -0.0015520789893344045, -0.030975138768553734, 0.007405970245599747, 0.033665698021650314, -0.004196277819573879, 0.05236967280507088, -0.08367849141359329, -0.013944937847554684, -0.007433624472469091, 0.011161021888256073, -0.07355017960071564, 0.005046790931373835, -0.05251862108707428, 0.019339073449373245, -0.029614441096782684, -0.008133232593536377, 0.020085720345377922, -0.04691585525870323, -0.027121582999825478, 0.034444499760866165, -0.015683777630329132, -0.03673744201660156, -0.0038090806920081377, -0.047851093113422394, -0.02419731765985489, 0.04435290768742561, 0.0231309961527586, -0.018277455121278763, 0.05605494976043701, 0.004274864215403795, 0.01814243197441101, 0.04338328167796135, -0.05860422924160957, 0.008111228235065937, 0.007315278984606266, -0.049958571791648865, -0.013769788667559624, -0.006713447161018848, -0.08784117549657822, -0.009988044388592243, 0.006017571780830622, -0.07624855637550354, 0.05565844476222992, -0.013476702384650707, -0.01474254485219717, 0.005788483656942844, -0.08299683779478073, -0.0219376590102911, 0.0443258099257946, -0.0143854646012187, -0.2695781886577606, 0.05800260603427887, 0.06393402814865112, 0.0655566155910492, -0.014850091189146042, 0.05930928513407707, 0.037169866263866425, 0.02441219799220562, -0.020062940195202827, 0.015530909411609173, 0.048633597791194916, -0.04855964705348015, 0.019618457183241844, 0.013476322405040264, -0.03627543896436691, -0.002311425982043147, 0.011591401882469654, 0.04760652780532837, -0.04935377091169357, 0.024932123720645905, -0.02838713489472866, 0.06378328800201416, 0.09858419746160507, 0.05068425089120865, -0.03282192721962929, -0.02910177782177925, -0.027559960260987282, -0.006798081565648317, 0.040448322892189026, 0.02927950955927372, 0.0376046858727932, 0.010113529860973358, -0.026628568768501282, -0.005620787851512432, -0.014070983044803143, -0.03927620127797127, 0.0013115601614117622, 0.054692335426807404, 0.09214824438095093, -0.005462411791086197, 0.030196599662303925, 0.02154931239783764, 0.035949744284152985, 0.020512361079454422, 0.06175672262907028, 0.027147255837917328, -0.007798152044415474, -0.017880352213978767, -0.06849819421768188, 0.02076032944023609, -0.0267704539000988, 0.015246381051838398, 0.06927546113729477, 0.03322325646877289, 0.09686227142810822, 0.0071343532763421535, -0.028825955465435982, 0.0013686497695744038, -0.0040116216987371445, -0.05331721529364586, -0.008870945312082767, -0.06506533920764923, 0.022935016080737114, -0.01186931412667036, 0.025303566828370094], "a3ee7823-d883-4689-a3d3-16fee0d55a8e": [-0.09695199877023697, -0.00998392328619957, 0.034108325839042664, 0.10650936514139175, -0.011630672961473465, 0.008094626478850842, 0.05577162653207779, 0.020822403952479362, -0.010050492361187935, 0.004135166294872761, 0.01503544207662344, -0.05500250682234764, -0.04162461683154106, -0.03438994660973549, 0.006221181247383356, 0.00902628805488348, -0.00221461383625865, -0.03929567709565163, -0.10701453685760498, 0.03338518738746643, -0.03376231715083122, -0.017799926921725273, 0.06851333379745483, 0.026212237775325775, -0.0223271232098341, 0.038003578782081604, -0.000630635186098516, -0.021173644810914993, -0.0010850512189790606, -0.13344477117061615, -0.00801907666027546, 0.005331157706677914, -0.05464566498994827, -0.005530375987291336, 0.018606042489409447, 0.09934994578361511, 0.015306706540286541, 0.009985649958252907, 0.009597068652510643, 0.03994717821478844, 0.019978061318397522, -0.0032219120766967535, -0.02546379342675209, -0.0077746291644871235, 0.030613642185926437, -0.03664306923747063, 0.023516055196523666, -0.00923361536115408, 0.008874555118381977, -0.022043175995349884, -0.061919696629047394, -0.0445445291697979, -0.016778578981757164, -0.025269079953432083, -0.02091359533369541, 0.023088958114385605, 0.0426299013197422, 0.012804357334971428, 0.03213893622159958, -0.005597415845841169, 0.039519939571619034, 0.011013584211468697, -0.04649319499731064, 0.034930452704429626, 0.08025126904249191, 0.011315827257931232, -0.06709234416484833, -0.0067518604919314384, 0.004412421025335789, 0.042777519673109055, 0.013328783214092255, 0.016338251531124115, 0.004920116160064936, 0.03307115659117699, -0.009780023247003555, 0.031448520720005035, 0.06062713637948036, -0.005737572908401489, 0.047896452248096466, 0.006351042538881302, -0.07001098990440369, 0.007185777649283409, -0.024431558325886726, 0.028134405612945557, -0.007847820408642292, -0.005371089093387127, 0.002299730433151126, -0.01427488587796688, 0.013654202222824097, -0.037539027631282806, 0.04175228253006935, -0.028586318716406822, 0.007001030258834362, -0.03693313151597977, -0.010776614770293236, 0.01901058480143547, -0.008512815460562706, -0.03868826851248741, -0.016535283997654915, 0.3767651617527008, 0.04594675451517105, 0.00798123236745596, 0.018999233841896057, 0.011153629049658775, 0.016331806778907776, 0.0019302505534142256, 0.029375966638326645, -0.10256201773881912, 0.014949196018278599, 0.07431358098983765, 0.034239355474710464, -0.02911178581416607, 0.07572803646326065, -0.003529611276462674, 0.05678709223866463, 0.027417249977588654, 0.03167961910367012, -0.07268694788217545, -0.05839664489030838, 0.04762830585241318, 0.012310714460909367, -0.022575555369257927, -0.009811429306864738, -0.023981496691703796, 0.024008499458432198, -0.017378278076648712, 0.04019814729690552, 0.06902699917554855, 0.039120420813560486, -0.05173201858997345, 0.07905460894107819, -0.07029362767934799, -0.016318311914801598, 0.017258914187550545, 0.013046275824308395, 0.02192135713994503, 0.013861131854355335, 0.006144935265183449, 0.022458462044596672, -0.05037708207964897, 0.006879379507154226, -0.15166665613651276, -0.0018362902337685227, 0.008750940673053265, 0.010457480326294899, 0.01618875563144684, 0.05687969923019409, -0.005640082992613316, 0.01178993284702301, 0.07197847962379456, -0.0072560543194413185, -0.021167205646634102, -0.004661324433982372, 0.003850069362670183, 0.015851488336920738, -0.0025121283251792192, 0.004160908050835133, 0.15574748814105988, 0.007694346830248833, 0.04199964553117752, 0.07298726588487625, -0.03934061899781227, 0.009542969055473804, -0.02974621020257473, 0.06714089959859848, -0.0006084214546717703, -0.017176054418087006, -0.016673358157277107, -0.05042199790477753, 0.028743457049131393, -0.002252096077427268, 0.025843482464551926, -0.12026502192020416, 0.04463005065917969, -0.04346535727381706, -0.038827329874038696, -0.07025089114904404, -0.03028745949268341, -0.015677794814109802, 0.0474933423101902, -0.02247459813952446, -0.0637059211730957, 0.0013124550459906459, 0.07081732153892517, -0.06428881734609604, -0.05105965584516525, -0.013735389336943626, -0.005361087620258331, 0.03199543058872223, -0.05119045451283455, 0.03818591684103012, -0.016646485775709152, -0.015018540434539318, 0.021516157314181328, -0.06066853925585747, -0.06646591424942017, 0.02887054905295372, -0.012544666416943073, -0.046567078679800034, -0.015553845092654228, -0.018346017226576805, -0.021897856146097183, -0.05157410353422165, 0.0544576495885849, 0.01013819221407175, 0.02920221909880638, 0.01932840794324875, -0.05715266242623329, 0.05669892206788063, 0.04319194331765175, -0.034656692296266556, -0.04257381334900856, 0.021419471129775047, -0.00048785979743115604, -0.03225237876176834, 0.01951289176940918, -0.010854965075850487, 0.02271801233291626, -0.01852324977517128, 0.02300727553665638, -0.02215808816254139, -0.1359812617301941, -0.06335046887397766, -0.32764995098114014, -0.042558662593364716, -0.022267252206802368, -0.04656257480382919, 0.07054119557142258, -0.044114816933870316, 0.01726958341896534, -0.0507490411400795, 0.015345381572842598, -0.07143256068229675, -0.01741507276892662, -0.0712117999792099, 0.03977634012699127, 0.01838740147650242, 0.000700941018294543, 0.0795719102025032, -0.07299137115478516, 0.0012045709881931543, 0.013934184797108173, 0.03367801383137703, -0.027293048799037933, -0.0002342673105886206, 0.029844483360648155, -0.01585235260426998, -0.07602262496948242, 0.04351159557700157, 0.15733227133750916, 0.07804906368255615, 0.042116064578294754, -0.024816349148750305, -0.017035970464348793, 0.03367290645837784, -0.029467854648828506, -0.020856210961937904, 0.029790746048092842, 0.025529030710458755, 0.01913466490805149, 0.0058149113319814205, 0.023961586877703667, 0.0026618537958711386, -0.03983234614133835, 0.08526147156953812, -0.005792529322206974, -0.007057297043502331, -0.06655522435903549, 0.0476640909910202, -0.005212878808379173, 0.0014794319868087769, 0.02509061060845852, 0.0035883679520338774, -0.0034053840208798647, 0.09968794882297516, -0.009443854913115501, -0.012800654396414757, 0.017886284738779068, -0.0187649205327034, -0.08772777765989304, 0.0018045093165710568, -0.027462594211101532, 0.060521334409713745, 0.0008334689773619175, 0.003565740305930376, 0.013604550622403622, -0.06745652109384537, -0.03676746040582657, 0.023561712354421616, 0.0016161013627424836, 0.006209512706845999, 0.028334252536296844, -0.004200158640742302, -0.04462268203496933, 0.07479602098464966, 0.03217265382409096, -0.06981309503316879, 0.03480875492095947, 0.029124001041054726, 0.01625669375061989, 0.0015712573658674955, -0.019026540219783783, 0.010510181076824665, 0.03452003002166748, -0.04824176803231239, 0.026905717328190804, -0.03079589270055294, -0.06022276356816292, 0.014974057674407959, -0.027414366602897644, -0.0332488939166069, 0.08923622965812683, -0.039658889174461365, -0.03717990219593048, 0.015791863203048706, -0.07347436249256134, 0.015056048519909382, 0.05330458655953407, 0.0017686226638033986, -0.27125832438468933, 0.039479684084653854, 0.022025976330041885, 0.06590726226568222, -0.0187989491969347, 0.05470801889896393, 0.01541165541857481, -0.014848310500383377, -0.01187155395746231, 0.018570315092802048, 0.02542192116379738, -0.024325504899024963, 0.002572031691670418, 0.010958632454276085, -0.03980656713247299, 0.013534040190279484, 0.02823716402053833, 0.010608658194541931, -0.04933552071452141, 0.01659558154642582, -0.014613142237067223, 0.05262226611375809, 0.13339848816394806, 0.047833554446697235, -0.029571566730737686, -0.06242862343788147, -0.04820442199707031, 0.015819542109966278, 0.015153278596699238, 0.010678255930542946, 0.004855860490351915, -0.013357778079807758, -0.009740705601871014, 0.009130938909947872, 0.014477821066975594, -0.04805399477481842, -0.020255768671631813, 0.007552646566182375, 0.09495771676301956, -0.03232447803020477, -0.042179737240076065, 0.055920109152793884, 0.054160233587026596, 0.02902478538453579, 0.0535847544670105, -0.010279103182256222, 0.014184512197971344, -0.016947688534855843, -0.06269649416208267, 0.0325654000043869, -0.05676615610718727, -0.004407280124723911, 0.013036602176725864, 0.00997245218604803, 0.03979674354195595, 0.042278409004211426, 0.026598434895277023, 0.004533546045422554, -0.02455802448093891, -0.029124107211828232, -0.01733209192752838, -0.0397648885846138, 0.06249811127781868, -0.0198700949549675, 0.015575087629258633], "e099c9b1-f180-495c-8a90-4acf0eed27f4": [-0.05988933891057968, -0.01448828261345625, 0.028080468997359276, 0.08066990971565247, 0.02637961134314537, -0.0027567201759666204, 0.036149654537439346, 0.01218954287469387, -0.017908873036503792, -0.0011177841806784272, 0.041725751012563705, -0.030928021296858788, -0.014800852164626122, -0.0448320135474205, -0.0014477040385827422, -0.0068944646045565605, 0.006445132661610842, -0.06602630019187927, -0.10384555160999298, 0.03605484962463379, 0.01992936246097088, -0.04693567380309105, 0.0664965882897377, 0.028118744492530823, -0.014140655286610126, 0.03736385330557823, -0.01116748247295618, 0.004450131673365831, -0.005300059448927641, -0.12655530869960785, 0.0260844174772501, -0.004709253087639809, -0.031247058883309364, -0.024472489953041077, 0.03208676353096962, 0.07613804191350937, 0.04236225038766861, -0.031941063702106476, -0.021552249789237976, 0.03518878296017647, 0.014183412306010723, -0.022947877645492554, -0.028611542657017708, -0.004400372505187988, 0.01376540306955576, -0.010751888155937195, 0.025636795908212662, 0.0068396772257983685, -0.014913277700543404, -0.029105955734848976, -0.035585351288318634, -0.02890433371067047, -0.023417919874191284, -0.0167300533503294, -0.03136122599244118, 0.023127783089876175, 0.031205208972096443, 0.02626241371035576, 0.025120407342910767, -0.024062348529696465, 0.025729527696967125, 0.01087530329823494, -0.05121795833110809, 0.06251118332147598, 0.0720042809844017, 0.02744319662451744, -0.07486838102340698, -0.04325477033853531, -0.00560218608006835, -0.010095318779349327, -0.020153583958745003, 0.014102975837886333, -0.01097157783806324, 0.03712664917111397, -0.02317878045141697, 0.0269321221858263, 0.04496658220887184, 0.011440528556704521, 0.026845689862966537, 0.034117091447114944, -0.09580306708812714, 0.013401210308074951, -0.022774603217840195, 0.019350485876202583, -0.007813621312379837, -0.024431977421045303, -0.0023684243205934763, 0.023505045101046562, 0.029179193079471588, -0.04540934041142464, 0.021859383210539818, -0.044858817011117935, 0.031705740839242935, -0.025359632447361946, 0.02360927313566208, 0.036763377487659454, -0.03317241370677948, -0.04200227931141853, -0.006326635368168354, 0.3885692059993744, 0.03945394605398178, -0.028725948184728622, 0.004809865262359381, 0.03459078446030617, 0.009904472157359123, 0.025668399408459663, 0.006083477288484573, -0.10789003223180771, 0.03372758626937866, 0.06577640026807785, 0.014099104329943657, -0.004662696272134781, 0.07025032490491867, -0.006365885026752949, 0.06501355767250061, 0.013356388546526432, 0.0345291830599308, -0.04932115972042084, -0.046701040118932724, 0.07106092572212219, 0.00021666653628926724, 0.007700332906097174, -0.024967551231384277, -0.013603733852505684, 0.026836946606636047, -0.01571587659418583, 0.02729186974465847, 0.06149204820394516, -0.018653595820069313, -0.020790347829461098, 0.07140497863292694, -0.061016496270895004, -0.009450646117329597, 0.021815510466694832, 0.03512340039014816, 0.032634422183036804, -0.005359700880944729, 0.006612347438931465, 0.04208012670278549, -0.043334025889635086, -0.02450980804860592, -0.11461476236581802, -0.020927410572767258, -0.013827087357640266, -0.023565728217363358, 0.029624687507748604, 0.07791165262460709, -0.0008475427748635411, 0.0223994180560112, 0.08544642478227615, -0.016905076801776886, -0.023693351075053215, -0.017619863152503967, -0.006589082535356283, 0.01003370899707079, -0.0019212295301258564, -0.013701883144676685, 0.1426595002412796, 0.0008410568698309362, 0.03476165980100632, 0.09111044555902481, -0.02165214531123638, 0.00013518420746549964, -0.03340379521250725, 0.059042755514383316, -0.008209184743463993, -0.03465668484568596, -0.021456414833664894, -0.01325952634215355, 0.012373501434922218, -0.00639092642813921, 0.04094436764717102, -0.09889271855354309, 0.0452171266078949, -0.027256419882178307, -0.03537634387612343, -0.06417085230350494, 0.0012084264308214188, 0.005938883405178785, 0.04945334047079086, -0.022149326279759407, -0.05687924474477768, 0.007846927270293236, 0.07958665490150452, -0.08626322448253632, -0.07756134867668152, -0.0003043939941562712, 0.013150917366147041, 0.03746865689754486, -0.033943623304367065, 0.03501268848776817, 0.02856268174946308, -0.03476494923233986, 0.04673410952091217, -0.06803331524133682, -0.04280102252960205, 0.0533544197678566, -0.005969894118607044, -0.03836631029844284, -0.02400299720466137, -0.04043205827474594, -0.02473866567015648, -0.04315295070409775, 0.08278896659612656, -0.042957209050655365, 0.040868863463401794, -0.004472477827221155, -0.0935320034623146, 0.0782277062535286, 0.04674515128135681, -0.03295020014047623, -0.04676084220409393, -0.03395840525627136, 0.01475074514746666, -0.054103583097457886, 0.011799927800893784, 0.015100779943168163, -0.013417667709290981, 0.015326564200222492, 0.006197299808263779, -0.04069749638438225, -0.10071520507335663, -0.04896032065153122, -0.32722094655036926, -0.04232439771294594, -0.046266309916973114, -0.038495659828186035, 0.06564489752054214, -0.0560452938079834, -0.00041803266503848135, -0.03853350505232811, 0.019022179767489433, -0.04857261851429939, -0.039256736636161804, -0.020129293203353882, 0.05669620260596275, 0.03325800970196724, -0.028999721631407738, 0.06766646355390549, -0.054163720458745956, -0.02174377255141735, 0.03624788671731949, 0.0402526929974556, -0.034955818206071854, 0.025794409215450287, 0.04370548948645592, -0.049497950822114944, -0.027442963793873787, 0.03693100064992905, 0.15146660804748535, 0.10607568919658661, 0.03219892457127571, 0.023850299417972565, 0.010350926779210567, 0.03812117129564285, -0.023215195164084435, -0.02012648619711399, 0.023647785186767578, 0.02462230622768402, -0.027787575498223305, 0.008752421475946903, -0.009749333374202251, -0.0083921542391181, -0.030557945370674133, 0.06699036806821823, -0.000508203636854887, -0.03871908038854599, -0.0737735852599144, 0.042393140494823456, -0.011014201678335667, 0.002466714009642601, 0.0343545563519001, 0.0031669349409639835, -0.015372248366475105, 0.10236501693725586, -0.006790015380829573, 0.0110850278288126, -0.019516510888934135, -0.02271294966340065, -0.053921010345220566, 0.017757857218384743, -0.020996225997805595, 0.07628907263278961, 0.010280841961503029, 0.008049368858337402, 0.0076434556394815445, -0.05827790126204491, -0.025067174807190895, 0.022234423086047173, -0.0030031767673790455, -0.013095238246023655, 0.027903124690055847, 0.028255287557840347, -0.02389318309724331, 0.10807988792657852, 0.021216141059994698, -0.08616291731595993, 0.008112890645861626, 0.032287441194057465, 0.007663873489946127, -0.009143396280705929, -0.029321862384676933, 0.03013976663351059, 0.021051231771707535, -0.019332140684127808, 0.007277593482285738, -0.015933960676193237, -0.037802908569574356, -0.0014547473983839154, -0.03345995396375656, -0.04588731750845909, 0.09254545718431473, -0.02372196689248085, -0.032342784106731415, 0.004183948505669832, -0.07190607488155365, 0.0038579567335546017, 0.014747551642358303, 0.0026640561409294605, -0.2839046120643616, 0.05067918822169304, 0.007021460682153702, 0.06642168015241623, 0.007901251316070557, 0.06783964484930038, -0.0064051710069179535, 0.0008361874497495592, -0.02153753861784935, 0.009660983458161354, 0.05147593468427658, -0.04136187210679054, 0.015604325570166111, 0.0007910756394267082, -0.05791586637496948, 0.014090941287577152, 0.025279147550463676, -0.011883635073900223, -0.04692654311656952, 0.03384583815932274, 0.02755407802760601, 0.04471533000469208, 0.1443713754415512, 0.047172997146844864, -0.028801491484045982, -0.03954167291522026, -0.04768765717744827, 0.052506979554891586, -0.0008570589707233012, 0.006974024698138237, 0.009091055952012539, 0.001954667968675494, -0.012178507633507252, 0.010394111275672913, 0.013778545893728733, -0.053297266364097595, -0.05523667484521866, -0.04960373416543007, 0.07547183334827423, -0.017287034541368484, -0.042147934436798096, 0.05313941463828087, 0.0003364107687957585, 0.04682832211256027, 0.07719552516937256, 0.006378092337399721, 0.03002903237938881, -0.042629655450582504, -0.032113973051309586, 0.007843149825930595, -0.04986213892698288, -0.02165115252137184, 0.00757877342402935, 0.01005396619439125, 0.04517148435115814, 0.04144546762108803, -0.001256851595826447, -0.013612412847578526, 0.014645768329501152, -0.01871676929295063, -0.009621457196772099, -0.021713921800255775, 0.03882427141070366, -0.013591259717941284, -0.038600221276283264], "9a3f19c3-bc9a-461b-ac98-2cc578a9fed4": [-0.07255878299474716, -0.029131408780813217, 0.06870106607675552, 0.06886184215545654, -0.015945572406053543, 0.06096066161990166, 0.0005156452534720302, -0.040931638330221176, -0.012665403075516224, 0.0026810518465936184, 0.024260016158223152, -0.03192813694477081, -0.03411087766289711, -0.025671139359474182, 0.01189765427261591, 0.0585150420665741, -0.026402538642287254, -0.02732226997613907, -0.11232957243919373, 0.047766320407390594, 0.00031097454484552145, -0.012697995640337467, 0.05767764896154404, 0.009861323982477188, -0.018865903839468956, 0.008345568552613258, 0.006623621564358473, -0.04566926881670952, -0.008467141538858414, -0.144311785697937, 0.0161475520581007, 0.0325426310300827, 0.005506700370460749, -0.015366439707577229, 0.018580682575702667, 0.10019321739673615, 0.02061500959098339, 0.00819099135696888, 0.011636549606919289, 0.035247545689344406, 0.025922812521457672, 0.009344714693725109, -0.003567841136828065, -0.019541773945093155, 0.06415516138076782, -0.014157618395984173, 0.021663539111614227, 0.006982654333114624, -0.017249820753932, -0.004602587781846523, -0.07820481061935425, -0.03199088200926781, -0.02306355908513069, 0.03201086446642876, 0.0061632189899683, 0.029688693583011627, 0.05002279952168465, 0.015245446935296059, 0.06375735998153687, 0.031025966629385948, 0.0446813702583313, 0.00776194641366601, -0.04436945542693138, 0.03274054452776909, 0.12285839021205902, 0.017697660252451897, -0.07837587594985962, -0.04626227170228958, 0.058499764651060104, 0.06716615706682205, 0.008564598858356476, 0.022713148966431618, -0.0021636185701936483, 0.0471167117357254, 0.024140136316418648, 0.01783105731010437, 0.020993672311306, 0.002124485094100237, 0.04839984327554703, 0.007151233498007059, -0.06442496925592422, -0.011064334772527218, -0.06365028768777847, 0.04544728994369507, -0.032065507024526596, -0.06909625977277756, -0.0024954923428595066, -0.025724684819579124, -0.02170443721115589, -0.009605311788618565, 0.012002784758806229, -0.030239541083574295, -0.03824014589190483, -0.022208645939826965, -0.032850705087184906, -0.03692193329334259, -0.0490434467792511, -0.017951402813196182, 0.022578828036785126, 0.39731472730636597, 0.02997984178364277, -0.006261884234845638, 0.05132218822836876, 0.028232770040631294, -0.03050663135945797, 0.022072866559028625, 0.0011640132870525122, -0.058418769389390945, 0.042542919516563416, 0.07944546639919281, 0.030166884884238243, -0.005516796372830868, 0.034945882856845856, 0.019467279314994812, 0.03151581808924675, -0.013803188689053059, 0.048157233744859695, -0.029396902769804, -0.03427755832672119, 0.01152559369802475, 0.03312329575419426, 0.0686659961938858, -0.016175320371985435, -0.05012068152427673, 0.025714363902807236, -0.008899969048798084, 0.019188961014151573, 0.03821563348174095, -0.010478550568223, -0.046205632388591766, 0.052247822284698486, -0.06105852872133255, 0.030702650547027588, 0.0016474728472530842, -0.0077636209316551685, 0.003183862194418907, 0.04234975203871727, 0.019305989146232605, 0.0588378868997097, -0.04234188795089722, -0.0414385125041008, -0.09899332374334335, -0.04456661641597748, -0.034231532365083694, 0.011441174894571304, 0.07499189674854279, 0.04368850216269493, 0.02196868695318699, 0.04488908872008324, 0.02681809477508068, 0.016231756657361984, 0.014738528989255428, -0.019420113414525986, -0.04153699800372124, 0.040484629571437836, -0.028341684490442276, 0.0027193576097488403, 0.10403789579868317, 0.033761586993932724, 0.006587947253137827, 0.053332626819610596, -0.00623017642647028, 0.030531244352459908, -0.033494774252176285, 0.07616593688726425, -0.024018263444304466, -0.03697706758975983, -0.03556717187166214, -0.02338317036628723, -0.004048412665724754, 0.0391252338886261, 0.01910291239619255, -0.09371904283761978, 0.061934590339660645, -0.031180568039417267, -0.04770643636584282, -0.060008369386196136, -0.01952589862048626, -0.05335569009184837, 0.016793038696050644, -0.009573779068887234, -0.05024334043264389, 0.03810546174645424, 0.05004066973924637, -0.07186146080493927, -0.062582828104496, 0.005900590680539608, -0.013447633944451809, 0.014645276591181755, -0.014022991992533207, 0.019203640520572662, 0.024709399789571762, -0.05584317445755005, -0.01895986497402191, -0.04043998941779137, -0.061744559556245804, -0.007764292415231466, 0.02924618124961853, -0.0414927713572979, 0.006871460005640984, -0.02230830304324627, -0.004682293627411127, -0.04942398518323898, 0.051527369767427444, -0.0037198669742792845, 0.020039865747094154, 0.04139311984181404, -0.05247432738542557, 0.11283868551254272, 0.040137629956007004, -0.035048969089984894, -0.0502387210726738, -0.0028765511233359575, -0.002271743258461356, -0.006539735943078995, 0.02603803388774395, 0.016100388020277023, 0.022379599511623383, -0.03349585458636284, 0.012388625182211399, -0.01112443208694458, -0.1327974945306778, -0.06083370000123978, -0.3204277753829956, 0.0066716307774186134, 0.016142677515745163, -0.05497357249259949, -0.0013459146721288562, -0.07003463804721832, -0.02122586779296398, -0.06338895857334137, 0.01856030337512493, -0.072459876537323, 0.02031833305954933, -0.08162524551153183, 0.0025838534347712994, 0.026446135714650154, -0.05484479293227196, 0.016837745904922485, -0.026127200573682785, 0.02007347345352173, 0.0028789574280381203, 0.0607081763446331, 0.021279560402035713, 0.02438829280436039, 0.003014222253113985, -0.048167258501052856, -0.07219939678907394, -0.02167627029120922, 0.14755381643772125, 0.045585740357637405, 0.01729927770793438, -0.046832188963890076, 0.0009332436602562666, 0.02406707964837551, -0.039999570697546005, -0.03447906672954559, 0.009816200472414494, 0.015674710273742676, 0.013785921968519688, -0.021145863458514214, -0.0006913336692377925, -0.006654942408204079, -0.05337692052125931, 0.0884258970618248, -0.02509831264615059, -0.022245438769459724, -0.0595986507833004, 0.00845684390515089, -0.018507087603211403, 0.008050655014812946, 0.036041319370269775, 0.003884995123371482, 0.004274103324860334, 0.04455869644880295, -0.03250540420413017, -0.05393129214644432, -0.020634010434150696, -0.025330428034067154, -0.05872350558638573, 0.012693743221461773, -0.014511330984532833, 0.027172956615686417, -0.04788316413760185, -0.03436020761728287, 0.018031777814030647, -0.070946604013443, -0.022727983072400093, -0.0027877206448465586, -0.01835605688393116, -0.0013562120730057359, -0.0302817914634943, -0.030241670086979866, 0.005626410245895386, 0.026433022692799568, 0.011397470720112324, -0.024421092122793198, 0.0702766478061676, -0.005403677001595497, -7.836904842406511e-05, 0.035611025989055634, -0.04908372089266777, 0.0011024362174794078, 0.0350433774292469, -0.054337482899427414, -0.013974206522107124, -0.00403182627633214, -0.01313107367604971, -0.03585025668144226, -0.014446989633142948, -0.05145856738090515, 0.0876491516828537, 0.01164140086621046, 0.007799874059855938, 0.04078604280948639, -0.02999911643564701, 0.0025716356467455626, 0.03687167167663574, -0.021342378109693527, -0.28493618965148926, 0.030271291732788086, 0.03329860791563988, 0.05617474764585495, 0.0025892811827361584, 0.08493609726428986, 0.04348687455058098, 0.03474586084485054, 0.04834490641951561, -0.0033039057161659002, 0.049912285059690475, -0.03350019454956055, 0.02396610751748085, 0.010835837572813034, -0.03264662250876427, 0.036699678748846054, 0.0019150710431858897, 0.06343358010053635, -0.04195099696516991, 0.03059578128159046, 0.024395404383540154, 0.0602981336414814, 0.131458580493927, 0.06967521458864212, -0.0688629299402237, -0.03059052862226963, -0.035539548844099045, 0.0155708659440279, 0.02326924540102482, 0.01072204764932394, 0.01409749686717987, 0.027518615126609802, 0.01948840357363224, 0.023964807391166687, 0.020076630637049675, -0.04176168516278267, 0.024334395304322243, 0.042374420911073685, 0.07131805270910263, 0.011723414063453674, -0.01720980927348137, -0.030555743724107742, 0.03235573694109917, 0.02693988010287285, 0.0742880254983902, -0.015494329854846, 0.03897816315293312, 0.029824329540133476, -0.09043098241090775, 0.02982020191848278, -0.05390588566660881, -0.02502354606986046, 0.04947385936975479, 0.018116658553481102, 0.05048298463225365, -0.008000442758202553, -0.03318442776799202, -0.010308215394616127, -0.03889674320816994, -0.043667763471603394, -0.00392524991184473, -0.04795210808515549, 0.0330965556204319, -0.04677300900220871, 0.016222966834902763], "fcb9a991-6838-4188-84f5-e9c96fceec63": [-0.07585647702217102, -0.011386219412088394, 0.06977654248476028, 0.016731182113289833, -0.03677748143672943, 0.01375834085047245, 0.051073119044303894, -0.02064478024840355, 0.0059250532649457455, -0.0353090763092041, 0.004304219037294388, 0.013476742431521416, -0.04515963792800903, -0.056905683130025864, 0.01666843518614769, 0.017712797969579697, -0.03056771494448185, -0.05016123503446579, -0.10162276774644852, 0.05304916948080063, -0.007094784639775753, -0.008481627330183983, 0.010754447430372238, 0.006451972760260105, -0.08570077270269394, 0.03506006300449371, 0.010347317904233932, -0.019752219319343567, -0.01887592487037182, -0.12365060299634933, -0.005381965544074774, 0.010139456018805504, 0.01710653118789196, -0.01573968678712845, 0.03281125798821449, 0.0502140112221241, 0.013612331822514534, 0.012855743989348412, -0.012863606214523315, 0.006034728139638901, 0.009784235619008541, -0.02466706745326519, 0.009235888719558716, 0.007197778206318617, 0.07159693539142609, -0.04275139048695564, 0.03439176455140114, -0.002026185393333435, -0.003343741176649928, -0.020440343767404556, -0.12302444875240326, -0.005270775873214006, -0.0003206651599612087, -0.03529573604464531, 0.006442876998335123, 0.03352358564734459, 0.07608040422201157, -0.004450690001249313, 0.07552928477525711, 0.01960398443043232, 0.08621817082166672, 0.05040047690272331, -0.0687960535287857, 0.05473916977643967, 0.06018193066120148, 0.0183608066290617, -0.07852320373058319, -0.041099198162555695, 0.04497182369232178, 0.05543094128370285, -0.02465251460671425, 0.009637565352022648, 0.024539660662412643, 0.0029745225328952074, 0.017872201278805733, 0.03208697959780693, -0.008276907727122307, 0.0019729859195649624, 0.026422321796417236, 0.007842013612389565, -0.07577226310968399, -0.016621718183159828, -0.05396619066596031, 0.01739276386797428, -0.0025143991224467754, -0.0455644316971302, 0.060202404856681824, -0.047150690108537674, -0.02741995081305504, -0.005121566355228424, 0.014922473579645157, -0.03064846247434616, -0.06262476742267609, 0.015219991095364094, -0.02739228866994381, -0.015428273007273674, -0.02301817201077938, 0.007922805845737457, 0.022932400926947594, 0.4121648073196411, 0.04376538097858429, -0.026005307212471962, 0.04815379157662392, 0.011653758585453033, -0.02280881255865097, -0.001202097861096263, 0.001337096095085144, -0.05114630609750748, 0.04190050810575485, 0.03447040542960167, 0.004306033719331026, -0.05614635720849037, 0.055334851145744324, -0.010743483901023865, 0.0027436388190835714, 0.05152001976966858, 0.03948739916086197, -0.022603513672947884, -0.0034482143819332123, 0.0011633076937869191, 0.011557715013623238, -0.01608767732977867, -0.03417212888598442, -0.03681248426437378, 0.021547235548496246, -0.011166953481733799, 0.0732155442237854, 0.03675025328993797, 0.03860139474272728, -0.07379792630672455, 0.037942659109830856, -0.07521918416023254, 0.008573750033974648, 0.03158234804868698, 0.026244942098855972, -0.018010901287198067, 0.009695719927549362, 0.005343055352568626, 0.048033930361270905, -0.01277258899062872, -0.019933363422751427, -0.16116569936275482, 0.0008400027872994542, -0.005075229797512293, -0.019516633823513985, 0.016283059492707253, 0.03184037283062935, -0.053381726145744324, -0.00042674687574617565, 0.06500411033630371, 0.04297749325633049, -0.023388853296637535, -0.004193606786429882, -0.014663143083453178, 0.0268247090280056, -0.025161096826195717, 0.0055665443651378155, 0.1437087506055832, 0.019057705998420715, 0.01571330428123474, 0.021293336525559425, -0.03352900967001915, 0.03348248824477196, -0.031673364341259, 0.053896207362413406, -0.013875958509743214, -0.04270685091614723, -0.044841963797807693, -0.07771172374486923, -0.011490659788250923, 0.03272124379873276, 0.036956146359443665, -0.07900471985340118, 0.09839583188295364, -0.028333481401205063, -0.013364128768444061, -0.017395347356796265, -0.020978795364499092, -0.0027617558371275663, 0.004395848140120506, -0.0077542951330542564, -0.03949228301644325, -0.01811983995139599, 0.05520147457718849, -0.03918104246258736, -0.03408205509185791, -0.02474585361778736, -0.03563081845641136, -0.021462349221110344, -0.03203137218952179, 0.05853090062737465, 0.04773993417620659, -0.012201773934066296, 0.04232581704854965, -0.06094427406787872, -0.034001998603343964, -0.01079266332089901, -0.020169343799352646, -0.08793756365776062, -0.033729709684848785, -0.07329405844211578, -0.03542359545826912, -0.06483665853738785, 0.04901571571826935, 0.0276486836373806, 0.02757914736866951, 0.04697496443986893, -0.045972421765327454, 0.09018301963806152, 0.034263793379068375, -0.012768630869686604, 0.00030121696181595325, 0.010630305856466293, -0.0003056888817809522, 0.007859988138079643, -0.023531105369329453, 0.020895404741168022, 0.026433177292346954, -0.047843459993600845, 0.026055658236145973, -0.014603374525904655, -0.08532582223415375, -0.059559863060712814, -0.33233633637428284, 0.02329319529235363, -0.003691646968945861, -0.02403915673494339, 0.048931509256362915, -0.05610987916588783, -0.0002425254206173122, -0.026492414996027946, 0.04805801063776016, -0.0161491297185421, 0.0005316864117048681, -0.05798733979463577, 0.010667694732546806, 0.03359410911798477, -0.004179470706731081, 0.05568855628371239, -0.01901809126138687, 0.04381007328629494, 0.05650635436177254, 0.06599157303571701, 0.021128304302692413, 0.03407030180096626, -0.01269714254885912, -0.010564759373664856, -0.030500167980790138, 0.002173639601096511, 0.14525794982910156, 0.07450402528047562, 0.017504867166280746, -0.02998575195670128, -0.016037434339523315, 0.026486733928322792, -0.048809584230184555, -0.05996421352028847, -0.0023919770028442144, -0.00042746803956106305, 0.05339327082037926, -0.009722006507217884, 0.0476297028362751, -0.0009048796491697431, -0.07019823789596558, 0.06467478722333908, -0.017074011266231537, 0.03844406455755234, -0.019041741266846657, 0.013519860804080963, -0.023243166506290436, -0.0010614200728014112, -0.00630882428959012, 0.006470042280852795, 0.032154928892850876, 0.03862609341740608, -0.009330120868980885, -0.018264951184391975, -0.04021928831934929, -0.022218482568860054, -0.054435938596725464, 0.015636032447218895, -0.052329275757074356, 0.013126024045050144, 0.010227479971945286, 0.03710753843188286, 0.03943556547164917, -0.06279543787240982, -0.04415522515773773, 0.0017910609021782875, -0.0019159694202244282, 0.014374741353094578, 0.026486730203032494, -0.026511752977967262, -0.029751619324088097, 0.035651084035634995, 0.02872382290661335, -0.018248841166496277, 0.043124761432409286, 0.04097841680049896, 0.03694204241037369, -0.01825735904276371, -0.03222174569964409, -0.0024910152424126863, 0.05784817412495613, -0.018299423158168793, -0.015332980081439018, -0.04529082402586937, -0.05386210232973099, -0.020906373858451843, -0.015843970701098442, -0.04057632014155388, 0.07280056923627853, -0.003641052171587944, -0.03980853408575058, 0.02446102350950241, -0.041528891772031784, 0.006451970897614956, -0.008940680883824825, -8.730986155569553e-05, -0.2899956703186035, 0.017464693635702133, 0.04071199893951416, 0.0586969256401062, -0.01833748258650303, 0.024064090102910995, -0.0010792071698233485, 0.0051828850992023945, -0.011976807378232479, 0.009476765058934689, 0.0508723109960556, -0.027162784710526466, -0.034446585923433304, 0.00854041799902916, -0.02838406153023243, 0.03819528594613075, 0.06631225347518921, 0.029895218089222908, -0.07474420964717865, -0.003592242021113634, 0.033142488449811935, 0.06247754395008087, 0.13250458240509033, 0.05824504792690277, -0.024733886122703552, -0.05492980778217316, 0.02669549360871315, 0.022015314549207687, 0.0048513878136873245, 0.01938134804368019, -0.01569216512143612, 0.0073800478130578995, 0.03316958248615265, -0.01572769321501255, 0.02213062159717083, -0.03420932963490486, 0.04591578617691994, 0.0365290641784668, 0.11377114802598953, -0.037571899592876434, -0.03822927549481392, -0.0015374860959127545, 0.027480339631438255, 0.010067831724882126, 0.04852583259344101, 0.005434137769043446, 0.03214895352721214, -0.008692414499819279, -0.06650126725435257, 0.01961032673716545, -0.03350268304347992, -0.01226129848510027, 0.03410462290048599, 0.011628684587776661, 0.006474883295595646, 0.010878192260861397, -0.05747739598155022, 0.009961034171283245, 0.005002277437597513, -0.006233684718608856, -0.013339766301214695, -0.04569490998983383, 0.08538313210010529, 0.01155692245811224, 0.02508726343512535], "2f98b957-934d-4a85-896d-0632239404fb": [-0.059892769902944565, 0.006259982939809561, 0.031065527349710464, 0.04852230101823807, -0.014212592504918575, 0.006581522524356842, 0.0829213410615921, -0.010941344313323498, -0.005602778401225805, -0.041109420359134674, -0.026593737304210663, 0.03309807553887367, -0.02781139314174652, -0.041888415813446045, 0.04253935441374779, 0.030601654201745987, -0.018603624776005745, -0.05761236697435379, -0.10008503496646881, 0.07720034569501877, 0.025004487484693527, -0.036711618304252625, 0.028180807828903198, 0.005113691557198763, -0.0326044000685215, 0.0039148954674601555, 0.02480846643447876, -0.02805124595761299, -0.03603201359510422, -0.11981047689914703, -0.0033659543842077255, -0.008434847928583622, 0.00010174686758546159, -0.013765234500169754, 0.022080548107624054, 0.04875492677092552, 0.05178745463490486, 0.0031116558238863945, 0.0033658312167972326, 0.05172164365649223, 0.03740058094263077, -0.009130783379077911, 0.009448524564504623, -0.0003171948192175478, 0.041657984256744385, -0.00987490639090538, 0.02403833717107773, -2.1798943635076284e-05, 0.015094317495822906, -0.013867413625121117, -0.08497151732444763, -0.01359291560947895, -8.212215470848605e-05, -0.02821243554353714, -0.03493708744645119, 0.027332855388522148, 0.07219529896974564, -0.013746322132647038, 0.057452242821455, 0.04819749668240547, 0.05640477314591408, 0.03951204568147659, -0.0799308642745018, 0.05872029811143875, 0.08053538203239441, -0.01624481752514839, -0.07572749257087708, -0.026454174891114235, 0.006629663053900003, 0.07300230115652084, -0.021125148981809616, 0.010326072573661804, 0.004929850343614817, 0.014302104711532593, 0.007168619427829981, 0.022084522992372513, 0.010969416238367558, -0.0016626627184450626, 0.057134080678224564, 0.01176383811980486, -0.07553872466087341, 0.004506234545260668, -0.07471571117639542, -0.0021501455921679735, -0.01907574012875557, -0.05110466480255127, 0.005576497875154018, -0.014410465955734253, -0.036853086203336716, 0.01580001786351204, 0.018171124160289764, -0.025655513629317284, -0.06131867691874504, 0.019287681207060814, -0.0283814650028944, -0.03762218728661537, -0.022976728156208992, 0.010363463312387466, -0.005072937346994877, 0.38195040822029114, -0.008278336375951767, -0.018482442945241928, 0.011212213896214962, 0.017332226037979126, -0.010890860110521317, 0.022026920691132545, 0.018478475511074066, -0.0649503841996193, -0.01888369210064411, 0.04320843145251274, -0.006129940040409565, -0.03404726833105087, 0.05443494766950607, -0.055752817541360855, 0.06730934977531433, 0.023454338312149048, 0.07922520488500595, -0.02348969876766205, -0.022429686039686203, 0.03445306420326233, 0.06918475776910782, 0.014058690518140793, -0.018753578886389732, -0.0462772436439991, -0.006987627130001783, -0.014271833002567291, 0.048994798213243484, 0.061543598771095276, -0.008783718571066856, -0.04195903614163399, 0.028047582134604454, -0.08614964038133621, -0.019187912344932556, 0.034479912370443344, 0.00704592652618885, 0.0036337964702397585, -0.0018994902493432164, 0.010170746594667435, 0.05835533142089844, -0.011231333948671818, -0.013428078033030033, -0.17545774579048157, 0.0016296342946588993, -0.018118608742952347, -0.008057964034378529, 0.044625554233789444, 0.005286443047225475, -0.030123470351099968, -0.0031173003371804953, 0.019618839025497437, 0.04217289388179779, 0.026617972180247307, 0.00799304898828268, -0.06699208915233612, 0.046959422528743744, -0.027398213744163513, -0.010158408433198929, 0.08501242846250534, 0.005002282559871674, -0.0006960149621590972, 0.06404042989015579, -0.03228558599948883, 0.03596647083759308, -0.03273136168718338, 0.03993745893239975, -0.02219620905816555, -0.0625229999423027, -0.030995411798357964, -0.0671689435839653, -0.030529284849762917, 0.07499255985021591, 0.00923752598464489, -0.11603393405675888, 0.06910889595746994, -0.014952519908547401, 0.012817088514566422, -0.018143197521567345, 0.02609475888311863, 0.024864371865987778, 0.042284730821847916, -0.014031881466507912, -0.026895927265286446, 0.005861593876034021, 0.05467074736952782, -0.036415744572877884, -0.05492687597870827, -0.03390384092926979, -0.046116903424263, -0.015240300446748734, -0.044809337705373764, 0.02298635058104992, 0.041718292981386185, -0.06510110199451447, 0.020505359396338463, -0.047039419412612915, -0.013148576952517033, 0.014550719410181046, 0.0021028295159339905, -0.02504880167543888, -0.0277143195271492, -0.054059289395809174, -0.06286071985960007, -0.08670832216739655, 0.03857440873980522, 0.024990690872073174, 0.03824140876531601, 0.006468798033893108, 0.007781946565955877, 0.11159878969192505, 0.03214962035417557, -0.05231582000851631, -0.00028609877335838974, -0.006908306386321783, 0.018174508586525917, 0.01790810003876686, -0.015467001125216484, 0.025774318724870682, 0.01880548894405365, -0.00920137483626604, 0.03216104954481125, 0.0026695728302001953, -0.02680283784866333, -0.015848051756620407, -0.34390199184417725, 0.006241730879992247, 0.01612664945423603, -0.027742240577936172, 0.042093969881534576, -0.04900999367237091, 0.017574209719896317, -0.03571709990501404, 0.05373245105147362, -0.014233598485589027, -0.021195178851485252, -0.0403548963367939, 0.03258876875042915, 0.04907683655619621, -0.0039332956075668335, 0.013719997368752956, -0.028404394164681435, 0.02995080128312111, 0.07740162312984467, 0.04855111613869667, 0.03192485496401787, 0.04398632422089577, 0.021090131253004074, -0.02444179728627205, -0.04448721185326576, -0.026471011340618134, 0.14308522641658783, 0.0545584075152874, 0.050316859036684036, -0.06500237435102463, 0.030732808634638786, 0.03439735248684883, -0.014184991829097271, -0.05220412835478783, 0.03871181234717369, 0.012367797084152699, 0.012371357530355453, -0.0272968802601099, 0.04869644716382027, 0.009717032313346863, -0.07547962665557861, 0.09151842445135117, -0.010026560164988041, 0.019346127286553383, -0.03141426295042038, 0.0339849479496479, -0.03935912624001503, -0.027959885075688362, -0.03266479820013046, 0.01732688955962658, 0.01442739088088274, 0.0413924865424633, -0.02123318798840046, -0.0371827557682991, -0.013551462441682816, -0.040590912103652954, -0.04263948276638985, -0.030044861137866974, -0.059145066887140274, 0.0604749470949173, -0.029717352241277695, 0.026405323296785355, 0.001750496099703014, -0.045210812240839005, -0.024301698431372643, 0.029151551425457, -0.004595967009663582, -0.014441530220210552, -0.0004590192693285644, 0.0012684486573562026, -0.033938486129045486, 0.054580207914114, -0.014544429257512093, -0.005692458711564541, 0.031426459550857544, 0.029429437592625618, 0.008054719306528568, -0.003271934110671282, -0.08476666361093521, -0.020320815965533257, 0.040332477539777756, -0.049623534083366394, 0.02322635054588318, -0.033756788820028305, -0.01828063651919365, -0.0326242558658123, -0.030787836760282516, -0.0410497821867466, 0.042799316346645355, 0.0259880218654871, -0.05016595870256424, 0.029412267729640007, -0.05279980227351189, 0.017956726253032684, -0.017613878473639488, -0.009335345588624477, -0.2911052405834198, -0.01021826732903719, 0.004027060233056545, 0.08404870331287384, 0.02653350867331028, 0.011283894069492817, -0.029252639040350914, -0.0014333664439618587, -0.010125335305929184, 0.004174438305199146, 0.07686389237642288, 0.011499868705868721, -0.0051615675911307335, 0.03816898912191391, -0.022670360282063484, 0.020474491640925407, 0.0513073205947876, 0.0642143040895462, -0.06997476518154144, -0.034293342381715775, 0.02592099830508232, 0.051731258630752563, 0.11769058555364609, 0.036823827773332596, -0.01648619771003723, -0.024719296023249626, 0.008502661250531673, 0.02355480194091797, 0.01443745382130146, 0.006078009493649006, 0.0031896699219942093, -0.0334591306746006, 0.012570099905133247, 0.014673068188130856, 0.05015357583761215, -0.09937501698732376, 0.043742284178733826, 0.014495746232569218, 0.1069473996758461, -0.02591334655880928, -0.06469585001468658, -0.008771589025855064, 0.0041177282109856606, 0.02852005697786808, 0.044662956148386, -0.03213191404938698, 0.058238882571458817, -0.034879155457019806, -0.06709116697311401, 0.033238448202610016, -0.017249567434191704, -0.018431296572089195, 0.04664234444499016, 0.0039043216966092587, 0.03264571726322174, 0.010470986366271973, -0.019375398755073547, 0.02718847058713436, -0.0379934124648571, -0.013544234447181225, -0.06602916866540909, 0.007832908071577549, 0.12087178975343704, 0.005662743933498859, 0.021262168884277344], "ee0235fc-aab4-421e-a54d-615fc84de98f": [-0.0371532216668129, 0.022554807364940643, 0.015385989099740982, 0.07488036900758743, -0.018683306872844696, -0.009344124235212803, 0.09813477843999863, 0.012753749266266823, -0.020870236679911613, -0.02976408787071705, -0.020376676693558693, 0.006685346364974976, -0.013542931526899338, -0.02185564488172531, -0.022700566798448563, 0.012087223120033741, -0.00835397932678461, -0.036336131393909454, -0.12483935058116913, 0.04154793918132782, -0.0011410980951040983, -0.03168075904250145, 0.05233899876475334, 0.0187328290194273, 0.015012478455901146, 0.01945817843079567, 0.008134127594530582, 0.0019815226551145315, -0.019809558987617493, -0.12938277423381805, -0.009911250323057175, -0.006871166173368692, 0.021826989948749542, -0.030840158462524414, 0.05399424210190773, 0.06104528531432152, 0.06086320802569389, -0.03194054961204529, -0.03117140382528305, 0.07781769335269928, 0.015820791944861412, -0.03129485249519348, 0.024993525817990303, 0.004403262864798307, 0.042323969304561615, 0.01043850276619196, 0.05925441533327103, -0.03243148326873779, 0.0019410442328080535, -0.03070705011487007, -0.04000227525830269, -0.07126159220933914, 0.0017505473224446177, -0.01837119832634926, -0.014309198595583439, 0.05746373534202576, 0.06687606871128082, -0.0065265982411801815, 0.07284548878669739, 0.03856786713004112, -0.007065311074256897, 0.054274141788482666, -0.06054457649588585, 0.06816983222961426, 0.07726481556892395, -0.008638394996523857, -0.08364585041999817, -0.03168204054236412, 0.03252392262220383, 0.06299673765897751, -0.012044895440340042, -0.0022997690830379725, 0.05395300313830376, 0.036492012441158295, 0.019270777702331543, 0.02915622666478157, 0.06761215627193451, -0.008203945122659206, 0.03584969788789749, 0.01684591732919216, -0.07940752059221268, 0.006933695636689663, -0.07600894570350647, -0.010710673406720161, -0.03275260329246521, -0.035668838769197464, 0.006242695730179548, -0.028067920356988907, -0.031576987355947495, -0.017961198464035988, -0.01390755083411932, -0.03099582903087139, -0.04198094457387924, -0.012608661316335201, -0.023005185648798943, -0.03409596160054207, -0.005210936535149813, 0.02386362850666046, -0.026585696265101433, 0.3875126540660858, -0.00869287084788084, -0.019701018929481506, 0.0005910376785323024, 0.017394419759511948, -0.023603640496730804, 0.0030573783442378044, 0.023517927154898643, -0.07107239216566086, -0.016844334080815315, 0.03553846850991249, -0.01642594113945961, -0.04456276819109917, 0.027511421591043472, -0.03916586935520172, 0.06552960723638535, -0.0007461145869456232, 0.0925145223736763, -0.03831637278199196, 0.012785875238478184, -0.019288528710603714, 0.04840676486492157, 0.021084338426589966, -0.006660860497504473, -0.07149375230073929, 0.02095578797161579, -0.01785632036626339, 0.013893156312406063, 0.06155285984277725, -0.030719241127371788, -0.04440963640809059, 0.047080736607313156, -0.08022302389144897, 0.015076981857419014, 0.037203237414360046, 0.023873979225754738, 0.009815641678869724, -0.011412519961595535, 0.02799880877137184, 0.08179265260696411, -0.059839848428964615, -0.015210235491394997, -0.15862064063549042, -0.05828143283724785, 0.006406992208212614, 0.0021144491620361805, -0.0001299033174291253, 0.02847592905163765, 0.0241070706397295, -0.00141569459810853, 0.05269131436944008, 0.038628771901130676, 0.020550601184368134, -0.03294346109032631, -0.004137726500630379, 0.03346054628491402, -0.030285459011793137, -0.02179570496082306, 0.07677756994962692, -0.0001284566824324429, 0.010964558459818363, 0.08497591316699982, -0.03987288475036621, 0.012417458929121494, -0.04681748151779175, -0.0016429801471531391, -0.06579596549272537, -0.03291948139667511, -0.01998666673898697, -0.0533510223031044, -0.021753812208771706, 0.0634746178984642, 0.02298062853515148, -0.11496617645025253, 0.03921456262469292, -0.0590565949678421, -0.025922123342752457, -0.03817733749747276, 0.029181508347392082, 0.0009749150485731661, 0.06725022941827774, -0.022631222382187843, -0.01276568602770567, 0.027903886511921883, 0.07154101878404617, -0.040922604501247406, -0.0410025529563427, -0.004457781556993723, -0.03680912405252457, -0.023599248379468918, -0.028732268139719963, 0.0432249940931797, 0.0016839879099279642, -0.020083822309970856, 0.018312208354473114, -0.04324603080749512, -0.016970524564385414, 0.014303253963589668, 0.0467032752931118, -0.01931622251868248, -0.005500717554241419, -0.05531537905335426, -0.04350263252854347, -0.07822544872760773, 0.057318009436130524, 0.06981544196605682, -0.0038045435212552547, 0.027903975918889046, 0.013273808173835278, 0.10636405646800995, 0.023796280845999718, -0.047544244676828384, -0.015774361789226532, 0.0021901195868849754, 0.0025119150523096323, 0.007534142583608627, 0.022533560171723366, 0.0008173853857442737, 0.059993114322423935, -0.017134346067905426, 0.005546984728425741, 0.027062442153692245, -0.07326460629701614, -0.02467907778918743, -0.31733137369155884, -0.01716325432062149, 0.00257781520485878, -0.07113717496395111, 0.03999864682555199, -0.07301904261112213, 0.02306135930120945, -0.0738280862569809, 0.03882434964179993, -0.03159457817673683, -0.02029920369386673, -0.004912576172500849, 0.012028036639094353, 0.009172503836452961, -0.021749982610344887, 0.046068232506513596, -0.01138278841972351, -0.01283602137118578, 0.026689032092690468, 0.07028909772634506, 0.01676146499812603, 0.03377813100814819, 0.03363203629851341, -0.045824214816093445, -0.02824513614177704, 0.0109517527744174, 0.14199896156787872, 0.026783935725688934, 0.07413027435541153, -0.04099056497216225, -0.020484672859311104, 0.030669663101434708, -0.05332643538713455, -0.004286943469196558, 0.03452761471271515, 0.06866081804037094, 0.01839596778154373, -0.013857197016477585, -0.003950835205614567, 0.03598049655556679, -0.057725150138139725, 0.043422892689704895, -0.021392466500401497, 0.008843999356031418, -0.002000144449993968, 0.015239879488945007, -0.02606278285384178, -0.028759662061929703, -0.02614394947886467, 0.03387841582298279, 0.021096624433994293, 0.06959157437086105, -0.059734735637903214, -0.06981717795133591, -0.006858012638986111, -0.007658153306692839, -0.051513344049453735, -0.01339480560272932, -0.060420483350753784, 0.07846401631832123, -0.030985435470938683, -0.031746312975883484, -0.020907757803797722, -0.052862536162137985, -0.0027587192598730326, 0.054804664105176926, -0.006369526498019695, -0.014148824848234653, -0.007749740034341812, 0.012697456404566765, -0.0586317740380764, 0.08507325500249863, 0.02417025901377201, -0.05791148915886879, -0.01536630466580391, 0.024561626836657524, 0.03051910363137722, 0.011779469437897205, -0.05259183421730995, -0.03965592011809349, 0.05753536894917488, -0.03522122651338577, 0.029377728700637817, 0.006933856755495071, -0.03883896395564079, -0.012207509018480778, -0.01172631699591875, -0.024463914334774017, 0.06529846042394638, -0.02323376014828682, -0.043423257768154144, 0.043460384011268616, -0.01942099630832672, 0.00397912273183465, 0.02484028786420822, 0.007632753346115351, -0.24637849628925323, 0.012910407967865467, -0.002613983117043972, 0.04960574209690094, 0.008189806714653969, 0.04071025550365448, -0.06813016533851624, -0.05448703467845917, -0.0025400123558938503, -0.027431154623627663, 0.07830632477998734, -0.008064310997724533, 0.021247154101729393, 0.06289338320493698, -0.037085771560668945, 0.03243633359670639, 0.0012750995811074972, 0.05048421397805214, -0.049281395971775055, 0.028826847672462463, 0.052987392991781235, 0.06338221579790115, 0.1408093273639679, 0.05747043341398239, -0.07888965308666229, -0.08261793851852417, -0.03049485757946968, 0.01776415854692459, -0.004999049473553896, 0.03585655987262726, -0.008803796023130417, 0.01698843576014042, -0.030645685270428658, 0.03634519502520561, 0.01503069419413805, -0.0442235991358757, 0.008852842263877392, 0.017831547185778618, 0.0659080222249031, 0.011376484297215939, -0.06394514441490173, 0.01472543179988861, 0.014296209439635277, -0.0027564482297748327, 0.04847359657287598, -0.02701559290289879, 0.029209217056632042, -0.044199634343385696, -0.05335008725523949, 0.021689243614673615, -0.021424228325486183, -0.01387027371674776, 0.027784114703536034, 0.026459630578756332, 0.008367614820599556, -0.0037845689803361893, -0.02026035077869892, 0.04173041135072708, -0.05313495174050331, 0.010626740753650665, -0.055958930402994156, 0.03213988244533539, 0.11178877204656601, 0.0311596542596817, -0.0005195389385335147], "6d3c8af5-02e0-4ea9-911a-c0877855bfdf": [-0.06607715785503387, -0.013734675943851471, 0.031208164989948273, 0.05885019525885582, 0.0019371026428416371, -0.0036889638286083937, 0.06313825398683548, -0.02344883233308792, -0.00743497908115387, -0.036587685346603394, -0.01754426397383213, 0.015993917360901833, 6.589081749552861e-05, -0.05870581045746803, -0.022748878225684166, 0.049648310989141464, -0.03617743030190468, -0.040176402777433395, -0.11639896035194397, 0.03596366569399834, 0.02845192328095436, -0.022834166884422302, 0.01591348461806774, 0.024923598393797874, -0.03695554658770561, 0.021155692636966705, 0.008213616907596588, -0.015402982011437416, -0.034459035843610764, -0.1362805813550949, 0.016080019995570183, -0.01606447622179985, 0.001723063294775784, 0.012017969973385334, -0.020366892218589783, 0.05272029712796211, 0.060050465166568756, 0.017714189365506172, -0.029668081551790237, 0.039855483919382095, 0.03276064246892929, -0.03314109146595001, 0.006227949168533087, -0.0027261560317128897, 0.031829655170440674, 0.022611379623413086, -0.0002978321281261742, -0.007118557579815388, -0.02192644216120243, 0.013673403300344944, -0.0316753052175045, -0.03266998380422592, -0.008791342377662659, -0.007691295351833105, -0.00962775107473135, 0.06501990556716919, 0.05202547460794449, -0.01163411233574152, 0.09421801567077637, 0.032536618411540985, 0.031403832137584686, 0.024194488301873207, -0.08236881345510483, 0.03640267625451088, 0.06784659624099731, 0.0323902890086174, -0.07092990726232529, -0.02081352286040783, -0.03026398830115795, 0.09077843278646469, -0.01323053240776062, 0.023721544072031975, 0.02957644872367382, 0.012225680984556675, -0.011561290360987186, 0.037293944507837296, 0.029644066467881203, -0.05577941611409187, 0.00692170113325119, 0.02138599008321762, -0.07505214214324951, 0.04851887747645378, -0.0667867660522461, -0.010313546285033226, -0.01659920997917652, -0.051292356103658676, -0.009493958204984665, -0.040449559688568115, -0.00949842482805252, -0.006381776183843613, -0.014999553561210632, -0.05483824387192726, -0.04837911203503609, 0.0007459677872247994, -0.02508408948779106, 0.009717053733766079, -0.014060207642614841, 0.035232290625572205, 0.03147578239440918, 0.37497958540916443, -0.004301778506487608, -0.02663138136267662, 0.022158343344926834, 0.017165232449769974, -0.013643855229020119, 0.0009435448446311057, -0.023322518914937973, -0.029151810333132744, 0.01736144721508026, 0.011697622016072273, 8.773051376920193e-05, -0.02624950185418129, 0.013105551712214947, -0.03047979064285755, 0.044315919280052185, 0.0022069034166634083, 0.08262399584054947, -0.03178311139345169, -0.027496304363012314, -0.0036553547251969576, 0.034147683531045914, 0.024747734889388084, -0.011966465972363949, -0.030058356001973152, 0.027284929528832436, -0.027995245531201363, 0.06656196713447571, 0.060214780271053314, -0.0005149557837285101, -0.08503324538469315, 0.06372187286615372, -0.044550541788339615, 7.240987179102376e-05, 0.03470239043235779, 0.00978533923625946, 0.0114309536293149, -0.0023910796735435724, 0.02109723538160324, 0.07480042427778244, -0.02645133249461651, -0.022421887144446373, -0.16725243628025055, -0.06664853543043137, -0.061337653547525406, -0.021919015794992447, 0.04648219421505928, 0.07454907894134521, 0.0016915180021896958, 0.005628110375255346, 0.04286392033100128, 0.04605289176106453, 0.01747225970029831, -0.004436612594872713, -0.00287055317312479, 0.04363362118601799, -0.02154506929218769, -0.006792421918362379, 0.13262256979942322, 0.03541169688105583, 0.009699351154267788, 0.06872501224279404, -0.001607441110536456, 0.04751606658101082, -0.052146900445222855, 0.01451058592647314, -0.02417263574898243, -0.037519942969083786, -0.02598411776125431, -0.03338618203997612, -0.019983135163784027, 0.012589299120008945, -0.014300854876637459, -0.11736670881509781, 0.0297600869089365, -0.011816478334367275, -0.034859299659729004, -0.010905840434134007, 0.014224500395357609, 0.021730264648795128, 0.0543714314699173, -0.021071799099445343, -0.041675910353660583, 0.024468230083584785, 0.05358027666807175, -0.037152551114559174, -0.04836368188261986, 0.008511776104569435, -0.02946029044687748, 0.007484703790396452, -0.052957527339458466, 0.03253188356757164, 0.0444108210504055, -0.029715510085225105, 0.06564826518297195, -0.04717516899108887, -0.049941737204790115, -0.0018115686252713203, 0.004898946266621351, -0.044880084693431854, -0.019275102764368057, -0.04353848844766617, -0.0335451178252697, -0.05865679308772087, 0.01264655590057373, 0.06111747398972511, 0.012627086602151394, 0.03165027126669884, -0.0010925803799182177, 0.06753091514110565, 0.05129893496632576, -0.026426689699292183, -0.029555801302194595, 0.012566105462610722, 0.04723678529262543, -0.007251514587551355, 0.047728411853313446, -0.0195621270686388, 0.06164244934916496, -0.056085679680109024, 0.03632541373372078, -0.01830747164785862, -0.1237102821469307, -0.02869175560772419, -0.30321186780929565, -0.026976171880960464, -0.03450610116124153, -0.07500982284545898, 0.10731927305459976, -0.05407782271504402, -0.011427154764533043, -0.053604643791913986, 0.03226552903652191, -0.048586536198854446, 0.029618140310049057, -0.04494551941752434, 0.030651520937681198, -0.0020704995840787888, -0.03785562515258789, 0.022933747619390488, -0.052796948701143265, 0.015465227887034416, 0.07762423902750015, 0.04638606682419777, 0.012061027809977531, 0.019335594028234482, -0.008769070729613304, -0.021588005125522614, -0.06270413845777512, 0.021738018840551376, 0.15218763053417206, 0.010278002358973026, 0.055197808891534805, -0.0463942252099514, -0.003593652741983533, 0.05818547308444977, 0.009729511104524136, -0.030385401099920273, 0.008020342327654362, 0.017752403393387794, 0.059922486543655396, -0.014552644453942776, -0.016870498657226562, 0.023971684277057648, -0.07030867785215378, 0.0720236673951149, 0.0031189387664198875, 0.016493143513798714, -0.031036214902997017, 0.04419705271720886, -0.042397402226924896, -0.03701005503535271, -0.00767939630895853, 0.0016127816634252667, 0.02056826278567314, 0.07786142081022263, -0.07198654115200043, -0.02780025824904442, 0.006868361495435238, -0.0009355943184345961, -0.0608983188867569, 0.024326641112565994, -0.08847945928573608, 0.06466247886419296, -0.01996048539876938, 0.005733049474656582, 0.0004810089012607932, -0.029265999794006348, -0.029561717063188553, 0.011614494025707245, 0.0019852793775498867, -0.03781823441386223, -0.009986386634409428, 0.028399841859936714, -0.004762888886034489, 0.07845009118318558, -0.03977695107460022, -0.04486321657896042, 0.0006334522622637451, 0.01132787112146616, 0.02134053222835064, -0.017067592591047287, -0.07048071175813675, 0.013665754348039627, 0.07443680614233017, -0.006541493348777294, -0.020409123972058296, -0.019296709448099136, -0.07605394721031189, -0.03038518689572811, 0.017147965729236603, -0.025601109489798546, 0.026357294991612434, -0.015269746072590351, -0.02740340866148472, 0.023712314665317535, -0.04829879850149155, -0.004306090995669365, 0.009951356798410416, 0.00867006927728653, -0.2750946283340454, 0.04123305156826973, 0.0020732530392706394, 0.06868676096200943, -0.007995990104973316, 0.030827520415186882, -0.024291204288601875, -0.0018305238336324692, 0.005396046210080385, 0.01086011715233326, 0.05655154213309288, 0.00652648787945509, 0.019037559628486633, 0.04954095557332039, -0.009526574984192848, -0.0025159541983157396, 0.024918507784605026, 0.07106976211071014, -0.06017449125647545, 0.046780407428741455, 0.0701816976070404, 0.0694236010313034, 0.15329325199127197, 0.08062101155519485, -0.041312966495752335, -0.05788987874984741, -0.05941182002425194, 0.04327185079455376, 0.056533485651016235, 0.026281554251909256, -0.024224864318966866, 0.010306243784725666, -0.009374650195240974, 0.010740303434431553, 0.01737426407635212, -0.04900490492582321, -0.0119773019105196, 0.0014700110768899322, 0.08332917839288712, -0.020678043365478516, -0.056674204766750336, 0.017714323475956917, 0.011008664965629578, 0.023592498153448105, 0.053042300045490265, -0.008298591710627079, 0.048296570777893066, -0.06355038285255432, -0.06850341707468033, 0.02277352474629879, -0.0210836511105299, -0.0437859371304512, 0.0277462936937809, 0.048444245010614395, -0.0011839844519272447, 0.019434411078691483, -0.0022738995030522346, -0.004434875212609768, -0.0012755895731970668, -0.03422333300113678, -0.022841909900307655, -0.03198675066232681, 0.06264344602823257, 0.01870805211365223, 0.03291262686252594], "4d59b79a-1649-4503-be5a-caa5e698aae3": [-0.07172629237174988, -0.0309156384319067, 0.03674343600869179, 0.0424618124961853, -0.017803341150283813, 0.04532579332590103, 0.0431443452835083, -0.0009100947645492852, -0.02725093625485897, -0.013769283890724182, 0.014315454289317131, -0.010760276578366756, -0.017025193199515343, -0.04313226416707039, -0.0016059366753324866, 0.015202781185507774, -0.018406158313155174, -0.01742471195757389, -0.11097033321857452, 0.05610814318060875, 0.03395480662584305, -0.010111633688211441, 0.030448095872998238, -0.006452418398112059, -0.055196087807416916, 0.029014090076088905, 0.017042115330696106, -0.029832005500793457, -0.008812139742076397, -0.1330253630876541, -0.010853376239538193, 0.01319548673927784, -0.033139705657958984, -0.0004233457730151713, 0.0165727436542511, 0.05536717176437378, 0.06250244379043579, -0.0026492506731301546, -0.033999234437942505, 0.03370172902941704, 0.023249804973602295, -0.0229555144906044, -0.02768065221607685, -0.017607832327485085, 0.05017390474677086, 0.005164141301065683, 0.01698867604136467, -0.018459148705005646, 0.021401530131697655, -0.026679154485464096, -0.06802248954772949, -0.03155148774385452, 0.014616687782108784, 0.0007630455074831843, -0.015627790242433548, 0.030006127431988716, 0.07925286144018173, -0.027075860649347305, 0.07907962054014206, 0.00481610931456089, 0.06471000611782074, 0.06370186805725098, -0.032497748732566833, 0.05572560802102089, 0.07563693821430206, 0.009713523089885712, -0.05933178961277008, -0.03486739844083786, 0.023595696315169334, 0.06657726317644119, -0.022710999473929405, -0.008995444513857365, 0.044782742857933044, 0.0392933264374733, -0.024799348786473274, 0.01475655846297741, 0.08216331899166107, -0.037404388189315796, 0.031112227588891983, 0.04180286452174187, -0.09153620898723602, -0.003618871094658971, -0.05772383138537407, 0.028781823813915253, -0.03181302919983864, -0.03223906457424164, 0.013589399866759777, -0.062467060983181, -0.03475993499159813, 0.007235888857394457, 0.013454459607601166, -0.04378442466259003, 0.010323088616132736, -0.01790029928088188, -0.02821251191198826, 0.0207590963691473, -0.03505970910191536, -0.005232328083366156, -0.014752914197742939, 0.38836824893951416, 0.026668787002563477, -0.026470594108104706, 0.036930378526449203, 0.032133400440216064, 0.0030284228269010782, 0.035045474767684937, 0.003688342869281769, -0.0716177448630333, -0.02807331457734108, 0.042758431285619736, -0.006286432966589928, -0.01055638212710619, 0.06864943355321884, -0.015192419290542603, 0.04467921331524849, -0.01323101855814457, 0.0603310763835907, -0.020395491272211075, -0.013735762797296047, 0.03698202222585678, 0.015463988296687603, 0.003812584327533841, -0.017660070210695267, -0.04927852749824524, 0.043777428567409515, -0.03339717164635658, 0.041699718683958054, 0.09480687975883484, -0.017424827441573143, -0.09588626772165298, 0.039870187640190125, -0.05715963989496231, 0.03162795305252075, 0.01997235044836998, 0.006771721411496401, -0.022537803277373314, 0.016784703359007835, -0.0015392176574096084, 0.062032781541347504, -0.0462900772690773, -0.02743356302380562, -0.13525761663913727, -0.05115383863449097, -0.030073750764131546, -0.014708176255226135, 0.04523977264761925, 0.041890110820531845, 0.0011847207788378, 0.045083899050951004, 0.032999858260154724, -0.000702165300026536, 0.04216456413269043, -0.025899402797222137, -0.009691115468740463, 0.034937601536512375, -0.031095214188098907, -0.01080932654440403, 0.15671862661838531, 0.014706871472299099, 0.01537694875150919, 0.054116252809762955, -0.028464116156101227, 0.021418360993266106, -0.03532443568110466, 0.02698097936809063, -0.020880544558167458, -0.02343905158340931, -0.017457205802202225, -0.021716926246881485, -0.01107762847095728, 0.028488267213106155, 0.026731038466095924, -0.0728267952799797, 0.03005024790763855, -0.029566342011094093, -0.017721815034747124, -0.033280421048402786, -0.009064740501344204, 0.013259831815958023, 0.05813466012477875, -0.0170869380235672, -0.062152449041604996, -0.009624548256397247, 0.056114599108695984, -0.03819366171956062, -0.04468516632914543, -0.008592238649725914, -0.03613562509417534, -0.002786021213978529, -0.018475428223609924, 0.020669637247920036, 0.007726768031716347, -0.038078904151916504, 0.023068686947226524, -0.051093939691782, -0.04197358712553978, 0.010279437527060509, -0.02282206527888775, -0.03602849692106247, -0.03835049644112587, -0.02630268968641758, -0.027514109387993813, -0.06365884840488434, 0.03649043291807175, 0.02942279912531376, 0.0057287937961518764, 0.025966325774788857, -0.06390135735273361, 0.07272888720035553, 0.04245304316282272, -0.020146872848272324, -0.013440636917948723, -0.016206970438361168, 0.014116729609668255, -0.04541581869125366, 0.0512545108795166, -0.018612496554851532, -0.0018221843056380749, -0.04699205607175827, 0.00511812511831522, -0.004446287173777819, -0.08330696076154709, -0.027392733842134476, -0.31769683957099915, 0.007058544084429741, -0.02981683611869812, -0.05953817069530487, 0.06268985569477081, -0.07464288175106049, -0.012746189720928669, -0.04164779558777809, 0.025701718404889107, -0.0749209076166153, 0.006465637590736151, -0.028945405036211014, 2.7717818738892674e-05, 0.042062267661094666, -0.038149598985910416, 0.01899689808487892, -0.02355639636516571, -0.015937749296426773, 0.016974741593003273, 0.09257180243730545, -0.01416653860360384, 0.009917627088725567, 0.029629118740558624, -0.00474292179569602, -0.002247599884867668, 0.011499440297484398, 0.16382229328155518, 0.05015379935503006, 0.06660986691713333, -0.02121674455702305, -0.008446401916444302, 0.05898498743772507, -0.03431315720081329, -0.015632348135113716, 0.018038535490632057, 0.02698110044002533, 0.05792837589979172, -0.007328148931264877, 0.009212060831487179, 0.005130503326654434, -0.09191049635410309, 0.08506793528795242, -0.017420543357729912, -0.010906415060162544, -0.009215138852596283, 0.022520042955875397, -0.05605914816260338, -0.03168538957834244, -0.035253748297691345, 0.04648168385028839, -0.00822980422526598, 0.042022548615932465, -0.08074544370174408, -0.043020498007535934, -0.01154367532581091, 0.010331125929951668, -0.03806306794285774, 0.014234374277293682, -0.0504770465195179, 0.04920489713549614, -0.0016637087101116776, 0.018078280612826347, 0.02147822268307209, -0.09932059049606323, -0.04484722018241882, 0.002257158048450947, 0.013953120447695255, -0.014370445162057877, 0.00472240848466754, -0.006109610199928284, -0.03188800811767578, 0.07457178831100464, -0.0006495221168734133, -0.04824775457382202, 0.010508069768548012, 0.00962593499571085, 0.023698322474956512, -0.018104059621691704, -0.06284933537244797, 0.012299329042434692, 0.055436085909605026, -0.017154954373836517, -0.006275213789194822, -0.027810879051685333, -0.04542792588472366, -0.006260196212679148, 0.005142803769558668, -0.03362525254487991, 0.06932919472455978, -0.027087384834885597, -0.04175427928566933, 0.04260730370879173, -0.0641927719116211, 0.021074648946523666, 0.008805896155536175, -0.004809092730283737, -0.29110199213027954, 0.03926118463277817, 0.026357317343354225, 0.10578075796365738, 0.010155994445085526, 0.03409259393811226, -0.013566729612648487, -0.04279286041855812, 0.013299926184117794, -0.01715359464287758, 0.053919468075037, -0.01678924262523651, 0.018932821229100227, 0.023727601394057274, -0.042731259018182755, 0.007061288692057133, 0.035046324133872986, 0.023530397564172745, -0.04882216826081276, 0.02839178964495659, 0.05436442047357559, 0.033404894173145294, 0.1501690298318863, 0.04257747903466225, -0.057390231639146805, -0.04284049943089485, -0.01926443912088871, 0.06244244426488876, 0.0187426395714283, 0.03662298247218132, -0.012594014406204224, 0.04251326620578766, -0.007854069583117962, 0.02534203603863716, 0.03830387815833092, -0.07876798510551453, -0.019435200840234756, 0.006981968879699707, 0.10581965744495392, -0.006753940135240555, -0.023364232853055, 0.019379474222660065, 0.013905404135584831, 0.008591360412538052, 0.0525410920381546, 0.014140862971544266, 0.030436662957072258, -0.046136368066072464, -0.06422170251607895, 0.039722990244627, -0.026321526616811752, -0.04540102183818817, 0.03098958171904087, -8.1040030636359e-05, 0.03814288601279259, 0.0018955653067678213, 0.0017918647499755025, 0.012049374170601368, 0.010505864396691322, 0.012118443846702576, -0.009570490568876266, -0.032079122960567474, 0.1012120321393013, 0.051412902772426605, 0.021637385711073875], "8ffeef58-0d8d-4981-8ede-39ab9a001f87": [-0.04073471575975418, -0.04081482067704201, 0.03526686877012253, 0.06644205003976822, -0.033049266785383224, 0.0140227060765028, 0.028828006237745285, -0.002723250538110733, 0.007188472431153059, -0.014582625590264797, 0.01730680651962757, -0.03040202707052231, -0.002969217486679554, -0.029168395325541496, 0.017616746947169304, 0.03486475348472595, -0.03075222857296467, -0.027317099273204803, -0.1092241182923317, 0.04360593110322952, 0.0065006171353161335, -0.02072645165026188, 0.044622719287872314, -0.0015834973892197013, -0.02240610308945179, 0.0467100515961647, -0.017530709505081177, -0.00949929654598236, -0.01946413330733776, -0.15554064512252808, 0.018640676513314247, -0.00876448955386877, -0.02037404105067253, -0.001877514529041946, 0.024851705878973007, 0.11357132345438004, 0.05536623299121857, -0.026828361675143242, -0.007333696354180574, 0.07328498363494873, 0.04532463476061821, -0.01646045222878456, -0.04724899306893349, 0.0036299719940871, 0.037057388573884964, 0.004489569459110498, 0.0681760385632515, -0.03697117790579796, 0.035274382680654526, -0.04439438879489899, -0.03531502187252045, -0.04738592728972435, -0.014259813353419304, 0.0015836807433515787, -0.014241104945540428, 0.059034205973148346, 0.0823364108800888, 0.007041591685265303, 0.057875681668519974, 0.019357534125447273, 0.04268971085548401, 0.05085941031575203, -0.06756601482629776, 0.04976421594619751, 0.08995570242404938, 0.007788127288222313, -0.09645859897136688, -0.04701494053006172, -0.004943319596350193, 0.06303270906209946, -0.030149659141898155, -0.015274894423782825, 0.0030601993203163147, 0.03440201282501221, 0.023198677226901054, 0.025842851027846336, 0.0641617625951767, 0.025394927710294724, 0.05264887586236, -0.01788749359548092, -0.09565786272287369, 0.03894207626581192, -0.06347072124481201, 0.020070837810635567, -0.012138688005506992, -0.013406762853264809, -0.03366660326719284, -0.015730001032352448, -0.0339401438832283, -0.015349199064075947, 0.014600390568375587, -0.036173004657030106, -0.010319882072508335, -0.02878609672188759, -0.026984576135873795, -0.019361445680260658, -0.012778968550264835, 0.015741810202598572, 0.0036210089456290007, 0.41606560349464417, 0.025649523362517357, 0.021259279921650887, 0.03488176316022873, 0.018749523907899857, -0.013193324208259583, -0.006799969356507063, 0.03444025292992592, -0.07088689506053925, -0.0007749269134365022, 0.07721516489982605, 0.02515387535095215, -0.031787045300006866, 0.04281888157129288, 0.0013111733132973313, 0.0633932575583458, -0.010315598919987679, 0.03643900156021118, -0.03491698205471039, 0.013994204811751842, 0.02261405996978283, 0.01912088878452778, 0.03817782178521156, -0.01649782806634903, -0.06310804933309555, 0.04650610312819481, -0.02160806581377983, 0.060058221220970154, 0.05000370368361473, -0.043844591826200485, -0.057866472750902176, 0.05230005830526352, -0.07732003182172775, 0.015595102682709694, 0.02134399674832821, 0.013774489052593708, 0.011476146057248116, 0.01175681035965681, -0.007825723849236965, 0.03751152753829956, -0.07604362070560455, -0.005556318908929825, -0.14473950862884521, -0.056517817080020905, -0.0379449836909771, -0.015557525679469109, 0.04195834696292877, 0.05101078748703003, -0.0026224737521260977, 0.029732029885053635, 0.039130013436079025, -0.0018002224387601018, 0.014886854216456413, -0.02814130112528801, -0.03346393257379532, -0.00823414046317339, -0.0210044514387846, -0.026030385866761208, 0.08094644546508789, 0.004482494667172432, 0.04279842600226402, 0.08324547111988068, -0.017413577064871788, 0.007811710704118013, -0.024017320945858955, 0.04319242760539055, -0.008619374595582485, -0.043687526136636734, -0.04349689930677414, -0.018301337957382202, -0.0048635583370924, 0.018384115770459175, 0.03896382078528404, -0.08365759998559952, 0.027337271720170975, -0.05224348604679108, -0.0310151819139719, -0.02617049589753151, -0.025171393528580666, -0.021410632878541946, 0.03581205755472183, -0.030190015211701393, -0.04987213388085365, -0.010037029162049294, 0.04918309673666954, -0.05455705523490906, -0.025203336030244827, -0.030162692070007324, -0.023924944922327995, -0.030726507306098938, -0.022430894896388054, 0.027252359315752983, 0.02278820425271988, 0.001152213430032134, -0.031568799167871475, -0.05017518252134323, -0.026749616488814354, -0.009015152230858803, 0.021807370707392693, -0.029950527474284172, 0.02253805473446846, -0.03395358845591545, -0.037916552275419235, -0.07076635211706161, 0.013179924339056015, 0.005995701067149639, -0.027189480140805244, 0.05465037375688553, -0.015722936019301414, 0.08262769877910614, 0.007885918952524662, -0.001975525403395295, -0.02097034826874733, 0.014331025071442127, 0.015344936400651932, -0.019563835114240646, 0.009526360780000687, -0.02273985929787159, -0.006855370476841927, 0.005567892920225859, -0.010480094701051712, -0.03685152903199196, -0.10244841873645782, -0.014034295454621315, -0.3001890182495117, 0.0006023552850820124, -0.008996867574751377, -0.05268342047929764, 0.03428955376148224, -0.0825837254524231, 0.009434097446501255, -0.06971148401498795, 0.038792070001363754, -0.07272830605506897, 0.03783395141363144, -0.07458663731813431, 0.04309451952576637, 0.04341564327478409, 0.005141410045325756, 0.0310846995562315, -0.008864747360348701, 0.0251737292855978, 0.01429713610559702, 0.061692338436841965, -0.003479620674625039, 0.024389786645770073, 0.02010587602853775, -0.06844160705804825, -0.04586116597056389, 0.009497114457190037, 0.16919569671154022, 0.04546892270445824, 0.05986353009939194, -0.013391107320785522, -0.015468377619981766, 0.016013821586966515, -0.048939768224954605, -0.0322924442589283, 0.02553607150912285, 0.056132782250642776, 0.019370408728718758, -0.031485822051763535, 0.005970324389636517, -0.014396040700376034, -0.04801403358578682, 0.05722319334745407, -0.024374600499868393, -0.033321086317300797, -0.035866398364305496, 0.02910565957427025, -0.012757016345858574, 0.01655726134777069, 0.04038351774215698, 0.043459903448820114, 0.018395984545350075, 0.05788220465183258, -0.08144170790910721, -0.03995317965745926, -0.01071467250585556, -0.011933908797800541, -0.03501579165458679, -0.00414710957556963, -0.00729595310986042, 0.07779297232627869, -0.013413812033832073, -0.003954864572733641, 0.010229113511741161, -0.08521333336830139, -0.01745760813355446, 0.00372512498870492, 0.008658369071781635, -0.04021177068352699, -0.017245642840862274, -0.008163406513631344, -0.03114221803843975, 0.04949820414185524, 0.005777499172836542, -0.07492579519748688, 0.012961545027792454, 0.024092303588986397, 0.02002842351794243, 0.04017775133252144, -0.051774319261312485, -0.020838528871536255, 0.05580902472138405, -0.07186359912157059, -0.005336923990398645, 0.02005954645574093, -0.0349942222237587, -0.00013469501573126763, -0.014096543192863464, -0.0408133938908577, 0.0812220647931099, -0.05643831565976143, -0.045514948666095734, 0.03618866205215454, -0.030332420021295547, -0.0009263033862225711, 0.028081156313419342, -0.0074083562940359116, -0.2532453238964081, 0.026481853798031807, 0.021313810721039772, 0.06213553622364998, -0.006305175367742777, 0.07628650218248367, 0.0235984418541193, 0.009072531014680862, -0.004997170530259609, -0.04651034250855446, 0.060194168239831924, 0.025071443989872932, 0.04027993604540825, 0.0325109101831913, -0.03251423314213753, 0.026017047464847565, 0.015873512253165245, 0.03437530994415283, -0.04850190877914429, 0.06161607429385185, 0.02016301639378071, 0.026578199118375778, 0.14867354929447174, 0.05770289897918701, -0.022274114191532135, -0.066462442278862, -0.037812408059835434, 0.021559419110417366, 0.01373872347176075, -0.010343659669160843, 0.0220467709004879, 0.04675972834229469, -0.04991479963064194, 0.00031681335531175137, 0.019623182713985443, -0.06957308202981949, -0.0549834668636322, 0.01105136051774025, 0.06101945787668228, 0.016568154096603394, -0.035821471363306046, 0.04270473122596741, 0.003588939318433404, 0.017319392412900925, 0.08298711478710175, 0.019492212682962418, 0.01096818596124649, -0.01467256247997284, -0.074149489402771, 0.04877535253763199, -0.04000530391931534, -0.006619937252253294, 0.01978764496743679, -0.013759034685790539, 0.047137144953012466, 0.03565378859639168, 0.0027167266234755516, 0.023276373744010925, -0.017163438722491264, -0.04068515822291374, -0.0068085831589996815, -0.010313095524907112, 0.10669633746147156, -0.004311283119022846, 0.03231531009078026], "5939816d-45db-4a4e-8fc9-11359dea8dff": [-0.04762761667370796, -0.035485707223415375, 0.0314570888876915, 0.06564494967460632, -0.0007095135515555739, 0.02568073384463787, 0.05754520744085312, 0.009872707538306713, 0.0019462681375443935, -0.018719440326094627, -0.0024963573087006807, -0.0028668304439634085, -0.03230562061071396, -0.04062088206410408, -0.008897480554878712, 0.03948434442281723, -0.01907016709446907, -0.03552079200744629, -0.10183963924646378, 0.04387691989541054, 0.01305031031370163, -0.03475785627961159, 0.030477866530418396, 0.028420142829418182, -0.01004570908844471, 0.03210932016372681, 0.0210933405905962, -0.021774349734187126, -0.002396248746663332, -0.12359197437763214, 0.015764936804771423, -0.015587545931339264, -0.01830567978322506, -0.014870289713144302, 0.0043505411595106125, 0.09808368980884552, 0.03392165154218674, -0.006761329714208841, -0.028414731845259666, 0.06563230603933334, -0.0019770225044339895, -0.020151058211922646, 0.009941707365214825, -0.011517268605530262, 0.04502592980861664, 0.02358216419816017, 0.023523647338151932, -0.04164862632751465, 0.005721863359212875, -0.01695900782942772, -0.007616832852363586, -0.037473179399967194, -0.008275049738585949, -0.019504712894558907, -0.018431974574923515, 0.07352178543806076, 0.09104375541210175, 0.026104889810085297, 0.057284027338027954, -0.0012996690347790718, 0.029927123337984085, 0.03175917640328407, -0.08773821592330933, 0.07325013726949692, 0.058643292635679245, -0.015807069838047028, -0.09035490453243256, 0.0016369024524465203, -0.029268484562635422, 0.06878014653921127, -0.010649879463016987, -0.003324039513245225, 0.0018602915806695819, 0.04399014264345169, 0.03813517466187477, 0.00769358454272151, 0.05057540908455849, 0.04603932052850723, 0.045535679906606674, -0.021677915006875992, -0.07840746641159058, 0.02278951369225979, -0.04608859494328499, -0.005653748754411936, 0.0011639490257948637, -0.06000077724456787, -0.008982124738395214, -0.022541120648384094, -0.03444639593362808, -0.010449262335896492, 0.0031615046318620443, -0.033023059368133545, -0.004864516202360392, -0.02925115078687668, -0.014863100834190845, -0.0461122989654541, 0.010832452215254307, 0.020468464121222496, 0.032286129891872406, 0.40953317284584045, -0.0015916413394734263, 0.016019979491829872, 0.019971415400505066, 0.05709459260106087, -0.02124880626797676, -0.0031746686436235905, 0.038335058838129044, -0.07626304775476456, 0.007270984351634979, 0.07327067852020264, 0.022738171741366386, -0.03498323634266853, 0.04537680000066757, -0.024707434698939323, 0.052613500505685806, 0.003726268419995904, 0.06929758191108704, -0.023969637230038643, 0.007151755969971418, 0.010166313499212265, 0.054811976850032806, -0.0026386347599327564, 0.0034464953932911158, -0.05951254442334175, 0.04704781994223595, -0.05665674805641174, 0.060610365122556686, 0.055822573602199554, 0.005712287500500679, -0.07096733152866364, 0.03152598440647125, -0.06127820163965225, 0.003485175082460046, 0.06717178225517273, 0.014528635889291763, 0.00992488395422697, 0.015092122368514538, 0.019572481513023376, 0.06348545849323273, -0.04942392185330391, 0.011347048915922642, -0.16330352425575256, -0.03618190065026283, -0.0173083133995533, -0.006437487434595823, 0.04140995442867279, 0.03674113750457764, -0.016036301851272583, 0.029926804825663567, 0.05401928722858429, 0.016406212002038956, -0.006523631978780031, -0.021453717723488808, -0.029520224779844284, 0.023334313184022903, -0.013885809108614922, 0.0189946461468935, 0.0923495888710022, -0.02185746468603611, 0.04096823185682297, 0.08095819503068924, -0.03204289451241493, 0.024414775893092155, -0.004587359260767698, 0.02552439086139202, 0.015450130216777325, -0.052349209785461426, -0.05641169100999832, -0.015549588948488235, -0.01023154892027378, 0.04221881926059723, 0.011784384027123451, -0.09299326688051224, 0.05288093537092209, -0.03469343110918999, -0.035372260957956314, -0.025942791253328323, 0.011443364433944225, -0.004855947569012642, 0.04626132920384407, -0.01405620202422142, -0.040544647723436356, 0.008897481486201286, 0.08452609181404114, -0.03561881184577942, -0.039673998951911926, -0.022565918043255806, -0.04469185322523117, -0.021139968186616898, -0.05721627175807953, 0.06307113915681839, 0.019375838339328766, -0.028645789250731468, 0.011418298818171024, -0.039335619658231735, -0.03974146768450737, 0.032098520547151566, 0.0014905701391398907, 0.004121949430555105, 0.0032662313897162676, -0.03866346552968025, -0.030176792293787003, -0.06660093367099762, -0.0025540776550769806, 0.00040516260196454823, 0.017572015523910522, 0.03577640280127525, -0.016635561361908913, 0.056809768080711365, -0.002415135968476534, 0.011257032863795757, -0.01700160838663578, -0.02191002666950226, 0.03721220791339874, 0.005466856993734837, 0.002184661105275154, -0.037096671760082245, 0.006209617014974356, 0.011071898974478245, 0.028057904914021492, -0.04533202573657036, -0.07005707174539566, -0.02586544305086136, -0.3142393231391907, -0.05693089962005615, -0.0001349694503005594, -0.05538741499185562, 0.05195188894867897, -0.07323790341615677, 0.023017600178718567, -0.061949096620082855, 0.046796225011348724, -0.03852909803390503, -0.012166179716587067, -0.0671202689409256, 0.04391751065850258, 0.03162987902760506, 0.018208855763077736, 0.08497554063796997, -0.06864860653877258, 0.017894869670271873, 0.029175443574786186, 0.07448705285787582, -0.018279055133461952, 0.007548259571194649, 0.002409803681075573, -0.06807610392570496, -0.006662863306701183, 0.03479114919900894, 0.16154223680496216, 0.08765340596437454, 0.027416838333010674, 0.0019532619044184685, -0.005983817856758833, 0.0041205547749996185, -0.05314119905233383, -0.06484200060367584, 0.036078475415706635, 0.03749556466937065, 0.0019766702316701412, -0.058374784886837006, 0.01961284689605236, -0.007869266904890537, -0.044467926025390625, 0.06384067237377167, -0.01834486611187458, 0.002225663512945175, -0.0436437614262104, 0.001063292846083641, 0.019344955682754517, 0.03742247447371483, -0.0015428907936438918, 0.01154085248708725, 0.0006425533792935312, 0.04326006770133972, -0.035537008196115494, -0.005113243591040373, -0.009850574657320976, -0.022251669317483902, -0.06771428883075714, -0.0160355307161808, -0.017183253541588783, 0.04538577422499657, -0.011729786172509193, 0.004686710890382528, 0.0045789205469191074, -0.027257313951849937, 0.01953895576298237, 0.01757161132991314, -0.03677014634013176, -0.014774598181247711, 0.00922111514955759, 0.039307184517383575, -0.022094739601016045, 0.07323756814002991, -0.004012927878648043, -0.06437809020280838, 0.020864084362983704, -0.006577589549124241, -0.0012500145239755511, 0.02341688610613346, -0.04663480818271637, -0.051722995936870575, 0.07705586403608322, -0.048420265316963196, -0.01126503199338913, -0.023585518822073936, -0.05111447721719742, -0.04245296120643616, -0.012826204299926758, -0.05425065755844116, 0.09866630285978317, -0.03214411437511444, -0.038500141352415085, 0.039838749915361404, -0.022532477974891663, -0.051887065172195435, -0.008953426033258438, 0.015544174239039421, -0.29656970500946045, -0.0152603043243289, 0.0649099349975586, 0.05437154695391655, -0.014202487654983997, 0.04558880627155304, -0.003501621540635824, -0.0270546805113554, -0.06017420068383217, -0.029591452330350876, 0.04982432723045349, 0.04088474065065384, 0.03656685724854469, 0.019370121881365776, -0.013568326830863953, 0.010879307985305786, 0.0519963838160038, 0.044477224349975586, -0.04065708816051483, 0.010413968935608864, 0.047051865607500076, 0.0013187951408326626, 0.13528022170066833, 0.0358092226088047, -0.03160419687628746, -0.056935835629701614, -0.008892328478395939, 0.012050005607306957, -0.0025673529598861933, -0.008890029974281788, -0.0070441123098134995, -0.008255068212747574, -0.03710192069411278, -0.00860445387661457, 0.001927969278767705, -0.05389748513698578, -0.03975634276866913, -0.004717545583844185, 0.07193578779697418, -0.01013155747205019, -0.043187905102968216, 0.03279560059309006, 0.013375194743275642, 0.004953718278557062, 0.019496023654937744, 0.005660269409418106, 0.007927308790385723, 0.019279303029179573, -0.0635216012597084, 0.01185911986976862, -0.053048957139253616, -0.022510958835482597, -0.01735709048807621, -0.0007345895282924175, 0.047862764447927475, 0.03253598138689995, -0.021183066070079803, 0.006628111936151981, -0.01460974384099245, -0.03449809178709984, -0.03226218745112419, 0.012937926687300205, 0.13554641604423523, 0.007615923415869474, 0.032443974167108536], "c83a7ea4-98db-4453-b5fa-96d9b1aa3309": [-0.06877070665359497, -0.039259180426597595, 0.03859657794237137, 0.08155253529548645, 0.006899710278958082, 0.020528629422187805, 0.03644698113203049, 0.018871814012527466, 0.006241628900170326, 0.0012484871549531817, 0.033275336027145386, -0.010703884065151215, -0.0018941436428576708, -0.01459026150405407, -0.0015102924080565572, 0.019634617492556572, -0.04921562969684601, -0.04225458577275276, -0.11982128024101257, 0.0393373928964138, -0.010108026675879955, -0.02690274640917778, 0.03227267041802406, -0.0053512961603701115, -0.028914794325828552, 0.02221023291349411, 0.0008809827268123627, -0.020636724308133125, 0.0030806914437562227, -0.15657037496566772, 0.004370506387203932, -0.022728145122528076, -0.007091236300766468, -0.018889911472797394, -0.009091487154364586, 0.09847092628479004, 0.05431179702281952, -0.022158101201057434, 0.02108539268374443, 0.05679122358560562, 0.006636956240981817, -0.03159421309828758, -0.0017973041394725442, 0.014279535971581936, 0.02612415887415409, 0.0041269646026194096, 0.047533102333545685, -0.021345730870962143, 0.012322966940701008, -0.04587644338607788, 0.005653055384755135, -0.03383666276931763, -0.0034313038922846317, -0.010748205706477165, -0.0013778151478618383, 0.0978136733174324, 0.046454597264528275, -0.007572722155600786, 0.07387949526309967, 0.004796246532350779, 0.040864136070013046, 0.03268381580710411, -0.0844997987151146, 0.03298213705420494, 0.09704471379518509, -0.02923497185111046, -0.06869295984506607, -0.0764569416642189, 0.005133327096700668, 0.0418892428278923, -0.023942135274410248, 0.0026586411986500025, -0.015309888869524002, 0.051296383142471313, 0.014896947890520096, -0.000663591839838773, 0.03578982129693031, 0.02008884586393833, 0.03502563387155533, -0.01384863629937172, -0.08937360346317291, 0.06066751852631569, -0.05759773030877113, 0.0028653768822550774, 0.00022138886561151594, -0.061156321316957474, -0.002883251290768385, -0.028433337807655334, -0.012225784361362457, -0.042876869440078735, 0.016194455325603485, -0.041703272610902786, -0.0005831783055327833, -0.010131104849278927, -0.027251755818724632, -0.01168878935277462, 0.0026157107204198837, 0.030838249251246452, 0.05846627429127693, 0.4141380786895752, 0.015179422684013844, 0.008139561861753464, 0.02579282782971859, 0.0330263189971447, 0.0025965073145926, -0.01862812414765358, 0.02698289044201374, -0.030537016689777374, 0.03166612610220909, 0.09530025720596313, 0.05047586187720299, -0.025158029049634933, 0.07579311728477478, -0.024891894310712814, 0.07847391813993454, 0.010253033600747585, 0.05892392247915268, 0.009012376889586449, -0.012573239393532276, 0.015868522226810455, 0.05422183498740196, 0.05408027768135071, 0.04336730018258095, -0.0657973363995552, -0.012687425129115582, -0.0029454659670591354, 0.05685414746403694, 0.07007257640361786, -0.04250793904066086, -0.047845806926488876, 0.017946353182196617, -0.057178325951099396, 0.038252875208854675, 0.014584842137992382, -0.002206939272582531, -0.02603115700185299, 0.022556476294994354, -0.01847037672996521, 0.06034521013498306, -0.07519974559545517, -0.026584550738334656, -0.11771997809410095, -0.02931249514222145, -0.007138680666685104, -0.016199136152863503, 0.018533049151301384, 0.05396628752350807, -0.024045873433351517, 0.04171045869588852, 0.01699066534638405, 0.004528914112597704, 0.0032183637376874685, -0.0067714545875787735, 0.005845790263265371, 0.05010540038347244, -0.009563356637954712, 0.012138225138187408, 0.1550307273864746, 0.0074843838810920715, 0.05514247342944145, 0.04153481498360634, -0.04260357469320297, 0.005812766961753368, -0.022521112114191055, 0.01679356023669243, -0.019068874418735504, -0.057068586349487305, -0.05017305910587311, -0.01769263483583927, -0.006238680798560381, 0.029393594712018967, 0.04388131946325302, -0.0809609442949295, 0.021713420748710632, 0.01803397387266159, -0.02026590146124363, -0.049156058579683304, -0.042554691433906555, -0.019542038440704346, 0.016389744356274605, -0.041028931736946106, -0.04910172149538994, 0.00707646319642663, 0.09812962263822556, -0.04626904055476189, -0.037411633878946304, -0.022776871919631958, -0.016004052013158798, -0.026205921545624733, -0.00809459388256073, 0.017684662714600563, 0.009631910361349583, 0.002258764347061515, -0.015250436030328274, -0.016290200874209404, -0.0371275469660759, 0.011357628740370274, -0.00673856632784009, 0.017491929233074188, -0.016550812870264053, -0.057253316044807434, -0.08301754295825958, -0.05043892189860344, -0.0011467260774224997, 0.02592003531754017, 0.00016093555314000696, 0.05837948992848396, -0.018828773871064186, 0.06028776243329048, -0.002015421399846673, 0.012779554352164268, -0.03900764882564545, -0.020599687471985817, 0.026696702465415, -0.007804297376424074, -0.011751427315175533, -0.044949498027563095, -0.006590434815734625, 0.009019509889185429, -0.012073807418346405, -0.01571270078420639, -0.09660125523805618, -0.021272309124469757, -0.2987760603427887, -0.054433200508356094, 0.00785631313920021, -0.0753084272146225, 0.04551355913281441, -0.12608744204044342, -0.02040611393749714, -0.06544526666402817, 0.07672387361526489, -0.040971752256155014, -0.02039586380124092, -0.062031593173742294, 0.03241695836186409, 0.023023908957839012, -0.003370668739080429, 0.06371389329433441, -0.02763490192592144, 0.0054442426189780235, -0.0034226304851472378, 0.05040033534169197, -0.0043746852315962315, 0.04839399829506874, -0.014699302613735199, -0.075663261115551, -0.035335198044776917, 0.027473846450448036, 0.1548575907945633, 0.07922954112291336, 0.03433256968855858, -0.018078379333019257, -0.024022076278924942, 0.03870362043380737, -0.05648871883749962, -0.027062753215432167, 0.014866727404296398, 0.03513457626104355, 0.010333611629903316, -0.013575201854109764, 0.008580549620091915, -0.006582411006093025, -0.04446176812052727, 0.050736911594867706, -0.026794780045747757, 0.018730036914348602, -0.018437854945659637, 0.014924582093954086, -0.011531149968504906, 0.011925090104341507, 0.0070514073595404625, 0.05883987993001938, 0.02541016787290573, 0.0058866278268396854, -0.05545230954885483, -0.027539696544408798, -0.005681124981492758, -0.008585711941123009, -0.03240762650966644, -0.0009620293276384473, -0.008133779279887676, 0.06669075787067413, -0.0068073091097176075, 0.018989382311701775, -0.007213619537651539, -0.03404400125145912, -0.009297317825257778, 0.03116101771593094, -0.04026103764772415, -0.044176824390888214, 0.004599644336849451, 0.019416389986872673, -0.04588869959115982, 0.04606693983078003, 0.009126548655331135, -0.05885682255029678, 0.0320974662899971, 0.008787479251623154, 0.026196038350462914, 0.004272953141480684, -0.053909268230199814, -0.03268793225288391, 0.05045240372419357, -0.0774858221411705, -0.016461342573165894, -0.007949549704790115, -0.022156069055199623, 0.027221301570534706, -0.009060022421181202, -0.0589054673910141, 0.059173569083213806, 0.008566325530409813, -0.04511595889925957, 0.022710558027029037, -0.04488459974527359, -0.018971605226397514, 0.0036655585281550884, -0.007723539602011442, -0.27101337909698486, 0.001171065610833466, 0.027062401175498962, 0.06280023604631424, 0.015955250710248947, 0.04561692476272583, -0.025316281244158745, -0.016098065301775932, -0.0024973854888230562, -0.03305551037192345, 0.06467431038618088, 0.022356664761900902, 0.041051968932151794, -0.0048883999697864056, -0.011185484007000923, 0.025490837171673775, 0.024447079747915268, 0.07023368775844574, -0.05962982401251793, 0.022478759288787842, 0.019848007708787918, 0.009698672220110893, 0.1481904685497284, 0.05457612872123718, -0.05629242956638336, -0.051904160529375076, -0.02080692909657955, 0.023593878373503685, 0.014629960991442204, 0.009662694297730923, 0.0026776997838169336, -0.005654466804116964, 0.0200022142380476, 0.011010517366230488, -0.00024523327010683715, -0.047388773411512375, -0.022387921810150146, 0.036750297993421555, 0.05532354861497879, 0.0017334911972284317, -0.0576041080057621, 0.02258004993200302, -0.006692363414913416, -0.0014462857507169247, 0.03212699294090271, 0.021264540031552315, -0.00607175100594759, 0.023752257227897644, -0.07439740002155304, 0.036701735109090805, -0.04469888657331467, -0.008635709062218666, 0.011823315173387527, 0.01917266473174095, 0.04084291681647301, -0.007877938449382782, -0.01952919363975525, 0.06410122662782669, -0.040062420070171356, -0.04703385382890701, -0.009798130951821804, 0.017302582040429115, 0.1308019459247589, -0.029396871104836464, 0.03812441602349281], "d1a9c3a1-f823-4f70-a082-df0ea065abde": [-0.05109177902340889, -0.027286821976304054, 0.06137639284133911, 0.047420479357242584, 0.053626906126737595, 0.020181765779852867, 0.042811185121536255, 0.007165384478867054, -0.015724139288067818, -0.028416182845830917, 0.02725875750184059, -0.00474404264241457, -0.012750965543091297, -0.011636893264949322, -0.016122527420520782, -0.006686493754386902, -0.06216456741094589, -0.04729754105210304, -0.11013710498809814, 0.062470048666000366, -0.02529510110616684, -0.0409390889108181, 0.03696370869874954, -0.030869200825691223, -0.052669260650873184, 0.012970317155122757, 0.004249936435371637, -0.044676024466753006, 0.0029341462068259716, -0.14555686712265015, 0.002381996251642704, -0.009257285855710506, 0.0040171025320887566, -0.0396554172039032, -0.0037951848935335875, 0.0576937235891819, 0.0459597222507, -0.024562854319810867, 0.026012824848294258, 0.032944563776254654, 0.0247011911123991, 0.03403003513813019, -0.006525554694235325, 0.041439563035964966, 0.05114862695336342, -0.03660067915916443, -0.004189574159681797, -0.026711860671639442, 0.014875403605401516, -0.021750614047050476, -0.010042067617177963, -0.01946982555091381, 0.009723681956529617, -0.031064312905073166, -0.030114853754639626, 0.08415460586547852, 0.04019136726856232, -0.03497198969125748, 0.05066743120551109, 0.03329962119460106, 0.025273988023400307, -0.0017277058213949203, -0.07460691034793854, 0.04915807023644447, 0.06069150194525719, -0.010615518316626549, -0.0871952474117279, -0.03595873713493347, 0.016665372997522354, 0.052938710898160934, -0.019708817824721336, 0.0063620200380682945, -0.004478990565985441, 0.04955153539776802, -0.001095734303817153, -0.010830730199813843, 0.020207546651363373, -0.009515766054391861, 0.04732750356197357, 0.016131684184074402, -0.07832220941781998, 0.05532100051641464, -0.04170997440814972, -0.00809209980070591, 0.007563593331724405, -0.07031798362731934, 0.010098776780068874, -0.03499447554349899, -0.03438367322087288, -0.04898340255022049, 0.004284242633730173, -0.04677256941795349, 0.002696648007258773, -0.0008819052600301802, -0.01041238009929657, -0.0136790182441473, -0.03368522226810455, 0.04250125586986542, 0.0683751031756401, 0.40098699927330017, 0.029679838567972183, 0.03239297866821289, 0.00047419799375347793, 0.02701546438038349, -0.006848826073110104, -0.010434028692543507, 0.01003298070281744, -0.0313568152487278, 0.04030651971697807, 0.09210686385631561, 0.02875014953315258, -0.025077855214476585, 0.10011819750070572, 0.00035455983015708625, 0.06309615075588226, -0.020303182303905487, 0.08054792881011963, 0.017992248758673668, -0.02543729729950428, 8.962980064097792e-05, 0.04735497385263443, 0.04149160161614418, 0.012411368079483509, -0.026088641956448555, -0.00585660245269537, -0.0018989836098626256, 0.03265161067247391, 0.05628098547458649, 0.010856257751584053, -0.04186423495411873, -0.023441269993782043, -0.03522259742021561, 0.07622592896223068, 0.026530863717198372, 0.022459696978330612, -0.03600851818919182, -0.010018681176006794, -0.0400506891310215, 0.07159015536308289, -0.04848715290427208, -0.037883345037698746, -0.15581834316253662, -0.02925596572458744, -0.0107981376349926, -0.045210182666778564, 0.012880155816674232, -0.0034414122346788645, -0.05028577148914337, 0.005429730750620365, 0.02704731561243534, 0.03179188445210457, -0.02059522457420826, -0.01301122922450304, 0.01941060461103916, 0.029270540922880173, -0.007420591078698635, -0.009954739362001419, 0.16354845464229584, 0.01113092340528965, 0.05160702019929886, 0.049392219632864, -0.02975333295762539, 0.02352292463183403, -0.06595359742641449, 0.016306765377521515, -0.013455784879624844, -0.03964535892009735, -0.031004032120108604, -0.06915898621082306, -0.015766803175210953, 0.0038076264318078756, 0.05114264413714409, -0.10147523880004883, 0.05495336651802063, 0.024512145668268204, -0.008251821622252464, -0.011170323006808758, -0.03629951924085617, -0.01956293173134327, 0.023441841825842857, -0.031889673322439194, -0.03789146989583969, -0.015834957361221313, 0.04929839447140694, -0.04654690623283386, -0.012325567193329334, 0.01750030554831028, -0.01716676913201809, -0.010180655866861343, -0.0029157311655580997, -0.02967849187552929, -0.003369244048371911, -0.04582870751619339, -0.0027331968303769827, -0.024191606789827347, -0.042141638696193695, 0.004134541843086481, -0.010954677127301693, 0.0293502788990736, -0.008925468660891056, -0.04432569816708565, -0.055532779544591904, -0.052587706595659256, 0.04039951041340828, 0.049313243478536606, 0.029383881017565727, 0.05737389624118805, -0.04146689921617508, 0.0664653331041336, 0.0016633839113637805, -0.005275746341794729, -0.03237951919436455, -0.004210776649415493, 0.03131415694952011, 0.007164690177887678, 0.019829036667943, 0.011633622460067272, 0.027860810980200768, -0.0022996750194579363, -0.01840086281299591, -0.01698472909629345, -0.09366834908723831, -0.046975988894701004, -0.3187347650527954, -0.013040025718510151, -0.002792871557176113, -0.09991557151079178, 0.023091811686754227, -0.07008051872253418, -0.03050233982503414, -0.06861766427755356, 0.01751493662595749, -0.0017149050254374743, 0.004791931249201298, -0.0569274015724659, 0.04664236679673195, 0.026039153337478638, -0.03945179283618927, 0.062166813760995865, -0.06202583387494087, 0.023525817319750786, 0.005936581641435623, 0.010644660331308842, 0.03871438279747963, 0.058572594076395035, -0.025800203904509544, -0.05444122105836868, -0.04785137251019478, 0.020902639254927635, 0.17041286826133728, 0.04940541088581085, 0.05740981921553612, 0.015082650817930698, 0.017342757433652878, 0.06708207726478577, -0.04948468506336212, -0.023809151723980904, -0.0007206585141830146, 0.03780922293663025, 0.017006998881697655, -0.04758429154753685, 0.030989911407232285, -0.017933517694473267, -0.0487305223941803, 0.07440333813428879, -0.04004579782485962, -0.02494458481669426, -0.025139344856142998, 0.028496844694018364, 0.0028883893974125385, -0.01959824003279209, -0.030929185450077057, 0.040237173438072205, 0.027092186734080315, 0.02084854245185852, -0.04069995880126953, -0.0022591466549783945, -0.0016649685567244887, -0.010594085790216923, -0.05163070932030678, -0.00703173503279686, -0.03982612118124962, 0.07025116682052612, -0.009276820346713066, 0.03301200643181801, 0.017407646402716637, -0.04684297367930412, -0.003123491769656539, 0.04713814705610275, -0.016514044255018234, -0.04305903986096382, 0.040265560150146484, 0.050319552421569824, -0.03765849769115448, 0.03333507105708122, 0.009416921064257622, -0.02688107080757618, 0.023984186351299286, 0.01616852916777134, 0.012309549376368523, 0.014756015501916409, -0.04891139268875122, -0.017098771408200264, 0.025279706344008446, -0.028021566569805145, -0.014484143815934658, 0.004427154082804918, -0.025375841185450554, 0.006710239220410585, -0.02318607270717621, -0.05581795051693916, 0.04786854609847069, -0.0027245196979492903, -0.07871029525995255, 0.036093614995479584, -0.05046617612242699, 0.015831345692276955, 0.05354722589254379, 0.05870947986841202, -0.27735331654548645, -0.001098768087103963, 0.04239562898874283, 0.05647663027048111, 0.017337437719106674, 0.04060490056872368, -0.060616638511419296, -0.013152897357940674, -0.025584911927580833, -0.058610960841178894, 0.09380198270082474, 0.017409317195415497, -0.0011817313497886062, -0.022227227687835693, 0.002359990030527115, 0.005578963551670313, 0.03241507336497307, 0.08411023020744324, -0.08240315318107605, 0.04587564617395401, 0.017430542036890984, 0.042529959231615067, 0.13557110726833344, 0.047238435596227646, -0.05071685463190079, -0.03718550130724907, 0.009729989804327488, 0.002668005181476474, 0.001990556949749589, 0.03415316715836525, -0.018002713099122047, -0.02180778607726097, 0.060333773493766785, -0.009520992636680603, 0.016265908256173134, -0.027847910299897194, 0.0164683535695076, -0.009359374642372131, 0.04507904872298241, 0.005152444820851088, -0.029516177251935005, 0.02228442393243313, -0.012691953219473362, -0.028289003297686577, 0.04171542450785637, 0.06775373220443726, -0.006580684334039688, 0.028014183044433594, -0.061893295496702194, 0.01795189082622528, -0.03551209345459938, 0.005184222012758255, -0.025111598894000053, 0.023157065734267235, 0.04170892760157585, 0.003902025055140257, -0.02112843096256256, 0.0391424261033535, -0.015776237472891808, -0.026739390566945076, -0.015837138518691063, -0.00804913230240345, 0.08661569654941559, -0.01734286919236183, 0.0333978608250618], "0be3a661-3a75-4ada-864a-d7d60fb0290d": [-0.07438750565052032, -0.032580312341451645, 0.025774171575903893, 0.05014144629240036, 0.023570068180561066, -0.02463386207818985, 0.07537752389907837, -0.001615517889149487, -0.030039310455322266, -0.020009469240903854, 0.03152012825012207, -0.013410509563982487, 0.0053510223515331745, -0.025099843740463257, 0.03055044263601303, -0.015130032785236835, -0.025862060487270355, -0.0479598231613636, -0.10978968441486359, 0.04059545695781708, 0.05656197667121887, -0.04887881502509117, 0.021795522421598434, -0.005742382723838091, -0.024834349751472473, 0.0315539687871933, 0.033122651278972626, -0.05170407146215439, 0.0069056106731295586, -0.15194009244441986, 0.01471034437417984, -0.02193065732717514, 0.0056986561976373196, -0.025679420679807663, 0.008045461028814316, 0.09177859872579575, 0.05487826094031334, -0.0073134880512952805, -0.030813977122306824, 0.05340535193681717, -0.0033914241939783096, -0.0302179716527462, -0.013299857266247272, 0.016405213624238968, 0.046350397169589996, -0.018251871690154076, 0.007223720196634531, -0.023336483165621758, 0.003021594835445285, -0.040526971220970154, -0.004146486055105925, -0.011946329846978188, -0.017546692863106728, -0.051136936992406845, -0.012639079242944717, 0.09682144224643707, 0.033238913863897324, 0.030063599348068237, 0.056445151567459106, -0.007803257554769516, 0.018620934337377548, 0.021883489564061165, -0.10941173881292343, 0.06479102373123169, 0.0700838714838028, -0.011218231171369553, -0.08984663337469101, -0.03236909210681915, -0.048207759857177734, 0.04502851143479347, 0.0028939773328602314, 0.011896209791302681, 0.014164349064230919, 0.012989380396902561, -0.0017207169439643621, 0.006518443115055561, 0.020924191921949387, -0.016384394839406013, 0.021940618753433228, 0.024958517402410507, -0.08939409255981445, 0.044449564069509506, -0.05081898346543312, 0.0016637254739180207, -0.0023360459599643946, -0.06816209852695465, 0.00854215957224369, 0.024730071425437927, -0.00434323912486434, -0.029209811240434647, 0.014126600697636604, -0.046228524297475815, -0.02623584493994713, -0.004111827816814184, -0.01726970449090004, -0.018188610672950745, -0.03358479589223862, 0.002432329813018441, 0.0394102968275547, 0.3902917802333832, -0.02586105279624462, 0.0025110244750976562, -0.0008865077397786081, 0.011046049185097218, -0.011674674227833748, 0.009767827577888966, 0.0050620208494365215, -0.043553274124860764, 0.04416554793715477, 0.09117719531059265, 0.020346200093626976, -0.025156063959002495, 0.06783555448055267, -0.010390667244791985, 0.05521233752369881, 0.011732692830264568, 0.07380517572164536, -0.03629505634307861, -0.002232725964859128, 0.0012108410010114312, 0.06463818997144699, 0.04228891804814339, 0.017841434106230736, -0.03833180293440819, -0.002977218944579363, -0.014296387322247028, 0.08053616434335709, 0.059974562376737595, -0.017843464389443398, -0.059940826147794724, 0.023033974692225456, -0.06515207886695862, 0.022011909633874893, 0.009559297934174538, -0.003930423874408007, 0.03719976916909218, 0.04472804814577103, 0.006588667165488005, 0.09760203212499619, -0.0002571388613432646, -0.017772551625967026, -0.12972509860992432, -0.02969461865723133, 0.005196624435484409, -0.04921070858836174, 0.07972399890422821, 0.045468494296073914, -0.034327149391174316, 0.027623187750577927, 0.049413807690143585, 0.006378017831593752, 0.017641253769397736, 0.025184402242302895, -0.03934042155742645, 0.017041292041540146, -0.0028676562942564487, 0.02778634987771511, 0.08524490147829056, 0.005941771436482668, 0.03834362328052521, 0.053520429879426956, -0.02617316134274006, 0.02066809870302677, -0.018240952864289284, 0.0314905121922493, 0.009114141575992107, -0.06512559950351715, -0.0320613719522953, 0.008322600275278091, -0.05513376370072365, 0.0463140532374382, 0.043554745614528656, -0.08065199106931686, 0.029601451009511948, -0.020707514137029648, -0.015669498592615128, -0.0178173016756773, -0.00895754061639309, -0.0056307436898350716, 0.012243393808603287, 0.006887354422360659, -0.03767721727490425, -0.03146011382341385, 0.07167772948741913, -0.05969088897109032, -0.0402289479970932, 0.014351782388985157, -0.05544641613960266, 0.03505861386656761, -0.012638802640140057, 0.04102620109915733, 0.019514653831720352, 0.02152738720178604, 0.0297399889677763, -0.05833560973405838, -0.059539198875427246, -0.01966293528676033, 0.02028280310332775, -0.045892249792814255, -0.005037864204496145, -0.06827589124441147, -0.06501050293445587, -0.05724822357296944, 0.004436510615050793, 0.02986118756234646, 0.032316576689481735, -0.0004343769687693566, -0.058030467480421066, 0.07657797634601593, -0.0012641713256016374, -0.029645120725035667, -0.03625117242336273, -0.028416095301508904, 0.07369615137577057, -0.014365841634571552, 0.01991736702620983, 0.012859943322837353, 0.015854958444833755, -0.038708820939064026, -0.012440589256584644, -0.028340164572000504, -0.08414602279663086, -0.04576249048113823, -0.30596068501472473, -0.046656284481287, 0.006376078352332115, -0.06066581979393959, 0.06991114467382431, -0.04527647793292999, 0.002816318767145276, -0.06685888022184372, 0.043621040880680084, -0.013094214722514153, -0.015002883039414883, -0.03432677686214447, 0.04955052211880684, 0.03071439266204834, -0.030103564262390137, 0.07158564031124115, -0.015293966047465801, -0.023022038862109184, 0.04115503653883934, 0.032242584973573685, -0.003284722799435258, 0.02257801964879036, 0.005580789875239134, -0.07994988560676575, -0.02030680887401104, 0.02805859036743641, 0.1653425097465515, 0.07578695565462112, 0.037400610744953156, -0.01081253681331873, 0.0030623222701251507, 0.018930476158857346, -0.03379201143980026, -0.03679165616631508, 0.04316573962569237, 0.02322937361896038, -0.034220751374959946, -0.030103333294391632, 0.016149645671248436, -0.015340321697294712, -0.03030615858733654, 0.042596206068992615, -0.010791976936161518, 0.012370391748845577, -0.04843522235751152, -0.0016500719357281923, -0.010770149528980255, 0.006644401699304581, -0.0012148774694651365, 0.02910972200334072, -0.0043165842071175575, 0.0365276113152504, -0.045885879546403885, -0.01756948232650757, -0.0018537560245022178, 0.004947357811033726, -0.04592317342758179, -0.044757649302482605, -0.03736685961484909, 0.051551152020692825, -0.020655127242207527, 0.051087625324726105, 0.023870792239904404, 0.0010300256544724107, 0.015367072075605392, 0.03323198854923248, -0.006566870491951704, -0.045359913259744644, 0.0057663340121507645, 0.07737724483013153, -0.03832103684544563, 0.02762160822749138, -0.01373493205755949, -0.04859893396496773, 0.03001329116523266, 0.03373603895306587, 0.05687898024916649, -0.0018556591821834445, -0.05733564496040344, 0.004211185034364462, 0.07704979926347733, -0.031903207302093506, -0.012718070298433304, -0.01739995926618576, 0.0012533451663330197, 0.010649306699633598, -0.0043093496933579445, -0.0354892797768116, 0.06017683446407318, -0.0032618946861475706, -0.05170493200421333, 0.028896810486912727, -0.04278526082634926, -0.06981302052736282, 0.011629841290414333, -0.004961177706718445, -0.2852141857147217, 0.07539182156324387, 0.004707482643425465, 0.059301573783159256, 0.013658629730343819, 0.037553075700998306, -0.0033389898017048836, -0.013415049761533737, -0.042552217841148376, -0.01946237124502659, 0.03490746393799782, -0.009660303592681885, -0.03582313656806946, -0.04104008898139, -0.05932266265153885, 0.025944752618670464, 0.07424739748239517, -0.0043805912137031555, -0.055667418986558914, 0.044869039207696915, 0.04628124088048935, 0.0363878458738327, 0.13856297731399536, 0.08878212422132492, -0.03202899545431137, -0.04274339973926544, 0.013219313696026802, -0.0009816773235797882, -0.0026475100312381983, 0.056020110845565796, -0.009899785742163658, -0.008258752524852753, 0.023686135187745094, 0.027231337502598763, 0.017998354509472847, -0.012856640852987766, -0.025390097871422768, 0.019695593044161797, 0.07559414952993393, -0.026778867468237877, -0.041360244154930115, 0.00921968650072813, -0.037533730268478394, -0.013657969422638416, 0.06002220883965492, 0.04826352745294571, 0.013497562147676945, -0.027281904593110085, -0.12042402476072311, 0.0032859446946531534, -0.03460604324936867, -0.05761837959289551, 0.013118471950292587, 0.016749361529946327, 0.055699799209833145, -0.009518364444375038, -0.0632067322731018, 0.034953560680150986, -0.003123016096651554, -0.011141441762447357, -0.02628430724143982, 0.03424986079335213, 0.09762468934059143, -0.002836888888850808, 0.0175982303917408], "2c5d4291-5db2-4e19-ad43-df69d548615f": [-0.09071487188339233, -0.006685313768684864, 0.029438180848956108, 0.028569119051098824, 0.027732428163290024, -0.04534939303994179, 0.06779228150844574, -0.013314194045960903, -0.0035375552251935005, -0.03164016827940941, 0.010868334211409092, -0.012294360436499119, -0.034087181091308594, 0.0015769839519634843, -0.021170811727643013, 0.008268904872238636, -0.05487147718667984, -0.054671868681907654, -0.06525425612926483, 0.02378559298813343, 0.05360332876443863, -0.02262541465461254, -0.00014675983402412385, 0.00028073039720766246, -0.035096507519483566, 0.04740674048662186, 0.007309404667466879, -0.0504918098449707, -0.00523187592625618, -0.1599736511707306, 0.0014368470292538404, -0.02812693640589714, -0.009942096658051014, -0.005921193398535252, 0.0006915235426276922, 0.06142500787973404, 0.044356752187013626, 0.005680824629962444, -0.015591706149280071, 0.01936471462249756, -0.010954705066978931, 0.011981590650975704, -0.008341439999639988, -0.02158087119460106, 0.027269523590803146, -0.020190749317407608, 0.008293265476822853, 0.007397022098302841, -0.025579292327165604, -0.024615375325083733, -0.06045253202319145, -0.012033576145768166, 0.0022496990859508514, -0.022040434181690216, -0.032738689333200455, 0.09459983557462692, 0.051145315170288086, 0.019611598923802376, 0.07410651445388794, 0.006311303470283747, 0.04020176827907562, 0.0207058172672987, -0.11523523926734924, 0.057550352066755295, 0.055528298020362854, 0.006048944313079119, -0.05237594619393349, -0.03895252197980881, -0.028219470754265785, 0.01824885420501232, 0.015147180296480656, -0.024103369563817978, -0.0031144404783844948, 0.020647885277867317, -0.004690845496952534, 0.020301369950175285, -0.008894277736544609, -0.027539243921637535, 0.03262422978878021, 0.020899837836623192, -0.059200067073106766, 0.017715562134981155, -0.04099641740322113, 0.02146310731768608, 0.03434829041361809, -0.04909028485417366, 0.023261738941073418, -0.012152331881225109, 0.003619612194597721, -0.02905198000371456, 0.0010504679521545768, -0.018543465062975883, -0.03253842145204544, -0.011423852294683456, 0.0013385849306359887, -0.012753378599882126, 0.005759912542998791, 0.0381847620010376, -0.010535451583564281, 0.39325153827667236, -0.025582613423466682, -0.001439880346879363, 0.014140035957098007, 0.0336596705019474, 0.02239040471613407, -0.02674013562500477, 0.0369284451007843, -0.0766879990696907, 0.02141539752483368, 0.06593703478574753, 0.010868779383599758, -0.011910374276340008, 0.08215324580669403, -0.03557176515460014, 0.037287283688783646, 0.020525982603430748, 0.038373153656721115, -0.0004868766409344971, 0.005438920110464096, 0.013861596584320068, 0.06850253790616989, 0.004903942812234163, 0.010964958928525448, -0.05482050031423569, 0.01595102809369564, -0.018204929307103157, 0.09475360065698624, 0.05189353972673416, -0.039071597158908844, -0.03730585798621178, 0.01040869951248169, -0.0711134523153305, 0.03166984021663666, 0.0484776608645916, 0.013443897478282452, 0.006248451303690672, 0.008616093546152115, -0.0009019472636282444, 0.0759589821100235, -0.055197637528181076, -0.027247784659266472, -0.15040543675422668, -0.02621440589427948, 0.03505955636501312, -0.02145341783761978, 0.06777945905923843, 0.014009524136781693, -0.03488680720329285, 0.04821257293224335, 0.05578562617301941, -0.0323830209672451, -0.0026927690487354994, 0.01816103234887123, -0.03991569206118584, 0.025611240416765213, 0.0055957152508199215, 0.04984994977712631, 0.09408610314130783, -0.02871900238096714, 0.04804801568388939, 0.034636955708265305, -0.018805934116244316, 0.020222743973135948, -0.03681103512644768, 0.05277786776423454, 0.006574269384145737, -0.06317518651485443, -0.03410878777503967, -0.0062514059245586395, -0.06207990646362305, 0.05995788052678108, 0.03168322890996933, -0.06579458713531494, 0.03260869160294533, 0.01660626009106636, 0.002062502782791853, -0.0002856520877685398, 0.009321838617324829, 0.02300323359668255, 0.008678517304360867, -0.041844092309474945, -0.04215562343597412, 0.006878416519612074, 0.06993043422698975, -0.056831903755664825, -0.027560574933886528, 0.015172313898801804, -0.046932321041822433, 0.027932094410061836, -0.034054916352033615, 0.04740689694881439, -0.013478991575539112, -0.008894037455320358, 0.077881820499897, -0.04214058443903923, -0.017892513424158096, -0.001658229622989893, 0.03730250149965286, -0.023082716390490532, -0.0028506251983344555, -0.04537908732891083, -0.06527436524629593, -0.006287513766437769, 0.04808107763528824, 0.05928006395697594, 0.06132109835743904, 0.04492507874965668, -0.03275543451309204, 0.10628785938024521, 0.026739325374364853, -0.01740426942706108, -0.053991954773664474, -0.045536112040281296, 0.01104473602026701, -0.0002911385672632605, 0.0040205614641308784, -0.0007035669987089932, -0.011793006211519241, -0.01690050959587097, -0.032839011400938034, -0.01950213313102722, -0.08269959688186646, -0.043829888105392456, -0.3233094811439514, -0.03643547743558884, 0.014687138609588146, -0.044849082827568054, 0.05033952742815018, -0.03939838707447052, -0.010665683075785637, -0.03707336634397507, 0.07520075142383575, -0.03381961211562157, -0.04291221499443054, -0.05172193795442581, 0.02034185826778412, -0.0679713562130928, -0.024488335475325584, 0.06777146458625793, -0.04140911251306534, 0.024643000215291977, 0.015058704651892185, 0.04162769764661789, 0.006385147571563721, 0.0466071218252182, 0.014377878047525883, -0.09515443444252014, -0.0644114688038826, 0.013636033982038498, 0.15707366168498993, 0.059251394122838974, 0.026808589696884155, -0.011181328445672989, 0.026403306052088737, 0.03634215518832207, -0.04670898616313934, -0.02723807655274868, 0.009644241072237492, -0.003948936704546213, -0.020446782931685448, -0.012269874103367329, -0.004006281029433012, -0.025355754420161247, -0.04340747371315956, 0.06800954788923264, -0.02261950448155403, 0.058978546410799026, -0.05397186428308487, 0.03197287768125534, 0.033235300332307816, -0.012639853172004223, -0.009479842148721218, 0.01042533852159977, 0.0017769117839634418, 0.037152647972106934, -0.042898327112197876, 0.0051729376427829266, -0.008893505670130253, -0.01817220076918602, -0.06279851496219635, -0.028432535007596016, -0.049249470233917236, 0.04110376164317131, -0.00943630002439022, 0.037711530923843384, 0.03612547367811203, -0.0290274266153574, 0.001760548329912126, 0.04448758065700531, -0.02478073164820671, -0.041335877031087875, -0.005660087801516056, 0.04047287628054619, -0.03131921589374542, 0.0868275910615921, -0.015953466296195984, -0.049286697059869766, 0.018862511962652206, 0.025886526331305504, 0.03839188069105148, 0.024759599938988686, -0.01922839879989624, 0.0021842054557055235, 0.04019828885793686, -0.021179603412747383, -0.005580536555498838, 0.01957148313522339, -0.022564873099327087, -0.010078053921461105, -0.002858836902305484, -0.025324352085590363, 0.0599001869559288, -0.01816447824239731, -0.05294237285852432, 0.0327596440911293, -0.008677542209625244, -0.06737469136714935, 0.03285767510533333, -0.008154268376529217, -0.29924276471138, 0.008234668523073196, 0.02731870673596859, 0.04163871333003044, -0.0017640036530792713, 0.014469010755419731, -0.05060631409287453, 0.01984325423836708, -0.045163292437791824, -0.023147443309426308, 0.03247574716806412, -0.006008100230246782, -0.03598567098379135, -0.04238569736480713, -0.028504641726613045, 0.033287566155195236, 0.06183753162622452, 0.035878900438547134, -0.003000416560098529, 0.0584079846739769, 0.03306591138243675, 0.07135067135095596, 0.14314420521259308, 0.060158539563417435, -0.0243439469486475, -0.07103266566991806, 0.026938535273075104, 0.012608944438397884, 0.0435045100748539, 0.024906547740101814, 0.012775000184774399, -0.0053414576686918736, 0.04290550574660301, 0.0146861020475626, 0.005646197125315666, -0.03757140412926674, -0.017788268625736237, 0.026089532300829887, 0.10733002424240112, 0.006570168770849705, -0.043519772589206696, 0.027496712282299995, -0.028388461098074913, -0.014121769927442074, 0.06796590238809586, 0.05026689171791077, 0.003761435393244028, -0.010689853690564632, -0.0935225635766983, -0.0044191209599375725, -0.0435202457010746, -0.04811729118227959, 0.001144082983955741, 0.018061209470033646, 0.0033877091482281685, -0.018744340166449547, -0.018771199509501457, 0.024592582136392593, 0.017954081296920776, -0.01956561952829361, -0.04773886874318123, -0.012584446929395199, 0.12546014785766602, -0.025532064959406853, -0.01923465169966221], "1b06fee1-88bd-4071-bd33-b1f42ba88701": [-0.07804341614246368, -0.009933577850461006, 0.03364386036992073, 0.036739930510520935, 0.00041531125316396356, 0.017524750903248787, 0.06721507012844086, -0.005871349014341831, -0.013794204220175743, -0.050462815910577774, -0.0020366651006042957, 0.035707391798496246, -0.013543294742703438, -0.00953741930425167, -0.03060581162571907, 0.03189403563737869, -0.029954278841614723, -0.021095864474773407, -0.10145238786935806, 0.016760164871811867, 0.026709917932748795, 0.008762575685977936, 0.017705118283629417, 0.018447566777467728, -0.03308351710438728, 0.013516834937036037, 0.04528002440929413, -0.027193106710910797, 0.006470882333815098, -0.12940534949302673, 0.0014220670564100146, -0.04372089356184006, 0.0034255958162248135, -0.01761380210518837, -0.04045366495847702, 0.05619605630636215, 0.029782477766275406, 0.019207723438739777, -0.022779135033488274, 0.029217902570962906, 0.016596529632806778, 0.013688493520021439, -0.015491691417992115, 0.004739896394312382, 0.03883671760559082, 0.006042275112122297, 0.0025897405575960875, -0.029676994308829308, 0.001518965233117342, -0.002733653411269188, -0.057736095041036606, -0.03699439764022827, -0.009995926171541214, -0.005838064942508936, -0.0069225202314555645, 0.08806809782981873, 0.06777723878622055, 0.01818232238292694, 0.08828587830066681, -0.00031757267424836755, 0.011052343994379044, -0.0008706426015123725, -0.09134973585605621, 0.05005132034420967, 0.06979241222143173, 0.0073884837329387665, -0.06717874854803085, 0.0035906692501157522, -0.039789699018001556, 0.08826009184122086, -0.028083261102437973, -0.014952759258449078, 0.021315839141607285, 0.014412862248718739, -0.004926708992570639, 0.029384464025497437, 0.013143761083483696, -0.03364953026175499, 0.021551016718149185, 0.01970863714814186, -0.07221482694149017, 0.004081162624061108, -0.05855805054306984, 0.014984888955950737, -0.004004932940006256, -0.05546385422348976, 0.018338853493332863, -0.03965982422232628, -0.033616188913583755, -0.04093198478221893, 0.012730435468256474, -0.05523444339632988, -0.015670007094740868, -0.01447297167032957, 0.005520390346646309, -0.029033422470092773, -0.027548784390091896, 0.04459894075989723, 0.008447818458080292, 0.3819500803947449, 0.018539030104875565, -0.016511637717485428, -0.026154255494475365, 0.03822401538491249, -0.008953944779932499, -0.03575923293828964, 0.02276085875928402, -0.0804697647690773, 0.011139707639813423, 0.0839715525507927, 0.02786029316484928, -0.000656560470815748, 0.059466127306222916, -0.03516790643334389, 0.09767314046621323, -0.009747074916958809, 0.057773396372795105, -0.036329008638858795, 0.00499001843854785, 0.002899770624935627, 0.03602619469165802, 0.015153664164245129, -0.004613148979842663, -0.019051196053624153, 0.02130185440182686, -0.01569247432053089, 0.0731719508767128, 0.054844245314598083, 0.013047220185399055, -0.08682187646627426, 0.012128788977861404, -0.06693542748689651, 0.007401405833661556, 0.06078559160232544, 0.00775113794952631, 0.042676664888858795, 0.025797681882977486, 0.010251115076243877, 0.07931443303823471, -0.05092908442020416, -0.01999882608652115, -0.15590007603168488, -0.03771360218524933, 0.008492185734212399, -0.023089788854122162, 0.04996566101908684, 0.03977825492620468, -0.042067307978868484, 0.039075400680303574, 0.05446205660700798, -0.0009549958631396294, -0.007984373718500137, -0.004921036306768656, -0.023357268422842026, 0.023442475125193596, 0.010955209843814373, 0.026973191648721695, 0.12367100268602371, 0.029358142986893654, 0.03677679970860481, 0.020614225417375565, -0.02590327151119709, 0.036766961216926575, -0.024395696818828583, 0.0066975196823477745, 0.012680372223258018, -0.06816303730010986, -0.029156554490327835, -0.03815945237874985, -0.04371454939246178, 0.0152176758274436, 0.01729413866996765, -0.07167420536279678, 0.016714217141270638, 0.016196275129914284, -0.01597844809293747, -0.00671375822275877, -0.04562172666192055, 0.014377139508724213, 0.06309487670660019, -0.014400705695152283, -0.07438711822032928, 0.027538983151316643, 0.044722408056259155, -0.061079174280166626, -0.00044079794315621257, 0.02089015394449234, -0.04751340672373772, 0.021652350202202797, -0.058332979679107666, 0.02561159059405327, -0.00548199936747551, -0.029448682442307472, 0.02690884843468666, -0.06971297413110733, -0.043288569897413254, -0.038839515298604965, 0.01773776486515999, -0.004639896564185619, 0.009216705337166786, -0.07153967767953873, -0.03158772736787796, -0.03612951934337616, 0.021178724244236946, 0.07267382740974426, 0.06427766382694244, 0.027732504531741142, -0.026037083938717842, 0.08543391525745392, -0.0063405754044651985, -0.024888698011636734, -0.050121672451496124, 0.003407461103051901, 0.03645434230566025, -0.005718698725104332, 0.0439998097717762, -0.0008148602209985256, 0.046215303242206573, -0.02952643856406212, -0.015699652954936028, -0.043199241161346436, -0.06824950128793716, -0.07307108491659164, -0.3144338130950928, -0.04574742168188095, -0.022127369418740273, -0.06760624796152115, 0.06971047073602676, -0.07299765944480896, -0.025849347934126854, -0.0838511735200882, 0.03810838609933853, -0.04038318619132042, -0.030236929655075073, -0.05197717249393463, 0.03130364790558815, -0.017095906659960747, -0.02390473522245884, 0.05294336751103401, -0.0832175761461258, 0.008646450936794281, 0.05372077226638794, 0.053024303168058395, -0.007114013656973839, 0.03581557795405388, -0.025497065857052803, -0.06012053042650223, -0.05511889606714249, 0.022748051211237907, 0.1519903540611267, 0.03740043565630913, 0.04508522152900696, -0.011664828285574913, 0.0010445623192936182, 0.02025713585317135, -0.04319550469517708, -0.03345885127782822, 0.02127107046544552, 0.021440457552671432, 0.003716142615303397, -0.05558066815137863, 0.03253210708498955, -0.010531644336879253, -0.07044731080532074, 0.08978971093893051, -0.021661954000592232, 0.001647720579057932, -0.0555487722158432, 0.02943507209420204, 0.022712310776114464, -0.01644204929471016, 0.0007990506128408015, 0.024754084646701813, 0.025913391262292862, 0.023193400353193283, -0.044329408556222916, 0.0031087142415344715, 0.025431189686059952, -0.017472749575972557, -0.06282832473516464, 0.014587044715881348, -0.052019357681274414, 0.03729492425918579, -0.010667272843420506, 0.02087542787194252, 0.034403614699840546, -0.028726743534207344, 0.028929496183991432, 0.02951517514884472, -0.008627875708043575, -0.023149190470576286, -0.01515258103609085, 0.05958981812000275, -0.005186041817069054, 0.07166341692209244, -0.001978932647034526, -0.04518235847353935, 0.05712387338280678, -0.014226710423827171, 0.04418162256479263, 0.006921329535543919, -0.04390121251344681, 0.009709067642688751, 0.0386621430516243, -0.030762391164898872, -0.0392768420279026, -0.0040820385329425335, -0.05761364847421646, -0.01733238622546196, 0.012629774399101734, -0.023402951657772064, 0.06935475766658783, -0.022536195814609528, -0.028227796778082848, 0.06833986192941666, -0.03001495823264122, -0.02672012895345688, 0.03548538312315941, 0.04708128049969673, -0.28515225648880005, 0.02712879329919815, -0.004695481155067682, 0.04965497925877571, 0.018852895125746727, 0.03464589640498161, -0.008463284000754356, 0.03146267309784889, -0.06254762411117554, -0.007767308969050646, 0.050168052315711975, 0.006514324806630611, -0.03301751986145973, -0.0020139783155173063, -0.027532614767551422, 0.00029735543648712337, 0.061783548444509506, 0.03372469171881676, -0.060762837529182434, 0.03812539204955101, 0.0187214482575655, 0.07116267830133438, 0.16069602966308594, 0.045896049588918686, -0.042467355728149414, -0.05150746926665306, 0.0022302945144474506, 0.022383389994502068, 0.040207844227552414, 0.02771901525557041, -0.023298149928450584, -0.01548170018941164, 0.053105778992176056, -0.007554897107183933, 0.0029149556066840887, -0.04417785629630089, -0.02336305007338524, -0.007524657528847456, 0.09584175795316696, 0.008069038391113281, -0.04023468494415283, 0.04956689476966858, 0.013456776738166809, -0.02069396898150444, 0.05787351727485657, 0.042304594069719315, 0.021051665768027306, -0.00330945267342031, -0.09354055672883987, -0.011344985105097294, -0.02365795709192753, -0.06935548037290573, 0.017776161432266235, -0.003834938630461693, 0.0009659169591031969, 0.020957089960575104, 0.0037953362334519625, 0.0269736647605896, 0.026841267943382263, -0.00358758307993412, -0.01059134490787983, 0.025548437610268593, 0.08215977251529694, 0.009425281547009945, 0.020200956612825394], "90855a3c-2335-412e-a6fc-77688c814dfa": [-0.04851546883583069, -0.002351303119212389, 0.07097495347261429, 0.05428117886185646, 0.0027072341181337833, 0.01866588182747364, 0.06029868125915527, -0.024045055732131004, -0.005627154838293791, -0.03779623657464981, -0.0019538812339305878, 0.028183162212371826, -0.05205922946333885, -0.03258546069264412, -0.005103669594973326, 0.019717948511242867, -0.06141282990574837, -0.03886626288294792, -0.09852631390094757, 0.015565630048513412, 0.02515791729092598, -0.0499262735247612, 0.027175860479474068, 0.03148297592997551, -0.03495970740914345, -0.011527244001626968, 0.018087925389409065, -0.040785759687423706, -0.0027187939267605543, -0.14370915293693542, 0.02096937783062458, -0.025761878117918968, -0.000978186260908842, -0.02587084285914898, -0.012697202153503895, 0.0726093128323555, 0.037343330681324005, 0.021995525807142258, 0.00776221789419651, 0.016280459240078926, 0.024067634716629982, 0.02679462917149067, -0.014136823825538158, -0.016599109396338463, 0.013154716230928898, 0.024223260581493378, 0.012585021555423737, -0.036129582673311234, 0.013100797310471535, -0.004521307535469532, -0.03620678558945656, -0.03154502809047699, 0.013084166683256626, -0.03204980865120888, 0.01097109168767929, 0.06600471585988998, 0.0702061653137207, -0.019977234303951263, 0.057608164846897125, 0.009255276061594486, 0.015970418229699135, 0.020501045510172844, -0.08383310586214066, 0.06421519815921783, 0.08139331638813019, -0.011280382983386517, -0.08426403999328613, -0.024069303646683693, 0.011115983128547668, 0.04701082035899162, -0.05379446595907211, -0.009113296866416931, 0.0023281737230718136, 0.02949490025639534, 0.02067447081208229, 0.029041869565844536, 0.0065287696197628975, -0.010400557890534401, 0.0765768513083458, 0.005697880871593952, -0.06723584234714508, 0.06222144514322281, -0.024064837023615837, 0.00879835058003664, -0.01819322630763054, -0.05563978850841522, 0.0036843582056462765, -0.027445809915661812, -0.03993501141667366, -0.04773019626736641, -0.0013455620501190424, -0.042703382670879364, -0.017569364979863167, -0.020775001496076584, -0.0017476563807576895, -0.02027120254933834, -0.036740709096193314, 0.042520664632320404, -0.002105321502313018, 0.4084700345993042, 0.000181710027391091, -0.0019095622701570392, -0.0010468048276379704, 0.03417492285370827, 0.019830046221613884, 0.010229187086224556, -0.015961281955242157, -0.06494181603193283, 0.04498417675495148, 0.10549946129322052, 0.029314659535884857, -0.003271026536822319, 0.07637868076562881, -0.011875965632498264, 0.10601790994405746, 0.014417867176234722, 0.06370452046394348, -0.037889931350946426, -0.021041683852672577, -0.0012345481663942337, 0.07482379674911499, 0.05096357688307762, 0.006630622316151857, -0.043468620628118515, -0.004230228252708912, -0.02101796120405197, 0.0583856962621212, 0.05841310694813728, -0.0035270163789391518, -0.08571867644786835, 0.02701396308839321, -0.03938251733779907, 0.03166964277625084, 0.05162647366523743, 0.0012814825167879462, 0.035622645169496536, 0.0055771274492144585, -0.0412396676838398, 0.06510952860116959, -0.04806087538599968, -0.04194354638457298, -0.14015419781208038, -0.038516998291015625, -0.04417543113231659, 0.0012831746134907007, 0.034802958369255066, 0.03479304164648056, -0.033079877495765686, 0.0296535212546587, 0.06122685223817825, 0.007624091114848852, -0.00771907065063715, -0.027162062004208565, -0.03180500864982605, 0.03339620679616928, 0.004728768486529589, 0.020861687138676643, 0.11494443565607071, 0.024226821959018707, 0.03121473267674446, 0.03826384246349335, -0.02446623519062996, 0.019030027091503143, -0.024598028510808945, 0.02805565670132637, 0.012755373492836952, -0.0424252524971962, -0.03959796577692032, -0.03580418974161148, -0.04375739023089409, 0.029905300587415695, 0.0355403907597065, -0.07631579041481018, 0.023866595700383186, -0.019557373598217964, -0.006300923880189657, 0.001738462713547051, -0.02774118445813656, 0.010231769643723965, 0.02923130802810192, -0.03933384642004967, -0.03786150738596916, -0.005524018779397011, 0.03929256275296211, -0.0638059675693512, -0.026429766789078712, 0.021084846928715706, -0.055901430547237396, 0.024367298930883408, -0.040095895528793335, 0.01538473553955555, 0.002045735949650407, -0.0009424296440556645, 0.010248367674648762, -0.03219896927475929, -0.013565928675234318, -0.009778815321624279, 0.006930638570338488, 0.00473372358828783, 0.011394421570003033, -0.05831081047654152, -0.047023702412843704, -0.03548209369182587, -0.0010663557332009077, 0.05062314122915268, 0.07196412980556488, 0.009160964749753475, -0.00613271864131093, 0.09419380128383636, 0.024893850088119507, -0.013458319008350372, -0.06357990205287933, -0.012670572847127914, 0.02284063957631588, -0.02616024762392044, 0.015033990144729614, -0.01895025558769703, 0.0147237628698349, -0.01781277358531952, 0.014292982406914234, 0.003472707699984312, -0.093717560172081, -0.04419387876987457, -0.32607123255729675, -0.017269078642129898, -0.013119089417159557, -0.10484600812196732, 0.05090581253170967, -0.0767466127872467, 0.0009250735747627914, -0.05670415610074997, 0.023057052865624428, -0.016009462997317314, -0.0038307581562548876, -0.05655576288700104, 0.03449089825153351, -0.010563276708126068, -0.041246943175792694, 0.07860425859689713, -0.048385776579380035, 0.005087049212306738, 0.041241198778152466, 0.04357229173183441, 0.012658067978918552, 0.02899344451725483, -0.007719590328633785, -0.07799968868494034, -0.06810296326875687, 0.0585152767598629, 0.16021254658699036, 0.07464990764856339, 0.05842317268252373, -0.002845903392881155, 0.015868427231907845, 0.044963937252759933, -0.011462341994047165, -0.011939574964344501, 0.028384236618876457, 0.024171167984604836, 0.00046191070578061044, -0.06936876475811005, 0.04452718794345856, 0.005506851244717836, -0.0835849791765213, 0.07483977824449539, -0.014081962406635284, -0.005200358107686043, -0.060600195080041885, 0.02308526448905468, -0.014484548009932041, -0.051101867109537125, 0.004355194512754679, -0.003534122137352824, 0.011813605204224586, 0.03146437183022499, -0.04397547245025635, -0.01338107232004404, -0.0055288225412368774, -0.013577167876064777, -0.05570356547832489, -0.023010876029729843, -0.04439205303788185, 0.03800632804632187, -0.026777638122439384, 0.035258736461400986, 0.018568264320492744, -0.012170681729912758, 0.0019726434256881475, 0.04073389992117882, -0.015024733729660511, -0.026432571932673454, 0.004324991721659899, 0.056955307722091675, -0.02922847867012024, 0.08932658284902573, -0.0033728599082678556, -0.04048994183540344, -0.0007435925072059035, -0.01158999465405941, 0.04400930926203728, 0.009520421735942364, -0.05766093730926514, 0.009845665656030178, 0.04264780133962631, -0.05764125660061836, -0.029557285830378532, 0.0232864823192358, -0.03749116137623787, -0.010204173624515533, -0.021942950785160065, -0.028449317440390587, 0.08098582923412323, -0.0246322900056839, -0.04494879022240639, 0.05319128930568695, -0.04071152210235596, -0.005761346779763699, 0.036943186074495316, 0.011908218264579773, -0.2839764952659607, 0.009886504150927067, -0.008762688376009464, 0.0625099390745163, 0.027639010921120644, 0.05603241175413132, -0.02242015115916729, 0.016028620302677155, -0.020371727645397186, -0.0028726975433528423, 0.04299801588058472, 0.024214530363678932, -0.0007104795658960938, 0.0040235272608697414, -0.017360230907797813, 0.016855008900165558, 0.04785094037652016, 0.03359636664390564, -0.06572284549474716, 0.013248763978481293, -0.0031675214413553476, 0.039111826568841934, 0.14848856627941132, 0.03607054799795151, -0.008351130411028862, -0.03831881657242775, -0.003830184694379568, 0.01874495856463909, 0.008460940793156624, 0.03467944264411926, -0.012689254246652126, -0.008256735280156136, 0.03460710495710373, -0.0009382813004776835, 0.020436547696590424, -0.04225333780050278, -0.01789589785039425, 0.01358687411993742, 0.07912394404411316, 0.008141634985804558, -0.05613444000482559, 0.04715878143906593, 0.006860953755676746, -0.015274550765752792, 0.05375337600708008, 0.02036099322140217, -0.003310439409688115, -0.017398852854967117, -0.07444553077220917, 0.024973765015602112, -0.02946392633020878, -0.046583645045757294, 0.00708492798730731, 0.01747315749526024, 0.03429718315601349, -0.0009319992386735976, -0.01316511258482933, 0.014833346009254456, 0.011346557177603245, -0.034959133714437485, -0.02628977969288826, -0.033500395715236664, 0.0883304551243782, 0.005880436860024929, 0.00031241460237652063], "ce04402a-6406-4e23-b72c-33e705b94d0b": [-0.041812483221292496, 0.00041182234417647123, 0.04541691765189171, 0.07025590538978577, 0.0302068293094635, 0.010595669038593769, 0.04144465923309326, 0.034268755465745926, -0.02165745012462139, -0.035536959767341614, -0.012676775455474854, -0.01205362007021904, -0.027556980028748512, -0.04436606541275978, -0.032776594161987305, 0.02046070247888565, -0.07691233605146408, -0.039578694850206375, -0.09741497784852982, 0.0495840422809124, 0.030145181342959404, -0.0546206459403038, 0.023255687206983566, -0.002039413433521986, -1.3170255442673806e-05, -0.0056399013847112656, 0.01683546043932438, -0.03987942636013031, -0.01674852892756462, -0.1290578991174698, -0.01768486760556698, -0.003501668805256486, -0.0045133549720048904, -0.04556572809815407, -0.0006863632006570697, 0.07745756953954697, 0.04848846420645714, -0.004782378673553467, 0.02060951665043831, 0.04734312742948532, 0.014380533248186111, 0.016349725425243378, -0.004819635301828384, 0.004271163139492273, 0.044524986296892166, -0.016249485313892365, 0.021700814366340637, -0.06049644947052002, 0.020087169483304024, -0.01671524904668331, -0.016652118414640427, -0.024322841316461563, 7.326978811761364e-05, -0.005311480723321438, -0.0021849102340638638, 0.02506057731807232, 0.07372258603572845, -0.026985637843608856, 0.018998948857188225, -0.018715836107730865, 0.02755257487297058, 0.003741305787116289, -0.08738826960325241, 0.06563117355108261, 0.06540879607200623, 0.014252721332013607, -0.05724864825606346, 0.005328209605067968, -0.007721796166151762, 0.04673055559396744, -0.025189120322465897, -0.028852105140686035, 0.01978461444377899, 0.040250957012176514, 0.007795293349772692, 0.03489505499601364, 0.03904591500759125, 0.011543876491487026, 0.0477103665471077, 0.011014527641236782, -0.04343217611312866, 0.04487891122698784, -0.014758311212062836, 0.034158866852521896, -0.028154244646430016, -0.09208637475967407, 0.00787599291652441, -0.053441859781742096, -0.0065329596400260925, 0.0094340480864048, 0.04006962105631828, -0.04931793734431267, -0.022585563361644745, -0.011993056163191795, -0.0057983542792499065, -0.010685717687010765, -0.043259214609861374, -0.009064052253961563, 0.026101836934685707, 0.4173516035079956, 0.0184700395911932, 0.004943548701703548, 0.0019536141771823168, 0.04633944481611252, 0.02135750837624073, -0.013775327242910862, 0.00295667489990592, -0.06711968779563904, 0.04245137795805931, 0.062211837619543076, 0.01740412227809429, -0.04712521284818649, 0.019256994128227234, 0.042340341955423355, 0.0587218776345253, -0.01922941952943802, 0.07339729368686676, -0.05581943318247795, -0.0247493889182806, -0.00432546203956008, 0.07607804983854294, 0.019651059061288834, 0.00501481955870986, -0.04725738242268562, 0.008202833123505116, -0.03354507312178612, 0.05717725679278374, 0.057804349809885025, -0.016177337616682053, -0.04967649281024933, 0.0286970566958189, -0.060283318161964417, 0.00944112241268158, 0.06599275767803192, 0.015446392819285393, 0.03544507548213005, 0.02834824100136757, -0.03118285909295082, 0.05453643947839737, -0.039803873747587204, -0.019140733405947685, -0.14528989791870117, -0.03091469407081604, -0.036994174122810364, 0.01989615522325039, -0.0021647396497428417, 0.05656637251377106, -0.0033043581061065197, 0.01076859887689352, 0.06138050556182861, 0.004239760339260101, 0.0041644880548119545, -0.029125981032848358, -0.024206221103668213, 0.010249392129480839, -0.03775743767619133, -0.0004394679854158312, 0.11316020041704178, 0.009382237680256367, 0.034194204956293106, 0.06492560356855392, -0.020652025938034058, 0.01776219718158245, 0.0089533980935812, 0.046256065368652344, 0.030012911185622215, -0.03674042224884033, -0.016213087365031242, -0.047828253358602524, -0.027454739436507225, 0.05361570417881012, 0.004475861322134733, -0.11322315037250519, 0.025439569726586342, -0.04617677628993988, -0.027780501171946526, -0.02036098577082157, -0.0295620895922184, 0.017918799072504044, 0.049194179475307465, -0.038324758410453796, -0.013502232730388641, 0.01207659486681223, 0.05404829606413841, -0.04042213782668114, -0.03072318807244301, 0.012551908381283283, -0.0613105446100235, 0.01463383249938488, -0.020658129826188087, 0.04806306213140488, -0.013065134175121784, -0.013342549093067646, 0.021900909021496773, -0.023056617006659508, -0.004129369277507067, 0.00010562659736024216, 0.007822555489838123, -0.02458927594125271, 0.03292783349752426, -0.030662700533866882, -0.05110585317015648, -0.019944561645388603, 0.016333773732185364, 0.016668135300278664, 0.036542858928442, 0.04065432399511337, -0.006192140281200409, 0.09833762049674988, 0.0160471610724926, -0.028798814862966537, -0.03222193196415901, -0.008868907578289509, 0.0347430482506752, 0.008538317866623402, 0.026772208511829376, 0.009591840207576752, -0.006301152985543013, -0.009800182655453682, 0.003496703691780567, -0.0020978497341275215, -0.09739585965871811, -0.05600574612617493, -0.3296279311180115, -0.070584736764431, -0.011521873995661736, -0.11969872564077377, 0.04471781104803085, -0.04734990745782852, 0.0059609864838421345, -0.03108898364007473, 0.004031685646623373, -0.03718968853354454, 0.011683469638228416, -0.08190300315618515, 0.0674726665019989, -0.0020621458534151316, -0.05422121658921242, 0.07288068532943726, -0.04739629477262497, 0.01148483157157898, 0.043575040996074677, 0.024955755099654198, 0.0027207941748201847, 0.01777183637022972, 0.0028861926402896643, -0.07360830157995224, -0.042037483304739, 0.0548674613237381, 0.16747529804706573, 0.0763782188296318, 0.05229746922850609, -0.010660314932465553, 0.0071626948192715645, 0.0449618324637413, -0.001138454768806696, -0.07048767805099487, 0.03768440708518028, 0.04198234900832176, 0.0008254825952462852, -0.035137612372636795, 0.014580214396119118, -0.042569663375616074, -0.0529940202832222, 0.09755460917949677, -0.02739991620182991, -0.004613546188920736, -0.06439705193042755, 4.887901013717055e-05, -0.0165704358369112, 0.009480859152972698, -0.007443596608936787, 0.035662125796079636, 0.005534767173230648, 0.07243089377880096, -0.037936981767416, 0.0005737683968618512, -0.010261408984661102, 0.028974585235118866, -0.06781159341335297, -0.021648945286870003, -0.03871949762105942, 0.06663363426923752, -0.024782316759228706, 0.023176664486527443, 0.040681492537260056, -0.02792155183851719, -0.024495286867022514, 0.026354949921369553, -0.002842218615114689, -0.05306854471564293, -0.0018539755837991834, 0.01668446511030197, -7.153423212002963e-05, 0.06708519905805588, -0.018085092306137085, -0.03715946897864342, -0.013399840332567692, 0.03300413861870766, 0.0059880283661186695, -0.002409667009487748, -0.03670860826969147, -0.004787877202033997, 0.04581938311457634, -0.03448529168963432, -0.005954041611403227, 0.007025727536529303, -0.03967975452542305, 0.004499776754528284, -0.016397537663578987, -0.0371955931186676, 0.07846451550722122, -0.02809320017695427, -0.08925807476043701, 0.041591718792915344, -0.05601659417152405, -0.028490155935287476, 0.003614021698012948, 0.0183358583599329, -0.27955928444862366, 0.027536632493138313, 0.030055489391088486, 0.048957351595163345, 0.028837338089942932, 0.058442872017621994, -0.025275390595197678, 0.03205057978630066, -0.0038075330667197704, 0.012454402633011341, 0.06994542479515076, 0.0037253410555422306, -0.0008784920792095363, -0.01478066947311163, -0.004502005409449339, 0.026751333847641945, 0.0420735701918602, 0.031241971999406815, -0.06654535979032516, -0.01646498218178749, -0.0034429202787578106, 0.030535027384757996, 0.11019975692033768, 0.05712297558784485, -0.04242100566625595, -0.03859838843345642, -0.012945189140737057, 0.026332302019000053, -0.021171342581510544, 0.0157590601593256, -0.052458032965660095, 0.02169155143201351, 0.003135387320071459, 0.019941255450248718, 0.050961028784513474, -0.04083971306681633, -0.02001345343887806, -0.025093605741858482, 0.06615795940160751, 0.019627874717116356, -0.06521981954574585, 0.009269260801374912, 0.011028041131794453, 0.04268746078014374, 0.023940404877066612, 0.0273346658796072, 0.007936153560876846, -0.0056874449364840984, -0.07573549449443817, 0.020431894809007645, -0.0412021204829216, -0.008591166697442532, 0.026647230610251427, -0.008186479099094868, 0.06516008824110031, -0.014305372722446918, -0.013776838779449463, 0.028220364823937416, -0.0059483968652784824, -0.0445050485432148, -0.034673821181058884, -0.029555683955550194, 0.09843286871910095, -0.019316859543323517, 0.030444689095020294], "975dd9b7-60dd-49a9-a498-e3c76eeefc22": [-0.02507297322154045, -0.04430604726076126, 0.019794542342424393, 0.05177522450685501, 0.007364319637417793, 0.014503389596939087, 0.015478646382689476, 0.02082405425608158, -0.02550991252064705, 0.002481937874108553, 0.005128408316522837, -0.022349689155817032, -0.027516445145010948, -0.028683854267001152, -0.04344523325562477, -0.0006500992458313704, -0.11287359893321991, -0.0002850602613762021, -0.106013223528862, 0.01912514865398407, 0.02266068011522293, -0.04774793982505798, 0.03752715513110161, -0.009702417999505997, -0.001708219526335597, 0.00668325973674655, 0.009864136576652527, -0.06363371759653091, -1.7507945813122205e-05, -0.16326238214969635, -0.00029705933411605656, 0.0033012880012392998, -0.03217732161283493, -0.030083367601037025, -0.012207740917801857, 0.09220179170370102, 0.044450245797634125, 0.00048127633635886014, 0.04596927762031555, 0.030372928828001022, 0.027700668200850487, 0.011575602926313877, -0.02958805486559868, -0.02631344646215439, 0.027641519904136658, -0.030110513791441917, 0.035351213067770004, -0.05445556342601776, 0.04457509517669678, -0.021929308772087097, -0.004505274351686239, -0.04413389787077904, 0.004358919337391853, -0.00841914489865303, 0.048154812306165695, 0.05708639696240425, 0.072725310921669, -0.021910088136792183, 0.04207736998796463, -0.015783673152327538, 0.020206142216920853, 0.022196970880031586, -0.11258005350828171, 0.06082978844642639, 0.07582872360944748, 0.01915942318737507, -0.05388889089226723, -0.022105475887656212, 0.016490362584590912, 0.08828198909759521, -0.012262635864317417, -0.027329426258802414, -0.006448288913816214, 0.035923030227422714, 0.026436230167746544, 0.02634962648153305, 0.039101794362068176, 0.0206215251237154, 0.045603539794683456, 0.027633866295218468, -0.07526645809412003, 0.01277230679988861, -0.023660970851778984, 0.04318278282880783, -0.019198205322027206, -0.07644837349653244, -0.01082700490951538, -0.05707808956503868, -0.008685413748025894, -0.018280813470482826, 0.027871033176779747, -0.05314062535762787, -0.019011497497558594, -0.018669217824935913, -0.02905074693262577, 1.803707709768787e-05, -0.021448707208037376, 0.006817812565714121, 0.007200147490948439, 0.37386220693588257, 0.01617388427257538, 0.010870629921555519, -0.012402263469994068, 0.049793846905231476, 0.027851929888129234, -0.0370473712682724, 0.0145860081538558, -0.056014031171798706, 0.022463591769337654, 0.07624554634094238, 0.03242775797843933, -0.05032869055867195, 0.037190720438957214, 0.02467435784637928, 0.06347128748893738, -0.01961047388613224, 0.055311061441898346, -0.013866615481674671, -0.02223999984562397, 0.019310584291815758, 0.06102912127971649, 0.0449155792593956, -0.016341682523489, -0.04165421053767204, -0.016420377418398857, -0.003922848962247372, 0.03355070948600769, 0.07991769164800644, -0.01875229924917221, -0.06864068657159805, 0.03685968741774559, -0.061434805393218994, 0.021304400637745857, 0.06064176186919212, 0.0322413332760334, 0.024594474583864212, 0.01718447543680668, -0.02943750098347664, 0.04817922040820122, -0.05643817409873009, -0.005577088333666325, -0.09740281850099564, 0.011809265241026878, -0.03547113388776779, 0.045175280421972275, 0.032064102590084076, 0.029041776433587074, 0.005959636997431517, 0.04418450966477394, 0.07624603807926178, -0.01938275620341301, 0.01223114226013422, -0.03276475891470909, -0.01565249264240265, 0.007476282771676779, -0.022366149351000786, 0.010819160379469395, 0.1309611052274704, -0.002498116809874773, 0.04188193380832672, 0.05210186913609505, -0.04631702974438667, 0.004339821636676788, -0.002076316624879837, 0.02253832295536995, 0.010917101055383682, -0.030165385454893112, -0.04228850454092026, -0.06664194166660309, -0.029173456132411957, -0.0004569829034153372, 0.03993126377463341, -0.0784311518073082, -0.029767228290438652, -0.045689694583415985, -0.029687119647860527, -0.04578980430960655, -0.04895691201090813, 0.040867552161216736, 0.046391889452934265, -0.008164562284946442, -0.022907616570591927, -0.005600031930953264, 0.04400371387600899, -0.029711972922086716, -0.014208551496267319, 0.005252044647932053, -0.07513657957315445, 0.01365867629647255, 0.019728606566786766, 0.06500524282455444, -0.015467687509953976, -0.004909205250442028, 0.05946909636259079, -0.036693889647722244, -0.028001336380839348, 0.016312023624777794, -0.005802436266094446, -0.04635430499911308, 0.023140018805861473, -0.05912655219435692, -0.050136301666498184, 0.0008722887723706663, -0.006979397963732481, 0.005855156574398279, 0.05264868587255478, 0.060560841113328934, -0.04154358431696892, 0.08864684402942657, 0.03109472058713436, -0.06350813060998917, -0.05176325514912605, -0.02114807441830635, 0.005978965200483799, 0.020877644419670105, 0.02642432413995266, 0.005268221255391836, 0.014485976658761501, -0.031476940959692, -0.03358357027173042, 0.0105678616091609, -0.08983165770769119, -0.04238097369670868, -0.3319225609302521, -0.04691588506102562, 0.005184856243431568, -0.08360462635755539, 0.05281137675046921, -0.08054856210947037, 0.027441805228590965, -0.039550986140966415, -0.0032373457215726376, -0.04594643786549568, -0.007494221907109022, -0.050153594464063644, 0.03150416165590286, -0.009053661487996578, -0.0664927214384079, 0.06425407528877258, -0.038880158215761185, 0.020775040611624718, 0.06401459127664566, 0.03732771798968315, -0.021060029044747353, 0.04006563499569893, -0.013910334557294846, -0.0688914805650711, -0.0350225456058979, 0.06746935844421387, 0.1719157099723816, 0.06589502096176147, 0.04999326169490814, 0.0013268517795950174, -0.009283795021474361, 0.06883411109447479, -0.012149233371019363, -0.040238797664642334, 0.03458982706069946, 0.06940852850675583, -0.022767324000597, -0.04440738260746002, 0.05899069458246231, -0.037907879799604416, -0.030582083389163017, 0.06950893998146057, -0.02137545496225357, 0.010053426027297974, -0.026005256921052933, 0.0012760437093675137, -0.026700323447585106, 0.0005019913660362363, -0.0074148294515907764, 0.05059155076742172, 0.0083217304199934, 0.02421385608613491, -0.024537403136491776, 0.007404196076095104, -0.005012171342968941, 0.056671541184186935, -0.041384559124708176, 0.012264365330338478, -0.04255138337612152, 0.04791202023625374, 0.002029200317338109, 0.030292484909296036, 0.028693076223134995, -0.0095456438139081, -0.013987819664180279, 0.03869382664561272, -0.005999721586704254, -0.055080100893974304, 0.006155729293823242, 0.06740213185548782, -0.008184332400560379, 0.06508738547563553, 0.02145998552441597, -0.04729568213224411, 0.018873529508709908, 0.03090655244886875, 0.03168916702270508, 0.002512957900762558, -0.05146070942282677, -0.00959332287311554, 0.029587388038635254, -0.05410715192556381, -0.0069490401074290276, -0.0012871300568804145, -0.019578877836465836, 0.02652311883866787, 0.019557466730475426, -0.047826964408159256, 0.029909910634160042, -0.007295779883861542, -0.07689688354730606, 0.037500351667404175, -0.06178826093673706, -0.025096038356423378, 0.024158911779522896, 0.0051032137125730515, -0.2612404227256775, 0.016955221071839333, 0.05186684429645538, 0.06065962836146355, 0.028574151918292046, 0.04787234216928482, -0.00907043181359768, -0.014253777451813221, -0.013980312272906303, -0.003227133769541979, 0.026504939422011375, 0.01538294181227684, -0.013040025718510151, -0.024268075823783875, -0.035829685628414154, 0.030305230990052223, 0.06609372049570084, 0.029001224786043167, -0.04831501469016075, -0.009708241559565067, -0.014342688024044037, 0.06071100011467934, 0.11572519689798355, 0.054191142320632935, -0.03253654018044472, -0.07777665555477142, -0.018823929131031036, -0.009410077705979347, 0.01675371453166008, 0.0191282257437706, -0.04084967076778412, 0.04051913693547249, 0.01519234199076891, 0.03880428895354271, 0.05098709091544151, -0.043103162199258804, -0.04684934392571449, -0.007645888719707727, 0.06143461540341377, -0.013459633104503155, -0.0900573804974556, 0.01058137696236372, 0.0043044439516961575, 0.02177046425640583, 0.028251590207219124, 0.05199483036994934, 0.007379443850368261, -0.003358893794938922, -0.09745897352695465, 0.015482463873922825, -0.022192278876900673, -0.036722589284181595, 0.01921164058148861, -0.011641825549304485, 0.04416104778647423, -0.005516232457011938, -0.03104027360677719, -0.013612502254545689, -0.04886819049715996, -0.02442290261387825, -0.0075243571773171425, -0.03355405107140541, 0.11220399290323257, -0.03101351298391819, 0.05184204503893852], "2702477b-1b69-42a2-b623-483d4bdbf88f": [-0.049393657594919205, -0.044982098042964935, 0.05305173993110657, 0.08494065701961517, 0.0003820209240075201, 0.019779419526457787, 0.0347331240773201, -0.013120477087795734, 0.01078533660620451, -0.020332910120487213, -0.0006770791951566935, -0.026200497522950172, 0.0027778565417975187, 0.00615305732935667, -0.011122900992631912, 0.011135181412100792, -0.05748136714100838, -0.03704645857214928, -0.12892161309719086, 0.0691898837685585, 0.02410517819225788, -0.04436032474040985, 0.06709831207990646, -0.0013241458218544722, -0.04405922070145607, 0.003913174849003553, 0.02889341488480568, -0.06806404143571854, -6.414843483071309e-06, -0.14589492976665497, -0.019289080053567886, -0.008389958180487156, -0.008567573502659798, -0.01612331159412861, 0.028664974495768547, 0.0919627845287323, 0.06243159621953964, -0.00954371690750122, 0.004763656761497259, 0.04665883257985115, 0.014556339010596275, -0.03935418650507927, -0.013215887360274792, -0.009496276266872883, 0.06706966459751129, -0.04876227676868439, 0.026703480631113052, -0.035728052258491516, -0.002376590622588992, -0.04844971001148224, -0.012033200822770596, -0.020515205338597298, -0.01793605275452137, -0.0027591169346123934, -0.003566305385902524, 0.09345071017742157, 0.05519808828830719, -0.018590863794088364, 0.06048465147614479, 0.02086208388209343, 0.03637112304568291, 0.024818038567900658, -0.08410948514938354, 0.04420208930969238, 0.08809357136487961, -0.03029179945588112, -0.06280253827571869, -0.05739833042025566, 0.03309992700815201, 0.02558625303208828, -0.022896217182278633, -0.008240576833486557, -0.01444388460367918, 0.03086368553340435, 0.012131428346037865, 0.0028170649893581867, 0.038612086325883865, -0.004115709103643894, 0.03797329589724541, 0.020517516881227493, -0.07495290786027908, 0.019233375787734985, -0.03180192783474922, 0.03992386534810066, -0.008059676736593246, -0.06751813739538193, 0.0026418715715408325, -0.017033521085977554, -0.05985971912741661, -0.04254751279950142, 0.034737151116132736, -0.05800895765423775, -0.02723722532391548, -0.03015299141407013, -0.009355995804071426, -0.023640267550945282, -0.044354356825351715, -0.002333063166588545, 0.0013372249668464065, 0.3971712589263916, 0.016422273591160774, 0.010322942398488522, -0.023484008386731148, 0.0394592359662056, 0.016907991841435432, 0.020077072083950043, 0.001921604503877461, -0.05685671418905258, 0.007786097005009651, 0.08941468596458435, 0.05364316701889038, -0.014559433795511723, 0.08611806482076645, 0.03883823752403259, 0.06247282028198242, 0.004193016327917576, 0.07770422101020813, -0.015373793430626392, -0.01988799497485161, 0.0380120649933815, 0.026914631947875023, 0.022102350369095802, 0.013700629584491253, -0.024756165221333504, -0.004930203780531883, -0.016192402690649033, 0.046467557549476624, 0.07567252963781357, -0.004825132433325052, -0.06677126884460449, 0.008030184544622898, -0.06154322624206543, 0.03699278458952904, 0.03574657440185547, 0.01772061176598072, 0.010703911073505878, 0.022981569170951843, -0.0166400745511055, 0.052527669817209244, -0.055936142802238464, -0.04103592038154602, -0.09839106351137161, 0.008397224359214306, -0.007588556502014399, -0.015139301307499409, -0.0028893733397126198, 0.04712545499205589, -0.019032761454582214, 0.03113739937543869, 0.05616656690835953, 0.0239583607763052, 0.0162502434104681, -0.027213070541620255, -0.04198451712727547, 0.04840610548853874, -0.0026485288981348276, -0.005656848195940256, 0.12156378477811813, 0.014739402569830418, 0.04700379818677902, 0.04608098417520523, -0.02425428293645382, 0.00768884876742959, -0.020368073135614395, 0.009915703907608986, 0.001028659869916737, -0.039785172790288925, -0.0425095334649086, -0.05644015222787857, -0.03516625240445137, 0.045614320784807205, 0.027460187673568726, -0.08287478238344193, 0.023305289447307587, -0.010802662000060081, -0.021376648917794228, -0.047226205468177795, -0.02317045070230961, -0.018182605504989624, 0.036726437509059906, -0.04962621629238129, -0.04519090801477432, -0.012273150496184826, 0.06156318634748459, -0.048645541071891785, -0.02213877998292446, 0.028232192620635033, -0.03674687445163727, 0.02125636488199234, -0.015771256759762764, 0.0662926509976387, 0.007638624869287014, 0.007029181346297264, 0.014805263839662075, -0.07159633934497833, -0.03980843722820282, 0.00893019326031208, 0.007243280299007893, -0.031082548201084137, -0.013733260333538055, -0.04573175683617592, -0.05929214879870415, -0.02425774373114109, 0.021545318886637688, 0.044018231332302094, 0.05183443799614906, 0.06685277074575424, -0.03189042583107948, 0.08203008770942688, 0.0280959140509367, -0.044881176203489304, -0.026188965886831284, -0.007400495000183582, 0.024814791977405548, 0.016418911516666412, 0.013859310187399387, -0.02487349510192871, 0.015112701803445816, 0.009776237420737743, -0.003393846331164241, -0.02617073431611061, -0.08188110589981079, -0.10264088958501816, -0.3137780725955963, -0.008025310933589935, -0.010533691383898258, -0.0811825543642044, 0.037408117204904556, -0.07697314769029617, -0.00795572716742754, -0.05207046493887901, 0.025820402428507805, -0.023689545691013336, 0.0016541266813874245, -0.04829593375325203, 0.04434356465935707, 0.044266313314437866, -0.04183347150683403, 0.05674561858177185, -0.035299334675073624, -0.02740752138197422, 0.057694800198078156, 0.018785441294312477, 0.002151930471882224, 0.027496568858623505, -0.02153961732983589, -0.07453282922506332, -0.038075920194387436, 0.034486353397369385, 0.17533424496650696, 0.0602269247174263, 0.043784547597169876, -0.029078323394060135, -0.008677230216562748, 0.0523652620613575, -0.0324523039162159, -0.040220603346824646, 0.04118804633617401, 0.04626606032252312, 0.0009350754553452134, -0.0049792705103755, 0.03561609610915184, -0.010989819653332233, -0.06389626115560532, 0.09706956148147583, -0.05654636397957802, -0.005254416726529598, -0.03559448570013046, 0.009215476922690868, -0.007449496537446976, 0.007648835889995098, -0.021502621471881866, 0.036665380001068115, 0.03693501278758049, 0.03901449963450432, -0.04719444364309311, -0.024534787982702255, -0.001206353073939681, 0.009278534911572933, -0.04358334466814995, -0.023559579625725746, -0.01581539772450924, 0.07606583833694458, -0.01761304959654808, 0.003006875282153487, 0.019630461931228638, -0.019534528255462646, -0.00547438021749258, 0.03211243450641632, -0.0339643768966198, -0.035440873354673386, 0.0046875555999577045, 0.030203940346837044, -0.018912067636847496, 0.056150730699300766, 0.006741021294146776, -0.03756639361381531, 0.036305125802755356, 0.023287417367100716, 0.03946813941001892, 0.02894803136587143, -0.04187549278140068, -0.010700583457946777, 0.037112802267074585, -0.025714943185448647, -0.016224274411797523, 0.0028477851301431656, -0.03407943248748779, 0.018470628187060356, -0.0011623353930190206, -0.054402437061071396, 0.04195736348628998, -0.003720414126291871, -0.07457973062992096, 0.011568190529942513, -0.055647093802690506, -7.125718548195437e-05, 0.025945479050278664, -0.006884253118187189, -0.273299902677536, -0.012231583707034588, 0.01551759522408247, 0.08201038092374802, 0.017772609367966652, 0.03633497282862663, -0.02956770732998848, -0.009697476401925087, -0.05480938032269478, -0.02189047448337078, 0.06549586355686188, 0.0014448813162744045, -0.008887680247426033, -0.0038569015450775623, -0.015831388533115387, 0.030324624851346016, 0.035182684659957886, 0.07018185406923294, -0.05830133333802223, 0.018969181925058365, -0.007141989190131426, 0.03732897341251373, 0.13589556515216827, 0.05637536197900772, -0.043891649693250656, -0.04645096883177757, -0.010132980532944202, 0.010245900601148605, -0.009765422903001308, 0.019820014014840126, -0.013541752472519875, -0.00582016771659255, 0.04847671091556549, 0.014206203632056713, 0.023559747263789177, -0.05314354598522186, -0.042165521532297134, 0.028406737372279167, 0.08990513533353806, -0.027359751984477043, -0.05880701541900635, 0.01808241195976734, 0.023038802668452263, 0.008864396251738071, 0.04861817508935928, 0.013536051847040653, 0.0017950962064787745, -0.013333470560610294, -0.09486944228410721, 0.018716881051659584, -0.023409683257341385, -0.02492673695087433, 0.020993685349822044, 0.010184256359934807, 0.017636891454458237, -0.0043681589886546135, -0.015430247411131859, 0.03711554780602455, -0.03288748487830162, -0.02948097139596939, -0.02411055751144886, 0.037763532251119614, 0.11316132545471191, -0.01877235621213913, 0.0144028440117836], "b10dd663-a214-4daa-9b67-2060a3fca070": [-0.07488859444856644, -0.03059801273047924, 0.0855928361415863, 0.05430329218506813, 0.041205283254384995, 0.0260904710739851, 0.05186592414975166, -0.036207739263772964, 0.003981014713644981, -0.004897312261164188, 0.013173029758036137, -0.019838856533169746, -0.03701440617442131, -0.011986719444394112, -0.01309141330420971, 0.02467055432498455, -0.03447701781988144, 0.007490010466426611, -0.10352738201618195, 0.026551557704806328, 0.026465555652976036, -0.027545098215341568, 0.010925318114459515, 0.008856963366270065, -0.03344842419028282, -0.0020477278158068657, 0.01300282683223486, -0.04775337502360344, -0.029623111709952354, -0.1344338208436966, -0.01216030865907669, 0.018521534278988838, -0.013928241096436977, 0.018683191388845444, 0.017763447016477585, 0.054128557443618774, 0.025578096508979797, 0.0025094510056078434, -0.02653256058692932, -0.003650727914646268, 0.006032687611877918, -0.017262684181332588, -0.00990720558911562, 0.0018503110622987151, 0.04921802878379822, 0.005709967575967312, 0.017349835485219955, -0.0007741641602478921, -0.008554814383387566, -0.03214748576283455, -0.03433416783809662, -0.06409180164337158, 0.011941846460103989, 0.0414501391351223, -0.030670270323753357, 0.040467314422130585, 0.05922560766339302, -0.016660042107105255, 0.09745229035615921, 0.019662724807858467, 0.06851506233215332, 0.01709112524986267, -0.1138211339712143, 0.03396487236022949, 0.04325602576136589, -0.010247677564620972, -0.05594990402460098, -0.007924694567918777, 0.007645852398127317, 0.06798258423805237, -0.04136256128549576, -0.008049934171140194, 0.016073979437351227, 0.001961942994967103, -0.009833579882979393, 0.009433104656636715, 0.016527779400348663, -0.04713667929172516, 0.03559392690658569, -0.006771510001271963, -0.06070154905319214, 0.005042842123657465, -0.06478770822286606, 0.061008352786302567, -0.01688222959637642, -0.027791650965809822, -0.016711324453353882, -0.036295581609010696, 0.011949870735406876, 0.02031879313290119, 0.055729642510414124, -0.0681605413556099, -0.020418839529156685, -0.024619434028863907, -0.019598962739109993, -0.005172519478946924, -0.05786018446087837, -0.01664516143500805, 0.027427729219198227, 0.4110803008079529, 0.01630023866891861, 0.0015067658387124538, 0.03901730850338936, 0.014478462748229504, -0.022041942924261093, -0.018658218905329704, -0.004884039983153343, -0.06529247015714645, 0.03872526064515114, 0.06933117657899857, 0.03202894702553749, -0.04888242110610008, 0.05763978883624077, 0.006970241200178862, -0.0010066310642287135, -0.023009460419416428, 0.0732995942234993, -0.052570831030607224, -0.08942459523677826, -0.031629446893930435, 0.03791572153568268, 0.005626235622912645, -0.0005046147271059453, -0.05897946655750275, 0.055006735026836395, -0.002405462320894003, 0.026647038757801056, 0.06993072479963303, 0.08190791308879852, -0.05815332382917404, 0.04903601482510567, -0.050466250628232956, 0.02201499603688717, 0.01335002202540636, 0.023926371708512306, -0.0023856577463448048, 0.049991950392723083, 0.01480407826602459, 0.06994203478097916, -0.06253694742918015, 0.002415475668385625, -0.14474399387836456, -0.06068640947341919, 0.021844036877155304, 0.018264196813106537, -0.002029788214713335, 0.030075963586568832, 0.010360080748796463, 0.042865123599767685, 0.06174980849027634, -0.008250481449067593, 0.03732654079794884, -0.04115147888660431, 0.0073653110302984715, 0.03436107560992241, 0.012497776187956333, 0.0012850950006395578, 0.1418098360300064, 0.0532824769616127, 0.023452887311577797, 0.024612506851553917, 0.0066528827883303165, 0.0009054585243575275, 0.01629473827779293, 0.030252348631620407, -0.035510774701833725, -0.0021311885211616755, -0.00011342190555296838, -0.021792830899357796, -0.013988378457725048, 0.027338650077581406, 0.030993366613984108, -0.0520339198410511, 0.08107415586709976, -0.0166780948638916, -0.010294999927282333, -0.03650839626789093, -0.06978227943181992, 0.027102118358016014, 0.0157876368612051, -0.02326975390315056, -0.020800434052944183, -0.006103204563260078, 0.04537764564156532, -0.035484351217746735, -0.00029977475060150027, 8.866277880770213e-07, -0.00976154301315546, 0.03516046702861786, -0.017002006992697716, 0.030514536425471306, 0.011849476024508476, -0.0588810071349144, 0.06269703060388565, -0.07044371217489243, -0.024166643619537354, -0.060807615518569946, 0.020512491464614868, -0.04656924679875374, -0.02729232795536518, -0.055760324001312256, -0.058497440069913864, -0.07279543578624725, 0.03009658306837082, 0.023065630346536636, 0.03152453526854515, 0.026284335181117058, -0.008425082080066204, 0.048817284405231476, 0.04822980985045433, -0.032511156052351, 0.011007984168827534, -0.014691897667944431, 0.034250810742378235, 0.002469609258696437, 0.08817324787378311, -0.009960049763321877, 0.006521343253552914, -0.014462747611105442, -0.016602883115410805, -0.01477828249335289, -0.10604008287191391, -0.07235326617956161, -0.31481796503067017, -0.031158026307821274, 0.004747776314616203, -0.04098152369260788, 0.05553574860095978, -0.026065750047564507, -0.0017937226220965385, -0.03413194790482521, 0.003984128590673208, -0.07568642497062683, 0.01955312117934227, -0.06831178069114685, 0.041061881929636, -0.016007397323846817, 0.004420823883265257, 0.04150037094950676, -0.0587749145925045, 0.0016213743947446346, -0.002055863616988063, 0.047456324100494385, 0.05435265973210335, 0.0047566997818648815, 0.009678423404693604, -0.003570591565221548, -0.0026445884723216295, 0.04674940183758736, 0.13443993031978607, 0.031557951122522354, 0.028316786512732506, 0.022243700921535492, 0.01175475213676691, 0.03546313941478729, -0.07757570594549179, -0.03667319566011429, 0.000497983128298074, 0.0172123946249485, 0.031475625932216644, -0.017307668924331665, -0.0012025110190734267, 0.0017004305263981223, -0.023900331929326057, 0.054042749106884, -0.040438152849674225, 0.026705551892518997, -0.011740362271666527, 0.0003068563819397241, -0.05436991900205612, 0.005937186069786549, 0.0025624455884099007, 0.03069569170475006, 0.010883500799536705, 0.04443413391709328, -0.029701432213187218, -0.004211495164781809, 0.020607920363545418, 0.011326268315315247, -0.09534568339586258, 0.021883193403482437, -0.08931798487901688, 0.03286534547805786, 0.002800887217745185, -0.04332499951124191, 0.033798519521951675, -0.06194246560335159, 0.004996167961508036, 0.012002124451100826, -0.0001269773201784119, -0.03541826084256172, 0.02447197586297989, 0.007680198643356562, -0.03747629001736641, 0.02735302597284317, 0.007973323576152325, -0.05631979554891586, -0.022928254678845406, 0.041564904153347015, 0.0026843445375561714, 0.00650964817032218, -0.07022920250892639, 0.02076885476708412, 0.06833608448505402, -0.025129439309239388, -0.020248038694262505, -0.030864965170621872, -0.0424518957734108, -0.017568139359354973, -0.036879513412714005, 0.0005800324724987149, 0.07713723182678223, -0.04351102560758591, -0.0697215348482132, 0.006735936272889376, -0.09054608643054962, 0.01996825449168682, 0.04390984773635864, -0.019615983590483665, -0.2787432372570038, 0.014443328604102135, 0.056867893785238266, 0.09322583675384521, 0.003312857123091817, 0.061344780027866364, 0.013729944825172424, 0.001060635899193585, 0.0057029020972549915, 0.0058425674214959145, 0.07265469431877136, -0.012605658732354641, -0.014967633411288261, -0.02130449377000332, -0.060986436903476715, 0.03793271631002426, 0.026770805940032005, 0.04039144515991211, -0.0523250438272953, 0.05231387913227081, 0.021091703325510025, 0.0565137043595314, 0.11434092372655869, 0.07149051129817963, -0.06021227687597275, -0.031450118869543076, -0.010110500268638134, -0.01349297259002924, -0.02069571428000927, 0.018160996958613396, -0.03785625100135803, -0.008037082850933075, 0.028461812064051628, -0.009174849838018417, 0.030827324837446213, -0.10000783950090408, 0.027934124693274498, 0.0427868627011776, 0.058251190930604935, 0.027210019528865814, -0.039557501673698425, -0.0012321863323450089, -0.03346944600343704, 0.015492146834731102, 0.028403734788298607, 0.010632527992129326, 0.010148762725293636, -0.026634303852915764, -0.07387472689151764, 0.030494052916765213, -0.026201285421848297, -0.013437720946967602, 0.009734704159200191, 0.002060672966763377, 0.018348826095461845, 0.01939067803323269, -0.039642419666051865, 0.03313479200005531, 0.017417220398783684, 0.004726307932287455, 0.012535742484033108, -0.02591417357325554, 0.07854790985584259, 0.019156508147716522, 0.028007308021187782], "21fd3f20-774f-42f9-a359-d88d2641457f": [-0.07901282608509064, 0.01794479228556156, 0.06953780353069305, 0.09084048122167587, 0.04058722034096718, 0.034977883100509644, 0.037790894508361816, -0.06300550699234009, -0.010670571587979794, 0.008093684911727905, 0.016263652592897415, -0.0031165448017418385, -0.02695256471633911, -0.08846552670001984, -0.02876552939414978, 0.053127795457839966, -0.040131185203790665, -0.0488748624920845, -0.12564566731452942, 0.028373830020427704, 0.03452679514884949, -0.05736664682626724, -0.0011658587027341127, 0.0536852665245533, -0.05266363173723221, 0.0018371357582509518, 0.024532940238714218, -0.04367518052458763, -0.02103063091635704, -0.11617719382047653, 0.005099388770759106, -0.012884619645774364, 0.024473613128066063, 0.0419948548078537, -0.008228160440921783, 0.06375649571418762, 0.0586518757045269, 0.05477038025856018, -0.024443574249744415, -0.005440912209451199, -0.020601719617843628, -0.03747756406664848, 0.016297636553645134, 0.01277167908847332, 0.07670804858207703, -0.005807462614029646, 0.010460268706083298, 0.020764563232660294, -0.0013311387738212943, -0.0432773195207119, -0.016340222209692, 0.00017769195255823433, -0.009702377021312714, -7.657482638023794e-05, -0.012195352464914322, 0.03447015583515167, 0.04798179119825363, -0.01571917161345482, 0.10763832181692123, 0.00041673428495414555, 0.0700114518404007, 0.028377428650856018, -0.08192460238933563, 0.03754189610481262, 0.008212000131607056, 0.0028001870959997177, -0.03473389521241188, -0.048479825258255005, -0.014830178581178188, 0.03717157244682312, -0.024234551936388016, 0.01231387723237276, 0.03125321492552757, -0.0036905058659613132, -0.05287506431341171, 0.02601883001625538, 0.016045518219470978, -0.00843490194529295, 0.004059614147990942, 0.011240431107580662, -0.0764499232172966, 0.036483168601989746, -0.05171436443924904, 0.046104446053504944, -0.025150073692202568, -0.028696583583950996, 0.010376686230301857, -0.04920816794037819, -0.001571626984514296, -0.04303014278411865, 0.043182123452425, -0.05583665519952774, -0.04042164236307144, -0.010135718621313572, -0.030450711026787758, -0.016659153625369072, -0.023107655346393585, -0.02797277830541134, 0.04411538317799568, 0.40003228187561035, 0.032938048243522644, 0.025718361139297485, 0.010964143089950085, 0.06266695261001587, -0.024939585477113724, -0.02454287000000477, -0.03871041163802147, -0.08852138370275497, 0.008138987235724926, 0.05456036329269409, 0.026460174471139908, -0.029735296964645386, 0.03308628126978874, 0.013063239865005016, 0.019935937598347664, -0.00811721384525299, 0.014284085482358932, 0.004834403749555349, -0.03549942001700401, -0.008111678063869476, 0.06356116384267807, 0.026555126532912254, -0.004552748054265976, -0.06025904417037964, 0.03002467378973961, 0.03513466194272041, 0.06401475518941879, 0.05214667692780495, 0.0234555471688509, -0.028192324563860893, 0.04518464207649231, -0.005586053244769573, 0.004520440474152565, -0.006517842877656221, -0.028218358755111694, -0.004077011253684759, 0.0431889183819294, -0.024309081956744194, 0.06195957213640213, -0.029524527490139008, -0.012059897184371948, -0.15695713460445404, -0.09065286070108414, -0.014721594750881195, -0.018126951530575752, -0.005697901360690594, 0.04934365674853325, 0.02437976375222206, 0.021143853664398193, 0.06105143949389458, 0.047093480825424194, 0.029621601104736328, -0.0017551358323544264, 0.011831979267299175, -0.0004443397338036448, -0.006059103645384312, 0.03872453421354294, 0.1574343740940094, 0.02314739301800728, -0.005755697842687368, 0.05359778180718422, -0.008056718856096268, 0.02895396389067173, 0.00014989804185461253, 0.026138434186577797, -0.06093662977218628, 0.033213064074516296, -0.05227506905794144, -0.046692825853824615, -0.054588112980127335, 0.017119746655225754, 0.01904679462313652, -0.09695346653461456, 0.10806039720773697, -0.00978872925043106, -0.006069570314139128, -0.01740703545510769, -0.037263307720422745, 0.01102158147841692, -0.0037369115743786097, -0.02749725431203842, -0.0198745708912611, -0.020089469850063324, 0.0335383303463459, -0.008886357769370079, 0.0292693842202425, -0.018982350826263428, 0.019339274615049362, 0.01423938199877739, -0.03453762084245682, 0.06519212573766708, 0.03244370222091675, -0.04184940084815025, 0.013418255373835564, -0.0639285147190094, -0.013610702939331532, -0.03547288477420807, -0.021274030208587646, -0.010170782916247845, -0.00244183954782784, -0.05674092471599579, -0.0511842779815197, 0.00884050689637661, 0.0360860712826252, 0.01164369098842144, -0.003407247830182314, 0.038123082369565964, -0.03704699128866196, 0.032577358186244965, 0.03999217227101326, -0.04947131127119064, 0.01713533326983452, 0.00608790572732687, -0.012548369355499744, -0.013178701512515545, 0.06291920691728592, -0.026458127424120903, 0.029347430914640427, -0.01986411213874817, -0.0056536211632192135, -0.018650315701961517, -0.10678304731845856, -0.08599456399679184, -0.31955045461654663, -0.01725439354777336, 0.032209109514951706, -0.018663031980395317, 0.05651345103979111, -0.05810103192925453, 0.015669187530875206, 0.001811948255635798, 0.00713861919939518, -0.03906078636646271, 0.009677117690443993, -0.049988217651844025, 0.012383566237986088, 0.04825831204652786, -0.0007441819179803133, 0.05233875289559364, -0.09054482728242874, 0.03644503280520439, 0.03357348591089249, 0.0460856668651104, 0.0539129301905632, 0.014342247508466244, -0.005275900010019541, -0.053415488451719284, -0.027971580624580383, 0.06403575092554092, 0.15264467895030975, 0.05102219432592392, -0.016517527401447296, 0.004939059726893902, 0.017946757376194, 0.018411502242088318, -0.0772533267736435, -0.029736682772636414, 0.007077209185808897, 0.020010342821478844, 0.05490536242723465, -0.025173816829919815, 0.028443800285458565, 0.026510752737522125, -0.03683188557624817, 0.07305882126092911, 0.01959063857793808, 0.031022189185023308, 0.012497731484472752, 0.001734336488880217, -0.05247574672102928, 0.013832216151058674, 0.01772085577249527, 0.05180099606513977, 0.017706075683236122, -0.006571376230567694, -0.06511012464761734, -0.022367237135767937, 0.022821208462119102, -0.006504568737000227, -0.06664534658193588, -0.016563933342695236, -0.05066496133804321, 0.07982459664344788, -0.024717900902032852, -0.011772208847105503, 0.028059696778655052, -0.050015147775411606, -0.02991211786866188, 0.05824722722172737, -0.010444151237607002, 0.0034914319403469563, 0.019101956859230995, -0.015493816696107388, -0.02538406103849411, 0.055186204612255096, 0.007506431546062231, -0.11025431007146835, 0.02818579412996769, 0.016101902350783348, 0.006931900978088379, -0.006542293354868889, -0.06057155504822731, 0.0028162607923150063, 0.042818572372198105, -0.026882605627179146, -0.040493693202733994, -0.03275538980960846, -0.04758024215698242, -0.017351247370243073, -0.03588828444480896, -0.026982130482792854, 0.022013554349541664, -0.05951676890254021, -0.05186569690704346, 0.010089692659676075, -0.04490585997700691, 0.02643078751862049, 0.02017921395599842, -0.01760118082165718, -0.26432693004608154, 0.04125930368900299, 0.01248813048005104, 0.0963757112622261, 0.01789507269859314, -0.0040008206851780415, -0.04078684747219086, -0.01818089559674263, -0.0037464944180101156, -0.020749002695083618, 0.08855374157428741, -0.040103670209646225, 0.011192752048373222, -0.01447863969951868, -0.03540517017245293, 0.07817601412534714, 0.03119511902332306, 0.031852737069129944, -0.09310571104288101, 0.04031216725707054, 0.0019156726775690913, 0.020473213866353035, 0.10913854092359543, 0.059789612889289856, -0.0621689073741436, -0.025941412895917892, -0.013412859290838242, 0.011094778776168823, -0.028157802298665047, 0.011571202427148819, -0.009021695703268051, -0.01544472761452198, 0.005440215580165386, 0.015959275886416435, 0.02493743970990181, -0.035753294825553894, 0.018209097906947136, 0.039881631731987, 0.04387086629867554, 0.04196425527334213, 0.004014711827039719, 0.009696286171674728, -0.017802592366933823, -0.02947705052793026, 0.011113726533949375, 0.032727234065532684, 0.057065512984991074, -0.015775367617607117, -0.03946381434798241, 0.030126437544822693, -0.03163985162973404, -0.0023340939078480005, -0.007432690355926752, 0.019981281831860542, 0.06668084114789963, -0.005149235483258963, -0.031011980026960373, -0.011208375915884972, 0.016789596527814865, 0.02595018595457077, -0.025769159197807312, -0.05734487995505333, 0.053936075419187546, 0.019109485670924187, 0.01837054267525673], "bf2f865a-d8c4-4b15-90af-629ce3ac7eb9": [-0.05697833001613617, 0.03935739025473595, 0.03846476972103119, 0.08526048809289932, 0.07915446907281876, 0.009441149421036243, 0.07534234970808029, -0.04907530918717384, -0.027118192985653877, -0.019838882610201836, -0.0017748067621141672, -0.0016232951311394572, 0.012792655266821384, -0.06455694139003754, -0.016242003068327904, 0.06338803470134735, -0.05012837424874306, -0.003705858252942562, -0.10607500374317169, 0.05389951542019844, 0.007011148147284985, -0.021291842684149742, 0.03786088526248932, 0.035002872347831726, -0.03603028506040573, 0.0017858941573649645, 0.017302077263593674, -0.029981041327118874, -0.028017079457640648, -0.10412546247243881, -0.009767655283212662, -0.03742736205458641, -0.012141634710133076, -0.014261195436120033, 0.04641958326101303, 0.08922559022903442, 0.01912936195731163, 0.024166880175471306, 0.009427735581994057, -0.002280541229993105, -0.018791204318404198, -0.01509073842316866, 0.008877219632267952, -0.01199316792190075, 0.0457618273794651, 0.007158736698329449, 0.017513178288936615, -0.0243783351033926, 0.007125078700482845, -0.0028109599370509386, -0.0023269057273864746, -0.02517879381775856, -0.013260217383503914, -0.04001046344637871, -0.020609134808182716, 0.02196718566119671, 0.02459476888179779, -0.023221056908369064, 0.10085579752922058, 0.022442013025283813, 0.05183909833431244, 0.0416705422103405, -0.06171615794301033, 0.024254171177744865, 0.03841819986701012, 0.030398884788155556, -0.015407112427055836, -0.05600723624229431, -0.010026155039668083, 0.026475105434656143, -0.038445066660642624, 0.016151729971170425, 0.025382425636053085, 0.021566782146692276, -0.025690538808703423, 0.05747805908322334, -0.0016528262058272958, -0.04011034592986107, 0.02854384295642376, -0.0143757788464427, -0.05656413733959198, 0.016683777794241905, -0.042305998504161835, 0.03921625390648842, -0.03740420937538147, -0.07138882577419281, -0.00928503554314375, -0.01862289197742939, 0.007429132703691721, -0.04078080877661705, 0.04026634618639946, -0.03473428264260292, -0.020149989053606987, -0.022535080090165138, -0.031432632356882095, -0.0435982346534729, -0.016417348757386208, -0.02216721512377262, 0.008115990087389946, 0.39096617698669434, 0.038144126534461975, 0.012343957088887691, -0.011088158935308456, 0.03947320953011513, -0.005382191389799118, -0.04352658987045288, -0.030103832483291626, -0.09681390970945358, 0.03613888472318649, 0.016370141878724098, 0.0452750138938427, -0.07200013101100922, 0.05165320634841919, 0.018170079216361046, 0.02097225748002529, 0.012054149992763996, 0.04285220056772232, -0.02884536422789097, -0.052957385778427124, -0.023172682151198387, 0.046202152967453, -0.00318341888487339, 0.014270162209868431, -0.055035706609487534, 0.07547729462385178, -0.002006679307669401, 0.05781839042901993, 0.051536284387111664, 0.05538510903716087, -0.016936596482992172, 0.01601426862180233, -0.04553266987204552, 0.010790650732815266, 0.002356452401727438, -0.014138024300336838, 0.0003939503221772611, 0.023179298266768456, -0.024487903341650963, 0.05098002031445503, -0.03657691925764084, -0.03437254950404167, -0.18401886522769928, -0.08421561121940613, 0.010745301842689514, -0.003525061532855034, -0.04838617891073227, 0.046731121838092804, 0.024567708373069763, 0.02864120900630951, 0.07803080230951309, 0.012411224655807018, 0.036194734275341034, -0.0031227506697177887, -0.013788462616503239, 0.02585052326321602, 0.01389991119503975, 0.0002652810071595013, 0.12519894540309906, 0.016024751588702202, 0.00023082351253833622, 0.08259468525648117, 0.015120812691748142, 0.005051931366324425, 0.009039054624736309, 0.03492605686187744, -0.021718069911003113, 0.03729936480522156, -0.023779843002557755, -0.029768716543912888, -0.0402035191655159, 0.03434101864695549, 0.0416739359498024, -0.06980258226394653, 0.08375006914138794, -0.022782612591981888, -0.05282426252961159, -0.027335993945598602, -0.03232762590050697, -0.001647085533477366, 0.010613728314638138, -0.0648542270064354, -0.033072832971811295, -0.004576162435114384, 0.028847256675362587, -0.029390599578619003, 0.026532121002674103, -0.02241920307278633, 0.006912448909133673, 0.011392053216695786, -0.0222365390509367, 0.06550046056509018, 0.04730593413114548, -0.048913609236478806, 0.01828274130821228, -0.07117249071598053, 0.006408394780009985, -0.04612155258655548, 0.011978089809417725, -0.018734173849225044, -0.002641458762809634, -0.06024283170700073, -0.024680249392986298, 0.0019974587485194206, 0.0474870428442955, 0.024365579709410667, 0.03004857897758484, 0.0356764979660511, 0.007840621285140514, 0.043926820158958435, 0.03183520585298538, -0.013271898031234741, -0.011596689000725746, 0.03146471828222275, -0.045499980449676514, -0.016618458554148674, 0.07307175546884537, 0.005435148719698191, 0.07035335898399353, -0.03181515261530876, 0.013191730715334415, 0.01966949738562107, -0.07973587512969971, -0.09152591228485107, -0.3273133635520935, -0.030027346685528755, -0.0073644546791911125, -0.051116302609443665, 0.03353525325655937, -0.04599475860595703, 0.057982444763183594, -0.05190427601337433, -0.04509252682328224, -0.0518423356115818, -0.002608697162941098, -0.04348764568567276, 0.03642032667994499, 0.02350868470966816, -0.017049966380000114, 0.06937427073717117, -0.08068957179784775, 0.00750426622107625, 0.04385384917259216, 0.07121741771697998, 0.036282867193222046, -0.020447710528969765, -0.022887855768203735, -0.051956016570329666, -0.057302284985780716, 0.047267742455005646, 0.153750479221344, 0.05614243447780609, 0.024048633873462677, 0.018612027168273926, 0.0024208249524235725, 0.02460257150232792, -0.05903314799070358, -0.03536307066679001, 0.022778578102588654, 0.046281881630420685, 0.019344152882695198, -0.029773740097880363, 0.026087529957294464, 0.033968355506658554, 0.004268318880349398, 0.06779109686613083, -0.03433502838015556, -0.01108729187399149, -0.020451121032238007, -0.04133611544966698, -0.0401671826839447, 0.07750436663627625, 0.006290721707046032, 0.038465727120637894, -0.017365604639053345, 0.07864587754011154, 0.009524269960820675, -0.005335553083568811, -0.04233044013381004, -0.02264065109193325, -0.09406577795743942, 0.012516672722995281, -0.04438255354762077, 0.07764457166194916, -0.0338733047246933, -0.0527375154197216, -0.023939894512295723, -0.04446808248758316, -0.01825287565588951, 0.030821295455098152, -0.0021876732353121042, -0.0017079017125070095, 0.03776421397924423, 0.020375186577439308, -0.013195853680372238, 0.03229524940252304, -0.0030593997798860073, -0.10742854326963425, -0.02844284661114216, 0.03469891846179962, 0.014337431639432907, -0.008309295400977135, -0.0697816014289856, -0.019098250195384026, 0.014253637753427029, -0.012211240828037262, -0.03460785374045372, -0.05164288729429245, -0.0274512879550457, -0.013438206166028976, -0.010945677757263184, 0.018551958724856377, 0.09357107430696487, -0.02905307151377201, -0.039499133825302124, -0.00959581509232521, -0.02953384630382061, 0.016544336453080177, 0.026973461732268333, -0.009113054722547531, -0.251973032951355, 0.0370078943669796, 0.014855541288852692, 0.10197257995605469, -0.01141435094177723, 0.015972396358847618, -0.029562775045633316, 0.0008036365616135299, -0.022095587104558945, -0.004043671768158674, 0.05325385555624962, 0.03210298717021942, -0.021231360733509064, -0.0007046971004456282, -0.035969220101833344, 0.040035098791122437, 0.030314268544316292, 0.062189023941755295, -0.0945964977145195, 0.06755603104829788, -0.006932619959115982, 0.01043162401765585, 0.11235078424215317, 0.07843749970197678, -0.045171793550252914, -0.033761847764253616, -0.017242224887013435, 0.005794531665742397, -0.08068779110908508, -0.006188579834997654, -0.015173849649727345, -0.017837798222899437, -0.002279530977830291, 0.011589228175580502, 0.026537589728832245, -0.04623962566256523, 0.031398955732584, 0.012285372242331505, 0.07428530603647232, 0.04446960240602493, -0.025347810238599777, 0.0023941537365317345, 0.018950706347823143, -0.015909317880868912, 0.062455423176288605, 0.02509903535246849, 0.05566753074526787, -6.462729652412236e-05, -0.06849809736013412, -0.0014923792332410812, -0.04879667982459068, 0.03073548525571823, 0.0027150048408657312, 0.029760852456092834, 0.043695297092199326, 0.015426380559802055, -0.044617313891649246, -0.01285842526704073, 0.006244994234293699, 0.01875385269522667, 0.0029082391411066055, -0.04690975695848465, 0.0434146486222744, 0.014516505412757397, -0.008670821785926819], "7721ec01-3d3e-4c30-ae35-f93b645c25ef": [-0.09197954088449478, -0.00922908540815115, 0.08765256404876709, 0.06456875801086426, 0.02664296142756939, 0.028468117117881775, 0.04704975709319115, -0.023388992995023727, 0.01419254019856453, -0.005769709125161171, 0.03865678608417511, -0.00857323594391346, -0.011774450540542603, -0.052802715450525284, -0.007260770536959171, 0.01614873856306076, -0.06459593772888184, -0.03630697727203369, -0.11155804246664047, 0.03638111427426338, -0.03689052164554596, -0.04530481621623039, 0.0233197882771492, 0.031783327460289, -0.04969116300344467, 0.007421823218464851, 0.01832720823585987, -0.026837874203920364, -0.027281079441308975, -0.1350935846567154, -0.010972138494253159, -0.024743644520640373, -0.0009355978691019118, -0.0027418709360063076, 0.0039006576407700777, 0.11355080455541611, 0.049482058733701706, 0.0366702526807785, 0.00389080960303545, 0.02646491676568985, -0.0016504861414432526, -0.035565085709095, 0.00676534790545702, -0.001990612130612135, 0.06624067574739456, -0.027200914919376373, 0.022888407111167908, -0.029524991288781166, 0.033371731638908386, -0.025073237717151642, -0.012716175056993961, -0.020902222022414207, -0.011196993291378021, -0.022977950051426888, 0.01892342045903206, 0.06153268739581108, 0.03737719729542732, 0.016604028642177582, 0.11055921018123627, -0.02363310381770134, 0.03355683013796806, 0.051707301288843155, -0.09139631688594818, 0.04510166496038437, 0.011873096227645874, -0.009857884608209133, -0.01737520471215248, -0.06190371885895729, 0.0033011033665388823, 0.05620422586798668, -0.0640752762556076, 0.0066918577067554, 0.03196503594517708, 0.00893065519630909, -0.029602685943245888, 0.041125595569610596, 0.04102355241775513, 0.008813077583909035, 0.037265241146087646, -0.015503602102398872, -0.06212363764643669, 0.014659862034022808, -0.04104256257414818, 0.021472083404660225, 0.0019973479211330414, -0.042221639305353165, 0.011394000612199306, -0.015866607427597046, -0.0069305384531617165, -0.035718463361263275, 0.05013319104909897, -0.03566746786236763, -0.031330812722444534, 0.0023487003054469824, -0.023323914036154747, -0.01259107980877161, -0.02210267074406147, -0.007964820601046085, 0.03620181232690811, 0.40441668033599854, 0.03376485034823418, -0.015849463641643524, 0.020354224368929863, 0.05282244458794594, 0.009601294994354248, -0.0047147697769105434, -0.025876861065626144, -0.05440884083509445, 0.0348593033850193, 0.06754742562770844, 0.062686987221241, -0.029116926714777946, 0.07709845155477524, 0.002756886649876833, -0.0020848566200584173, 0.046796511858701706, 0.0483563207089901, -0.015329435467720032, -0.03706905245780945, 0.02074381709098816, 0.04663870111107826, -0.02356257289648056, 0.012821451760828495, -0.0807151347398758, 0.05911777541041374, 0.02209191396832466, 0.08636081963777542, 0.07178567349910736, 0.029142240062355995, -0.09079556912183762, 0.030398990958929062, -0.04847172275185585, -0.004908049013465643, -0.003428414463996887, -0.012216860428452492, -0.0304371677339077, 0.03799623250961304, -0.05640275776386261, 0.04576243460178375, -0.05230160430073738, -0.021787848323583603, -0.16554343700408936, -0.04357976093888283, -0.05336105078458786, -0.03397435322403908, -0.018857179209589958, 0.06856910139322281, -0.02646992728114128, 0.042714111506938934, 0.06815211474895477, 0.042855750769376755, 0.004389334004372358, -0.011956177651882172, 0.017247632145881653, 0.02036118321120739, 0.012831298634409904, 0.0018513614777475595, 0.14267005026340485, -0.006690020207315683, 0.0011670875828713179, 0.023483049124479294, -0.04873377084732056, 0.05282280966639519, -0.006624906323850155, 0.026958314701914787, -0.01595200039446354, -0.004895288497209549, -0.04412146657705307, -0.006392688024789095, -0.03671248257160187, -0.007377745117992163, 0.03630654886364937, -0.11524846404790878, 0.06730400025844574, -0.022163065150380135, -0.03170686960220337, -0.006025811657309532, -0.024481480941176414, 0.0064404793083667755, -0.0019464457873255014, -0.04719068482518196, -0.01976259984076023, 0.001328231650404632, 0.03121333383023739, -0.031616855412721634, 0.012476615607738495, -0.02376486174762249, 0.005928477738052607, 0.014334036968648434, -0.008192067965865135, 0.08187378197908401, 0.04875604808330536, -0.010479163378477097, 0.0005147713818587363, -0.05524256452918053, -0.009256139397621155, -0.025499362498521805, -0.013634353876113892, -0.04342103749513626, 0.0016415921272709966, -0.04692409932613373, -0.056457336992025375, -0.021464359015226364, 0.03574611246585846, 0.027610009536147118, 0.01752818003296852, 0.015452484600245953, -0.02049771510064602, 0.043995242565870285, 0.04735085740685463, -0.0088909100741148, -0.009601263329386711, 0.0171494223177433, -0.03174446150660515, -0.02107584848999977, 0.02297140844166279, -0.041209228336811066, 0.018226228654384613, -0.03974580764770508, 0.0024124837946146727, -0.01108360756188631, -0.07491211593151093, -0.05187245085835457, -0.298193097114563, -0.022297335788607597, -0.0012814478250220418, -0.03641227260231972, 0.07768222689628601, -0.05247773975133896, 0.02188810706138611, -0.0352649986743927, 0.02841670997440815, -0.0520552322268486, 0.03181057050824165, -0.05010674148797989, 0.005929508712142706, 0.014286685734987259, 0.011011783964931965, 0.05984216183423996, -0.07293391972780228, 0.03226185590028763, 0.031694259494543076, 0.030547209084033966, 0.07054447382688522, 0.012227296829223633, -0.03488389775156975, -0.03336454927921295, -0.023283084854483604, 0.04691525176167488, 0.15034842491149902, 0.048460233956575394, 0.017789479345083237, -0.021188320592045784, -0.003063229378312826, 0.003726100781932473, -0.04486530274152756, -0.03430614620447159, 0.023516736924648285, 0.05174693837761879, 0.058234382420778275, -0.04211397096514702, 0.04765845835208893, 0.022874770686030388, -0.05976502597332001, 0.07119009643793106, 0.0019662112463265657, 0.02843303419649601, 0.009418940171599388, -0.019418194890022278, -0.026410052552819252, 0.055784665048122406, 0.007737836800515652, 0.026347070932388306, 0.011235430836677551, 0.014206123538315296, -0.0374399870634079, -0.0057543739676475525, 0.003742247587069869, -0.01928802579641342, -0.09117067605257034, -0.023839974775910378, -0.07751135528087616, 0.07927655428647995, -0.009643751196563244, -0.006682015024125576, 0.012574381195008755, -0.03238143399357796, -0.0014293076237663627, 0.035847924649715424, 0.0028281225822865963, 0.009826685301959515, 0.03422582149505615, 0.0020248459186404943, -0.023736733943223953, 0.07248853892087936, -0.009651846252381802, -0.07578369975090027, 0.030814075842499733, 0.013540409505367279, 0.016032524406909943, -0.0012892031809315085, -0.061744432896375656, 0.020474301651120186, 0.08016548305749893, -0.04163738340139389, -0.020284004509449005, -0.07897447794675827, -0.01679816283285618, -0.017656536772847176, 0.004384580068290234, -0.03621949255466461, 0.0733412578701973, -0.007471572607755661, -0.05002879351377487, 0.011230269446969032, -0.07797180861234665, 0.015165789052844048, 0.0003981038462370634, -0.031838174909353256, -0.2813055217266083, 0.019103625789284706, 0.06953037530183792, 0.06803252547979355, -0.0023306708317250013, -3.8149093597894534e-05, -0.042016204446554184, -0.020733429118990898, -0.04807722568511963, 0.0085733188316226, 0.076569564640522, -0.019822660833597183, -0.019795991480350494, -0.0047125485725700855, -0.031201155856251717, 0.041259270161390305, 0.026506904512643814, 0.026708533987402916, -0.054848432540893555, 0.03819235786795616, 0.03623655438423157, 0.0035437538754194975, 0.10383526980876923, 0.03656063228845596, -0.004195611923933029, -0.044946447014808655, -0.012805245816707611, 0.010651721619069576, -0.0426054410636425, -0.009385848417878151, -0.03714124113321304, -0.021293604746460915, 0.017930150032043457, 0.001045473967678845, -0.017592424526810646, -0.04479087516665459, 0.029632635414600372, 0.04520038142800331, 0.05329267680644989, 0.004680905025452375, -0.032139431685209274, 0.008346280083060265, 0.04509991034865379, -0.010620476678013802, 0.03140697628259659, 0.04470740258693695, 0.02231586165726185, -0.045845914632081985, -0.07225636392831802, 0.031961631029844284, -0.0691680759191513, -0.010812272317707539, -0.021891899406909943, 0.009277445264160633, 0.07670129835605621, 0.03057657741010189, -0.0012646225513890386, 0.009590627625584602, 0.0383961983025074, 0.011857321485877037, -0.018928054720163345, -0.051245011389255524, 0.04765100032091141, -0.007125512231141329, -0.002633752068504691], "9ee46feb-fde8-40c1-849b-2fe9e87f86c1": [-0.08788446336984634, -0.009702475741505623, 0.08507890999317169, 0.07955262809991837, -0.026550721377134323, 0.05228963494300842, 0.06426919251680374, 0.013379775919020176, -0.029654955491423607, -0.02639581821858883, -0.027392985299229622, -0.02755558118224144, -0.04242739826440811, -0.03502741828560829, -0.014756954275071621, 0.0009247912093997002, -0.05025601014494896, -0.011480772867798805, -0.08802665770053864, 0.05905986949801445, -0.019017692655324936, -0.009441004134714603, 0.0016470755217596889, 0.01990443468093872, -0.06037406995892525, 0.012740081176161766, 0.0013719168491661549, -0.008766659535467625, -0.013248534873127937, -0.18340879678726196, -0.010889510624110699, -0.004600889049470425, -0.017999399453401566, -0.049085833132267, 0.03706773370504379, 0.08123230189085007, 0.04240649938583374, 0.011395127512514591, -0.010225188918411732, 0.025170454755425453, 0.030333666130900383, 0.0016790315276011825, -0.017561528831720352, -0.03699430450797081, 0.06377872079610825, 0.011021985672414303, 0.03159084543585777, -0.03124888800084591, 0.016954628750681877, -0.0324583426117897, -0.07023076713085175, -0.027991799637675285, 0.02075277455151081, 0.00449388287961483, 0.01990417204797268, 0.0385265052318573, 0.09996701031923294, 0.01735851541161537, 0.07542289793491364, 0.012946484610438347, 0.0286391694098711, 0.04788682982325554, -0.060795385390520096, 0.05753660574555397, 0.11556567996740341, -0.013093332760035992, -0.08785446733236313, -0.01801200956106186, -0.0013437042944133282, 0.04944702237844467, -0.05839529633522034, 0.00263264961540699, 0.004976632073521614, 0.04029833897948265, 0.019884195178747177, 0.057616036385297775, 0.04973066225647926, -0.028480086475610733, 0.0395813025534153, 0.012563817203044891, -0.05659952014684677, -0.02384248562157154, -0.04857315495610237, 0.03706563264131546, 0.02297191694378853, -0.04931572079658508, 0.010598176158964634, -0.04073116555809975, -0.008160101249814034, -0.005865197628736496, 0.023018592968583107, -0.025436848402023315, 0.0067651825957000256, -0.01727512665092945, -0.011538649909198284, -0.01889878138899803, -0.021949341520667076, -0.001972560305148363, 0.04090898111462593, 0.3751981854438782, 0.04441947862505913, -0.00031889474485069513, 0.022972187027335167, 0.037654563784599304, -0.0034435370471328497, -0.020787928253412247, 0.011158830486238003, -0.08071521669626236, 0.03234347701072693, 0.05924826115369797, 0.02167227305471897, 0.011993400752544403, 0.04909141734242439, 0.0009149283869192004, 0.03133734315633774, 0.011801720596849918, 0.009551119059324265, -0.0355517715215683, -0.030406374484300613, 0.005607425235211849, 0.05735604092478752, -0.008912932127714157, -0.002397534903138876, -0.025414349511265755, 0.0247646477073431, 0.005917027592658997, 0.04666990786790848, 0.05250569060444832, 0.041881583631038666, -0.08055510371923447, 0.032693084329366684, -0.06830507516860962, 0.0172635056078434, 0.03605307638645172, 0.02410465106368065, 0.016802852973341942, 0.0160832516849041, 0.00833182130008936, 0.03578667342662811, -0.021400125697255135, -0.018683938309550285, -0.15244923532009125, -0.0326952263712883, -0.009903098456561565, -0.006267812103033066, 0.029766269028186798, 0.02045738697052002, -0.018574286252260208, 0.02659989707171917, 0.06925447285175323, 0.032802630215883255, -0.01425217930227518, -0.02382677048444748, -0.015762660652399063, 0.02944786846637726, -0.0405215285718441, -0.004295079968869686, 0.13410280644893646, -0.002003477653488517, -0.027307309210300446, 0.045407574623823166, -0.01712687313556671, 0.03309760242700577, -0.0027854973450303078, 0.03183344006538391, -0.027324432507157326, -0.013438799418509007, -0.03414216265082359, -0.0771111249923706, -0.019038187339901924, 0.01293643657118082, 0.047703009098768234, -0.1066315770149231, 0.05925453454256058, -0.054132722318172455, -0.08240700513124466, -0.06878704577684402, -0.031118882820010185, -0.007570079993456602, 0.02947327122092247, 0.006120542995631695, -0.03322722017765045, -0.013697233982384205, 0.026866866275668144, -0.040714945644140244, -0.0591689795255661, 0.009426267817616463, -0.0104522118344903, -0.018869418650865555, -0.05054645240306854, 0.033105529844760895, 0.00349696003831923, -0.004369854927062988, 0.015499258413910866, -0.033675696700811386, -0.01731482334434986, -0.0243720430880785, 0.0008223779732361436, -0.022961005568504333, 0.006528371945023537, -0.048659153282642365, -0.05084811896085739, -0.057364918291568756, 0.058602940291166306, 0.03467400372028351, 0.028475621715188026, 0.02165161445736885, -0.03289208933711052, 0.08681048452854156, 0.027933694422245026, -0.045057445764541626, -0.049788329750299454, 0.0063496739603579044, 0.015123025514185429, -0.003003404475748539, 0.042093247175216675, 0.013454915955662727, 0.041900068521499634, -0.03251376375555992, 0.039136193692684174, 0.025942159816622734, -0.09241707623004913, -0.042814724147319794, -0.30822280049324036, -0.03377853333950043, -0.04600154235959053, -0.07092216610908508, -0.007039484567940235, -0.06887440383434296, 0.02507447823882103, -0.07731077820062637, 0.04332325607538223, -0.05360167473554611, -0.005439129192382097, -0.0595889650285244, 0.040285058319568634, -0.021903634071350098, 0.009451128542423248, 0.05129866674542427, -0.04611659795045853, -0.003028217935934663, 0.03143811598420143, 0.08045528084039688, -0.007019320037215948, 0.023464152589440346, -0.013685490936040878, -0.029055513441562653, -0.05533698573708534, -0.0008814503089524806, 0.15337084233760834, -0.005312042776495218, 0.022376887500286102, -0.043035753071308136, 0.0012011451181024313, 0.039273086935281754, -0.08569961786270142, -0.02603425830602646, 0.01990095153450966, 0.02881498448550701, 0.030536221340298653, -0.02300926297903061, 0.054584115743637085, -0.01108767930418253, -0.05241852626204491, 0.060847435146570206, -0.017907939851284027, 0.019170260056853294, -0.028686726465821266, 0.03921724855899811, -0.035539932548999786, 0.0034404215402901173, -0.012466825544834137, 0.07071635872125626, 0.03156275302171707, 0.043917834758758545, -0.04951028525829315, -0.03663601726293564, -0.00911635160446167, 0.0009645618847571313, -0.057669103145599365, -0.0016377595020458102, -0.031007446348667145, 0.05506948381662369, -0.05253227427601814, -0.04552093893289566, 0.012560008093714714, -0.05671393871307373, -0.005903362762182951, -0.006050018593668938, -0.011105617508292198, 0.008821746334433556, 0.011630077846348286, -0.01733926497399807, -0.021328860893845558, 0.052878040820360184, 0.02622802183032036, -0.030119173228740692, -0.019479699432849884, 0.0007161952671594918, 0.042811717838048935, 0.03534143790602684, -0.019852792844176292, 0.004122035577893257, 0.05683537945151329, -0.016104768961668015, 0.013525325804948807, 0.006430129054933786, -0.08033891022205353, -0.015137572772800922, 0.002510946709662676, -0.04038931801915169, 0.09016010910272598, -0.07336453348398209, -0.044203199446201324, 0.0008420630474574864, -0.05863096937537193, -0.005395139567553997, -0.003293521236628294, 0.00946847628802061, -0.2575186789035797, 0.02170889638364315, 0.02682281844317913, 0.04872555285692215, 0.003942531067878008, 0.041834067553281784, -0.017403574660420418, -0.0005478704115375876, 0.0300808846950531, -0.012303902767598629, 0.08471336215734482, -0.003962551709264517, -0.0017080175457522273, 0.027232646942138672, -0.031038904562592506, 0.030487563461065292, 0.022195227444171906, 0.05065036192536354, -0.04990025609731674, 0.03406035900115967, 0.055337004363536835, 0.025775061920285225, 0.16899560391902924, 0.04128025472164154, -0.05232211574912071, -0.050503067672252655, -0.027216177433729172, 0.02138621173799038, 0.03502630442380905, 0.003948817495256662, -0.004469779320061207, -0.02316131815314293, -0.011589073576033115, 0.009293210692703724, 0.0488252118229866, -0.043028876185417175, 0.01652626320719719, 0.02690274454653263, 0.08284931629896164, 0.011404462158679962, -0.011957310140132904, 0.04490821808576584, 0.05667804554104805, -0.022875908762216568, 0.030422482639551163, 0.029834674671292305, 0.001300711533986032, -0.0025993611197918653, -0.103622667491436, 0.023417891934514046, -0.05761692300438881, -0.034069664776325226, 0.03871797397732735, 0.025418171659111977, 0.030929934233427048, 0.009634903632104397, 0.0012937248684465885, 0.039358917623758316, -0.0022148224525153637, -0.019162172451615334, -0.002853460842743516, -0.02771703340113163, 0.0991155132651329, 0.029013587161898613, 0.02562601864337921], "1f2a2fd1-9e1c-4f26-b9fd-498cea121509": [-0.06334768980741501, 0.011073966510593891, 0.05948946252465248, 0.03882749006152153, -0.01138368807733059, 0.03239254653453827, 0.07726071774959564, 0.004944243002682924, 0.040086328983306885, -0.011320646852254868, -0.005472075659781694, -0.01479033287614584, -0.02000930719077587, -0.02943224273622036, -0.010523002594709396, 0.007713573053479195, -0.051847465336322784, -0.0799063891172409, -0.10134372115135193, 0.028968585655093193, -0.011211086995899677, -0.03518786281347275, 0.025051981210708618, 0.001833179034292698, -0.062260814011096954, 0.034955400973558426, -0.008693118579685688, -0.03626832738518715, -0.018920384347438812, -0.15193361043930054, -0.018304847180843353, -0.008197078481316566, -0.0029600674752146006, -0.016356589272618294, 0.0005622675525955856, 0.05818371847271919, 0.031415004283189774, 0.01392750907689333, -0.05477643385529518, 0.043596502393484116, 0.00410280330106616, -0.0046075256541371346, -0.014076399616897106, -0.0018749742303043604, 0.05630352720618248, -0.00851490069180727, 0.03943143039941788, -0.0598631389439106, 0.03278757259249687, -0.03658667579293251, -0.05599956586956978, -0.04040118306875229, 0.00858692079782486, -0.030418315902352333, 0.009579282253980637, 0.0702253207564354, 0.06466204673051834, 0.030526425689458847, 0.10335440933704376, 0.004753010347485542, 0.04370766133069992, 0.043664079159498215, -0.07719352096319199, 0.060528259724378586, 0.06614950299263, 0.01771542988717556, -0.06440481543540955, -0.040602460503578186, -0.021991290152072906, 0.04204879328608513, -0.019755620509386063, -0.010449270717799664, 0.01549951545894146, 0.01605663262307644, 0.015427341684699059, 0.0348636768758297, 0.042915716767311096, -0.003695216728374362, 0.05923106521368027, 0.005693715997040272, -0.10302598774433136, -0.0019741347059607506, -0.05009196698665619, 0.01823766902089119, 0.02186904288828373, -0.02841024659574032, -0.004697684198617935, -0.012975268997251987, -0.016944007948040962, -0.029247043654322624, 0.037053123116493225, -0.013666452839970589, -0.0012146829394623637, -0.005131633952260017, -0.014979904517531395, -0.019377058371901512, -0.015154964290559292, -0.00027562608011066914, 0.03327345848083496, 0.3914443850517273, 0.03542010113596916, 0.02143165096640587, 0.014287307858467102, 0.05063410475850105, 0.00257921707816422, -0.0021891179494559765, 0.010759565979242325, -0.0663907527923584, 0.035031937062740326, 0.07472614198923111, 0.0036432375200092793, -0.03889665752649307, 0.0530288927257061, 0.006088166031986475, 0.0436917282640934, 0.03139220550656319, 0.03807923570275307, -0.008098263293504715, -0.005354919005185366, 0.002026994014158845, 0.050517741590738297, 0.004822860937565565, -0.021852584555745125, -0.04647436738014221, 0.048893895000219345, 0.014995773322880268, 0.06419750303030014, 0.06310606747865677, 0.0175628699362278, -0.06754801422357559, 0.03157957270741463, -0.08964336663484573, 0.0044568548910319805, 0.012404418550431728, 0.009317976422607899, -0.005355563946068287, 0.013963382691144943, 0.015874097123742104, 0.04902259260416031, -0.04534797742962837, -0.025167468935251236, -0.17921601235866547, -0.044786952435970306, -0.01715943031013012, -0.016617536544799805, 0.02547164261341095, 0.024081669747829437, -0.022832483053207397, 0.02924509532749653, 0.068165123462677, 0.058861397206783295, 0.008440226316452026, -0.018835050985217094, 0.0012815599329769611, 0.018270909786224365, -0.04612943157553673, 0.00041422847425565124, 0.1166219711303711, -0.0031742381397634745, 0.03164300322532654, 0.04859782010316849, -0.03263992816209793, 0.03789691627025604, -0.0197899267077446, 0.0016030676197260618, 0.03272901475429535, -0.05106461048126221, -0.05042015388607979, -0.05737299099564552, -0.03702934831380844, 0.006790013052523136, 0.036315202713012695, -0.09145613014698029, 0.04122231528162956, -0.041465289890766144, -0.04288168251514435, -0.052773866802453995, -0.02551770955324173, -0.002029194962233305, 0.024501314386725426, -0.012494047172367573, -0.037156153470277786, -0.020485451444983482, 0.02928796596825123, -0.05170338228344917, -0.022206364199519157, -0.007167790085077286, -0.010122236795723438, -0.02077975682914257, -0.05085114762187004, 0.04540091007947922, 0.004151834640651941, -0.014968465082347393, 0.004863806534558535, -0.05174657702445984, -0.05564911291003227, -0.010058295913040638, -0.02926492504775524, -0.019194260239601135, -0.015422680415213108, -0.06239019334316254, -0.05141123756766319, -0.06521246582269669, 0.0491936132311821, 0.018911374732851982, 0.03392518311738968, 0.0075623635202646255, -0.004090342205017805, 0.12116921693086624, -0.010302964597940445, -0.04235205054283142, -0.033208217471838, -0.014223325997591019, 0.013771286234259605, 0.02593086287379265, 0.023066557943820953, 0.006948006339371204, 0.00012907081691082567, -0.04247018322348595, 0.02633713372051716, -0.013672451488673687, -0.07839584350585938, -0.03310999274253845, -0.2853422164916992, -0.005673170555382967, -0.02700224332511425, -0.06624002754688263, 0.027666352689266205, -0.07616782188415527, 0.02894192561507225, -0.05601730942726135, 0.08620823919773102, -0.026268329471349716, 0.0008200902375392616, -0.025971857830882072, 0.04507632181048393, 0.022216232493519783, -0.00414219731464982, 0.06324607133865356, -0.0678098276257515, 0.03861458599567413, 0.029475964605808258, 0.05546306073665619, 0.005469311028718948, 0.028465518727898598, 0.002379483310505748, -0.06494699418544769, -0.04087848216295242, 0.03703149035573006, 0.15921638906002045, 0.040257204324007034, 0.015307840891182423, 0.0017557787941768765, 0.015235863626003265, 0.039387527853250504, -0.09980311244726181, -0.04260134696960449, 0.019339829683303833, 0.05345851182937622, 0.040280718356370926, -0.01623656041920185, 0.012408547103404999, -0.002510142745450139, -0.05019722878932953, 0.06925248354673386, -0.009222202003002167, 0.012555733323097229, -0.012022950686514378, 0.049480587244033813, -0.04221270605921745, 0.011687491089105606, -0.03277008235454559, 0.05699881166219711, 0.017347509041428566, 0.05282863602042198, -0.03687882423400879, -0.02322605811059475, 0.002916158875450492, -0.00684010935947299, -0.07386697083711624, -0.013827851973474026, -0.03544256463646889, 0.07723727822303772, -0.01921081356704235, -0.02159162051975727, -0.016307957470417023, -0.05432891473174095, -0.025998294353485107, 0.022288115695118904, -0.015614298172295094, -0.016012074425816536, 0.022871149703860283, 0.021126946434378624, -0.04838499799370766, 0.047389090061187744, 0.013420183211565018, -0.06587667018175125, -0.023358071222901344, 0.04289720579981804, 0.039269059896469116, -0.006023988593369722, -0.03532412275671959, -0.003075835993513465, 0.05213167890906334, -0.030488956719636917, 0.009397805668413639, -0.018574468791484833, -0.061250366270542145, -0.005985916126519442, -0.0030372911132872105, 5.028637679060921e-05, 0.08828800171613693, -0.057972803711891174, -0.042022936046123505, 0.052447445690631866, -0.04496287181973457, -0.023533636704087257, 0.029015323147177696, 0.01923203654587269, -0.2641518712043762, 0.025995895266532898, 0.0637400895357132, 0.06972623616456985, 0.007150928024202585, 0.04810347408056259, 0.0014600008726119995, -0.014740277081727982, -0.03044435940682888, -0.045645587146282196, 0.049709055572748184, 0.0050107515417039394, -0.011104433797299862, 0.004159280098974705, -0.05433240905404091, 0.022717468440532684, 0.04770783334970474, 0.033098842948675156, -0.02832736074924469, 0.0504283532500267, 0.05524705350399017, 0.0173503290861845, 0.14964336156845093, 0.037272315472364426, -0.04924702271819115, -0.07717988640069962, -0.021185101941227913, 0.009869200177490711, -0.0176541805267334, 0.011128304526209831, -0.037298157811164856, 0.025756949558854103, 0.013792695477604866, 0.016070391982793808, -0.005296221002936363, -0.05113118514418602, 0.0010356530547142029, 0.055062226951122284, 0.0891638696193695, 0.01766085997223854, -0.026677845045924187, 0.009492484852671623, 0.026610270142555237, -0.014009042643010616, 0.028622591868042946, 0.044893134385347366, 0.008058818057179451, -0.004818811547011137, -0.09405814111232758, 0.008027203381061554, -0.055969320237636566, -0.014449892565608025, 0.03929097577929497, 0.00019353903189767152, 0.027007877826690674, 0.028093749657273293, -0.013094816356897354, 0.07352544367313385, 0.025693105533719063, -0.010341595858335495, -0.033267825841903687, -0.024090202525258064, 0.11597657948732376, -0.012700453400611877, 0.024252874776721], "8830bda2-9381-4980-9c33-4a2f3190533a": [-0.06396425515413284, 0.03330645710229874, 0.055429428815841675, 0.07341761887073517, 0.002543405396863818, 0.008409100584685802, 0.10500282794237137, 0.02055651880800724, 0.001271022716537118, 0.007378839422017336, -0.003919268026947975, -0.021779023110866547, -0.02338738553225994, -0.05439182370901108, -0.027932895347476006, -0.008408231660723686, -0.04706510156393051, -0.01599835976958275, -0.10210411995649338, 0.03986276686191559, -0.014246509410440922, -0.03622869402170181, 0.033746588975191116, -0.0018296539783477783, -0.05938778072595596, 0.015823792666196823, -0.011527573689818382, -0.028762811794877052, -0.03690600022673607, -0.14131280779838562, -0.01306929625570774, -0.02427620068192482, -0.021657753735780716, -0.01063828356564045, -0.007437823340296745, 0.08177167177200317, 0.012740529142320156, 0.009927723556756973, -0.026757728308439255, 0.04058830812573433, -0.0067222267389297485, 0.011652916669845581, -0.022021949291229248, 0.012712134048342705, 0.047455791383981705, 0.00879338476806879, 0.01286556851118803, -0.049856726080179214, 0.01900443620979786, -0.025082668289542198, -0.08386852592229843, -0.023068025708198547, 0.020905591547489166, -0.03195745870471001, 0.018186163157224655, 0.038180988281965256, 0.04221109300851822, 0.00963534228503704, 0.09594672918319702, 0.005232302937656641, 0.04932147637009621, 0.05723081901669502, -0.04909127578139305, 0.05705903097987175, 0.04984932392835617, -0.004439903888851404, -0.051345519721508026, -0.04854803904891014, 0.0020102751441299915, 0.05513329058885574, -0.035498522222042084, -0.003465213580057025, -0.0024965377524495125, 0.025383898988366127, 0.01695193164050579, 0.04372556135058403, 0.021378058940172195, -0.0138511061668396, 0.029108978807926178, 0.0011709298705682158, -0.07590973377227783, -0.0314461849629879, -0.06315648555755615, 0.03442540019750595, -0.011950824409723282, -0.05378862842917442, -0.03177832067012787, -0.022229893133044243, 0.015489240176975727, -0.012566331773996353, 0.05689368396997452, -0.017610231414437294, 0.043248120695352554, -0.029131438583135605, -0.0138734495267272, -0.008346354588866234, -0.0023834945168346167, 0.01724393479526043, 0.01632777228951454, 0.4001622498035431, 0.0359087698161602, 0.015193913131952286, 0.012320233508944511, 0.061217471957206726, 0.008456772193312645, -0.038340192288160324, 0.002417029580101371, -0.06031225249171257, 0.04746236279606819, 0.07043509185314178, 0.035734619945287704, -0.021900637075304985, 0.06272966414690018, 0.012517421506345272, 0.03253065422177315, 0.0573953352868557, 0.059109561145305634, 0.006602004170417786, -0.016513608396053314, -0.01730530895292759, 0.035947319120168686, -0.012857373803853989, -0.021844759583473206, -0.022960009053349495, 0.05405353009700775, 0.004281177651137114, 0.053308963775634766, 0.06416285037994385, 0.051484882831573486, -0.08964177966117859, 0.00842512957751751, -0.09449034929275513, 0.01600811630487442, 0.016146976500749588, 0.018915174528956413, -0.00799358170479536, 0.041413385421037674, -0.026552725583314896, 0.04918307811021805, -0.058724697679281235, -0.04983208701014519, -0.17638398706912994, -0.04520030319690704, -0.0090394401922822, 0.003986843395978212, 0.002887882525101304, 0.05376125127077103, -0.04311852157115936, 0.04151288419961929, 0.06924198567867279, 0.025325624272227287, 0.001747137401252985, -0.03826065734028816, 0.020897336304187775, 0.008680990897119045, -0.017566172406077385, -0.0013756947591900826, 0.09909522533416748, -0.02581421099603176, 0.004960418213158846, 0.06035789102315903, -0.01026984490454197, 0.004697650671005249, 0.005635185167193413, 0.009595898911356926, -0.022864151746034622, -0.025320302695035934, -0.03324482962489128, -0.05596272274851799, -0.037243377417325974, 0.010242278687655926, 0.03513104096055031, -0.07193076610565186, 0.045805782079696655, -0.03813096508383751, -0.047820933163166046, -0.07636413723230362, -0.03742891177535057, -0.016282686963677406, 0.006076715886592865, -0.011463217437267303, -0.04081013426184654, -0.03378244489431381, 0.03333108127117157, -0.042692285031080246, -0.030070479959249496, 0.0011576451361179352, -0.007616839837282896, -0.011033042334020138, -0.02065572701394558, 0.04211708530783653, 0.012372505851089954, -0.022309262305498123, -0.004161986522376537, -0.06306023895740509, -0.034048158675432205, -0.01987486518919468, -0.013614919036626816, -0.027323225513100624, -0.007773820776492357, -0.03752909600734711, -0.05074770376086235, -0.06174727901816368, 0.037032295018434525, 0.0031910138204693794, 0.018722135573625565, 0.020193614065647125, -0.0068182568065822124, 0.0649135634303093, 0.011781207285821438, -0.043441206216812134, -0.024519093334674835, -0.009018275886774063, -0.006876927800476551, 0.03853003680706024, 0.01693776436150074, 0.012456723488867283, 0.03233513981103897, -0.028871605172753334, 0.008090692572295666, 0.01613016240298748, -0.05274232476949692, -0.013341367244720459, -0.3228360712528229, -0.024194767698645592, -0.054006949067115784, -0.04308387264609337, 0.02284979447722435, -0.07805419713258743, 0.03322798013687134, -0.051097769290208817, 0.04527759179472923, -0.06134364381432533, -0.017565587535500526, -0.03937201946973801, 0.013632495887577534, 0.04619007930159569, -0.009990629740059376, 0.08183303475379944, -0.06217251345515251, 0.01178885716944933, 0.0056673698127269745, 0.02498447336256504, 0.02426035888493061, 0.03522199019789696, -0.020480118691921234, -0.024357005953788757, -0.020101036876440048, 0.040857188403606415, 0.17135398089885712, 0.040630027651786804, 0.05506562814116478, 0.006937166675925255, 0.025682097300887108, 0.0183572918176651, -0.06321632117033005, -0.03816096857190132, 0.018809769302606583, 0.038189079612493515, 0.022497646510601044, -0.03395099192857742, 0.022394316270947456, 0.0013805913040414453, -0.03329269215464592, 0.07869520038366318, -0.01885799877345562, 0.006191725376993418, -0.018642369657754898, 0.04259993135929108, -0.030219295993447304, 0.019735898822546005, -0.008433638140559196, 0.098215252161026, 0.014659551903605461, 0.027518747374415398, -0.019329849630594254, -0.023809660226106644, 0.009939328767359257, 0.024189766496419907, -0.053710807114839554, -0.0009780621621757746, -0.03762375935912132, 0.08053949475288391, -0.05332097038626671, -0.04039592668414116, -0.02690242975950241, -0.054298561066389084, -0.009376485832035542, 0.04104599729180336, 0.0028058646712452173, 0.002658520359545946, 0.030827604234218597, -0.009349038824439049, -0.04054645076394081, 0.04889922961592674, 0.01206645742058754, -0.05545630678534508, -0.016655469313263893, 0.06338513642549515, 0.04640977457165718, 0.022277042269706726, -0.03588961809873581, -0.0029752457048743963, 0.030474800616502762, -0.031608693301677704, 0.0021120496094226837, -0.02476547844707966, -0.040480051189661026, -0.017011988908052444, 0.03167117014527321, -0.031024213880300522, 0.08501113206148148, -0.04370614141225815, -0.049679093062877655, 0.010387567803263664, -0.057218026369810104, -0.005544913467019796, 0.007912286557257175, 0.018817506730556488, -0.25546157360076904, 0.022120943292975426, 0.05984378233551979, 0.0720885619521141, 0.0024574464187026024, 0.049899354577064514, 0.004813128150999546, -0.02923894114792347, -0.00894153956323862, -0.02594473585486412, 0.08060179650783539, -0.013999727554619312, -0.02576179802417755, 0.0028359575662761927, -0.06114642322063446, -0.008212515152990818, 0.05169902741909027, 0.03494860604405403, -0.0459323525428772, 0.06748846918344498, 0.07260739058256149, 0.01650596596300602, 0.15222559869289398, 0.05321669951081276, -0.04228012636303902, -0.060710009187459946, -0.02877749688923359, 0.009396190755069256, -0.006491539534181356, -0.008458350785076618, -0.048280782997608185, 0.005718957167118788, -0.0024044530000537634, 0.0069577679969370365, 0.016335444524884224, -0.05089502036571503, 0.009841722436249256, 0.08387502282857895, 0.08738738298416138, 0.0184952262789011, -0.03243620693683624, 0.01924057863652706, 0.04611548036336899, -0.01853840798139572, 0.032863959670066833, 0.057073336094617844, -0.009101901203393936, -0.012168867513537407, -0.08868710696697235, 0.00538173783570528, -0.05321566388010979, -0.0035473634488880634, 0.008692746050655842, -0.0008053541532717645, 0.028819328173995018, 0.020992785692214966, -0.03037630021572113, 0.050928130745887756, -0.0012755561619997025, 0.010424884036183357, -0.04562859609723091, -0.031501106917858124, 0.10175162553787231, 0.02602960914373398, 0.01813438907265663], "eb950247-a6b5-4546-a9be-143137d800a4": [-0.09750302881002426, 0.037693895399570465, 0.026046641170978546, 0.04127877205610275, -0.00411316379904747, 0.006881556939333677, 0.08484436571598053, -0.02654571831226349, 0.0047981939278542995, -0.03259442001581192, 0.009189557284116745, 0.021953100338578224, -0.031292736530303955, -0.05056637525558472, -0.00901659857481718, 0.05475741997361183, -0.05701190233230591, -0.0504547655582428, -0.10635705292224884, 0.028587233275175095, 0.0035242876037955284, -0.07439493387937546, 0.0044395700097084045, 0.032906513661146164, -0.0031899174209684134, -0.00530195003375411, 0.024783819913864136, -0.04220114275813103, -0.014592898078262806, -0.16108040511608124, 0.011833492666482925, -0.015707867220044136, 0.00927276723086834, -0.0209029670804739, -0.007249318994581699, 0.09301212430000305, 0.050037726759910583, 0.01713111251592636, -0.00937376543879509, 0.043697603046894073, 0.02008385770022869, 0.03343019634485245, -0.021252334117889404, -0.013948988169431686, 0.04659193381667137, 0.024096651002764702, 0.026912881061434746, 0.002305041765794158, 0.017171381041407585, 0.009483328089118004, -0.058810144662857056, -0.03500952571630478, -0.005234878044575453, -0.03926995024085045, -0.02282683365046978, -0.004180817399173975, 0.03928989917039871, 0.014453361742198467, 0.10533428192138672, 0.024909069761633873, 0.029569871723651886, 0.026824621483683586, -0.08923940360546112, 0.06423601508140564, 0.06299452483654022, -0.003282252000644803, -0.045771922916173935, -0.01738736778497696, 0.0068622068502008915, 0.05914120748639107, -0.05153128132224083, -0.0038603234570473433, 0.02974533848464489, 0.025183992460370064, -0.02501831389963627, 0.03793676570057869, 0.0338665135204792, -0.006868898402899504, 0.05605828016996384, 0.012168070301413536, -0.08564788848161697, 0.014039401896297932, -0.035523153841495514, 0.05186908692121506, -0.02384495548903942, -0.053935226052999496, -0.007657218724489212, -0.054980918765068054, -0.02396957203745842, -0.009766148403286934, 0.04888691008090973, -0.037025220692157745, 0.02802201360464096, -0.010793178342282772, -0.008693537674844265, -0.017966870218515396, -0.027727460488677025, 0.02151118591427803, 0.02961125411093235, 0.40101563930511475, 0.003136847633868456, 0.018768686801195145, -0.0033000800758600235, 0.03648356720805168, -0.010847657918930054, -0.022148851305246353, -0.016550077125430107, -0.08807886391878128, 0.026009229943156242, 0.0572408102452755, 0.02188304252922535, 0.005636360961943865, 0.05205155536532402, -0.016418050974607468, 0.04804675281047821, 0.03803163766860962, 0.08991581946611404, -0.034824155271053314, -0.054977573454380035, -0.024158766493201256, 0.06827105581760406, -0.0076079475693404675, -0.014859702438116074, -0.04280129820108414, 0.02189089171588421, 0.00037269614404067397, 0.05300343409180641, 0.09392525255680084, 0.02546578273177147, -0.11485285311937332, 0.010458789765834808, -0.11326770484447479, 0.012851009145379066, 0.05084792524576187, 0.005618982017040253, -0.009888090193271637, 0.05440744385123253, -0.014951217919588089, 0.04999956861138344, -0.09684484452009201, -0.04506554827094078, -0.16580569744110107, -0.0624321885406971, 0.01779521070420742, 0.006444983184337616, 0.04300173744559288, -0.001888667931780219, -0.01889020949602127, 0.012356791645288467, 0.06311122328042984, 0.02446877770125866, 0.03668547049164772, -0.041524261236190796, 0.03598278388381004, 0.01834012381732464, 0.0044019874185323715, -0.015918996185064316, 0.1008356362581253, -0.002288991818204522, 0.0016903405776247382, 0.0528707318007946, -0.009573506191372871, 0.021560965105891228, 0.026628833264112473, 0.007881700992584229, -0.015217202715575695, -0.01626073755323887, -0.04499905928969383, -0.0030950699001550674, -0.012408982962369919, 0.032820526510477066, 0.018207820132374763, -0.07303112000226974, 0.038583844900131226, -0.02238643355667591, -0.01708875596523285, -0.03451242670416832, 0.010615839622914791, 0.025557322427630424, 0.010273023508489132, -0.014105343259871006, -0.011138840578496456, -0.01534148771315813, 0.07021696120500565, -0.05610605329275131, -0.0487385056912899, 0.00963034201413393, -0.0006319772801361978, 0.007676348090171814, -0.013827974908053875, 0.015064645558595657, 0.0005860828096047044, -0.010266976431012154, 0.04773721843957901, -0.059023451060056686, -0.05839889869093895, -0.015379635617136955, -0.02760316990315914, -0.028533780947327614, 0.011318016797304153, -0.046210214495658875, -0.024978123605251312, -0.0805816575884819, 0.0453047975897789, 0.03916589543223381, 0.02646104246377945, -0.007811168674379587, -0.01572130061686039, 0.08503799885511398, 0.05032991245388985, -0.017396239563822746, -0.0007987442659214139, -0.02023885026574135, -0.00410282239317894, 0.041611816734075546, -0.008852936327457428, 0.03842226043343544, 0.01559568289667368, -0.036094389855861664, 0.0039755855686962605, 0.003602228593081236, -0.05823683366179466, -0.0359329953789711, -0.32315000891685486, -0.04023761674761772, -0.03975052759051323, -0.06216413527727127, 0.050547145307064056, -0.08677998185157776, 0.019694481045007706, -0.051172222942113876, 0.004148984327912331, -0.024603350088000298, -0.048208773136138916, -0.03652653098106384, 0.01544791180640459, 0.026490556076169014, -0.02475302293896675, 0.038840875029563904, -0.044939447194337845, 0.006956820841878653, -0.0018666700925678015, 0.04669792950153351, 0.0005755810416303575, 0.04221721738576889, -0.024533363059163094, -0.038228701800107956, -0.03502224013209343, 0.058450132608413696, 0.16918204724788666, 0.01877520978450775, 0.03901877626776695, 0.0136953666806221, 0.00024177986779250205, 0.02106562629342079, -0.04493073374032974, -0.05296551436185837, 0.02281317114830017, 0.0035257821436971426, 0.0006702737882733345, -0.025897419080138206, 0.04428448528051376, 0.028040483593940735, -0.03158622235059738, 0.06209107115864754, 0.0024297568015754223, -0.019647732377052307, -0.005457000806927681, 0.026795214042067528, -0.02238875813782215, 0.0038295970298349857, 0.013187048025429249, 0.05195324867963791, 0.012851797044277191, 0.03239024057984352, -0.027304016053676605, -0.02303176373243332, 0.02114439755678177, -0.0021609088871628046, -0.06943710893392563, 0.003302901517599821, -0.05367126315832138, 0.09365203231573105, -0.026445934548974037, 0.009050816297531128, -0.04249496012926102, -0.05149424821138382, -0.005875759292393923, 0.05942278355360031, 0.017443779855966568, -0.041754595935344696, -0.016619427129626274, -0.004357252269983292, -0.031788915395736694, 0.06583160161972046, -0.006443300284445286, -0.05475794896483421, 0.03538490831851959, 0.04488880932331085, 0.028336795046925545, 0.010231439024209976, -0.01213153637945652, -0.019058525562286377, 0.042319703847169876, -0.028035728260874748, -0.006826085038483143, -0.030865125358104706, -0.050561074167490005, -0.01671299710869789, -0.021094894036650658, -0.02499738149344921, 0.08468269556760788, -0.03339725360274315, -0.09256831556558609, -0.010840190574526787, -0.0989457368850708, 0.005809313151985407, 0.007185852620750666, -0.016133951023221016, -0.23064373433589935, 0.028077714145183563, 0.006877114996314049, 0.06470276415348053, 0.016488628461956978, 0.07026690244674683, -0.013145584613084793, -0.005688536446541548, -0.011372465640306473, -0.007795259822160006, 0.05958913266658783, -0.01750170812010765, -0.012231633998453617, 0.007922430522739887, -0.046155937016010284, 0.007013855502009392, 0.07601317018270493, 0.032295968383550644, -0.04064255580306053, 0.03275347128510475, 0.018526291474699974, 0.030524054542183876, 0.09807484596967697, 0.04842667654156685, -0.035244859755039215, -0.05984494462609291, -0.0021301673259586096, 0.03531888127326965, 0.02064523659646511, 0.014639566652476788, -0.049911580979824066, -0.011892873793840408, -0.017088614404201508, -0.005890819244086742, 0.00981869362294674, -0.04591818153858185, 0.0007605357095599174, 0.0248610507696867, 0.10638154298067093, 0.011766893789172173, -0.025202972814440727, -0.02484053000807762, 0.004956347867846489, -0.010031278245151043, 0.048911456018686295, 0.02576710470020771, 0.027633750811219215, -0.033976465463638306, -0.060258593410253525, 0.037598904222249985, -0.03300195559859276, 0.024210702627897263, 4.2451280023669824e-05, -0.021483244374394417, 0.04556945711374283, 0.005248704459518194, -0.030497943982481956, 0.05093850567936897, 0.01619439199566841, 0.01886570453643799, -0.0615575946867466, 0.02524222433567047, 0.11301373690366745, 0.031335946172475815, 0.009180103428661823], "73cf0f78-2e8e-42d1-8492-894bcbec71b6": [-0.09192599356174469, 0.007254176773130894, 0.051659755408763885, 0.0359332412481308, 0.023162677884101868, -0.01811252161860466, 0.05372856184840202, -0.004051178228110075, -0.0006140079349279404, -0.04321612790226936, 0.023502277210354805, 0.01152990572154522, 0.0071250335313379765, -0.09393064677715302, 0.0027819282840937376, 0.023299915716052055, 0.01737504079937935, -0.007565894164144993, -0.14054884016513824, 0.05390094965696335, -0.006755503360182047, -0.08382170647382736, 0.034600213170051575, 0.04738946259021759, -0.0017341042403131723, 0.009601766243577003, 0.03367243707180023, -0.004490221850574017, -0.03691975027322769, -0.13169465959072113, 0.04056589677929878, 0.0550803616642952, 0.03569307178258896, -0.009915758855640888, -0.004986704792827368, 0.060796234756708145, 0.02895377203822136, -0.03326265886425972, -0.029071051627397537, 0.03611079975962639, 0.005668849218636751, -0.049193140119314194, 0.015812408179044724, 0.007791961543262005, 0.023568997159600258, 0.01301721390336752, 0.03401108458638191, -0.00443149683997035, -0.015458198264241219, -0.048838257789611816, -0.06376301497220993, -0.008112628012895584, -0.04708810895681381, -0.0036234124563634396, 0.009526371955871582, 0.05857253447175026, 0.08259093761444092, 0.008887735195457935, 0.0952499657869339, 0.0322863943874836, 0.02795521169900894, 0.008251849561929703, -0.05905085802078247, 0.045742202550172806, 0.06200343742966652, 0.023975729942321777, -0.07275967299938202, -0.00365908769890666, -0.0011105978628620505, 0.05172107368707657, -0.014371764846146107, 0.022366825491189957, -0.0013371608220040798, 0.05453145131468773, -0.0029124629218131304, 0.029848936945199966, 0.03111572004854679, -0.013851706869900227, 0.011270622722804546, 0.03636643663048744, -0.08130361884832382, 0.04920533299446106, -0.038362354040145874, 0.033074501901865005, -0.0072359004989266396, -0.10550668835639954, 0.01734098233282566, -0.02496420592069626, -0.023169541731476784, -0.008120900020003319, 0.0009978563757613301, -0.052037324756383896, 0.005505636800080538, -0.017778538167476654, -0.031627800315618515, -0.005661020986735821, -0.06544072180986404, 0.016894519329071045, -0.013343441300094128, 0.39694058895111084, -0.012759579345583916, -0.018730243667960167, -0.0016816831193864346, 0.002644804771989584, 0.013316512107849121, -0.007652417290955782, -0.0035109969321638346, -0.06065082177519798, 0.012843704782426357, 0.02446313574910164, -0.016924429684877396, -0.049448009580373764, 0.02565867081284523, -0.03307883441448212, 0.045282699167728424, -0.004323671106249094, 0.09568819403648376, -0.036548156291246414, -0.024279145523905754, -0.018001614138484, 0.03425709158182144, 0.07696571201086044, 0.0016232540365308523, -0.025338420644402504, 0.023595333099365234, 0.003114402759820223, 0.022601310163736343, 0.055868905037641525, -0.006294500548392534, -0.0720842182636261, 0.01269441470503807, -0.04122581705451012, 0.01712433621287346, 0.040164049714803696, 0.015775024890899658, 0.004379140213131905, 0.004200101364403963, -0.01762356609106064, 0.09309478849172592, -0.07028722018003464, -0.03281747177243233, -0.14141781628131866, -0.06720207631587982, -0.006031926721334457, -0.010177670046687126, 0.042503949254751205, 0.06524009257555008, 0.023318199440836906, 0.03689146786928177, 0.04036656394600868, 0.04657217115163803, 0.012287185527384281, -0.031285449862480164, 0.007728016935288906, 0.05004650726914406, -0.05047360807657242, -0.004977745935320854, 0.1035856083035469, 0.006822222378104925, 0.02408507838845253, 0.07178634405136108, -0.011416980065405369, 0.013358695432543755, -0.009081713855266571, 0.009460723027586937, -0.02034917287528515, -0.011635005474090576, -0.0022539349738508463, -0.009512687101960182, 0.00524014700204134, 0.08746203035116196, -0.01647808402776718, -0.09382282942533493, 0.041343189775943756, -0.022099630907177925, -0.03816746175289154, 0.008774667978286743, 0.01445368118584156, 0.00751699972897768, 0.03643632307648659, 0.016599860042333603, -0.018132582306861877, 0.03214559704065323, 0.07858497649431229, -0.02200165204703808, -0.05446334555745125, 0.020502986386418343, -0.06144866719841957, -0.022978946566581726, -0.015396110713481903, 0.012617581523954868, 0.014720381237566471, -0.061965979635715485, 0.05826139450073242, -0.0374256893992424, -0.03875478357076645, 0.0037844274193048477, -0.002555782673880458, -0.03843455761671066, 0.018441779538989067, -0.10058464854955673, 0.028792381286621094, -0.07166111469268799, 0.000977393239736557, 0.06012110412120819, 0.005479658953845501, 0.05348002538084984, -0.03680377081036568, 0.10796871036291122, 0.015337956137955189, -0.04225339740514755, 0.02316090650856495, 0.014915809966623783, 0.03384724259376526, -0.025055890902876854, 0.026499973610043526, 0.04633023217320442, 0.012111966498196125, -0.024550311267375946, -0.00037231435999274254, 0.0036032742355018854, -0.05750236660242081, -0.06594985723495483, -0.31936225295066833, -0.011676075868308544, -0.03183618187904358, -0.08240571618080139, 0.03422174230217934, -0.053289949893951416, 0.027005992829799652, -0.03759264573454857, 0.0026442836970090866, -0.01399240829050541, 0.0002995563845615834, -0.0621129535138607, 0.007040700409561396, 0.01701931469142437, -0.011251445859670639, 0.02655963972210884, -0.016767121851444244, 0.009600929915904999, 0.014196816831827164, 0.05679623782634735, 0.015996750444173813, 0.010961545631289482, 0.032319482415914536, -0.023628227412700653, -0.024055104702711105, 0.028349313884973526, 0.14687199890613556, 0.03683517128229141, 0.01202660333365202, 0.014986960217356682, 0.018597127869725227, 0.037134695798158646, 0.025840891525149345, -0.03399481996893883, 0.009085139259696007, 0.005141887813806534, 0.016597814857959747, -0.04050642251968384, -0.02664448320865631, 0.016452929005026817, -0.032506588846445084, 0.03644276410341263, -0.015939656645059586, -0.016478801146149635, -0.03856533393263817, -0.023094963282346725, 0.019033323973417282, -0.0035414111334830523, -0.016779623925685883, 0.05698131024837494, -0.008334578946232796, 0.06688400357961655, -0.06576340645551682, -0.03679696470499039, 0.009819511324167252, -0.022463442757725716, -0.05978973209857941, -0.005917567294090986, -0.04456154629588127, 0.0738900750875473, -0.035805366933345795, 0.015438184142112732, -0.0008879948873072863, -0.06983288377523422, -0.01882372982800007, 0.024016154929995537, 0.022498533129692078, -0.045823149383068085, -0.029087889939546585, 0.02453821524977684, -0.06362216174602509, 0.03516388311982155, -0.003809242509305477, -0.0690639540553093, 0.010845639742910862, 0.01641683466732502, -0.027644477784633636, 0.02178713120520115, -0.08629569411277771, -0.014759525656700134, 0.050085633993148804, -0.00024964194744825363, 0.019846975803375244, -0.02371980994939804, -0.04326135292649269, -0.0450889952480793, -0.014325326308608055, -0.042440589517354965, 0.10316309332847595, 0.017959903925657272, -0.08059578388929367, 0.029713474214076996, -0.03043127991259098, 0.0056260814890265465, 0.053092699497938156, 0.03209713473916054, -0.2873774766921997, 0.01194445975124836, 0.025041518732905388, 0.05777560919523239, 0.02214180864393711, 0.060731347650289536, -0.01684969663619995, -0.026238417252898216, -0.017215987667441368, 0.006851877551525831, 0.08640290051698685, 0.0029073995538055897, 0.015041885897517204, 0.003056600922718644, -0.03183307126164436, -0.03400525450706482, 0.00204926123842597, 0.06272619217634201, -0.04222908988595009, 0.03307369351387024, 0.0647711306810379, 0.0371067151427269, 0.11319991201162338, 0.039055660367012024, -0.07047122716903687, -0.05571197345852852, -0.00896457303315401, -0.011178066954016685, -0.017403675243258476, 0.06746140122413635, -0.02772539108991623, 0.038702256977558136, -0.022098710760474205, 0.0140207689255476, 0.03271962329745293, -0.07096071541309357, -0.009581436403095722, -0.012249812483787537, 0.053624361753463745, -0.0014418172650039196, -0.060655348002910614, 0.02019359916448593, -0.033212702721357346, -0.025543754920363426, 0.04362599551677704, -0.012276477180421352, 0.029863476753234863, -0.013833260163664818, -0.0403129868209362, 0.01831037923693657, -0.02534123882651329, 0.00850222259759903, 0.04532230272889137, 0.018781587481498718, 0.0022092738654464483, 0.013917200267314911, -0.02993244118988514, 0.037140145897865295, 0.01702117547392845, -0.042423151433467865, -0.031950533390045166, -0.018503637984395027, 0.05954465642571449, 0.04224800691008568, 0.00024464575108140707], "65ef8204-7330-4f00-877d-4c3a97de50f5": [-0.06122147664427757, 0.016472356393933296, 0.023067014291882515, 0.035079892724752426, 0.022039739415049553, -0.006048479583114386, 0.08264996111392975, 0.005147660616785288, 0.010824218392372131, -0.045531101524829865, 0.00944507960230112, -0.05419057235121727, -0.025672057643532753, -0.07378964126110077, 0.020778385922312737, 0.006701534613966942, -0.020475124940276146, -0.039072439074516296, -0.12494630366563797, 0.06618968397378922, 0.02432389184832573, -0.06980733573436737, 0.016223685815930367, 0.020247768610715866, -0.015971386805176735, 0.022093987092375755, 0.016976675018668175, -0.005229112692177296, 0.028081461787223816, -0.14015302062034607, -0.0034912885166704655, 0.012543652206659317, -0.0035477057099342346, -0.06345082074403763, 0.006202027201652527, 0.07363180071115494, 0.040740966796875, -0.032574720680713654, -0.024077825248241425, 0.05972909927368164, -0.010374614037573338, -0.049733586609363556, -0.015530635602772236, 0.02099662646651268, 0.05574256181716919, 0.005725319962948561, -0.006048743613064289, -0.02331794612109661, -0.02834920957684517, -0.022411329671740532, -0.03827842324972153, -0.030169356614351273, -0.008693916723132133, -0.024863075464963913, -0.034654151648283005, 0.07296930998563766, 0.06498053669929504, 0.06387733668088913, 0.041437942534685135, 0.03146049752831459, 0.035404279828071594, 0.029161326587200165, -0.08957021683454514, 0.05468034744262695, 0.09138796478509903, 0.014827319420874119, -0.08953646570444107, -0.027946382761001587, -0.00462789973244071, 0.05738908052444458, 0.02849680185317993, 0.02831372618675232, 0.024898188188672066, 0.04534946754574776, 0.018366750329732895, 0.04845821484923363, 0.0004270303179509938, -0.003406899282708764, -0.03280159458518028, 0.020832985639572144, -0.07813047617673874, 0.02884065732359886, -0.028694484382867813, 0.008136723190546036, -0.014612973667681217, -0.06471725553274155, 0.023307161405682564, -0.030113309621810913, 0.006436966359615326, 0.012839511968195438, 0.005158116575330496, -0.05511406436562538, -0.02667228877544403, -0.019029855728149414, -0.013218916021287441, 0.010402907617390156, -0.05050414428114891, -0.0110535379499197, 0.001551829744130373, 0.3707307279109955, -0.029291322454810143, 0.015566298738121986, 0.012845737859606743, 0.020325087010860443, -0.005811956245452166, -0.004844809416681528, -0.0146064143627882, -0.08231005817651749, 0.03682820871472359, 0.02672315202653408, 0.013922611251473427, -0.04029404744505882, 0.03819965943694115, -0.030646057799458504, 0.011343361809849739, 0.006464032921940088, 0.0649808719754219, -0.053801946341991425, 0.014227708801627159, -0.014397978782653809, 0.02645818702876568, 0.030012136325240135, 0.031207922846078873, -0.029630007222294807, -0.015083630569279194, -0.013084719888865948, 0.05215169116854668, 0.07704100757837296, 0.017754098400473595, -0.06256403028964996, 0.03864904120564461, -0.07693882286548615, 0.024364814162254333, 0.0148768937215209, 0.014032040722668171, 0.04237835109233856, 0.0021291133016347885, 0.022343339398503304, 0.107703797519207, -0.011552952229976654, 0.013954407535493374, -0.1489085853099823, -0.03570322319865227, 0.020993182435631752, -0.03891468793153763, 0.03476504236459732, 0.07252960652112961, -0.0005212274845689535, 0.0014390837168321013, 0.08743440359830856, 0.03845023736357689, 0.0016937344335019588, -0.023611605167388916, -0.0020018008071929216, 0.01879386603832245, -0.0048260437324643135, -0.03089762106537819, 0.08336498588323593, 0.01647535338997841, 0.02710796520113945, 0.09534316509962082, -0.017427781596779823, -0.0022740934509783983, -0.011269007809460163, 0.033909156918525696, -0.0174199640750885, -0.012996060773730278, -0.009569332003593445, -0.009574627503752708, -0.03048058971762657, 0.06423509865999222, -0.003649692516773939, -0.11364990472793579, 0.04754923656582832, -0.03986261039972305, -0.05718554928898811, -0.045655664056539536, 0.031012041494250298, -0.001812505885027349, 0.024002397432923317, 0.05069483444094658, -0.03709489479660988, -0.021830515936017036, 0.05591870844364166, -0.025740502402186394, -0.045446764677762985, 0.007218889892101288, -0.05620379000902176, 0.0021565973293036222, -0.025898298248648643, 0.031863778829574585, 0.03336452320218086, 0.014152835123240948, 0.06365068256855011, -0.044343624264001846, -0.06634819507598877, -0.017850877717137337, 0.01740131713449955, -0.07544992864131927, 0.014162597246468067, -0.0536542572081089, 0.007482248358428478, -0.05864366143941879, 0.014820471405982971, 0.02555575966835022, 0.029509834945201874, 0.05816609412431717, -0.041481275111436844, 0.07007146626710892, 0.024233665317296982, -0.030253881588578224, 0.014576474204659462, -0.040560416877269745, 0.06590558588504791, -0.007263642735779285, 0.03417244181036949, 0.036655671894550323, 0.03259103372693062, -0.02145523950457573, 0.02410501427948475, -0.03308993950486183, -0.08245536684989929, -0.02460300363600254, -0.3343982398509979, -0.03584232181310654, -0.03890710696578026, -0.04361540451645851, 0.06549962610006332, -0.016174566000699997, 0.026662204414606094, -0.061455998569726944, 0.019245341420173645, -0.018646661192178726, -0.028402088209986687, -0.07083185762166977, 0.02525969222187996, 0.0002628436777740717, -0.018442567437887192, 0.06453248858451843, -0.014451054856181145, -0.0035529027227312326, 0.029866337776184082, 0.057294271886348724, -0.030426451936364174, 0.01514878123998642, 0.020649392157793045, -0.03600868582725525, 0.0019852027762681246, 0.014347093179821968, 0.13953348994255066, 0.07631469517946243, 0.01298612542450428, 0.0212954580783844, -0.017618224024772644, 0.02496720477938652, -0.02086750604212284, -0.06707563251256943, 0.016376862302422523, 0.016376445069909096, -0.011010505259037018, -0.016903119161725044, -0.005437484942376614, 0.00837516039609909, -0.03466961160302162, 0.04982755333185196, -0.015416895039379597, -0.02456008642911911, -0.03501482307910919, 0.025467775762081146, 0.0006070414092391729, 0.0075344517827034, 0.021333981305360794, 0.027291081845760345, -0.010484656319022179, 0.09356698393821716, -0.0666457936167717, -0.010199817828834057, 0.012350295670330524, 0.014631618745625019, -0.07225566357374191, -0.021442556753754616, -0.06353512406349182, 0.034934431314468384, -0.011114268563687801, -0.012582683004438877, 0.021304044872522354, -0.052616335451602936, -0.00023214585962705314, -0.01384673360735178, 0.022992221638560295, -0.040751758962869644, 0.026045270264148712, 0.058678530156612396, -0.034295279532670975, 0.03440714627504349, 0.008534439839422703, -0.0779917985200882, -0.009308766573667526, 0.021896641701459885, 0.0006793909124098718, 0.00658812839537859, -0.041671354323625565, 0.018920402973890305, 0.0777372196316719, -0.02385929599404335, 0.014399473555386066, 0.0031842717435210943, -0.05297346040606499, -0.016543656587600708, -0.005303830839693546, -0.055424392223358154, 0.11707776039838791, -0.03509411960840225, -0.04753465577960014, -0.011832213960587978, -0.040059711784124374, -0.03148218244314194, 0.008153267204761505, 0.00970410741865635, -0.29423972964286804, 0.04171319305896759, -0.01796542853116989, 0.0870257318019867, -0.0029558429960161448, 0.04557617008686066, -0.0023107738234102726, -0.02004474215209484, -0.010171365924179554, -0.010695954784750938, 0.0318341888487339, -0.01897243969142437, 0.0046551283448934555, 0.02418694645166397, -0.04085797071456909, -0.005433003418147564, 0.0407879576086998, 0.023865539580583572, -0.049614351242780685, 0.01041589118540287, 0.03826384246349335, 0.019824327901005745, 0.13124310970306396, 0.071255162358284, -0.05973881483078003, -0.030866865068674088, -0.004036787897348404, -0.0008336842292919755, 0.01465856097638607, 0.06261081248521805, -0.02490297518670559, 0.030648378655314445, -0.0373704694211483, -0.012836628593504429, 0.026742001995444298, -0.011091387830674648, -0.048590365797281265, -0.03828846290707588, 0.11410930752754211, -0.015231836587190628, -0.06355182081460953, 0.009443366900086403, -0.01915588416159153, -0.01189814880490303, 0.06617099046707153, 0.02834477461874485, 0.016697097569704056, -0.0014423421816900373, -0.07864660024642944, -0.0021837952081114054, -0.02574813924729824, 0.038880303502082825, 0.022691044956445694, 0.0009380244882777333, 0.02389901876449585, -0.005838942714035511, -0.03777248039841652, 0.032453179359436035, 0.008207261562347412, -0.034648578613996506, -0.018718862906098366, 0.0161594171077013, 0.05748641490936279, 0.03192558139562607, -0.008883130736649036], "70f69635-07dd-4453-baac-747e5ba5aeab": [-0.07962590456008911, 0.04257119074463844, 0.06240753456950188, 0.03010590374469757, -0.014011996798217297, 0.033325888216495514, 0.08047971874475479, -0.014260995201766491, 0.02172541245818138, -0.03430907800793648, -0.01606038771569729, 0.04755345731973648, -0.004141522105783224, -0.054251864552497864, -0.00695154769346118, 0.06596973538398743, -0.007807715330272913, -0.038154054433107376, -0.13634411990642548, 0.06850187480449677, -0.001156832673586905, -0.04523518681526184, 0.005502344574779272, 0.048203036189079285, -0.04182009771466255, -0.013786972500383854, 0.014753085561096668, -0.03986325114965439, -0.024573788046836853, -0.12323714792728424, -0.0053387838415801525, 0.006881451699882746, -0.02145998552441597, -0.012166924774646759, -0.01245820615440607, 0.07614363729953766, 0.022086255252361298, 0.0217344481498003, -0.016302812844514847, 0.03424868732690811, -0.011476447805762291, -0.023797396570444107, 0.019009150564670563, -0.023361090570688248, 0.04888667166233063, -0.013260271400213242, 0.05161295458674431, -0.007527701091021299, 0.02023565024137497, -0.009940634481608868, -0.030511436983942986, -0.01769258826971054, 0.01070025097578764, -0.03943788260221481, -0.0031460290774703026, 0.04996994510293007, 0.020020820200443268, 0.012949194759130478, 0.08507950603961945, 0.008906171657145023, 0.022274324670433998, 0.008606627583503723, -0.10151991248130798, 0.03614729642868042, 0.023835495114326477, 0.03383024409413338, -0.04927440732717514, -0.004765332210808992, -0.02674330212175846, 0.09736841917037964, -0.01885249838232994, -0.00808043498545885, 0.0442664735019207, 0.03065492957830429, 0.011852300725877285, 0.05090399831533432, 0.04657965153455734, -0.011693987064063549, 0.05401535704731941, 0.03502705320715904, -0.0488102100789547, 0.023203646764159203, -0.056056685745716095, 0.013017178513109684, -0.010499267838895321, -0.09389106184244156, -0.003109821816906333, -0.06303654611110687, -0.04338708892464638, -0.017092594876885414, 0.008420952595770359, -0.0395488478243351, -0.008966047316789627, 0.009897023439407349, -0.04682162404060364, -0.020996227860450745, -0.0029428403358906507, 0.011854230426251888, -0.04732782766222954, 0.38200893998146057, -0.01789015159010887, 0.045013874769210815, -0.006240043789148331, 0.054182104766368866, -0.02986549586057663, -0.029463976621627808, -0.01508485060185194, -0.07538966834545135, 0.02308586798608303, 0.042069219052791595, 0.0015398134710267186, -0.02600720524787903, 0.06612541526556015, -0.005776052363216877, 0.007811382412910461, 0.028256874531507492, 0.071950763463974, -0.02482583560049534, -0.024018840864300728, -0.028337577357888222, 0.05057945102453232, 0.020356440916657448, 0.023918312042951584, -0.04729827120900154, 0.02654273808002472, 0.021578727290034294, 0.07217918336391449, 0.10521894693374634, -0.012463267892599106, -0.06920602172613144, 0.04932934418320656, -0.057271283119916916, -0.013559774495661259, 0.04925287887454033, 0.016146482899785042, -0.0017627670895308256, 0.020971031859517097, -0.022733693942427635, 0.10096505284309387, -0.07622694224119186, -0.023236969485878944, -0.17564135789871216, -0.07190345227718353, 0.0346948504447937, -0.019285898655653, 0.018165620043873787, 0.03464260697364807, -0.017266467213630676, 0.024023083969950676, 0.06987030804157257, 0.04097512736916542, -0.013043983839452267, -0.002226721029728651, -0.015193618834018707, 0.011493672616779804, -0.028426766395568848, -0.005544386804103851, 0.1048475056886673, -0.02098478190600872, 0.01521151140332222, 0.10456537455320358, -0.041422829031944275, 0.011170064099133015, -0.005531027913093567, -0.0066168298944830894, -0.00637485645711422, -0.04590022191405296, -0.0383569672703743, -0.01659570075571537, -0.05527574568986893, 0.0365125872194767, 0.011100038886070251, -0.08709906786680222, 0.029432980343699455, 0.0012434598756954074, -0.040783774107694626, 0.009922773577272892, -0.01650679111480713, 0.028252895921468735, 0.043428607285022736, -0.01845879852771759, -0.02367892861366272, 0.011160271242260933, 0.05982884019613266, -0.06021047383546829, -0.03954276442527771, 0.0003397499385755509, -0.023729057982563972, 0.01611534133553505, -0.00867096334695816, 0.010844530537724495, -0.0074022249318659306, -0.02433311566710472, 0.052117787301540375, -0.06053754687309265, -0.043883729726076126, -0.03635210171341896, 0.008692617528140545, -0.032432276755571365, 0.022079505026340485, -0.046328671276569366, -0.01765911839902401, -0.052229396998882294, 0.05115866661071777, 0.040100324898958206, -0.007403448689728975, 0.02892378345131874, -0.005460752174258232, 0.08408410847187042, 0.02480890601873398, -0.026507316157221794, -0.027179306373000145, 0.024653669446706772, 0.005355285480618477, -0.01682053692638874, 0.06031608581542969, -0.009141866117715836, 0.02346181683242321, -0.053667519241571426, 0.0054859803058207035, 0.005958118010312319, -0.054541561752557755, -0.043532274663448334, -0.3168438673019409, 0.006388280540704727, -0.025249620899558067, -0.09011437743902206, 0.0661061704158783, -0.058657798916101456, 0.008750700391829014, -0.0494871512055397, 0.026813719421625137, -0.01702614687383175, -0.017881542444229126, -0.07038286328315735, -0.005375198554247618, -0.004144003149122, -0.006752848159521818, 0.01884431205689907, -0.06349922716617584, 0.019429294392466545, 0.029487289488315582, 0.042309071868658066, 0.008568170480430126, 0.04057978838682175, 0.004471060819923878, -0.07774133235216141, -0.04752163216471672, 0.06306537985801697, 0.167042538523674, 0.030362900346517563, 0.016848960891366005, -0.010108623653650284, -0.011990775354206562, 0.04118432104587555, -0.009349124506115913, -0.04712934046983719, 0.03596772253513336, 0.03599411994218826, 0.023674054071307182, -0.044902823865413666, -0.015834230929613113, 0.032320357859134674, -0.030353054404258728, 0.04076025262475014, 0.015924202278256416, 0.020694980397820473, -0.026253288611769676, 0.012911112979054451, -0.026533300057053566, -0.010545843280851841, -0.008925601840019226, 0.03083920106291771, 0.024568725377321243, 0.04513206705451012, -0.04809265583753586, -0.011168836615979671, 0.031614113599061966, -0.01313029881566763, -0.07924173772335052, -0.02720009908080101, -0.033392008394002914, 0.07396668195724487, -0.032366685569286346, -0.026608848944306374, -0.016937481239438057, -0.04145393148064613, -0.05494844168424606, 0.0020255441777408123, 0.027281686663627625, -0.043810803443193436, -0.003566370578482747, 0.0341072678565979, -0.03477346524596214, 0.08184961974620819, -0.03530454635620117, -0.07034953683614731, 0.028373371809720993, 0.01669193059206009, 0.02461819164454937, 0.005805211141705513, -0.06343339383602142, -0.025989314541220665, 0.06004887819290161, -0.0246737003326416, 0.03525104373693466, 0.018776020035147667, -0.020123440772294998, -0.039161402732133865, 0.004906856920570135, 0.01137617789208889, 0.07765568047761917, -0.033518433570861816, -0.08566508442163467, 0.019459405913949013, -0.03260960057377815, 0.030756257474422455, 0.010281462222337723, 0.0017844686517491937, -0.25138649344444275, 0.033447716385126114, 0.022656777873635292, 0.051388174295425415, -0.01013057492673397, 0.09543148428201675, -0.019382866099476814, 0.015755178406834602, -0.047645777463912964, 0.006962989456951618, 0.04315807297825813, -0.014498344622552395, -0.00774354487657547, 0.018940841779112816, -0.030178910121321678, 0.012295476160943508, 0.03359914571046829, 0.019993435591459274, -0.023884011432528496, 0.05202412232756615, 0.05576062202453613, 0.02893148921430111, 0.08179326355457306, 0.07586684823036194, -0.02063317969441414, -0.06566934287548065, -0.023572508245706558, 0.0426366850733757, -0.0020275842398405075, 0.02608315460383892, -0.041354067623615265, 0.005885710008442402, -0.0007516707410104573, -0.013203090988099575, 0.015015512704849243, -0.08486321568489075, -0.013025189749896526, 0.06313375383615494, 0.1197158470749855, -0.005406353622674942, -0.03403670713305473, -0.020518319681286812, 0.04267488420009613, -0.05021721497178078, 0.07191015034914017, 0.05875357612967491, 0.004257380496710539, -0.006707021500915289, -0.06933784484863281, -0.02019811049103737, -0.02670413814485073, 0.031094001606106758, 0.02278640866279602, 0.009460069239139557, -0.0013950782595202327, -0.0034174059983342886, 0.0034757209941744804, 0.028459718450903893, 0.028570597991347313, -0.024571040645241737, -0.017884578555822372, -0.01997092366218567, 0.09892947971820831, -0.007088701706379652, 0.007917474023997784], "26300e13-b5ca-4453-8d34-4d487299fd45": [-0.07728900760412216, 0.07528307288885117, 0.08670970052480698, 0.019244439899921417, 0.02114824391901493, 0.007937795482575893, 0.07563351094722748, -0.023307157680392265, 0.022454779595136642, -0.002872403943911195, 0.010801204480230808, -0.003372655715793371, -0.030738290399312973, -0.028438014909625053, -0.03221757337450981, -0.003802177496254444, -0.04470616951584816, -0.06349391490221024, -0.08084915578365326, 0.006950400769710541, 0.014263064600527287, -0.0678800642490387, 0.04008614271879196, 0.018863799050450325, -0.02821437083184719, -0.0003861667064484209, -0.02240530215203762, -0.006677357945591211, -0.012034277431666851, -0.14931099116802216, -0.006023278925567865, -0.038755450397729874, -0.03814587742090225, -0.01112488005310297, -0.014574808068573475, 0.07594040781259537, 0.029159197583794594, 0.00044949931907467544, -0.03265207260847092, 0.014835691079497337, -0.01788022369146347, 0.024699978530406952, -0.019861293956637383, -0.0008729775436222553, 0.07283933460712433, 0.003629981307312846, -0.01876947097480297, -0.02286759577691555, 0.04173228144645691, 0.02416514977812767, -0.06685350090265274, -0.015854384750127792, -0.018425466492772102, -0.0222433153539896, -0.030400695279240608, 0.015415426343679428, 0.014126733876764774, 0.014512946829199791, 0.08856520056724548, -0.005268248729407787, 0.0896134153008461, 0.025514019653201103, -0.06284591555595398, 0.06736627221107483, 0.031186386942863464, 0.014444764703512192, -0.04775605350732803, -0.042762745171785355, -0.008427975699305534, 0.04670069366693497, -0.05213570222258568, -0.006471242289990187, 0.032946158200502396, 0.010104565881192684, -0.027636008337140083, 0.02933824434876442, 0.049963533878326416, 0.0018853391520678997, 0.034491345286369324, 0.027889566496014595, -0.06856914609670639, -0.022923175245523453, -0.015407852828502655, 0.0407821387052536, -0.027090340852737427, -0.057200293987989426, -0.007201507221907377, -0.0320490337908268, 0.022412046790122986, 0.012128662317991257, 0.046001583337783813, -0.03584091365337372, -0.002159562660381198, -0.017111368477344513, 0.0035876028705388308, 0.011177817359566689, -0.032329756766557693, 0.010277400724589825, 0.032435525208711624, 0.42514389753341675, 0.027369998395442963, 0.021160868927836418, -0.005049233324825764, 0.03691044822335243, 0.020677173510193825, -0.017940733581781387, -0.021854057908058167, -0.07065340876579285, 0.023856939747929573, 0.056723691523075104, 0.0288885235786438, -0.0070510548539459705, 0.07564341276884079, -0.029027001932263374, 0.030182333663105965, 0.024075495079159737, 0.03518597036600113, -0.01330491527915001, -0.04611811414361, 0.0031246794387698174, 0.01440321747213602, -0.025997698307037354, 0.0021915871184319258, -0.06488166749477386, 0.06928364932537079, 0.013684895820915699, 0.06702440977096558, 0.040642186999320984, 0.05321945995092392, -0.09147118777036667, -0.015074490569531918, -0.08699015527963638, 0.04774456098675728, 0.03761495649814606, 0.011994410306215286, -0.01477956585586071, 0.059822481125593185, -0.04691667482256889, 0.049635760486125946, -0.08951747417449951, -0.0280444473028183, -0.19081439077854156, -0.06465628743171692, 0.012391217984259129, 0.0118460264056921, 0.014787864871323109, 0.03657978028059006, -0.025730298832058907, 0.035620808601379395, 0.07649676501750946, 0.033084720373153687, 0.024679461494088173, -0.00997297465801239, -0.00027077054255641997, 0.0029913168400526047, 0.006011880934238434, -0.0025471483822911978, 0.15205954015254974, -0.0021950339432805777, -0.012590219266712666, 0.023028980940580368, -0.013353168033063412, 0.05461432412266731, -0.02544787898659706, 0.0027394976932555437, -0.010592387989163399, -0.019118664786219597, -0.007308379281312227, -0.04781847074627876, -0.042592573910951614, 0.01452330220490694, 0.026551581919193268, -0.08075391501188278, 0.014921579509973526, -0.008633306249976158, -0.022300388664007187, -0.03412836045026779, -0.035846274346113205, 0.008165995590388775, 0.007258908823132515, -0.031135182827711105, -0.033681657165288925, -0.032453685998916626, 0.05035114660859108, -0.012179495766758919, -0.008731684647500515, 0.016854744404554367, 0.03084837645292282, 0.007325143553316593, -0.018458938226103783, 0.04374874755740166, 0.006740855053067207, -0.015413508750498295, 0.031278111040592194, -0.07203413546085358, -0.04015717655420303, -0.013048657216131687, -0.029226385056972504, -0.013278767466545105, 0.009512588381767273, -0.05871766060590744, -0.019959373399615288, -0.06172566115856171, 0.046370357275009155, 0.04467988386750221, 0.03316782787442207, 0.004389164969325066, -0.02559715136885643, 0.057074155658483505, 0.030887320637702942, -0.018122728914022446, -0.006014128215610981, -0.02493804134428501, -0.01291588880121708, 0.021413540467619896, -0.01191930752247572, 0.01422229502350092, 0.010096365585923195, -0.04187677800655365, 0.005001051817089319, -0.0021315990015864372, -0.05643628165125847, -0.0519995279610157, -0.3163566589355469, -0.03274988383054733, -0.04106760025024414, -0.06453556567430496, 0.05304344743490219, -0.07260122150182724, -0.003057233290746808, -0.04132824391126633, 0.05330982804298401, -0.07805045694112778, -0.022076020017266273, -0.037034500390291214, 0.005259710829705, -0.016436489298939705, 0.014488817192614079, 0.063035748898983, -0.05746940150856972, 0.034931622445583344, 0.016185728833079338, 0.046030860394239426, 0.042918283492326736, 0.023648101836442947, -0.02740081585943699, -0.009858674369752407, -0.03958453610539436, 0.01706935465335846, 0.1561083048582077, 0.039390355348587036, 0.05232805758714676, 0.021225368604063988, -0.022739728912711143, 0.011923377402126789, -0.04103650525212288, -0.03217930719256401, 0.01457924023270607, 0.029526997357606888, 0.0154021717607975, 0.009162734262645245, 0.04257183149456978, -0.014107947237789631, -0.036616407334804535, 0.06748457252979279, -0.006590221077203751, -0.010378162376582623, -0.006463317200541496, 0.02007240802049637, -0.06386129558086395, -0.013373319990932941, -0.00818007905036211, 0.06436848640441895, 0.030616609379649162, 0.06777293980121613, -0.03357440233230591, -0.029172860085964203, -0.01323708239942789, -0.002164518693462014, -0.07016555219888687, -0.011951158754527569, -0.07107289135456085, 0.07213480025529861, -0.03246419504284859, -0.02089484967291355, 0.008877475745975971, -0.03929213806986809, -0.01712663844227791, 0.019404297694563866, 0.02434045635163784, -0.03332258015871048, 0.06152206286787987, 0.012049398384988308, -0.0560205839574337, 0.05529556795954704, -0.0015070680528879166, -0.06010270118713379, 0.0022869971580803394, 0.02087821066379547, 0.03221375122666359, -0.0029313822742551565, -0.014050132595002651, 0.008140426129102707, 0.03806326538324356, 0.0054281046614050865, -0.0016935719177126884, -0.015752265229821205, -0.05140767619013786, -0.0023056596983224154, -0.009933684952557087, 0.004257236607372761, 0.10050047188997269, -0.04965551197528839, -0.06895845383405685, 0.03051121160387993, -0.026944933459162712, -0.003642976051196456, -0.0029599908739328384, 0.043422263115644455, -0.24745382368564606, 0.033411189913749695, 0.02788606472313404, 0.06735435873270035, 0.004088701214641333, 0.037437789142131805, 0.0012849493650719523, -0.007462521083652973, 0.008396579883992672, 0.0129714859649539, 0.08244766294956207, -0.013464008457958698, -0.022739922627806664, -0.00698140449821949, -0.072269968688488, 0.001545329811051488, 0.061167921870946884, -0.0033885452430695295, -0.04308741167187691, 0.018289973959326744, 0.022727681323885918, 0.02976010926067829, 0.11314559727907181, 0.06105959415435791, -0.02728387899696827, -0.043777644634246826, 0.022745024412870407, 0.05589935556054115, -0.021224070340394974, 0.044882070273160934, -0.03001396730542183, 0.007264937274158001, -0.009316137060523033, -0.005773560609668493, -0.0006931022508069873, -0.04035722091794014, -0.006348874885588884, 0.04821278899908066, 0.07108969986438751, 0.013183635659515858, -0.02292230725288391, 0.006178798153996468, 0.020322833210229874, -0.020036030560731888, 0.039168525487184525, 0.0428895577788353, 0.036374617367982864, -0.04851312190294266, -0.04274027794599533, 0.04664341360330582, -0.05444074049592018, 0.014129457995295525, 0.01695844531059265, -0.052719999104738235, 0.02593807876110077, -0.009537028148770332, -0.008106322027742863, 0.043779827654361725, 0.07370711117982864, 0.014013931155204773, -0.06762392073869705, -0.0469960942864418, 0.08395354449748993, 0.04725973680615425, -0.03478330746293068], "262fe5ab-ef9e-4f15-a98b-6f707b92fb93": [-0.07526599615812302, 0.038736313581466675, 0.06396268308162689, 0.06358439475297928, -0.044009845703840256, -0.002207299694418907, 0.06439872831106186, 0.013544009067118168, 0.008330052718520164, -0.030946917831897736, 0.030792273581027985, -0.01118673849850893, 0.0008015208877623081, -0.023140085861086845, -0.027572186663746834, 0.017269380390644073, -0.02122705802321434, -0.05449965223670006, -0.11366891860961914, 0.007609345018863678, 0.028878996148705482, -0.03629598766565323, 0.046497005969285965, 0.010640168562531471, -0.04092852398753166, 0.03052203170955181, -0.027971943840384483, -0.019061893224716187, -0.027488738298416138, -0.14373928308486938, 0.007791489828377962, -0.023756736889481544, -0.029567362740635872, -0.019035309553146362, 0.002279108390212059, 0.0870368555188179, 0.04146108403801918, -0.03148847818374634, -0.034527912735939026, 0.037271298468112946, -0.05082501098513603, -0.005185526795685291, -0.035419806838035583, 8.64631510921754e-05, 0.0823741927742958, -0.05305241048336029, -0.004265118855983019, -0.04404030740261078, 0.029496045783162117, -0.01751589961349964, -0.05649056285619736, -0.028021153062582016, -0.03067179024219513, -0.015027402900159359, -0.05473737791180611, 0.023996839299798012, 0.07294115424156189, 0.021037761121988297, 0.048330746591091156, -0.004572412930428982, 0.05729551613330841, 0.027579287067055702, -0.038404256105422974, 0.06650416553020477, 0.06940446048974991, 0.026387037709355354, -0.0886654332280159, -0.027857203036546707, 0.00040835392428562045, 0.04104828089475632, -0.0022370219230651855, 0.0015234341844916344, 0.051333218812942505, 0.038229409605264664, 0.0024237402249127626, 0.05051606148481369, 0.051607828587293625, 0.008673756383359432, 0.05907205119729042, 0.004296150989830494, -0.06327410787343979, -0.002888919087126851, -0.04193894937634468, 0.027513431385159492, -0.013457699678838253, -0.07465285062789917, 0.03553856536746025, -0.03132541850209236, -0.007464130409061909, -0.008843189105391502, 0.033432602882385254, -0.03152179718017578, -0.006954442244023085, 0.003909019287675619, -0.012582671828567982, 0.0033591855317354202, -0.03613617271184921, -0.008761122822761536, 0.03916671872138977, 0.43528932332992554, 0.031337231397628784, 0.023061256855726242, 0.014032118022441864, 0.025935707613825798, -0.0134718157351017, 0.019742274656891823, -0.0074705686420202255, -0.0821281149983406, 0.011754357255995274, 0.07116968929767609, 0.022305844351649284, -0.032555751502513885, 0.057239778339862823, -0.021740393713116646, 0.05683659762144089, -0.0005832456517964602, 0.027595356106758118, -0.028988569974899292, -0.037289515137672424, 0.032261863350868225, 0.01973004639148712, 0.005753449164330959, -0.0025712058413773775, -0.059995874762535095, 0.034110140055418015, -0.02269892767071724, 0.05444126948714256, 0.0649610236287117, 0.045400578528642654, -0.06133955344557762, 0.031203335151076317, -0.05296872556209564, 0.018193243071436882, 0.053631361573934555, -0.004810952581465244, -0.006691126152873039, -3.6714536690851673e-05, -0.013853560201823711, 0.030859163030982018, -0.05289427936077118, 0.020426759496331215, -0.17008930444717407, -0.05139101669192314, -0.0037133367732167244, 0.011953646317124367, 0.022383930161595345, 0.029396170750260353, -0.0031894706189632416, 0.009085623547434807, 0.07654095441102982, 0.021724747493863106, -0.01791832409799099, -0.007886608131229877, -0.01945759728550911, 0.005935712717473507, -0.024582257494330406, -0.02154361829161644, 0.14082713425159454, 0.0204987321048975, -0.007759643252938986, 0.04737643152475357, -0.0033855049405246973, 0.03538499400019646, -0.03378346934914589, 0.020174937322735786, 0.03233572095632553, -0.03519110381603241, -0.024716343730688095, -0.049982909113168716, -0.04950176179409027, -0.00826331414282322, 0.033114176243543625, -0.07772021740674973, 0.03291475027799606, -0.03228864446282387, -0.009927177801728249, -0.026085997000336647, -0.03231532499194145, -0.01051047071814537, 0.032435860484838486, -0.04945538565516472, -0.027530478313565254, -0.001800481230020523, 0.061329811811447144, -0.03388846293091774, -0.0466623455286026, 0.00935481209307909, 0.001614674343727529, 0.028133312240242958, -0.030275724828243256, 0.03191482275724411, -0.025753019377589226, -0.035869050770998, 0.0005529003101401031, -0.06910242885351181, -0.049325503408908844, 0.00279197096824646, -0.016964498907327652, -0.028185075148940086, -0.008341256529092789, -0.041857603937387466, -0.028777441009879112, -0.05474156141281128, 0.05223818123340607, 0.014293425716459751, 0.0037968545220792294, 0.04582599550485611, -0.030452178791165352, 0.07866671681404114, 0.013322204351425171, -0.030657975003123283, -0.07102451473474503, -0.002131072571501136, 0.04763895645737648, -0.008180691860616207, -0.0007933757151477039, -0.006251155864447355, 0.007021981291472912, -0.032211244106292725, 0.0035690113436430693, -0.03231682628393173, -0.07920399308204651, -0.0603034608066082, -0.290790319442749, -0.020572546869516373, -0.024428794160485268, -0.07211022078990936, 0.07894308865070343, -0.052883636206388474, -0.013902145437896252, -0.03522587567567825, 0.06568735092878342, -0.026380755007267, 0.011535950005054474, -0.05892689898610115, 0.0376511849462986, -0.013957214541733265, 0.006151141133159399, 0.06698046624660492, -0.0641017034649849, 0.02804136462509632, 0.0417126789689064, 0.03502102196216583, 0.02573562040925026, 0.040118515491485596, -0.0009879647986963391, -0.053088683634996414, -0.050150562077760696, 0.0036825889255851507, 0.14382889866828918, 0.07105395197868347, 0.048463381826877594, 0.007236699108034372, -0.022593479603528976, 0.029666835442185402, -0.032509271055459976, -0.02002866379916668, 0.018554743379354477, 0.04791265353560448, 0.01541624590754509, 4.262475158611778e-06, 0.027886871248483658, -0.03439830243587494, -0.07461805641651154, 0.07587020844221115, 0.0026747239753603935, -0.011343351565301418, -0.018410738557577133, 0.025198670104146004, -0.046954743564128876, -0.007184323389083147, -0.00048684750800020993, 0.03421905264258385, 0.03338979557156563, 0.08679564297199249, -0.02845255471765995, -0.02041560225188732, -0.00205558305606246, 0.00595272658392787, -0.06379296630620956, -0.02181544341146946, -0.04110315442085266, 0.053022127598524094, -0.012098008766770363, -0.003445142414420843, 0.03578251600265503, -0.03571287915110588, -0.04103216156363487, 0.009956702589988708, 0.0011576837860047817, -0.05617358908057213, 0.05334452539682388, 0.025623083114624023, -0.03473618999123573, 0.05774133652448654, 0.009395411238074303, -0.015074942260980606, -0.0024605270009487867, 0.014216545969247818, 0.0028514708392322063, -0.0005846107960678637, -0.009332478046417236, 0.015723636373877525, 0.02204415760934353, -0.01821151189506054, 0.007956934161484241, 0.006140114739537239, -0.06516440957784653, -0.010632585734128952, -0.007149179000407457, -0.024354703724384308, 0.062400031834840775, -0.04355955868959427, -0.058716628700494766, 0.06307099014520645, -0.019690996035933495, -0.017339209094643593, 0.028977537527680397, -0.009481241926550865, -0.2706299424171448, 0.038812268525362015, 0.02963661029934883, 0.0402807891368866, -0.014111528173089027, 0.06216481700539589, 0.017558405175805092, 0.0024972802493721247, -0.021762559190392494, 0.015997184440493584, 0.08800589293241501, 0.011125513352453709, -0.01148349791765213, 0.011914843693375587, -0.05498187988996506, 0.029075315222144127, 0.032590221613645554, 0.026642821729183197, -0.04981011152267456, 0.031399551779031754, 0.014160812832415104, 0.05726725235581398, 0.11849123239517212, 0.025599727407097816, -0.0315798856317997, -0.03437206149101257, 0.031322818249464035, 0.06882243603467941, 0.002141295000910759, 0.033849626779556274, -0.029734238982200623, 0.023266255855560303, -0.03546394035220146, -0.04035397619009018, 0.0029215954709798098, -0.055924754589796066, -0.009035701863467693, 0.025884326547384262, 0.08651619404554367, -0.006839236244559288, -0.036103297024965286, 0.02935687266290188, 0.04668467119336128, -0.003410780569538474, 0.05550102889537811, 0.02396250143647194, 0.006865421775728464, -0.04215078428387642, -0.0739438459277153, 0.05829828977584839, -0.03330063447356224, 0.010760766454041004, 0.037925053387880325, -0.03186163306236267, 0.028023142367601395, 0.016187427565455437, -0.01043104287236929, 0.03266775608062744, 0.014723367989063263, -0.02671421878039837, -0.07276608049869537, -0.0276893712580204, 0.10871238261461258, 0.01504143700003624, -0.022614946588873863], "2d1d4e9c-d20b-4ffc-b560-99d0ea4b096a": [-0.05950383469462395, 0.038491394370794296, 0.05675628036260605, 0.04727775603532791, -0.02168348804116249, 0.00022378766152542084, 0.02479347586631775, 0.03654918447136879, -0.0046990192495286465, -0.019842762500047684, 0.037622593343257904, -0.03364104405045509, -0.0032344674691557884, -0.019836697727441788, 0.00398659473285079, 0.016424909234046936, -0.009729193523526192, -0.03687126934528351, -0.08446706831455231, 0.013479736633598804, 0.048113416880369186, -0.013986238278448582, 0.033353522419929504, 0.018023354932665825, -0.009285281412303448, 0.02941286191344261, -0.008798874914646149, -0.008385036140680313, -0.006469131913036108, -0.1337822675704956, 0.025379560887813568, -0.021101288497447968, -0.020978042855858803, -0.02165527269244194, 0.01906268671154976, 0.06322403997182846, 0.06719330698251724, -0.062147106975317, -0.001972915604710579, 0.05302320793271065, -0.029466181993484497, -0.009444396942853928, -0.03813166543841362, -0.001726405811496079, 0.047481514513492584, -0.0450044721364975, 0.001148862880654633, -0.05716743320226669, 0.03296704962849617, -0.03562584146857262, -0.050153352320194244, -0.06969639658927917, -0.013950294815003872, 0.015462852083146572, -0.041706766933202744, 0.048358529806137085, 0.06799262017011642, 0.006594924721866846, 0.04115578532218933, 0.002720437478274107, 0.02974635548889637, 0.06721089780330658, -0.06194813549518585, 0.08464449644088745, 0.054547570645809174, 0.025300638750195503, -0.09621953964233398, 0.0021594671998173, 0.008323537185788155, 0.03731221333146095, -0.0037527827080339193, -0.038409966975450516, 0.0463254489004612, 0.08103053271770477, 0.017650503665208817, 0.07097847759723663, 0.030416876077651978, 0.00645753089338541, 0.07273518294095993, -0.0076185474172234535, -0.06903568655252457, -0.009407968260347843, -0.011750849895179272, -0.0042189969681203365, 0.007167314179241657, -0.050994280725717545, 0.03223877400159836, -0.049681197851896286, -0.005704820156097412, 0.012491844594478607, 0.0442892350256443, -0.050162263214588165, 0.026436103507876396, 0.014245792292058468, 0.0020885493140667677, -0.011645848862826824, -0.04582248255610466, -0.019813330844044685, 0.006458476651459932, 0.4018375873565674, 0.03274709731340408, 0.014750814996659756, 0.03791399672627449, 0.023847481235861778, -0.010707922279834747, 0.0006976075237616897, 0.029679952189326286, -0.06962773203849792, -0.0065721068531274796, 0.07044069468975067, 0.01462701614946127, -0.04415982961654663, 0.033913012593984604, -0.007821217179298401, 0.04707695543766022, 0.015512002632021904, 0.042451873421669006, -0.0667560026049614, -0.036096151918172836, 0.03814056143164635, 0.02213027887046337, 0.012342626228928566, 0.00723563227802515, -0.07869858294725418, 0.032112058252096176, -0.032246772199869156, 0.08269357681274414, 0.07442834228277206, 0.022224653512239456, -0.06817235797643661, 0.040595751255750656, -0.036453720182180405, -0.028919324278831482, 0.05116758868098259, 0.04829709231853485, -0.018635530024766922, -0.0165932085365057, -0.030616795644164085, 0.010625778697431087, -0.02729419246315956, 0.018072333186864853, -0.16550035774707794, -0.0735243409872055, -0.002149341395124793, -0.004145394079387188, 0.03471672907471657, 0.027666529640555382, 0.027447044849395752, 0.01688889041543007, 0.05292415991425514, -0.001221513724885881, -0.008341168984770775, -0.03161584213376045, -0.015450352802872658, 0.015687832608819008, -0.00734281400218606, -0.02238517627120018, 0.14313772320747375, 0.048138562589883804, -0.014818958006799221, 0.03387460112571716, -0.00912925973534584, 0.0238270815461874, -0.03714729845523834, 0.06332457065582275, 0.031073706224560738, -0.06150161102414131, -0.038874201476573944, -0.042147062718868256, -0.006144629791378975, 0.017955392599105835, 0.04638694226741791, -0.07072802633047104, 0.031975168734788895, -0.028084605932235718, -0.021001895889639854, -0.0007506994297727942, -0.03167813643813133, 0.0003140030021313578, 0.03951513022184372, -0.02889183722436428, -0.08065152913331985, -0.02189319021999836, 0.04915427789092064, -0.003793284296989441, -0.03327113389968872, -0.0101925702765584, -0.012110693380236626, -0.00040044658817350864, -0.008854946121573448, 0.07817710936069489, -0.007905184291303158, -0.01133493147790432, 0.0037787100300192833, -0.07580424100160599, -0.018908090889453888, 0.01046658307313919, -0.028928156942129135, -0.002416861243546009, -0.03171572834253311, -0.022022606804966927, -0.04640767350792885, -0.045307908207178116, 0.04871094226837158, -0.016507169231772423, 0.047601837664842606, 0.06272130459547043, -0.029256746172904968, 0.11981623619794846, 0.01313866674900055, -0.031900957226753235, -0.06654628366231918, -0.013820797204971313, 0.04819968342781067, -0.007650217041373253, 0.022788425907492638, -0.01710323803126812, 0.02331642061471939, -0.031574737280607224, -0.004393280483782291, -0.018223389983177185, -0.06805500388145447, -0.05924685299396515, -0.30509230494499207, -0.03519381582736969, -0.022723862901329994, -0.05325327068567276, 0.07137829065322876, -0.05325279384851456, 0.007952528074383736, -0.03870611637830734, 0.06679278612136841, -0.04118097200989723, -0.006498991046100855, -0.0433662049472332, 0.05627329647541046, -0.001969890668988228, 0.01184230949729681, 0.05429272726178169, -0.03645496070384979, 0.037918344140052795, 0.04746699333190918, 0.0370667465031147, -0.029693739488720894, 0.03462158888578415, -0.0025729993358254433, -0.058939289301633835, -0.015465621836483479, 0.014827053993940353, 0.15224094688892365, 0.06769237667322159, 0.021151624619960785, 0.018302304670214653, 0.0072398423217237, 0.02638952247798443, -0.00231588794849813, -0.04778493568301201, 0.010479732416570187, 0.02881832793354988, -0.008530552498996258, -0.014218722470104694, 0.02454831823706627, -0.04594266042113304, -0.05795317888259888, 0.05087774246931076, -0.004314302932471037, -0.03817017003893852, -0.058771632611751556, 0.05918629840016365, -0.030071251094341278, 0.008576440624892712, 0.03220456466078758, 0.041326530277729034, 0.0012592835118994117, 0.09150795638561249, -0.021672911942005157, -0.053145747631788254, -0.033183079212903976, 0.012638045474886894, -0.08624311536550522, -0.020674612373113632, -0.02803429402410984, 0.04422396421432495, 0.008635018952190876, -0.0034789731726050377, 0.017811546102166176, -0.039463307708501816, -0.0635523647069931, 0.004559685476124287, 0.004018126986920834, -0.05849102884531021, 0.02872653305530548, 0.03853478655219078, -0.03619040921330452, 0.08123461902141571, 0.01409220788627863, -0.033193521201610565, -0.015743840485811234, 0.009156164713203907, 0.03942735865712166, -0.002018310595303774, -0.0016074252780526876, -0.011116333305835724, 0.032548688352108, -0.03944866731762886, -0.014982087537646294, -0.008746062405407429, -0.05683348700404167, -0.04760584980249405, -0.00852984469383955, -0.006823976524174213, 0.06253792345523834, -0.008579078130424023, -0.06025898829102516, 0.0654359683394432, -0.02629021368920803, 0.014956618659198284, 0.0033753621391952038, 0.014126002788543701, -0.260147362947464, 0.04268565773963928, 0.024959737434983253, 0.03632860630750656, 0.010055228136479855, 0.08859634399414062, -0.023791294544935226, 0.012804156169295311, -0.004173174034804106, -0.005454727914184332, 0.05269648879766464, -0.02875959686934948, 0.004542815964668989, 0.01728479191660881, -0.04802151769399643, 0.030209563672542572, 0.04724455624818802, 0.020160697400569916, -0.027760561555624008, 0.039668116718530655, 0.006295762024819851, 0.025740180164575577, 0.1401447057723999, 0.010244885459542274, -0.001816101954318583, -0.051439255475997925, 0.0014488121960312128, 0.06115506589412689, 0.04708671197295189, 0.0014556704554706812, -0.02296614833176136, 0.031568896025419235, -0.024881549179553986, -0.04672781005501747, -0.01899736560881138, -0.07732930034399033, -0.024019544944167137, -0.0011283818166702986, 0.04274837672710419, -0.01181881781667471, -0.061181653290987015, 0.028818419203162193, 0.000578824314288795, -0.01028709951788187, 0.06381573528051376, 0.024753211066126823, 0.045097533613443375, -0.07440400123596191, -0.04552200809121132, 0.031807322055101395, -0.053842414170503616, -0.0026354591827839613, 0.030950354412198067, -0.05124492943286896, -0.011403609998524189, 0.01870441995561123, -0.026920024305582047, -0.006138439755886793, -0.030855929479002953, -0.04815470427274704, -0.05560064688324928, -0.0447295680642128, 0.10506148636341095, -0.0034214090555906296, 0.024044804275035858], "6757402d-4af3-4fec-b8a4-569720149968": [-0.043189629912376404, -0.008028020150959492, 0.0699060708284378, 0.06828602403402328, -0.017241455614566803, -0.005814693868160248, 0.017593180760741234, 0.017886627465486526, -0.03734216466546059, -0.007050412241369486, 0.03304728865623474, -0.052450262010097504, -0.010296807624399662, -0.009454531595110893, 0.005270355846732855, 0.025608662515878677, -0.012821218930184841, -0.01390551496297121, -0.0928565114736557, -0.020975088700652122, 0.09522723406553268, -0.028603387996554375, 0.019658509641885757, -0.007953466847538948, 0.016960496082901955, 0.04188704863190651, -0.00011529352195793763, -0.02991175651550293, 0.03347017988562584, -0.16153667867183685, 0.02408118173480034, -0.0010853697312995791, -0.0015572085976600647, -0.01323364581912756, 0.03329887241125107, 0.06858894973993301, 0.033281225711107254, -0.029174597933888435, -0.029626181349158287, 0.01646132580935955, -0.033620499074459076, 0.0040378025732934475, -0.06071621552109718, -0.007886217907071114, 0.04056967794895172, -0.029156867414712906, -0.034973058849573135, -0.019042404368519783, -0.02570355124771595, -0.016385816037654877, -0.05732252821326256, -0.06379634141921997, -0.0006737196235917509, 0.03458186984062195, -0.026530250906944275, 0.02362033724784851, 0.09945998340845108, 0.042884744703769684, 0.04115500673651695, 0.009850164875388145, 0.017903517931699753, 0.04250827431678772, -0.05691204220056534, 0.08729764074087143, 0.033185068517923355, 0.00912008248269558, -0.0807047113776207, -0.027855882421135902, 0.02090121991932392, 0.02343745343387127, 0.03424284607172012, -0.02873220667243004, 0.030232086777687073, 0.06418105214834213, 0.022418392822146416, 0.023806054145097733, 0.025543881580233574, 0.00034218552173115313, 0.05055679753422737, 0.04486093297600746, -0.06368964165449142, -0.010719812475144863, -0.05413818359375, -0.036732569336891174, 0.005417183507233858, -0.03147776797413826, -0.022580498829483986, -0.022101080045104027, 0.015590307302772999, 0.010161121375858784, 0.026539260521531105, -0.04900011420249939, -0.03627682477235794, -0.025846553966403008, -0.0013666122686117887, -0.004969302099198103, -0.04539887234568596, -0.031119108200073242, 0.024643514305353165, 0.41977033019065857, -1.9585171685321257e-05, -0.014894815161824226, 0.03114062175154686, 0.02364240400493145, 0.013863691128790379, 0.02034873701632023, -0.0040499246679246426, -0.07439195364713669, -0.017778873443603516, 0.07338814437389374, 0.004996452946215868, -0.027202701196074486, 0.04434363171458244, -0.019013280048966408, 0.03404099866747856, 0.011085442267358303, 0.018899112939834595, -0.03357945755124092, -0.001359643298201263, 0.021328864619135857, 0.005519980099052191, 0.030809052288532257, 0.017998207360506058, -0.053770288825035095, 0.006981123238801956, -0.04118127003312111, 0.05775846913456917, 0.06733304262161255, 0.031376272439956665, -0.05656648799777031, 0.045159030705690384, -0.04389951378107071, -0.013261700980365276, 0.039334844797849655, 0.014455619268119335, 0.028793815523386, 0.007494670804589987, -0.02328430861234665, 0.03268309682607651, -0.004570445977151394, 0.016470013186335564, -0.07854733616113663, -0.03789626806974411, 0.01621827483177185, -0.0038092187605798244, 0.04202214628458023, 0.0427008792757988, 0.03263354301452637, -0.006249462254345417, 0.05869421735405922, -0.011611559428274632, -0.048681531101465225, -0.015214207582175732, -0.020027924329042435, 0.03539610281586647, -0.005389041267335415, 0.008537806570529938, 0.08790964633226395, 0.01215409953147173, -0.014150303788483143, 0.0330444797873497, -0.006675638258457184, -0.008975685574114323, 0.0006693060859106481, 0.04097267612814903, 0.011311622336506844, -0.004253838211297989, -0.0413910448551178, -0.033389244228601456, -0.036981649696826935, 0.030711114406585693, 0.04187342897057533, -0.07054702937602997, 0.06552480906248093, -0.016431603580713272, 0.01559358462691307, -0.031060177832841873, -0.01687782257795334, 0.00652078352868557, 0.0029583305586129427, 0.045061975717544556, -0.07313678413629532, 0.00204419600777328, 0.05925277993083, -0.0047211917117238045, -0.04471276327967644, 0.026166941970586777, 0.00038064023829065263, 0.014513993635773659, -0.019660040736198425, 0.027978118509054184, -0.019466212019324303, -0.07371403276920319, 0.026718877255916595, -0.05608898773789406, -0.019086236134171486, 0.0011668999213725328, -0.017529351636767387, -0.054355014115571976, -0.029194369912147522, -0.03313468396663666, -0.0459086075425148, -0.005819079466164112, 0.024178463965654373, 0.004892274271696806, 0.03408823534846306, 0.0678824633359909, -0.03933831304311752, 0.1368255615234375, 0.025210976600646973, -0.06744278222322464, -0.05700716748833656, -0.03593742847442627, 0.04742685332894325, 0.03526345267891884, 0.0011351399589329958, 0.015598056837916374, 0.004706550855189562, -0.05180194228887558, -0.024436168372631073, -0.020800163969397545, -0.08133869618177414, -0.06604979187250137, -0.31729617714881897, -0.02826540358364582, -0.0027389363385736942, -0.06346925348043442, 0.11308163404464722, -0.07414749264717102, -0.01571725681424141, -0.0238193292170763, 0.06912899762392044, -0.05040059983730316, -0.027231857180595398, -0.02640414424240589, 0.06753962486982346, -0.008637017570436, 0.01967363804578781, 0.05333402380347252, -0.023762524127960205, -0.0018968480871990323, 0.013026341795921326, 0.018561536446213722, -0.008672280237078667, 0.07362668216228485, 0.025646593421697617, -0.07459256798028946, -0.04391665384173393, 0.007436616811901331, 0.15413866937160492, 0.05146975815296173, 0.059309061616659164, 0.02603192813694477, -0.020275795832276344, 0.019156090915203094, -0.056194987148046494, -0.02123042196035385, 0.009196165949106216, 0.02853803150355816, -0.007607136387377977, -0.023005450144410133, -0.014507035724818707, -0.05354280024766922, -0.0467897392809391, 0.01478385366499424, -0.033048324286937714, -0.01449328288435936, -0.04258042201399803, 0.038945142179727554, -0.022498054429888725, 0.007886292412877083, 0.010469750501215458, 0.053378455340862274, 0.009638258256018162, 0.09912322461605072, -0.03510598465800285, -0.02053700014948845, -0.03340582177042961, -0.007352984976023436, -0.11342384666204453, -0.013360435143113136, -0.019204039126634598, 0.025124670937657356, 0.038727566599845886, -0.016437124460935593, 0.05101699009537697, -0.09478852152824402, -0.0583777129650116, -0.016337992623448372, 0.0013882729690521955, -0.05333342403173447, 0.07513637095689774, 0.009837723337113857, -0.04421987757086754, 0.07049494981765747, 0.019912727177143097, -0.0508844368159771, -0.024460697546601295, 0.036317192018032074, 0.025614533573389053, 0.023486316204071045, 0.0003674698527902365, -0.014922001399099827, 0.03533476963639259, 0.011808900162577629, -0.015838298946619034, -0.0069711594842374325, -0.043995201587677, -0.0383429192006588, -0.0025397175922989845, -0.05679841712117195, 0.08463296294212341, 0.0026305324863642454, -0.035715363919734955, 0.04001674801111221, -0.007374530658125877, -0.04556995630264282, 0.025230642408132553, 0.01707816869020462, -0.2965829074382782, 0.011455470696091652, 0.054416757076978683, 0.05032840371131897, -0.0012832352658733726, 0.06026491895318031, -0.009390988387167454, 0.002293763915076852, -0.0026889918372035027, -0.025078164413571358, 0.057148952037096024, -0.03962584584951401, -0.0001011705826385878, -0.01071959175169468, -0.05107177421450615, 0.007783439476042986, 0.05381321907043457, 0.0069649964570999146, -0.0026645571924746037, 0.023921016603708267, 0.027299445122480392, 0.03103938139975071, 0.1659950166940689, -0.009790034964680672, -0.03323785588145256, -0.034219399094581604, 0.0015419648261740804, 0.0055743250995874405, 0.04644307121634483, 0.03348337858915329, 0.018663315102458, 0.05469099432229996, -0.00964649859815836, -0.031006909906864166, -0.00464616296812892, -0.02803095616400242, -0.024469636380672455, -0.00019383462495170534, 0.03418697044253349, -0.011446967720985413, -0.04100250080227852, 0.025154007598757744, -0.006961687467992306, 0.022155944257974625, 0.04688677936792374, 0.03874630853533745, 0.04650714620947838, -0.02803930640220642, -0.053489722311496735, 0.03409729152917862, -0.017232025042176247, 0.0017347052926197648, 0.01465554628521204, -0.03600054234266281, 0.007177031598985195, 0.0035435089375823736, -0.02578922174870968, -0.006790097802877426, 0.0259938295930624, -0.025192013010382652, -0.04439321532845497, -0.04155905544757843, 0.08514586836099625, 0.027893036603927612, 0.009087367914617062], "20270017-a10d-461e-988d-d9531cd85e33": [-0.05896000191569328, 0.02881580777466297, 0.0423433892428875, 0.010996460914611816, -0.05345318838953972, -0.0005860222736373544, -0.0014159507118165493, 0.017713315784931183, -0.011512931436300278, -0.02942797914147377, 0.01949533447623253, 0.0006487881182692945, 0.0036121748853474855, -0.0032740393653512, -0.006732994690537453, 0.011096211150288582, -0.02499030902981758, -0.06605447083711624, -0.0781446173787117, 0.01844613440334797, 0.07643347233533859, -0.008023585192859173, 0.036066774278879166, 0.0010019822511821985, -0.0067277164198458195, 0.015791572630405426, -0.016006452962756157, -0.017117531970143318, -0.0027706639375537634, -0.16500362753868103, 0.0013413481647148728, -0.0021412745118141174, -0.013849973678588867, -0.002730366075411439, -0.008716756477952003, 0.08505050837993622, 0.05895908549427986, -0.05972527340054512, -0.01517604198306799, 0.048952069133520126, 0.005454028956592083, -0.009524408727884293, -0.02372686192393303, 0.020393123850226402, 0.036083221435546875, -0.02274460159242153, -0.035079747438430786, -0.03687624633312225, 0.029867837205529213, -0.015512291342020035, -0.04126056283712387, -0.06823538988828659, 0.0034209482837468386, 0.02241082862019539, -0.015341871418058872, 0.012573081068694592, 0.05711130425333977, 0.05339943990111351, 0.04341142624616623, -0.008683436550199986, 0.03593137487769127, 0.028709091246128082, -0.08118759095668793, 0.09939970076084137, 0.03471510484814644, 0.029206208884716034, -0.1001955196261406, 0.031026257202029228, 0.0007504078675992787, 0.058143991976976395, -0.03951437026262283, 0.015552316792309284, 0.03949834033846855, 0.05540895462036133, -0.0024287470150738955, 0.05464307963848114, 0.015350403264164925, 0.02607886679470539, 0.0609402060508728, 0.0021478149574249983, -0.07702823728322983, -0.03597543016076088, 0.006254428531974554, -0.0005113955703563988, -0.0038103540427982807, -0.030317556113004684, 0.015198631212115288, -0.04641421511769295, -0.006438700947910547, 0.033573705703020096, 0.02694917842745781, -0.07225261628627777, -0.041979022324085236, -0.02034188061952591, -0.017865218222141266, 0.004114886745810509, -0.062172722071409225, -0.0025363885797560215, -0.011703523807227612, 0.43491876125335693, 0.04789404571056366, 0.00423556100577116, 0.021252695471048355, 0.0186242014169693, -0.017302509397268295, -0.026189148426055908, 0.015129877254366875, -0.09796611219644547, -0.0018529880326241255, 0.04372769221663475, -0.005901462864130735, -0.019468965008854866, 0.04146061837673187, -0.016286244615912437, 0.05731045454740524, 0.02744710072875023, 0.05372294783592224, -0.03987996652722359, -0.03820200636982918, 0.0212514940649271, 0.02961336262524128, 0.019300514832139015, 0.0032328374218195677, -0.06738889962434769, 0.0038638338446617126, -0.007631117478013039, 0.06438528001308441, 0.05145886912941933, 0.0031671463511884212, -0.04660434648394585, 0.03254738077521324, -0.08422832936048508, 0.01093496847897768, 0.01438746228814125, 0.03045089915394783, 0.009795858524739742, 0.0011008777655661106, -0.05098174139857292, 0.03573241084814072, -0.02871738187968731, -0.007286097854375839, -0.13778141140937805, -0.034582436084747314, -0.00962914526462555, 0.013896903023123741, 0.04856916889548302, 0.06188768148422241, 0.02665109373629093, 0.0185724887996912, 0.057212602347135544, 0.003772133029997349, -0.013283459469676018, -0.003511513117700815, -0.040796395391225815, 0.021133901551365852, -0.015375028364360332, 0.007077235262840986, 0.12190757691860199, 0.03936152905225754, -0.00016381783643737435, 0.0161599088460207, 0.01662101410329342, 0.038490232080221176, -0.03978504613041878, 0.039167627692222595, 0.001139339292421937, -0.04339548945426941, -0.02587156929075718, -0.0465259924530983, -0.053272880613803864, 0.004176225513219833, 0.021269014105200768, -0.0714159831404686, 0.016152238473296165, 0.008484166115522385, -0.016597267240285873, 0.010095296427607536, -0.03723359853029251, 0.020619772374629974, 0.04837437719106674, 0.007531262002885342, -0.06320858746767044, -0.0345979705452919, 0.036834463477134705, -0.028565024957060814, -0.03604435920715332, 0.012733260169625282, -0.007157948333770037, -0.014890159480273724, -0.02469058707356453, 0.05703940615057945, -0.021617161110043526, -0.032813865691423416, 0.04014602303504944, -0.0525958277285099, -0.05365612730383873, 0.015123657882213593, -0.022957827895879745, -0.02349015325307846, -0.03990710526704788, -0.008958205580711365, -0.04187030717730522, -0.03453032299876213, 0.0281561017036438, 0.0021988763473927975, 0.03647143021225929, 0.07224813848733902, -0.029697367921471596, 0.10600384324789047, 0.02290329709649086, -0.014221161603927612, -0.015067432075738907, -0.03887269273400307, 0.03905540704727173, -0.01895822584629059, 0.037966713309288025, 0.0034904752392321825, 0.031478624790906906, -0.048666056245565414, -0.005127407610416412, -0.007459820248186588, -0.067283034324646, -0.01604222133755684, -0.29645565152168274, -0.027233822271227837, -0.016078155487775803, -0.06966760009527206, 0.07230280339717865, -0.04928196221590042, -0.018086541444063187, -0.037670332938432693, 0.04914397746324539, -0.07170677930116653, -0.001962820068001747, -0.05682506784796715, 0.0534229651093483, -0.011332668364048004, 0.01147390529513359, 0.05690988898277283, -0.03996845707297325, 0.013620859012007713, 0.060324229300022125, 0.0627354234457016, -0.010762752965092659, 0.03561538830399513, 0.004095383454114199, -0.0889694020152092, -0.015984760597348213, -0.007206958252936602, 0.1538977026939392, 0.06386473774909973, 0.04243149980902672, -0.0061720386147499084, 0.0030475768726319075, 0.028680402785539627, -0.012009382247924805, -0.02489567920565605, 0.003991682082414627, 0.02897719293832779, 0.034984003752470016, -0.05199246481060982, 0.022741729393601418, -0.0790034756064415, -0.04162908345460892, 0.06917333602905273, -0.015850471332669258, -0.01091716904193163, -0.07120896130800247, 0.00987720675766468, -0.03805031254887581, 0.0013411235995590687, 0.0217739250510931, 0.03152865171432495, 0.005781966261565685, 0.07015032321214676, -0.03090924397110939, -0.041118260473012924, -0.03571848198771477, -0.00786026380956173, -0.06943604350090027, -0.009154131636023521, -0.053074125200510025, 0.04098917543888092, 0.016971422359347343, 0.01463560201227665, 0.014086524024605751, -0.034552574157714844, -0.01617247797548771, 0.013989151455461979, 0.002805020660161972, -0.06739113479852676, 0.029463132843375206, 0.026258235797286034, -0.03766246140003204, 0.03244169056415558, 0.02203754521906376, -0.03825493901968002, -0.013830379582941532, -0.017873112112283707, -0.00573121290653944, -0.028557900339365005, -0.02187677100300789, 0.023019878193736076, 0.020935431122779846, -0.060645692050457, 0.0005545743624679744, 0.007373699452728033, -0.05728243663907051, -0.030829837545752525, -0.0015901081496849656, -0.0024441659916192293, 0.08235637098550797, -0.018561145290732384, -0.0066958763636648655, 0.08037763833999634, -0.03656390309333801, 0.011343568563461304, 0.05343838408589363, 0.01885201595723629, -0.2902183532714844, 0.04543418437242508, 0.036236803978681564, 0.042892277240753174, 0.04546685144305229, 0.08595555275678635, -0.0032333882991224527, -0.005188490729779005, 0.001082770642824471, -0.003244757419452071, 0.070709228515625, 0.011273493058979511, 0.020162411034107208, 0.008594575338065624, -0.050195999443531036, 0.020293593406677246, 0.061256229877471924, 0.011820315383374691, -0.004855026490986347, 0.014724193140864372, 0.016366617754101753, 0.036761920899152756, 0.1492365151643753, 0.022124603390693665, -0.01534349750727415, -0.018461924046278, 0.0005837987991981208, 0.03927906975150108, 0.04248106852173805, 0.0421890914440155, -0.00030767268617637455, 0.010454445146024227, -0.03457898274064064, -0.0034135528840124607, 0.0005862293764948845, -0.035831619054079056, -0.017190929502248764, 0.0032160624396055937, 0.03461576998233795, -0.028009559959173203, -0.0559597946703434, 0.013613861054182053, 0.014212250709533691, 0.01653335802257061, 0.053621117025613785, 0.03557936102151871, 0.014277505688369274, -0.062343429774045944, -0.06810502707958221, 0.04111544042825699, -0.040841784328222275, -0.02920045517385006, 0.024081654846668243, -0.04924498498439789, 0.011415006592869759, -0.011509910225868225, -0.008108163252472878, -0.0023699195589870214, -0.0026627385523170233, -0.036826685070991516, -0.022685732692480087, -0.03749459981918335, 0.12922048568725586, -0.0009327583247795701, 0.02188841812312603], "8e7992c9-10c1-433f-bc40-1777dc777556": [-0.07298000901937485, -0.0006686146953143179, 0.0459088496863842, 0.023680929094552994, -0.02616528421640396, 0.013988940976560116, 0.0041355108842253685, -0.008837462402880192, 0.017947319895029068, -0.013166808523237705, 0.039087358862161636, -0.030461180955171585, 0.0026929096784442663, -0.04965406656265259, -0.024562247097492218, 0.027276162058115005, -0.030063748359680176, -0.017237571999430656, -0.0829857587814331, 0.02789156325161457, 0.03670191019773483, 0.012447738088667393, 0.049453068524599075, 0.007069110870361328, -0.03865534067153931, 0.020042985677719116, -0.014974202960729599, 8.845192496664822e-05, 0.00830982904881239, -0.14289432764053345, 0.00702196080237627, -0.039777349680662155, -0.046682413667440414, -0.02086205780506134, -0.011853321455419064, 0.06807970255613327, 0.03148220106959343, -0.0794295221567154, -0.006990525871515274, 0.0719095915555954, -0.015178939327597618, -0.010143698193132877, -0.022437114268541336, 0.022375917062163353, 0.046158064156770706, -0.012052197940647602, -0.038928624242544174, -0.03990929573774338, 0.042281001806259155, -0.018031319603323936, -0.03773228079080582, -0.070436492562294, 0.004782871343195438, 0.008557613007724285, 0.0020817508921027184, 0.04171925410628319, 0.0646863728761673, 0.03201291337609291, 0.03918870538473129, -0.01519325003027916, 0.0661906749010086, 0.06873299181461334, -0.06036778911948204, 0.07850397378206253, 0.03322966396808624, 0.0146190719678998, -0.07560304552316666, 0.011850520968437195, -0.03520706295967102, 0.04926665127277374, -0.03646079823374748, 0.003126305527985096, 0.05058923363685608, 0.038278914988040924, 0.01606346108019352, 0.07652360945940018, 0.012212532572448254, 0.009106718003749847, 0.03660031780600548, 0.01080250646919012, -0.06891757249832153, -0.010045748203992844, -0.052938513457775116, -0.01241259928792715, -0.017032187432050705, -0.06779620051383972, 0.018037891015410423, -0.04083633050322533, 0.018183140084147453, 0.02680272050201893, 0.028444668278098106, -0.03434782102704048, -0.02454238384962082, -0.031820278614759445, -0.005515772383660078, 0.015807000920176506, -0.04028044268488884, -0.01316035632044077, 0.02685653790831566, 0.423841267824173, 0.04469088092446327, -0.004686442669481039, 0.04876723140478134, 0.03364654630422592, 0.00270359986461699, -0.03640969470143318, 0.002397738164290786, -0.07276871800422668, 0.05144604295492172, 0.07748613506555557, 0.013877661898732185, -0.005264035426080227, 0.045551493763923645, -0.008135276846587658, 0.050813522189855576, 0.0332038477063179, 0.028379127383232117, -0.02825287915766239, -0.027976002544164658, -0.0024597556330263615, 0.01861845701932907, 0.007798983249813318, 0.026587652042508125, -0.027153586968779564, 0.019506879150867462, -0.018886804580688477, 0.07735241204500198, 0.06106602028012276, 0.03413630649447441, -0.04626572132110596, 0.05638580769300461, -0.05167900398373604, -0.010699953883886337, 0.022944433614611626, 0.017558733001351357, 0.002917812904343009, 0.01723991334438324, -0.038215361535549164, 0.008855585008859634, -0.017123160883784294, 0.023920342326164246, -0.1768897920846939, 0.012897757813334465, -0.02290448732674122, 0.022361690178513527, 0.025526782497763634, 0.05483117699623108, -0.007347102742642164, 0.018626254051923752, 0.04697246477007866, -0.0022580584045499563, -0.03424210473895073, 0.0015998140443116426, -0.02994903363287449, -0.016566602513194084, -0.030618149787187576, -0.014198536053299904, 0.13542228937149048, 0.022193582728505135, -0.007133944425731897, -0.016291320323944092, 0.01376620028167963, 0.047911468893289566, -0.03569488599896431, 0.06584001332521439, -0.026415016502141953, -0.0436454713344574, -0.030662361532449722, -0.057793136686086655, -0.022713351994752884, -0.03300357609987259, 0.02189447358250618, -0.08637624979019165, 0.010943125002086163, -0.011428690515458584, -0.0033522131852805614, -0.005499641411006451, -0.04483722522854805, 0.011856090277433395, 0.045500196516513824, -0.002429770538583398, -0.06508465856313705, -0.02927648089826107, 0.045851483941078186, -0.013982020318508148, -0.05431757867336273, -0.024143477901816368, -0.015525134280323982, -0.01682557538151741, -0.03625226020812988, 0.05935657024383545, -0.006391093134880066, -0.03411351516842842, 0.027974287047982216, -0.03783612698316574, -0.04045071452856064, 0.0014882513787597418, -0.041596513241529465, 0.005057884380221367, -0.03765689954161644, -0.012271895073354244, -0.05674581602215767, -0.026421714574098587, 0.04146679490804672, 0.004148558713495731, 0.009948278777301311, 0.045976195484399796, -0.052330419421195984, 0.060729511082172394, 0.017138468101620674, -0.023338403552770615, -0.042461130768060684, -0.016805993393063545, 0.06164729967713356, -0.01832202449440956, 0.02020292729139328, -0.025218959897756577, 0.04670221731066704, -0.03437430039048195, -0.00744884368032217, -0.0016757992561906576, -0.05243944749236107, -0.026972612366080284, -0.2816074788570404, -0.033975813537836075, -0.0023094548378139734, -0.04852132871747017, 0.08205096423625946, -0.03557490184903145, -0.028472907841205597, -0.026355227455496788, 0.057964857667684555, -0.03861982375383377, -0.001081143505871296, -0.08092787861824036, 0.05770381540060043, 0.018363934010267258, 0.03353119641542435, 0.06259624660015106, -0.059408944100141525, 0.029342275112867355, 0.08133463561534882, 0.062215499579906464, -0.015199055895209312, -0.008892932906746864, -0.000620887556578964, -0.053685422986745834, -0.028108512982726097, 0.002735272515565157, 0.14402808248996735, 0.09277060627937317, 0.05011365935206413, 0.0016665089642629027, -0.023961395025253296, 0.03360477089881897, -0.038141194730997086, -0.009222554042935371, 0.010265454649925232, 0.055553119629621506, 0.05944425240159035, -0.050543468445539474, 0.034566670656204224, -0.08686646819114685, -0.07999303191900253, 0.04867961257696152, -0.006108356174081564, -0.03913749381899834, -0.028756938874721527, -0.004011110402643681, -0.04157332703471184, 0.000756279390770942, 0.023551901802420616, 0.029179690405726433, 0.008111389353871346, 0.10836943238973618, -0.023929530754685402, -0.025120392441749573, -0.01535121165215969, -0.0066008660942316055, -0.0464230440557003, -0.03369602560997009, -0.03474774956703186, 0.041702382266521454, -0.0073249670676887035, 0.026095012202858925, 0.03020549565553665, -0.041397858411073685, -0.009380358271300793, 0.0017089474713429809, -0.009209510870277882, -0.04133068025112152, 0.044213492423295975, 0.008685065433382988, -0.018494389951229095, 0.03616466000676155, 0.036476731300354004, -0.03428414836525917, -0.012054185383021832, 0.0030532856471836567, -0.020063303411006927, -0.015966227278113365, -0.008123639039695263, 0.004792848601937294, 0.0318407267332077, -0.02743171527981758, -0.014899215660989285, -0.001799446064978838, -0.07033955305814743, -0.03477596119046211, -0.01000021118670702, -0.01687343791127205, 0.10489794611930847, -0.05937720090150833, -0.015153815969824791, 0.06045043468475342, -0.014333168976008892, 0.026550844311714172, 0.011537549085915089, 0.034049779176712036, -0.2823655605316162, 0.040603864938020706, 0.06344189494848251, 0.05466499179601669, -0.007960704155266285, 0.04873451963067055, -0.0031510908156633377, -0.0302575696259737, -0.02639228105545044, 0.028584983199834824, 0.0333687886595726, 0.0012649607378989458, 0.0032969193998724222, 0.026799742132425308, -0.050446704030036926, 0.031378474086523056, 0.047690317034721375, 0.01408455427736044, -0.03434397652745247, -0.032125845551490784, 0.006734934169799089, 0.024778012186288834, 0.14815756678581238, 0.05667734146118164, -0.02470637857913971, -0.02914563938975334, 0.015416085720062256, 0.058653783053159714, 0.023861609399318695, 0.019108884036540985, -0.016409659758210182, 0.031965531408786774, -0.06384648382663727, -0.04568154364824295, -0.019408201798796654, -0.0028154649771749973, -0.005207066889852285, 0.012185255065560341, 0.04265094920992851, -0.03551897034049034, -0.047145966440439224, 0.030837684869766235, 0.030891841277480125, 0.01025761291384697, 0.0651482343673706, 0.04679722338914871, 0.02715418115258217, -0.05996664986014366, -0.06408266723155975, 0.08493737131357193, -0.06855957955121994, -0.03486233577132225, 0.024397918954491615, -0.04881097376346588, 0.01817309483885765, 0.01781465671956539, -0.0030877983663231134, -0.010812976397573948, -0.019605793058872223, -0.035748615860939026, -0.011355748400092125, -0.07174597680568695, 0.09869816899299622, 0.02450733445584774, 0.020300500094890594], "49f10e08-48b5-4add-8b05-0ce338db73f6": [-0.06077330932021141, -0.045887794345617294, 0.04257538169622421, 0.01188872754573822, 0.009985010139644146, 0.01802149787545204, 0.027896692976355553, -0.05748581141233444, -0.016895143315196037, -0.03998488560318947, 0.05487813800573349, -0.03228307142853737, 0.007411269936710596, -0.03350861370563507, -0.056753359735012054, -0.0068883467465639114, -0.027488233521580696, -0.003473279532045126, -0.11887703835964203, 0.030472656711935997, 0.011295701377093792, 0.018614644184708595, 0.025571539998054504, 0.0032072383910417557, -0.04648696258664131, 0.04895160347223282, 0.03713284805417061, -0.02529367245733738, 0.0037452455144375563, -0.10010956227779388, -0.01520507037639618, -0.03636370971798897, -0.07266280055046082, -0.0010364199988543987, 0.017667695879936218, 0.05733020603656769, 0.0725560337305069, -0.04845985397696495, 0.002521533751860261, 0.10731270164251328, -0.04554808512330055, -0.01728404127061367, 0.0045348890125751495, 0.005507516209036112, 0.05296528339385986, -0.03433523327112198, -0.02917262353003025, -0.008806758560240269, -0.01865248568356037, -0.01943683624267578, -0.04463791474699974, -0.09979677945375443, -0.02196512371301651, 0.02765308879315853, -0.001456709811463952, 0.11798375099897385, 0.026099372655153275, 0.014189205132424831, 0.025295598432421684, -0.0016011808766052127, 0.0701671913266182, 0.029827432706952095, -0.06800486892461777, 0.04717542231082916, 0.014954794198274612, 0.010527552105486393, -0.0667448490858078, -0.00204578903503716, -0.013376994989812374, 0.03477964177727699, -0.02430674061179161, -0.014347261749207973, 0.054260291159152985, 0.06301046162843704, 0.027325717732310295, 0.040527619421482086, 0.028403911739587784, 0.012767152860760689, -0.0194806270301342, 0.0024566426873207092, -0.034834571182727814, 0.003564584068953991, -0.05860628932714462, -0.013150458224117756, -0.0008238168084062636, -0.08209239691495895, 0.023463761433959007, -0.0039330353029072285, -0.056587520986795425, -0.01226918026804924, 0.007911646738648415, -0.06504534184932709, -0.027010098099708557, -0.04015108197927475, -0.016630081459879875, -0.020439809188246727, -0.006819501519203186, 0.007898455485701561, 0.020382972434163094, 0.396415114402771, 0.01753975637257099, 0.01992550864815712, 0.03324345871806145, 0.05029476061463356, -0.004768749698996544, 0.011510719545185566, -0.016210222616791725, -0.04812595993280411, 0.07541752606630325, 0.041129834949970245, 0.014949141070246696, -0.03904617205262184, 0.03132474049925804, -0.0250043123960495, 0.027745556086301804, 0.01438905205577612, 0.06631286442279816, -0.0352851040661335, -0.024381931871175766, 0.011222487315535545, -0.004692921880632639, 0.01738661713898182, 0.029098132625222206, -0.006127062253654003, -0.019748881459236145, -0.01222350262105465, 0.06701865792274475, 0.06859436631202698, 0.0402415506541729, -0.048410043120384216, 0.03110780008137226, -0.07820555567741394, 0.0049842894077301025, 0.019173894077539444, -0.007569336798042059, 0.00044662615982815623, 0.0124038802459836, -0.045552317053079605, 0.05162030830979347, -0.04808666929602623, 0.04298463836312294, -0.17548459768295288, 0.01017057616263628, -0.00891248881816864, 0.0021455781534314156, 0.019821101799607277, 0.02657485008239746, -0.009927676059305668, -0.008696787059307098, 0.06572553515434265, -0.04551038518548012, -0.03559485822916031, -0.017613323405385017, -0.02744406647980213, 0.006035818252712488, -0.002523157512769103, -0.022767700254917145, 0.13127653300762177, -0.0052955616265535355, 0.0007283618906512856, 0.032196953892707825, -0.004742711782455444, 0.050273679196834564, -0.02377127669751644, 0.03710510954260826, -0.009637401439249516, -0.026009850203990936, -0.026176301762461662, -0.01998015306890011, -0.021932732313871384, 0.005593631416559219, -0.020233217626810074, -0.09148676693439484, 0.059481751173734665, 0.020707061514258385, -0.007875395007431507, -0.0195478405803442, -0.020465979352593422, -0.005830455105751753, 0.048488374799489975, -0.049877043813467026, -0.014956964179873466, 0.005307307932525873, 0.04569711163640022, -0.021183449774980545, -0.037512220442295074, -0.007590846158564091, -0.04918790981173515, 0.005804340820759535, -0.04440641030669212, 0.07558447122573853, -0.013218856416642666, -0.06101512908935547, 0.031643096357584, -0.056776776909828186, -0.022996757179498672, -0.007746004965156317, 0.00227606063708663, -0.02700631506741047, -0.05363985523581505, -0.0335160456597805, -0.00031894067069515586, -0.05860443040728569, 0.03436931222677231, 0.004342217463999987, 0.01678731106221676, 0.08986639231443405, -0.04978061094880104, 0.07322429865598679, 0.013644218444824219, -0.0371909961104393, -0.050034042447805405, 0.0009161524358205497, 0.04982937127351761, 0.011082981713116169, 0.021615419536828995, -0.017443781718611717, 0.04208049550652504, -0.025021331384778023, -0.0012588539393618703, -0.040893349796533585, -0.03560652211308479, -0.03975605592131615, -0.30781757831573486, 0.016316689550876617, -0.011974611319601536, -0.009953327476978302, 0.05771986395120621, -0.04398506507277489, -0.0283549465239048, -0.03743107616901398, 0.06607560068368912, 0.013880678452551365, 0.0192043948918581, -0.06385558098554611, 0.037534307688474655, -0.002678666962310672, 0.01568007841706276, 0.07512375712394714, -0.05890968441963196, 0.06555895507335663, 0.0786210373044014, 0.030426403507590294, -0.03850753232836723, 0.0021969741210341454, -0.007208036724478006, -0.03594258055090904, -0.04501224309206009, -0.0030437116511166096, 0.1530066281557083, 0.0945269763469696, 0.013759109191596508, 0.0022208222653716803, 0.0018369245808571577, 0.06413789093494415, -0.051053486764431, -0.02834482677280903, -0.005404389929026365, 0.05489596351981163, 0.036177489906549454, -0.061696283519268036, 0.040497470647096634, -0.07915087044239044, -0.08000796288251877, 0.03737521916627884, -0.038305964320898056, -0.018715141341090202, -0.04788511246442795, -0.011278484016656876, -0.0281982384622097, 0.017190096899867058, 0.013925477862358093, 0.033577293157577515, 0.028049424290657043, 0.0837753415107727, -0.02178541012108326, -0.007264130748808384, 0.007960810326039791, 0.012100335210561752, -0.0282836202532053, -0.05125660076737404, -0.01018000952899456, 0.05441376194357872, 0.0075279725715518, 0.01810501515865326, 0.036131639033555984, -0.04741942510008812, -0.05208023637533188, 0.018598617985844612, -0.003367052646353841, -0.037040889263153076, 0.06711729615926743, 0.032708168029785156, -0.011317066848278046, 0.0565246045589447, 0.033070359379053116, -0.036926236003637314, 0.013921977952122688, 0.007466986775398254, -0.014709820970892906, 0.024720720946788788, -0.002555061597377062, 0.006434070877730846, 0.04709853604435921, -0.0582144595682621, -0.002448359038680792, 0.0002115095849148929, -0.06674216687679291, -0.018370701000094414, -0.023953434079885483, -0.02769806981086731, 0.09328151494264603, -0.013992116786539555, -0.021647879853844643, 0.04569415748119354, -0.021391795948147774, 0.017703277990221977, 0.011787460185587406, 0.06273314356803894, -0.28434184193611145, 0.02893945761024952, 0.07728764414787292, 0.057929158210754395, 0.019349288195371628, 0.07170946151018143, 0.04603538289666176, -0.017820535227656364, -0.038465678691864014, 0.01515115238726139, 0.058888353407382965, -0.029546542093157768, -0.013601685874164104, -0.008214544504880905, -0.05595798045396805, 0.0006709827575832605, 0.09424548596143723, 0.039271146059036255, -0.03760886192321777, -0.016192449256777763, -0.0015055902767926455, 0.017230167984962463, 0.12775930762290955, 0.0564565509557724, -0.02255137450993061, -0.04569767415523529, 0.004897237289696932, 0.020405782386660576, 0.011964534409344196, 0.011329693719744682, -0.03943069279193878, 0.024021808058023453, -0.03719319775700569, -0.04413681477308273, -0.0002081837592413649, -0.007758007384836674, 0.005083487369120121, 0.00841889251023531, 0.0671682208776474, -0.025212567299604416, -0.040209557861089706, 0.04625730961561203, 0.03166233375668526, 0.0003675917978398502, 0.07726439833641052, 0.045151520520448685, -0.001957488711923361, -0.0015941089950501919, -0.027788883075118065, 0.04739852622151375, -0.04790930822491646, -0.03859518840909004, 0.0002754458982963115, -0.00947569590061903, 0.010368652641773224, 0.004198482725769281, -0.01597011275589466, -0.01277927402406931, -0.02106350287795067, -0.012331961654126644, 0.014456935226917267, -0.05173797532916069, 0.10187162458896637, -0.008642601780593395, 0.003154000034555793], "06b01d70-77ec-4d19-bf36-9e0831baccb4": [-0.04935147240757942, 0.006149389781057835, 0.04474170506000519, 0.009748159907758236, -0.014403335750102997, -0.0021267153788357973, 0.007563828956335783, -0.0007099177455529571, -0.012614280916750431, -0.012599268928170204, 0.04708186909556389, -0.048546772450208664, 0.017474297434091568, -0.02978450618684292, -0.025424597784876823, 0.007429483346641064, -0.03336126729846001, -0.01842762716114521, -0.10841716825962067, 0.03349749371409416, 0.03118293359875679, -0.03601031005382538, 0.03638065978884697, 0.008224467746913433, -0.03497284650802612, 0.05024999380111694, -0.015010214410722256, -0.0009720886591821909, 0.04826128110289574, -0.13367179036140442, 0.005710589233785868, -0.02467302605509758, -0.0325823575258255, -0.01968766190111637, 0.03471146523952484, 0.08816065639257431, 0.04560006782412529, -0.0752732902765274, -0.007824582047760487, 0.07450073957443237, 0.007412309758365154, -0.0240783728659153, -0.02078329212963581, 0.02250540629029274, 0.06967442482709885, -0.00204867054708302, -0.03172909468412399, -0.04630257561802864, -0.0007990102167241275, -0.01619185321033001, -0.03640458360314369, -0.03747662901878357, -0.000994288013316691, 0.011518572457134724, -0.014976175501942635, 0.05054834857583046, 0.06915402412414551, 0.05018671229481697, 0.014587292447686195, 0.0021052167285233736, 0.06900826841592789, 0.05047924816608429, -0.055981673300266266, 0.08467921614646912, 0.05942400544881821, 0.035497475415468216, -0.08214587718248367, 0.011729296296834946, -0.04340164363384247, 0.01975989155471325, -0.01812518574297428, -0.021571340039372444, 0.056169282644987106, 0.04388217255473137, -0.0001287082559429109, 0.049837540835142136, 0.0359676368534565, 0.005520277190953493, 0.018055543303489685, 0.01419841405004263, -0.04460858926177025, 0.00025026765069924295, -0.01876545138657093, 0.027077820152044296, -0.006922456901520491, -0.07923828810453415, 0.023741628974676132, -0.04849882796406746, 0.0006226787809282541, 0.009052016772329807, 0.018109053373336792, -0.04321196675300598, -0.007107294164597988, -0.026839729398489, -0.018240738660097122, 0.006960208527743816, -0.02036905847489834, -0.027422010898590088, 0.02089856192469597, 0.42381736636161804, 0.025967374444007874, -0.014449597336351871, 0.06146704778075218, 0.014306324534118176, 0.015717245638370514, 0.011515079997479916, 0.0036878460086882114, -0.07575269788503647, 0.028520366176962852, 0.05750762298703194, 0.039234235882759094, -0.007288072723895311, 0.04274430871009827, 0.011232754215598106, 0.036178842186927795, -0.00756967393681407, 0.007940969429910183, -0.020592421293258667, -0.03278821334242821, 0.004748146515339613, -0.011140129528939724, -0.006977093406021595, 0.016614528372883797, -0.025150489062070847, 0.012805324979126453, -0.020431285724043846, 0.04184463620185852, 0.03734370321035385, 0.06413786113262177, -0.039607446640729904, 0.02251341938972473, -0.08922756463289261, 0.026610204949975014, 0.021707486361265182, 0.03365235775709152, -0.02305791899561882, 0.032196830958127975, -0.016364311799407005, 0.03349413350224495, -0.031888559460639954, -0.005698390770703554, -0.1891046017408371, -0.026539362967014313, -0.012127484194934368, 0.025536946952342987, 0.04963631182909012, 0.03782433643937111, -0.011652438901364803, 0.013122967444360256, 0.05965763330459595, -0.004313764628022909, -0.007903382182121277, 0.015682335942983627, -0.014365908689796925, 0.012360924854874611, -0.016233963891863823, -0.026059918105602264, 0.13200759887695312, 0.034589216113090515, 0.002971139270812273, 0.037712208926677704, 0.007229108829051256, 0.03659796342253685, -0.04791141301393509, 0.061797548085451126, -0.009833265095949173, -0.027963409200310707, -0.005797219462692738, -0.04585931450128555, -0.009400326758623123, -0.012410985305905342, 0.03712380304932594, -0.08347519487142563, 0.033950358629226685, -0.051669228821992874, -0.014072157442569733, -0.04831737279891968, -0.043029334396123886, -0.003775031538680196, 0.032485995441675186, -0.02331126481294632, -0.03011738508939743, -0.03863690793514252, 0.0517691969871521, -0.037798453122377396, -0.07363387197256088, -0.04826528578996658, -0.01442697923630476, -0.014179198071360588, 0.006544460542500019, 0.07273945957422256, -0.0352901890873909, -0.03525448590517044, -0.014978396706283092, -0.03285934776067734, -0.029829923063516617, 0.018513426184654236, 0.004782575182616711, -0.023207906633615494, -0.025213228538632393, -0.019604261964559555, -0.05762209743261337, -0.020070750266313553, 0.024280505254864693, -0.00045636508730240166, 0.031315237283706665, 0.0427345409989357, -0.0633556991815567, 0.06001555547118187, 0.006627766415476799, -0.009911688975989819, -0.030242636799812317, -0.05042196810245514, 0.04810689762234688, -0.011717477813363075, 0.020160062238574028, -0.004608424846082926, 0.018218249082565308, -0.013747124001383781, -0.0067358119413256645, -0.008426357991993427, -0.1124989315867424, -0.03605072572827339, -0.30300864577293396, -0.04824983701109886, -0.018651187419891357, -0.06837575137615204, 0.0873521938920021, -0.05770065262913704, 0.0035808885004371405, -0.029513096436858177, 0.04530749097466469, -0.06507882475852966, -0.017997749149799347, -0.05928203463554382, 0.05171288549900055, -0.0026404347736388445, 0.012810940854251385, 0.07248576730489731, -0.01741120032966137, 0.03090544417500496, 0.0484994612634182, 0.04309692978858948, -0.02389451302587986, 0.014808129519224167, -0.007411659229546785, -0.0430864654481411, -0.03544631972908974, -0.03537657484412193, 0.16190360486507416, 0.10386766493320465, 0.011387297883629799, 0.0042089177295565605, -0.005500184837728739, 0.025378968566656113, -0.06011510640382767, -0.06003912165760994, 0.026961680501699448, 0.03568818047642708, -0.00028096287860535085, -0.04094214737415314, 0.03619959205389023, -0.07043065130710602, -0.06630924344062805, 0.06284559518098831, -0.009788400493562222, -0.010101646184921265, -0.03143129497766495, 0.0046309372410178185, -0.04651021212339401, 0.011339549906551838, 0.03073757514357567, 0.042191457003355026, 0.02399870939552784, 0.13009676337242126, 0.0013679180992767215, 0.011798339895904064, -0.03885311633348465, -0.001388466451317072, -0.03546261042356491, -0.04170302674174309, -0.02757255546748638, 0.029491804540157318, -0.004851968958973885, 0.004192302003502846, 0.0655939057469368, -0.06359967589378357, -0.031085528433322906, -0.025569483637809753, -0.01999817229807377, -0.04182571545243263, 0.03953730687499046, 0.034650057554244995, -0.04756750911474228, 0.06647313386201859, 0.03451264649629593, -0.023388803005218506, 0.002049384405836463, 0.025091856718063354, 0.00039613471017219126, -0.020460713654756546, 0.01061022374778986, -0.019974634051322937, 0.06218534708023071, -0.03618086501955986, 0.009114994667470455, 0.004964887630194426, -0.0374569334089756, -0.016616998240351677, 0.01230473443865776, -0.052283383905887604, 0.09502479434013367, -0.01842678152024746, -0.013430828228592873, 0.03039749525487423, -0.015510073862969875, -0.010555802844464779, 0.00023814574524294585, 0.05229419469833374, -0.2738538384437561, 0.029470961540937424, 0.0498562715947628, 0.06508151441812515, 0.009543951600790024, 0.04073420539498329, 0.005144928116351366, -0.012261026538908482, 0.021931281313300133, 0.032025452703237534, 0.023408962413668633, 0.0018602990312501788, -0.020581835880875587, -0.004233608487993479, -0.04890855401754379, 0.03153171017765999, 0.07775616645812988, -0.005005780607461929, -0.019953612238168716, 0.016174430027604103, -0.0053961388766765594, -0.011229107156395912, 0.13861124217510223, 0.07741750776767731, -0.01248262170702219, -0.028263956308364868, 0.013028999790549278, 0.03367537260055542, 0.018213095143437386, 0.026993561536073685, -0.010781758464872837, 0.012822051532566547, -0.026669343933463097, -0.01244546752423048, -0.022351747378706932, -0.02864733524620533, -0.034949108958244324, 0.024164199829101562, 0.08871273696422577, -0.033282794058322906, -0.02436044067144394, 0.04005962610244751, 0.017368009313941002, 0.009899407625198364, 0.05329366400837898, 0.0024309540167450905, 0.01675340160727501, -0.02836705558001995, -0.028146622702479362, 0.046246740967035294, -0.031058406457304955, -0.030408766120672226, 0.016440799459815025, -0.07691461592912674, -0.0032534641213715076, -0.005136357620358467, -0.01643608883023262, -0.01648475043475628, -0.00029862040537409484, -0.04225407913327217, -0.016952229663729668, -0.08911892026662827, 0.06677711009979248, 0.0266354251652956, 0.03409833833575249], "7c38af20-205c-4a4d-b88f-11df9d5b11fd": [-0.03575902804732323, 0.01375851035118103, 0.05888252705335617, 0.04160451143980026, -0.04386989399790764, -0.01640387438237667, 0.07345263659954071, 0.016087912023067474, -0.018694495782256126, -0.007481323555111885, 0.009384369477629662, -0.023945219814777374, -0.014574209228157997, -0.03507420793175697, -0.003112256992608309, 0.027581335976719856, 0.0031869737431406975, -0.04801737517118454, -0.10743285715579987, 0.013281268067657948, 0.06032333895564079, -0.03879854455590248, 0.05805899202823639, 0.005240484140813351, 0.0032939868979156017, 0.044995639473199844, -0.039251066744327545, -0.008513388223946095, 0.031367186456918716, -0.13490897417068481, 0.02285042405128479, -0.018176261335611343, -0.02531653270125389, -0.03077779710292816, 0.010833993554115295, 0.11041411012411118, 0.036534667015075684, -0.06657649576663971, -0.024714795872569084, 0.05909840017557144, -0.04020427539944649, -0.01886514574289322, -0.005444360896945, 0.0008985901367850602, 0.03214240446686745, -0.04118064418435097, -0.024412713944911957, -0.022454911842942238, -0.008276627399027348, -0.036059726029634476, -0.024581771343946457, -0.059979379177093506, -0.02103513851761818, -0.02311362698674202, -0.04227784648537636, 0.060294605791568756, 0.05914042517542839, 0.030387893319129944, 0.025917833670973778, 0.01648792065680027, 0.047237835824489594, 0.030537353828549385, -0.07004369795322418, 0.09965843707323074, 0.025690482929348946, 0.04911625757813454, -0.08416632562875748, 0.002087671309709549, 0.017881233245134354, 0.019858509302139282, -0.000530322315171361, -0.003974858671426773, 0.03594568371772766, 0.029858216643333435, 0.005874023772776127, 0.057459451258182526, 0.016047442331910133, 0.028613107278943062, 0.042413800954818726, 0.01991112157702446, -0.05067168176174164, 0.00487171858549118, -0.015373563393950462, -0.001480233739130199, 0.007875661365687847, -0.06718167662620544, 0.054006997495889664, -0.003673120401799679, -0.02008243277668953, 0.007372276857495308, 0.03801277279853821, -0.0479288212954998, -0.016254344955086708, -0.03978607431054115, -0.0019423438934609294, -0.009631750173866749, -0.022484183311462402, -0.04637854918837547, 0.017522307112812996, 0.40935996174812317, 0.04239073395729065, 0.0172821506857872, -0.001103903166949749, 0.04957377538084984, -0.008724885061383247, -0.014060212299227715, -0.006437825039029121, -0.06821577996015549, 0.0236138254404068, 0.08102443814277649, 0.03601204231381416, -0.02965991199016571, 0.012454096227884293, -0.012686711736023426, 0.02951745130121708, 0.0438421294093132, 0.02321840636432171, -0.032324936240911484, -0.007976211607456207, -0.00031435288838110864, 0.02253965102136135, -0.017047345638275146, -0.002641176339238882, -0.06015899404883385, 0.04259827733039856, -0.017870856449007988, 0.11150859296321869, 0.07327970117330551, 0.018487362191081047, -0.05274510756134987, 0.03898605704307556, -0.04624504968523979, 0.018174592405557632, 0.05588236451148987, 0.032880671322345734, -0.0036120591685175896, 0.01012778002768755, -0.024180449545383453, 0.04489428922533989, 0.01013512909412384, 0.030216168612241745, -0.150611013174057, -0.06545184552669525, 0.0018476515542715788, -0.0003081990871578455, 0.030855290591716766, 0.03428732603788376, 0.006487361621111631, 0.011026840656995773, 0.07969377934932709, 0.004333514720201492, -0.009634004905819893, 0.01649804227054119, -0.050289977341890335, 0.011045973747968674, -0.016881827265024185, -0.029189148917794228, 0.12251291424036026, 0.025196125730872154, 0.01220600213855505, 0.016407597810029984, -0.006365384440869093, 0.03809366375207901, -0.01766258478164673, 0.04692671075463295, 0.008741296827793121, -0.04237406328320503, -0.06837215274572372, -0.025657212361693382, -0.027448026463389397, -0.0010344382608309388, 0.043590933084487915, -0.07103738188743591, 0.013642063364386559, -0.03414863720536232, -0.02132517658174038, -0.04598893225193024, -0.002967954147607088, -0.0035233853850513697, 0.02406732738018036, -0.009984426200389862, -0.049006231129169464, -0.007274004630744457, 0.04102841392159462, -0.030248722061514854, -0.05429551750421524, -0.031049495562911034, -0.005814634263515472, 0.0057619172148406506, -0.014268094673752785, 0.05093926191329956, 0.008882024325430393, 0.01727188378572464, 0.02750433422625065, -0.07129506021738052, -0.05962890759110451, 0.03092849999666214, -0.0005059379618614912, -0.017328616231679916, -0.031278643757104874, -0.053414154797792435, -0.05973876640200615, 0.0019068956607952714, 0.0427626371383667, -0.03448880836367607, 0.03625341132283211, 0.05182815343141556, -0.05904727801680565, 0.10663929581642151, 0.0023874531034380198, -0.04071016609668732, -0.04896467924118042, -0.0384252667427063, 0.048943933099508286, -0.027112634852528572, -0.014398165047168732, -0.027190567925572395, 0.010264194570481777, -0.016095854341983795, 0.0037274763453751802, -0.06012117862701416, -0.06281466782093048, -0.048680804669857025, -0.31127074360847473, -0.03332345187664032, -0.02328464202582836, -0.018276158720254898, 0.053348101675510406, -0.05350437015295029, -0.006822220981121063, -0.023261846974492073, 0.05568908527493477, -0.025663036853075027, -0.04454119876027107, -0.053557224571704865, 0.042378105223178864, 0.010145739652216434, 0.025396402925252914, 0.07368593662977219, -0.04140858352184296, 0.01863097958266735, 0.07044178247451782, 0.030209079384803772, -0.016399383544921875, 0.018723832443356514, 0.028780732303857803, -0.062243781983852386, -0.02064771205186844, 0.03954485431313515, 0.15188632905483246, 0.11245104670524597, 0.004449219908565283, 0.02240128442645073, -0.017023909837007523, -0.013661637902259827, -0.02776685170829296, -0.05676385387778282, 0.01887020841240883, 0.025155261158943176, -0.006504566874355078, -0.01514116209000349, 0.037127576768398285, -0.07138292491436005, -0.03998684510588646, 0.08313053846359253, -0.0013355925912037492, -0.02442854642868042, -0.06075506657361984, 0.025619860738515854, -0.06188753992319107, 0.02286834642291069, 0.012474946677684784, 0.035645607858896255, 0.02013331465423107, 0.07695046812295914, -0.03775251284241676, -0.0019401449244469404, -0.01702084019780159, -0.0034608221612870693, -0.0847567692399025, -0.035094164311885834, -0.027584722265601158, 0.032782137393951416, -0.02856297232210636, 0.011822176165878773, 0.03560353443026543, -0.05573049187660217, -0.06299816817045212, 0.004573538433760405, 0.0017330828122794628, -0.06228199228644371, 0.03372597321867943, 0.03019043430685997, -0.02954164706170559, 0.06936990469694138, 0.0026784311048686504, -0.011268667876720428, -0.009964198805391788, 0.027141712605953217, 0.008192203938961029, -0.030846234411001205, 5.7786735851550475e-05, -0.007474945858120918, 0.050686661154031754, -0.020510097965598106, 0.0023644298780709505, -0.01908610202372074, -0.0554804727435112, -0.0213836207985878, 0.005450624041259289, -0.04414184018969536, 0.09153422713279724, -0.014891218394041061, -0.03326417878270149, 0.03470349311828613, -0.003509822767227888, -0.015279841609299183, 0.03586973249912262, 0.0038977409712970257, -0.2685662508010864, 0.02990635670721531, 0.039112161844968796, 0.04768463224172592, 0.0025863784831017256, 0.07366770505905151, -0.008997483178973198, -0.03275767341256142, -0.034143559634685516, -0.0028526110108941793, 0.0381581075489521, -0.002750115003436804, 0.015014734119176865, 0.034653954207897186, -0.03307122364640236, 0.06485909223556519, 0.07771121710538864, 0.04746989160776138, -0.059610091149806976, 0.034309033304452896, 0.025098053738474846, 0.018318448215723038, 0.15233203768730164, 0.05096226558089256, -0.028030086308717728, -0.043860986828804016, 0.006742808967828751, 0.038889843970537186, 0.02947361208498478, 0.03368207439780235, -0.008633549325168133, -0.002512929728254676, -0.006881610956043005, -0.03844909369945526, -0.0038453596644103527, -0.046380408108234406, -0.02627865970134735, 0.011286824010312557, 0.04936588928103447, -0.021903149783611298, -0.057360537350177765, 0.012268899008631706, 0.012743435800075531, 0.005442981142550707, 0.06316887587308884, 0.03610922768712044, 0.009742067195475101, -0.04063255712389946, -0.06734437495470047, 0.04759478569030762, -0.045717403292655945, -0.020854320377111435, 0.001336037996225059, -0.049875978380441666, 0.023252947255969048, 0.0034899862948805094, 0.005279299803078175, 0.00609637051820755, 0.004668436944484711, -0.024321207776665688, -0.016636913642287254, -0.049298156052827835, 0.0970776230096817, -0.01909618265926838, 0.003173141973093152], "d14945b7-af8e-43d1-814e-34f5e2bb6a63": [-0.03881162777543068, -0.040907636284828186, 0.053229451179504395, 0.009048379957675934, -0.0062428731471300125, 0.017792778089642525, -0.0032041152007877827, -0.01450849138200283, -0.04102574661374092, -0.06165003776550293, -0.027862636372447014, -0.029486609622836113, 0.008351227268576622, -0.015399613417685032, -0.0339420847594738, 0.05854592099785805, 0.0655209943652153, 0.027740351855754852, -0.11141960322856903, 0.020391585305333138, 0.07217623293399811, 0.022857481613755226, 0.02660374529659748, 0.019196225330233574, -0.02526143565773964, -0.0430888757109642, 0.03518536686897278, -0.025655999779701233, 0.028457345440983772, -0.1391434669494629, 0.01133235264569521, 0.011702227406203747, 0.001335020991973579, -0.06093181297183037, -0.03903773054480553, 0.03441520035266876, 0.04762663319706917, -0.04412469267845154, 0.005076549481600523, 0.06441262364387512, -0.013400227762758732, -0.02773442305624485, -0.02790716663002968, -0.02361476793885231, 0.016812752932310104, 0.0020874023903161287, -0.04280930012464523, -0.043007660657167435, -0.012161706574261189, 0.004130999092012644, -0.01563107781112194, -0.03854215517640114, 0.006299302447587252, 0.014749978668987751, -0.030363602563738823, 0.02274613082408905, 0.05536755174398422, 0.06214011833071709, 0.04558524861931801, -0.047075413167476654, -0.004929594229906797, 0.038380853831768036, -0.09443599730730057, 0.11759674549102783, 0.0320097915828228, 0.01907677762210369, -0.08557209372520447, -0.0625041127204895, 0.01161901094019413, -0.0019830670207738876, 0.0009798508835956454, -0.002821508329361677, 0.01636638678610325, 0.03262786194682121, 0.013810474425554276, 0.03440298140048981, 0.048033345490694046, 0.0007573222974315286, -0.0009465361945331097, 0.047703973948955536, -0.013886749744415283, -0.00204153242520988, -0.033351149410009384, 0.008198611438274384, -0.013853585347533226, -0.07959889620542526, 0.06930911540985107, 0.010041826404631138, 0.002738253679126501, 0.014020134694874287, -0.011012675240635872, -0.05927326902747154, 0.017582718282938004, 0.005784681532531977, 0.04056449607014656, 0.0077148182317614555, -0.011771075427532196, 0.04756450653076172, 0.028263414278626442, 0.4033714830875397, 0.04562533646821976, -0.04199020192027092, 0.03349990397691727, -0.01084345206618309, -0.009536570869386196, 0.009758513420820236, 0.004346601199358702, -0.067336305975914, -0.0007508873241022229, 0.06467768549919128, 0.012279778718948364, -0.044603317975997925, 0.014429209753870964, 0.014790862798690796, 0.012510444968938828, 0.02054898999631405, 0.04300593212246895, -0.03778226673603058, -0.05770989507436752, -0.0407763347029686, 0.028309309855103493, 0.03599417582154274, -0.03557388111948967, 0.0028407524805516005, 0.03594047576189041, -0.011923663318157196, 0.06336461752653122, 0.0635153278708458, 0.00980894360691309, -0.015869587659835815, 0.041436538100242615, -0.0477309450507164, 0.019992629066109657, 0.02207859233021736, -0.008216147311031818, 0.015298455953598022, 0.04093815013766289, 0.002233111532405019, 0.026138339191675186, 0.009189398027956486, -0.045360222458839417, -0.11528162658214569, -0.07466787099838257, 0.050874508917331696, 0.04561394080519676, 0.02812231332063675, 0.01604575477540493, 0.032016266137361526, 0.008225466124713421, 0.07059633731842041, -0.03605227917432785, -0.015549497678875923, -0.0051395343616604805, -0.026304680854082108, 0.03652307391166687, -0.05072808265686035, 0.020680639892816544, 0.134543776512146, 0.030633943155407906, 0.0214067492634058, 0.035085923969745636, -0.021928628906607628, 0.03733157739043236, -0.05013627931475639, 0.06100805848836899, 0.016352105885744095, -0.04569302871823311, -0.012520619668066502, -0.027950938791036606, 0.006746177561581135, 0.005911625921726227, 0.01090275775641203, -0.08982473611831665, 0.018531862646341324, -0.04515300318598747, -0.02830379642546177, 0.021013978868722916, -0.022619416937232018, -0.002891101175919175, 0.025550778955221176, -0.01706487499177456, -0.053979869931936264, -0.021102871745824814, 0.007280576042830944, -0.03739364817738533, -0.043674319982528687, -0.007274027448147535, -0.04400026425719261, -0.06282467395067215, -0.04077955335378647, 0.031970638781785965, 0.04226599261164665, -0.05439024418592453, -0.0011508302995935082, -0.0030017441604286432, -0.03110753744840622, 0.042570579797029495, -0.03757444769144058, -0.012606709264218807, -0.026160569861531258, -0.06786036491394043, -0.07182551175355911, -0.013236274011433125, -0.007455669809132814, 0.009981182403862476, 0.02317042462527752, -0.008630633354187012, -0.014677142724394798, 0.06445681303739548, 0.020525960251688957, -0.050381600856781006, -0.020428525283932686, -0.008956428617238998, 0.07769708335399628, -0.05788028985261917, -0.030196014791727066, 0.013940518721938133, 0.03830898553133011, -0.020586179569363594, -0.04516337439417839, 0.01697399839758873, -0.07281889766454697, -0.08055799454450607, -0.2787574827671051, -0.0323275588452816, -0.00410057557746768, -0.061347637325525284, 0.08524823933839798, -0.04462986811995506, 0.022613834589719772, -0.02005748450756073, 0.07627461105585098, -0.033984068781137466, -0.04949241504073143, -0.012216978706419468, 0.04751783609390259, 0.03525473549962044, -0.026998810470104218, 0.06589332222938538, -0.015652472153306007, -0.01118151843547821, 0.09105566889047623, 0.0817168802022934, -0.049432870000600815, 0.003903100499883294, 0.0063475351780653, -0.08844876289367676, 0.002334055956453085, -0.0032107364386320114, 0.1493459790945053, 0.07505994290113449, 0.03673723712563515, 0.005122044589370489, -0.008241822011768818, 0.04221396893262863, 0.00037945175427012146, -0.03138219192624092, 0.03438299149274826, 0.04363327845931053, 0.06147570535540581, -0.018953606486320496, 0.010357442311942577, -0.06678590923547745, -0.08105333149433136, 0.034581463783979416, -0.036462992429733276, -0.0042303698137402534, -0.0619378425180912, -0.018765080720186234, -0.06548931449651718, -0.003111696569249034, -0.009303051047027111, 0.013198914006352425, 0.028095705434679985, 0.03651256486773491, -0.04851059243083, -0.0376526340842247, -0.038997847586870193, 0.008690400049090385, 0.009693778119981289, -0.05573578551411629, 0.00981841329485178, 0.00964946299791336, 0.05698604881763458, -0.03279640153050423, -0.01577494665980339, -0.029939159750938416, -0.013799097388982773, 0.01630888134241104, 0.009779932908713818, -0.030437476933002472, -0.0027584778144955635, 0.008276321925222874, 0.01460754033178091, 0.032330386340618134, 0.04461972787976265, -0.027952691540122032, -0.009463359601795673, -0.02779233269393444, 0.04719165340065956, -0.0072761778719723225, -0.06009456142783165, 0.0067743477411568165, 0.03605078160762787, -0.020437316969037056, 0.005725759547203779, -0.04571252688765526, -0.06804309040307999, -0.01736745610833168, -0.03878798335790634, -0.0012304234551265836, 0.11257357150316238, -0.043952275067567825, -0.0502832755446434, 0.08556527644395828, -0.0294426828622818, -0.023537643253803253, 0.013123803772032261, 0.021188978105783463, -0.2861819565296173, 0.022848082706332207, 0.03821811079978943, 0.12167352437973022, 0.0517047643661499, 0.07891538739204407, -0.033967725932598114, -0.017143255099654198, -0.008298136293888092, -0.0069200629368424416, 0.033768411725759506, 0.016466913744807243, 0.0002293593715876341, 0.00649788323789835, -0.015553291887044907, 0.05083926022052765, 0.08956330269575119, 0.012644358910620213, -0.04651810973882675, -0.020764844492077827, 0.02258632890880108, 0.03165600821375847, 0.14441052079200745, 0.05223536863923073, -0.08139919489622116, -0.033794376999139786, 0.008798007853329182, 0.0448010191321373, 0.016685577109456062, 0.045675233006477356, -0.0261264368891716, 0.017481083050370216, 0.055543042719364166, 0.001358780195005238, -0.019739903509616852, 0.011841489002108574, -0.037793196737766266, 0.02564013935625553, 0.06956741958856583, -0.015170608647167683, 0.003593272063881159, -0.012757940217852592, 0.00450926786288619, 0.024871738627552986, 0.0253127533942461, 0.014445984736084938, 0.018445542082190514, 0.007891125045716763, -0.064254991710186, 0.0642022043466568, -0.001473684562370181, -0.02820277400314808, 0.028628060594201088, 0.022701848298311234, 0.030344804748892784, 0.006847645156085491, -0.03320729359984398, 0.034775979816913605, -0.015039844438433647, -0.012859891168773174, -0.027829596772789955, -0.10038770735263824, 0.03774860128760338, -0.0017411175649613142, 0.016066214069724083], "e2b2188d-34a2-46d9-b84c-e109d9bc99dc": [-0.0577363558113575, -0.004575979895889759, 0.07064222544431686, 0.053616512566804886, -0.017505519092082977, -0.003983204253017902, 0.040169280022382736, 0.00391533924266696, -0.014183059334754944, -0.03557748720049858, 0.011477604508399963, 0.007996579632163048, -0.026611939072608948, -0.03542820364236832, 0.004136108327656984, 0.01006346009671688, -0.011830471456050873, -0.06503517925739288, -0.09909620136022568, -0.019980063661932945, 0.05354458838701248, -0.02178329974412918, 0.05040585994720459, 0.036634545773267746, 0.01138267107307911, 0.04449738562107086, 0.001093284459784627, -0.005513188894838095, 0.016378886997699738, -0.14997686445713043, 0.04168666899204254, -0.0034903378691524267, -0.058731380850076675, -0.026500239968299866, -0.0033719325438141823, 0.06840413063764572, 0.0173196978867054, -0.010716634802520275, -0.0005968096083961427, 0.06250271946191788, -0.024500487372279167, -0.021525191143155098, -0.016363462433218956, -0.006429402157664299, 0.051729168742895126, -0.01052924245595932, -0.004468580242246389, 0.01001481618732214, 0.011825318448245525, -0.039145294576883316, -0.04824558272957802, -0.034876756370067596, 0.018886832520365715, -0.005544926505535841, -0.057251643389463425, 0.07320168614387512, 0.0701756626367569, 0.040536750108003616, 0.05001268908381462, 0.0038918715436011553, 0.042949169874191284, 0.014471137896180153, -0.09711060672998428, 0.12645943462848663, 0.09776166081428528, 0.04332691803574562, -0.09543466567993164, -0.021157631650567055, -0.0063110776245594025, 0.03181445971131325, -0.013900335878133774, 0.005881660617887974, 0.02257753163576126, 0.049339234828948975, 0.009598501957952976, 0.02611270733177662, 0.008125619031488895, 0.041656386107206345, 0.005913862958550453, 0.014352892525494099, -0.06080270931124687, 0.0036253773141652346, -0.04565045237541199, -0.005026289727538824, -0.017783094197511673, -0.06734367460012436, 0.008773661218583584, 0.010592019185423851, 0.0017015098128467798, -0.041996706277132034, 0.0010819138260558248, -0.036965325474739075, -0.0026690219528973103, -0.01823166199028492, 0.005083450116217136, 0.0025652172043919563, -0.01929723657667637, -0.006043624598532915, 0.05056885629892349, 0.3912412226200104, 0.029348786920309067, -0.0011287957895547152, 0.004946188535541296, 0.05250035971403122, -0.02712300978600979, -0.026797272264957428, -0.002720003016293049, -0.09005032479763031, 0.03679412975907326, 0.08188135921955109, 0.005307055078446865, -0.015917934477329254, 0.04315021261572838, -0.006991501897573471, 0.026313424110412598, 0.007622185163199902, 0.0320919044315815, -0.052656389772892, 0.020217861980199814, 0.0267906803637743, 0.006066376343369484, 0.028165360912680626, -0.03934444487094879, -0.056083664298057556, 0.019362233579158783, -0.022800788283348083, 0.03327500820159912, 0.053751975297927856, 0.021341023966670036, -0.045274145901203156, 0.0734645426273346, -0.07284712046384811, 0.018041180446743965, 0.0245782732963562, 0.02853889763355255, 0.0365191251039505, 0.02261466532945633, 0.003508502384647727, 0.07575322687625885, -0.016819359734654427, 0.0015924000181257725, -0.1554885059595108, -0.0692087858915329, 0.020883385092020035, 0.001219864934682846, 0.0482545904815197, -0.002274938626214862, 0.007448987103998661, 0.030764764174818993, 0.0855150818824768, 0.010732128284871578, -0.01997983828186989, 0.016152359545230865, -0.01878402754664421, 0.003164669033139944, -0.033538706600666046, -0.01285971887409687, 0.12094692140817642, 0.043353475630283356, 0.012152962386608124, 0.07099779695272446, -0.003120348323136568, 0.02791518345475197, -0.016932396218180656, 0.03327919542789459, 0.005448445677757263, -0.03679821640253067, -0.057441964745521545, -0.0026676009874790907, -0.021879160776734352, 0.028531214222311974, 0.04486660286784172, -0.07083061337471008, 0.05348007008433342, -0.01684686727821827, -0.038821566849946976, -0.03160537779331207, -0.040181055665016174, 0.001317941234447062, 0.023922719061374664, 0.0056045176461339, -0.0673283264040947, -0.0333678275346756, 0.07023647427558899, -0.022920439019799232, -0.05009305477142334, 0.0014574412489309907, -0.0067261820659041405, 0.018776919692754745, -0.014558818191289902, 0.06034018099308014, 0.015090415254235268, -0.01847129687666893, 0.034774649888277054, -0.04354453459382057, -0.028562413528561592, -0.0003824155137408525, -0.028569897636771202, -0.010681371204555035, -0.026400061324238777, -0.0607808381319046, -0.01007318776100874, -0.027696402743458748, 0.021097255870699883, -0.047279875725507736, 0.002758372575044632, 0.03800712898373604, -0.058377888053655624, 0.11527436971664429, 0.032882727682590485, -0.05269527807831764, -0.04683868587017059, -0.02576364018023014, 0.03699508681893349, 0.011004910804331303, -0.0059239547699689865, -0.035407889634370804, 0.01990482769906521, -0.024489888921380043, 0.00048771293950267136, -0.06375449150800705, -0.09320706129074097, -0.03595621883869171, -0.3088034391403198, -0.05841957405209541, 0.0030607038643211126, -0.03662929683923721, 0.08231770247220993, -0.060853634029626846, -0.04113517329096794, -0.03936285153031349, 0.038385894149541855, -0.03895774856209755, -0.022269506007432938, -0.019808879122138023, 0.04611201584339142, 0.02264230325818062, -0.0056100646033883095, 0.07296141237020493, -0.023035936057567596, 0.01556834764778614, 0.07442523539066315, 0.05361052602529526, -0.013710787519812584, 0.013779381290078163, 0.03851664438843727, -0.08527263253927231, -0.03856411203742027, -0.004751897882670164, 0.14278410375118256, 0.05335497111082077, 0.04210646077990532, -0.00681018503382802, -0.03845494985580444, 0.02807360142469406, -0.015994606539607048, -0.02555905655026436, 0.011136094108223915, 0.058874525129795074, -0.023502077907323837, -0.0037563464138656855, 0.008227858692407608, -0.07031062245368958, -0.0188857801258564, 0.036495406180620193, -0.012518755160272121, -0.021516604349017143, -0.059855636209249496, 0.01778525859117508, -0.057619720697402954, -0.010495012626051903, 0.007806893903762102, 0.05333276465535164, -0.0017939053941518068, 0.06425119936466217, -0.05583327263593674, -0.014628611505031586, -0.0178303811699152, 0.002144753932952881, -0.03452596813440323, 0.014979087747633457, -0.011046088300645351, 0.0025074218865484, -0.019150901585817337, 0.037049368023872375, 0.03624682500958443, -0.04242324084043503, -0.027803761884570122, 0.030004139989614487, 0.010696256533265114, -0.06224515661597252, 0.01419997401535511, 0.014084375463426113, -0.00982846412807703, 0.044922661036252975, 0.005856802687048912, -0.034484926611185074, -0.0006968601956032217, 0.031025534495711327, 0.026110580191016197, -0.0028145883698016405, -0.040402814745903015, -0.011777923442423344, 0.03528091311454773, -0.006457356736063957, 0.010716327466070652, -0.0007233720389194787, -0.06800714880228043, -0.012589430436491966, -0.002678795950487256, -0.05258221551775932, 0.09259937703609467, -0.028421979397535324, -0.0054171085357666016, 0.03112775646150112, -0.016954155638813972, -0.008194921538233757, 0.008464933373034, -0.008994746021926403, -0.2709973454475403, 0.0237530916929245, 0.04119402542710304, 0.04900108277797699, 0.004755936097353697, 0.06294138729572296, -0.012431376613676548, -0.024082867428660393, -0.044106535613536835, -0.0037458036094903946, 0.055103980004787445, -0.050582196563482285, 0.001766422064974904, 0.007888231426477432, -0.06094902753829956, 0.03160897642374039, 0.07965680211782455, 0.03609295189380646, -0.060608964413404465, 0.02606205642223358, 0.03723398596048355, 0.07925678789615631, 0.16433916985988617, 0.06707397848367691, -0.054245349019765854, -0.060068439692258835, 0.0030636675655841827, 0.027489211410284042, 0.03758545592427254, 0.0545695535838604, -0.00016068911645561457, 0.01930518075823784, -0.009148649871349335, -0.01152875367552042, 0.007527665700763464, -0.07576240599155426, -0.002266200492158532, 0.008143940940499306, 0.0534503273665905, -0.02672664262354374, -0.07321926951408386, 0.011808475479483604, -0.023365311324596405, -0.0313757099211216, 0.08025981485843658, 0.025380564853549004, 0.0316629484295845, -0.04076429829001427, -0.04893898963928223, 0.01700056716799736, -0.037254251539707184, -0.04529279097914696, 0.015241796150803566, -0.004899705294519663, 0.0031512535642832518, -0.016598625108599663, -0.01375658344477415, 0.0047891330905258656, 0.005318000912666321, -0.0308565404266119, 0.011890005320310593, -0.035865746438503265, 0.08812867105007172, -0.007344852667301893, -0.010226464830338955], "6ed6df16-8cd9-485a-b293-597b90d1f230": [-0.06188506260514259, -0.028780974447727203, 0.052073441445827484, 0.03688289597630501, 0.004940997809171677, -0.0381956472992897, 0.03947950154542923, -0.008046912029385567, -0.008924196474254131, -0.0348154678940773, 0.011869427748024464, -0.021046539768576622, 0.011425282806158066, -0.037806957960128784, 0.01131836324930191, 0.04054537042975426, 0.023255249485373497, -0.05592692270874977, -0.09657390415668488, -0.005196580663323402, 0.09365400671958923, 0.01541320700198412, 0.016322925686836243, 0.028209423646330833, 0.009077067486941814, 0.014081764966249466, -0.01851481944322586, -0.018356867134571075, 0.002487174002453685, -0.14291277527809143, 0.020826708525419235, 0.007731856312602758, -0.033890314400196075, -0.0017352855065837502, -0.015275409445166588, 0.04133087024092674, 0.03506442531943321, -0.051946960389614105, -0.034283120185136795, 0.07546874135732651, -0.015492141246795654, -1.0167180334974546e-05, -0.04869339242577553, -0.007152897771447897, 0.041277315467596054, 0.002232373459264636, -0.09070444852113724, -0.021883975714445114, 0.00885668396949768, 0.016102274879813194, -0.03063148818910122, -0.042793016880750656, -0.02189037576317787, 0.007246288936585188, -0.01755218394100666, 0.06282932311296463, 0.09805995225906372, 0.049109816551208496, 0.0625675618648529, 0.022193433716893196, 0.047210920602083206, 0.016136402264237404, -0.05884655937552452, 0.1262095719575882, 0.03906125947833061, 0.008918773382902145, -0.061224207282066345, -0.001398193766362965, -0.031771063804626465, 0.04484596475958824, -0.01627149060368538, -0.007314437068998814, 0.01833806373178959, 0.038214899599552155, 0.0032959426753222942, 0.030976688489317894, 0.03532280772924423, -0.01370055228471756, -0.0034184595569968224, 0.03396216407418251, -0.07996933907270432, 0.03615009784698486, -0.016913458704948425, -0.02929864265024662, -0.018015122041106224, -0.08716199547052383, -0.005741667468100786, 0.01730644330382347, -0.006064103450626135, -0.01920318976044655, 0.020699555054306984, -0.05104384198784828, 0.002713638823479414, -0.002768778707832098, 0.01977243460714817, 0.014746605418622494, -0.019929300993680954, -0.02019781991839409, 0.01439527329057455, 0.41587960720062256, 0.022854724898934364, -0.02016676776111126, 0.015192747116088867, 0.010084613226354122, -0.008664756081998348, -0.007070351392030716, -0.026165753602981567, -0.060940127819776535, 0.03684128075838089, 0.07388206571340561, -0.003636165987700224, -0.04213261231780052, 0.049311015754938126, -0.0010228820610791445, 0.042238980531692505, 0.006943738088011742, 0.03820909187197685, -0.05482003837823868, -0.015968982130289078, 0.019445525482296944, 0.012403570115566254, 0.027486464008688927, 0.015472219325602055, -0.037913303822278976, 0.02093857154250145, -0.02326100878417492, 0.05221385508775711, 0.050162456929683685, 0.02076127380132675, -0.033624276518821716, 0.03315401449799538, -0.04992389306426048, 0.006909459829330444, 0.05366291105747223, 0.019736919552087784, 0.01573149673640728, -0.007235822267830372, -0.03478884696960449, 0.0647970661520958, -0.0020610536448657513, 0.011338294483721256, -0.1675812005996704, -0.03687063977122307, -0.008367234840989113, 0.0345376655459404, 0.06439647823572159, 0.02031547762453556, 0.012869899161159992, 0.0012984464410692453, 0.031399521976709366, 0.00043359107803553343, -0.04229530692100525, -0.0019167439313605428, -0.015020623803138733, 0.017146330326795578, -0.01491536945104599, 0.00948899332433939, 0.12152991443872452, 0.016699349507689476, 0.021833984181284904, 0.04549293965101242, -0.011498339474201202, 0.0231957845389843, -0.060038384050130844, -0.004160585813224316, -0.0019120237557217479, -0.0682910904288292, -0.023319873958826065, -0.04788801074028015, 0.0012776313815265894, -0.001989952987059951, 0.02656744420528412, -0.1007281020283699, 0.015950366854667664, -0.005490458104759455, -0.007354222238063812, 0.011427518911659718, -0.019015362486243248, 0.02555803582072258, 0.003127317875623703, -0.016903216019272804, -0.05773498862981796, -0.024873649701476097, 0.03987883776426315, 0.008795347064733505, -0.0701441541314125, 3.3720803912729025e-05, -0.029708368703722954, -0.005977784749120474, -0.02132773958146572, 0.03489850088953972, -0.009985319338738918, -0.003386683529242873, 0.02389557845890522, -0.06362553685903549, -0.05543634295463562, -0.0035901644732803106, -0.020865658298134804, 0.004637524019926786, -0.025877196341753006, -0.04573614522814751, -0.0591256357729435, -0.04380632936954498, 0.03927118703722954, 0.010915939696133137, 0.046196360141038895, 0.04169643297791481, -0.06128232181072235, 0.10927124321460724, 0.017499377951025963, -0.040166258811950684, -0.003610890591517091, -0.02055937983095646, 0.08170822262763977, -0.004697644617408514, 0.020023927092552185, 0.0002180849842261523, 0.04282333701848984, -0.0081851277500391, -0.013921779580414295, -0.026252010837197304, -0.09658414870500565, -0.10187114030122757, -0.2801094353199005, -0.03815610334277153, 0.0001118853542720899, -0.04023526608943939, 0.07734815776348114, -0.038458261638879776, 0.0008093033684417605, -0.04356919974088669, 0.0315902940928936, -0.0069201234728097916, -0.03408951312303543, -0.036797575652599335, 0.04180083051323891, -0.013924132101237774, -0.0049977838061749935, 0.02534477412700653, -0.050267159938812256, 0.025424931198358536, 0.058342475444078445, 0.049732666462659836, 0.012048682197928429, 0.03465862199664116, -0.006798835005611181, -0.05716018006205559, -0.03620976209640503, -0.0038783594500273466, 0.1392231434583664, 0.08432747423648834, 0.04919520765542984, 0.013057648204267025, 0.01936960779130459, 0.0032622001599520445, -0.03669949620962143, -0.04230528324842453, -0.02694496139883995, 0.03961678594350815, 0.008000236935913563, 0.003477373393252492, 0.014129099436104298, -0.03560852259397507, -0.059111397713422775, 0.05678173527121544, -0.028958356007933617, -0.01815078966319561, -0.00260737887583673, -0.0048886677250266075, -0.048134636133909225, -0.014423531480133533, 0.00482062716037035, 0.04721960052847862, 0.0017213034443557262, 0.09724194556474686, -0.05047917738556862, -0.014597314409911633, -0.00554782385006547, 0.008553934283554554, -0.05804441124200821, -0.0272919200360775, -0.010138100944459438, 0.016858171671628952, 0.0046168663538992405, 0.026075342670083046, 0.050806742161512375, -0.05496852099895477, -0.04688829183578491, 0.006344741676002741, 0.021800760179758072, -0.04102126508951187, 0.03717886283993721, 0.04045557975769043, -0.004541661590337753, 0.044983815401792526, 0.02255171164870262, -0.02750650979578495, 0.0034755221568048, 0.044466014951467514, 0.013224102556705475, -0.02547842636704445, -0.01631198637187481, 0.005912352818995714, 0.06053279712796211, 0.003708913689479232, -0.019926099106669426, -0.013393871486186981, -0.05411205068230629, -0.03574560582637787, -0.018539084121584892, -0.01617400534451008, 0.12695759534835815, -0.04281549155712128, -0.016456279903650284, 0.056746773421764374, -0.024129876866936684, 0.0006571043049916625, 0.025812271982431412, 0.01740879751741886, -0.28075936436653137, 0.0540015809237957, 0.03920402377843857, 0.07670798152685165, -0.0013105857651680708, 0.08679431676864624, -0.06530720740556717, -0.014568875543773174, -0.043973132967948914, 0.01408958900719881, 0.08135044574737549, 0.009316332638263702, 0.008503279648721218, -0.031776171177625656, -0.058503810316324234, 0.011533035896718502, 0.079032763838768, 0.02382517233490944, -0.046018052846193314, 0.03210623934864998, 0.012109672650694847, 0.03332683444023132, 0.175578311085701, 0.015226834453642368, -0.06728070974349976, -0.028125261887907982, 0.005544713232666254, 0.053007859736680984, -0.000525402370840311, 0.022587427869439125, -0.021351728588342667, 0.018475007265806198, -0.014471183530986309, -0.04465222358703613, -0.00922026764601469, -0.053349316120147705, -0.007584854960441589, 0.011722525581717491, 0.0506967231631279, -0.041525691747665405, -0.05792221799492836, 0.011213957332074642, -0.04328591004014015, 0.002419352298602462, 0.056956060230731964, 0.059279657900333405, 0.0387636162340641, -0.05976395308971405, -0.04102958366274834, 0.036585576832294464, -0.012747416272759438, -0.049112532287836075, 0.00018251144501846284, -0.035597339272499084, -0.0027728278655558825, 0.01295013353228569, -0.017903322353959084, 0.027073610574007034, 0.026540758088231087, -0.013182057999074459, -0.02276635728776455, -0.0614570751786232, 0.0771351307630539, 0.046019285917282104, -0.009294775314629078], "9a90e271-1939-42eb-b961-b007ee6a7fd4": [-0.09062863886356354, 0.007591081317514181, 0.058288123458623886, 0.04135100916028023, -0.017965013161301613, -0.01739797182381153, 0.056235164403915405, -0.0138005455955863, 0.005659963469952345, -0.032688744366168976, 0.007468894124031067, -0.005300378426909447, -0.029901152476668358, -0.04081503301858902, -0.024317901581525803, 0.025290945544838905, 0.021083282306790352, -0.015623537823557854, -0.10426967591047287, 0.0419265441596508, -0.026456451043486595, -0.027675852179527283, 0.03287898376584053, 0.011758925393223763, -0.06803052127361298, 0.005629131104797125, -0.011095872148871422, -0.012137393467128277, -0.015200736932456493, -0.14150847494602203, 0.03734767809510231, -0.05677157640457153, -0.009506890550255775, 0.014747630804777145, -0.00899888388812542, 0.05626356601715088, 0.052875369787216187, 0.011526627466082573, -0.014123762957751751, 0.009187490679323673, -0.033860158175230026, -0.0037163260858505964, -0.0661616176366806, -0.004290670156478882, 0.05613847076892853, -0.014068759977817535, 0.008417773060500622, -0.019611958414316177, 0.028287744149565697, 0.03544992581009865, -0.059211939573287964, -0.008381346240639687, 0.006213903892785311, 0.017153216525912285, -0.008378812111914158, 0.01169843040406704, 0.08285990357398987, 0.038207102566957474, 0.09883397817611694, -0.028890782967209816, 0.031290337443351746, 0.013699614442884922, -0.09942221641540527, 0.053566813468933105, 0.06160593032836914, 0.06050783023238182, -0.0446736142039299, -0.03495869040489197, -0.018863989040255547, 0.02282705157995224, -0.04024165868759155, 0.03758209943771362, 0.002379572717472911, 0.024615392088890076, -0.023347921669483185, 0.03605860471725464, 0.01499586459249258, -0.017953388392925262, 0.01978071965277195, -0.00845038890838623, -0.08814126998186111, -0.01849733479321003, -0.027189241722226143, 0.034133341163396835, -0.05662793293595314, -0.04625653475522995, -0.007477371022105217, -0.02733733505010605, 0.008924420922994614, -0.04949299991130829, 0.028133749961853027, -0.03358255699276924, -0.019681470468640327, 0.04109332710504532, -0.04842833802103996, -0.02043870836496353, -0.04092343524098396, 0.045501772314310074, 0.06009494513273239, 0.39138907194137573, 0.04178814962506294, 0.025408726185560226, 0.043955910950899124, 0.04089878872036934, 0.015566547401249409, -0.05055021867156029, -0.0038002943620085716, -0.05447002500295639, 0.048448823392391205, 0.04377187415957451, 0.0507940798997879, 0.009157302789390087, 0.08236170560121536, -0.03325330466032028, 0.08069595694541931, 0.0484187938272953, 0.024580994620919228, -0.028095977380871773, -0.0462675504386425, 0.025243790820240974, 0.019872045144438744, 0.008124316111207008, -0.03332260251045227, -0.05207629129290581, 0.035407327115535736, -0.006303146481513977, 0.04140762984752655, 0.044152937829494476, 0.03429678827524185, -0.0650610700249672, 0.029253821820020676, -0.022300126031041145, 0.007910414598882198, 0.03202963247895241, -0.015310780145227909, 0.006195141468197107, -0.011952416971325874, -0.05258307233452797, 0.0714474469423294, -0.04560285806655884, -0.041667837649583817, -0.16465412080287933, -0.03877207264304161, -0.02408663183450699, -0.00837847962975502, 0.02176232822239399, 0.03240198269486427, 0.0006518553709611297, 0.0032704847399145365, 0.07302992045879364, 0.0017916978104040027, 0.011897626332938671, -0.021078692749142647, -0.0151022057980299, -0.001421378692612052, -0.0038820544723421335, -0.02185017801821232, 0.12934651970863342, 0.0320369154214859, 0.01998008042573929, 0.07783956080675125, -0.0045958044938743114, 0.028976095840334892, -0.02282639592885971, 0.04171029478311539, -0.015466676093637943, -0.029458822682499886, 0.005933379288762808, -0.06283662468194962, 0.006001612171530724, 0.029074355959892273, 0.017312290146946907, -0.13843999803066254, 0.04139577969908714, -0.01954462192952633, -0.019345911219716072, -0.02902386337518692, -0.024297703057527542, -0.015240919776260853, -0.01033725030720234, -0.01688348688185215, -0.044811002910137177, -0.056362371891736984, 0.033189594745635986, -0.016152776777744293, -0.02514694258570671, -0.005274570547044277, -0.021003184840083122, 0.0141168013215065, 0.04186457395553589, 0.029408607631921768, 0.05765683948993683, -0.05973861739039421, 0.037470437586307526, -0.08858207613229752, -0.04491991177201271, -0.02570480667054653, -0.054630644619464874, -0.023546380922198296, -0.026023995131254196, -0.04699940234422684, -0.021731941029429436, -0.027055339887738228, -0.018651913851499557, 0.03132397308945656, 0.011304429732263088, 0.05371486023068428, -0.019489172846078873, 0.023871159180998802, -0.005823337472975254, 0.019412053748965263, 0.01072540320456028, -0.04888532683253288, 0.047125671058893204, 0.01531557273119688, -0.05608050152659416, -0.035289324820041656, 0.04011521860957146, -0.0023201729636639357, -0.004141802899539471, -0.04719211533665657, -0.0963159054517746, -0.05972765386104584, -0.30324870347976685, -0.0022371108643710613, -0.021219614893198013, -0.004624142777174711, 0.0872589647769928, -0.042994461953639984, -0.022719400003552437, -0.014725535176694393, 0.03153572604060173, -0.06815765053033829, 0.0303812175989151, -0.051586974412202835, 0.05694315582513809, 0.03626710921525955, -0.022176604717969894, 0.002912749070674181, -0.07628507912158966, 0.004549864213913679, 0.05598711967468262, 0.021295316517353058, 0.021067513152956963, 0.04307970404624939, -0.01723986677825451, -0.058747533708810806, 0.0008762746583670378, 0.022837869822978973, 0.14690183103084564, 0.10351584851741791, 0.06021556630730629, -0.02316838689148426, 0.04256627708673477, 0.0010976266348734498, -0.06692323833703995, -0.023506276309490204, 0.0033569117076694965, 0.012711522169411182, 0.016772393137216568, 0.040391843765974045, 0.022849883884191513, -0.01190882921218872, -0.045464202761650085, 0.05380711331963539, 0.01930728182196617, 0.041131529957056046, -0.023471863940358162, 0.03109060227870941, -0.051331792026758194, 0.004453319124877453, 0.025088217109441757, 0.06846029311418533, 0.022250430658459663, 0.058041978627443314, -0.027562271803617477, -0.00048826076090335846, -0.01570788025856018, -0.004411424044519663, -0.09278897941112518, -0.0042007677257061005, -0.03327636420726776, 0.028560444712638855, 0.02831411175429821, 0.05251846835017204, -0.0014254407724365592, -0.029020531103014946, -0.0555385984480381, 0.0007791096577420831, 0.025572635233402252, -0.033414725214242935, 0.0030174118001013994, 0.005982663482427597, -0.036014679819345474, -0.018329843878746033, 0.015282825566828251, -0.048624180257320404, 0.004105157684534788, 0.021702760830521584, 0.017951836809515953, -0.021794836968183517, -0.044422730803489685, 0.008874209597706795, 0.01776318997144699, -0.022340888157486916, -0.04540172591805458, -0.017884232103824615, -0.030029695481061935, 0.05082656815648079, 0.03455765172839165, -0.005749979987740517, 0.056041616946458817, -0.07079190015792847, -0.033088069409132004, 0.052496034651994705, -0.037675078958272934, 0.0013897429453209043, -0.016247769817709923, 0.04953493922948837, -0.2687303423881531, 0.043511319905519485, 0.05488647520542145, 0.05979931727051735, 0.005340397357940674, 0.041988953948020935, -0.008158433251082897, -0.009988226927816868, -0.02401387318968773, -0.021884214133024216, 0.0925702378153801, -0.0020011102315038443, -0.015304711647331715, 0.015563481487333775, -0.03762933239340782, 0.015103412792086601, 0.0992046520113945, 0.035763490945100784, -0.08586665242910385, 0.045267749577760696, 0.005374952219426632, 0.058278556913137436, 0.12317841500043869, 0.02411455102264881, -0.030131718143820763, -0.011577734723687172, 0.00808022916316986, 0.017588449642062187, -0.01809009723365307, 0.03702069818973541, -0.028319314122200012, 0.030865781009197235, -0.00456974795088172, -0.013945972546935081, -0.024288291111588478, -0.015073118731379509, 0.010623058304190636, 0.043729811906814575, 0.053459614515304565, -0.0034575308673083782, -0.03997306898236275, 0.016674455255270004, -0.024204613640904427, 0.01563943363726139, 0.0681435838341713, 0.01758141815662384, 0.01056242547929287, -0.06318558007478714, -0.05351893603801727, 0.08722253143787384, -0.022807693108916283, -0.025472046807408333, 0.003029071493074298, -0.020106248557567596, 0.01964680105447769, -0.014904462732374668, -0.06517373770475388, 0.03249286487698555, 0.0664953961968422, 0.0027492919471114874, -0.03169352933764458, -0.01231116708368063, 0.08601601421833038, 0.030859842896461487, -0.0007857884047552943], "dffcd13c-ece5-48d4-8308-d285ea6765e7": [-0.07553686946630478, 0.004087585024535656, 0.03420654684305191, 0.032557521015405655, 0.00021755852503702044, -0.010356768034398556, 0.04888289421796799, -0.023891331627964973, 0.02830706723034382, -0.005798657424747944, -0.0123544717207551, 0.04676051065325737, -0.023259134963154793, -0.05522390827536583, -0.04700394347310066, 0.025229398161172867, -0.02850967086851597, -0.023638779297471046, -0.0807328149676323, 0.05482661351561546, 0.0010701633291319013, -0.060253266245126724, 0.009880581870675087, 0.021535513922572136, -0.02764233946800232, 0.010666030459105968, -0.007238855119794607, -0.07129866629838943, -0.023661458864808083, -0.14691415429115295, 0.02741314098238945, -0.03449096530675888, -0.014838624745607376, 0.0006909664953127503, -0.010290274396538734, 0.048313722014427185, 0.0274345725774765, -0.013967685401439667, -0.05241726338863373, 0.020660391077399254, -0.007203272078186274, -0.010568208992481232, -0.008640432730317116, 0.032332852482795715, 0.06019015610218048, -0.02902039885520935, 0.010980453342199326, -0.041055649518966675, -0.006691422313451767, -0.004703005775809288, -0.021334633231163025, -0.05385538190603256, -0.031731363385915756, -0.006909217685461044, -0.06621189415454865, -0.02911488525569439, 0.061453793197870255, 0.02009655348956585, 0.041875842958688736, -0.030710110440850258, 0.05364157631993294, 0.05462575703859329, -0.09953048080205917, 0.04678885266184807, 0.03413788601756096, 0.03566339612007141, -0.08146034926176071, -0.03007950447499752, 0.007611543405801058, 0.06560677289962769, -0.012089488096535206, -0.007895490154623985, 0.035450562834739685, 0.035948313772678375, -0.011191184632480145, 0.03477691113948822, 0.017524057999253273, -0.008571346290409565, 0.02805612049996853, 0.01418566145002842, -0.07505010068416595, -0.015075361356139183, -0.046635497361421585, 0.05623985454440117, -0.030524998903274536, -0.01795661821961403, 0.023052344098687172, -0.02549017034471035, 0.020113609731197357, -0.029707903042435646, 0.059798162430524826, -0.03653853014111519, -0.001093982718884945, 0.015015698038041592, -0.008914930745959282, -0.035963963717222214, -0.025669189170002937, -0.009432602673768997, 0.04584036022424698, 0.40259838104248047, 0.0046665966510772705, 0.005417611915618181, 0.016171874478459358, -0.008506985381245613, -0.003045515390112996, -0.04809943959116936, 0.027524828910827637, -0.09265574812889099, -0.005259797442704439, 0.062369439750909805, 0.03007461503148079, -0.031139710918068886, 0.0817398950457573, 0.031587205827236176, 0.05928238853812218, 0.047900598496198654, 0.027323972433805466, -0.013140136376023293, -0.030322043225169182, 0.02115897461771965, 0.014314203523099422, -0.015278167091310024, -0.07266832888126373, -0.049183767288923264, 0.05252956971526146, 4.4496977352537215e-05, 0.037661708891391754, 0.0664060190320015, 0.02174529992043972, -0.06448223441839218, 0.0008631087839603424, -0.016200821846723557, 0.03274855017662048, 0.03136555105447769, 0.03303208947181702, -0.0035380611661821604, 0.0018949824152514338, 0.0004096972697880119, 0.039657268673181534, -0.08538423478603363, 0.02797948196530342, -0.13564488291740417, -0.04106428846716881, 0.009304998442530632, 0.0003139940381515771, 0.03331940621137619, 0.001471819938160479, -0.019752895459532738, 0.026844708248972893, 0.07152109593153, -0.009842723608016968, 0.03135055676102638, -0.04314114525914192, -0.011563451960682869, -0.02092253603041172, -0.013492338359355927, -0.017885712906718254, 0.12910738587379456, -0.002542176516726613, 0.015093040652573109, 0.07603481411933899, 0.0394970066845417, 0.01859080046415329, 0.025235801935195923, 0.046430788934230804, 0.02658398449420929, -0.0060506281442940235, -0.024311846122145653, -0.021547548472881317, -0.012141386047005653, 0.05372105911374092, -0.025338390842080116, -0.10190217941999435, 0.07777133584022522, -0.09219302237033844, -0.06102803349494934, -0.029106227681040764, 0.007729233708232641, -0.009098241105675697, 0.0027055274695158005, 0.003647282486781478, -0.061100125312805176, -0.026273088529706, 0.0407075397670269, -0.023561956360936165, -0.03089127130806446, -0.00202594674192369, -0.06572531908750534, 0.04619322344660759, 0.014008142054080963, 0.0320441909134388, 0.03752446919679642, -0.043327707797288895, 0.03574955090880394, -0.04463955760002136, -0.036323126405477524, 0.01707782782614231, -0.015959911048412323, -0.038128823041915894, -0.005793234333395958, -0.07915019989013672, -0.04302477091550827, -0.05987042561173439, 0.010888582095503807, 0.04886636510491371, 0.014624987728893757, 0.058070193976163864, -0.056093502789735794, 0.11117178946733475, 0.027024002745747566, -0.03255031630396843, -0.015004091896116734, -0.04362102597951889, 0.005311707034707069, -0.00011012248432962224, 0.022701498121023178, -0.021328451111912727, -0.0038610664196312428, 0.014267439022660255, -0.033293772488832474, -0.013198981992900372, -0.09965789318084717, -0.03432697057723999, -0.30324065685272217, -0.05037542060017586, -0.025913530960679054, -0.03521653637290001, 0.04781994968652725, -0.03444342687726021, 0.0002744619268923998, 0.013934866525232792, 0.026299206539988518, -0.017631895840168, -0.01439854595810175, -0.05679557844996452, 0.020385393872857094, 0.009819811210036278, -0.04193241894245148, 0.033284179866313934, -0.05395585298538208, -0.0017455026973038912, 0.016531355679035187, 0.07231254875659943, -0.0032277533318847418, 0.04941059648990631, 0.040229156613349915, -0.05347749590873718, -0.01672184467315674, 0.0686035007238388, 0.15859775245189667, 0.07421048730611801, 0.06215205788612366, 0.033491190522909164, 0.0081312982365489, 0.030081717297434807, -0.03590306267142296, -0.042405977845191956, 0.0517781525850296, -0.012028146535158157, -0.0280460212379694, 0.019902801141142845, 0.003780757775530219, -0.009737607091665268, -0.06372193992137909, 0.05825851857662201, -0.002309083240106702, -0.021331995725631714, -0.00915168784558773, 0.0245360154658556, -0.04583626240491867, -0.015638429671525955, -0.006556265521794558, 0.017386022955179214, 0.031134657561779022, 0.025248626247048378, -0.013120796531438828, -0.02115517109632492, 0.015375958755612373, 0.052566371858119965, -0.06245098635554314, -0.01746027171611786, -0.05014835670590401, 0.051714055240154266, 0.05366963893175125, -0.01901187188923359, 0.03527621552348137, -0.022008933126926422, -0.0437602736055851, 0.0060511925257742405, 0.023334836587309837, -0.054998092353343964, -0.007085748948156834, 0.02323751524090767, -0.05936776474118233, 0.0834730714559555, -0.008882749825716019, -0.061989717185497284, 0.010382415726780891, 0.015995297580957413, 0.01889023184776306, 0.004578557331115007, -0.0042875902727246284, 0.04766768589615822, 0.02781137079000473, 0.012093842960894108, -0.03383718430995941, -0.015369265340268612, 0.015957750380039215, 0.06528401374816895, 0.012203906662762165, 0.020305955782532692, 0.08645295351743698, -0.032197006046772, -0.060679856687784195, 0.0833924189209938, -0.06643141806125641, 0.029089411720633507, -0.01184835098683834, -0.0034350233618170023, -0.2600400745868683, 0.05958933010697365, -0.0035114712081849575, 0.07926943898200989, 0.02519145980477333, 0.006229773163795471, -0.01613146997988224, 0.006271198391914368, -0.013781003654003143, 0.010071841068565845, 0.05576767027378082, -0.006696339696645737, -0.01672552339732647, -0.010736305266618729, -0.01203960832208395, 0.01718551106750965, 0.060473717749118805, 0.00499360915273428, -0.05012562498450279, 0.02055247873067856, 0.013190503232181072, 0.07584748417139053, 0.11823828518390656, 0.04761891067028046, -0.05546845495700836, -0.017440376803278923, 0.033125072717666626, 0.0044291578233242035, -0.020200012251734734, 0.009321751073002815, 0.014833472669124603, 0.011721046641469002, 0.005528741050511599, -0.02182772383093834, -0.01569543033838272, -0.0724036693572998, -0.023549966514110565, -0.011623742058873177, 0.09008007496595383, -0.0016347613418474793, -0.023994021117687225, -0.02158030867576599, 0.02337994985282421, 0.017958594486117363, 0.05174172669649124, 0.05770032852888107, 0.004353323020040989, -0.07946843653917313, -0.048763468861579895, 0.06400265544652939, -0.0655197873711586, -0.015256171114742756, 0.023952584713697433, -0.04587560519576073, 0.027613071724772453, -0.04565286263823509, 0.011427702382206917, 0.006858848035335541, 0.022448519244790077, -0.006525096483528614, -0.04816270247101784, -0.014538124203681946, 0.10890425741672516, 0.0701555460691452, 0.011798013001680374], "80931e85-8d71-4f41-bafd-f14d003d6188": [-0.08905693143606186, 0.023467741906642914, 0.0547148771584034, 0.020231906324625015, 0.01372880581766367, -0.024024564772844315, 0.07089101523160934, -0.008788949809968472, 0.02593965455889702, -0.00690328236669302, -0.005554999224841595, 0.012963991612195969, -0.022286059334874153, -0.034612610936164856, -0.020088428631424904, 0.012868021614849567, -0.04076454043388367, -0.048926353454589844, -0.12590742111206055, 0.02376142330467701, 0.022569704800844193, -0.0731869712471962, 0.011872927658259869, 0.022266652435064316, -0.03873324394226074, -0.02105124108493328, 0.008194477297365665, -0.026833426207304, 0.010000736452639103, -0.14098283648490906, 0.009757180698215961, -0.07029180228710175, -0.027829565107822418, -0.013469401746988297, -0.007351844105869532, 0.04695107042789459, 0.031032273545861244, 0.02492201328277588, -0.0350961871445179, 0.03397466987371445, -0.0026421418879181147, 0.020944662392139435, -0.02290322817862034, 0.013134677894413471, 0.05586136505007744, -0.0028594518080353737, 0.007656068541109562, 0.00015692462329752743, 0.020050734281539917, -0.02354653924703598, -0.05048603191971779, -0.02567203715443611, -0.0017310394905507565, -0.04653513804078102, -0.002537099178880453, 0.022406814619898796, 0.04547059163451195, 0.04176342859864235, 0.1200900748372078, -0.0058608632534742355, 0.025477545335888863, 0.05156303197145462, -0.135883629322052, 0.059204455465078354, 0.022186260670423508, 0.044520772993564606, -0.03550989553332329, -0.0035986085422337055, -0.031685277819633484, 0.06031070277094841, -0.015575572848320007, -0.004336189944297075, 0.025462700054049492, 0.03308040276169777, -0.046663541346788406, 0.002917269477620721, 0.007692648097872734, 0.002251531695947051, -0.0008251970866695046, 0.028940651565790176, -0.09728298336267471, 0.04441419243812561, -0.03924775496125221, 0.04732699692249298, -0.04163240268826485, -0.02917892299592495, 0.02068752609193325, -0.02757369913160801, 0.03329657018184662, -0.047604020684957504, 0.06205156818032265, -0.05370857194066048, -0.015211744233965874, 0.036451611667871475, -0.005995619110763073, -0.013104465790092945, -0.015393154695630074, 0.019506335258483887, 0.053705718368291855, 0.37526267766952515, -0.02240404486656189, 0.0037062980700284243, -0.02095874585211277, 0.012705940753221512, 0.01704435609281063, -0.06075769662857056, -0.00032162544084712863, -0.07565906643867493, 0.03141918033361435, 0.051396358758211136, 0.07961032539606094, 0.004955659620463848, 0.0741070806980133, -0.015020524151623249, 0.06505190581083298, 0.05758430063724518, 0.0675344243645668, -0.01646619662642479, -0.04423384740948677, 0.018296988680958748, 0.05102378875017166, 0.03446967154741287, -0.03844831511378288, -0.04906172677874565, 0.012570186518132687, -0.001115604187361896, 0.07669856399297714, 0.06620907783508301, 0.015201027505099773, -0.0446796640753746, -0.03800974041223526, -0.0024044408928602934, 0.0301818884909153, -0.007926627062261105, -0.008222285658121109, -0.00538875674828887, 0.013107314705848694, -0.016109466552734375, 0.09144355356693268, -0.035837411880493164, -0.03471973538398743, -0.15421172976493835, -0.06329891085624695, -0.021845722571015358, -0.010540069080889225, 0.012254906818270683, 0.012247659265995026, -0.040293674916028976, 0.02533593960106373, 0.03165702521800995, 0.008416562341153622, 0.029260369017720222, 0.006844283547252417, 0.008623823523521423, 0.001500517944805324, -0.03383968025445938, 0.002882810076698661, 0.16488492488861084, 0.010595721192657948, 0.018919087946414948, 0.03492623567581177, -0.031042098999023438, 0.02783472090959549, -0.019489549100399017, 0.008813157677650452, -0.03645239770412445, 0.020815690979361534, -0.006989043205976486, -0.0021747215650975704, -0.05267657712101936, 0.05488839000463486, 0.04150467365980148, -0.10805999487638474, 0.05689273774623871, -0.03153170272707939, -0.035503800958395004, -0.008807400241494179, -0.01204037107527256, 0.029334010556340218, 0.03091450221836567, -0.02046966552734375, -0.04598085954785347, -0.016734832897782326, 0.058079805225133896, -0.026398077607154846, 0.0036193723790347576, -0.008635095320641994, -0.011581363156437874, 0.027595948427915573, 0.037474580109119415, 0.0371403768658638, 0.07654516398906708, -0.060538798570632935, 0.0383116789162159, -0.07137686759233475, -0.022184202447533607, -0.030701378360390663, 0.01234434638172388, -0.01980561576783657, 0.020805723965168, -0.048016443848609924, -0.0687662735581398, -0.03766399249434471, 0.028792010620236397, 0.0573570653796196, 0.03414657711982727, 0.03436402603983879, -0.04905850440263748, 0.04970398545265198, -0.00015519914450123906, 0.007459098938852549, 0.012050860561430454, -0.05152922123670578, 0.011595395393669605, -0.0014452908653765917, -0.003509000176563859, -0.006954103708267212, 0.023425476625561714, 0.02264835126698017, -0.05204823240637779, -0.04648066312074661, -0.10384923219680786, -0.04898817464709282, -0.32155662775039673, -0.05369412899017334, 0.008481395430862904, -0.01970372349023819, 0.04657965153455734, -0.04139282554388046, 0.020880114287137985, -0.018198033794760704, 0.04070550575852394, -0.0556342788040638, -0.022714318707585335, -0.04733921214938164, 0.025700202211737633, -0.0006669758004136384, -0.014866585843265057, 0.04056916758418083, -0.06359049677848816, -0.014152532443404198, 0.02644072100520134, 0.050377629697322845, -0.003440462052822113, 0.02191479690372944, -0.02000233717262745, -0.03278631344437599, -0.015313448384404182, 0.0511474609375, 0.14992928504943848, 0.07668066769838333, 0.00648087402805686, -0.015711717307567596, 0.05805743485689163, 0.0012077460996806622, -0.0402870737016201, -0.05015014857053757, -0.003118739230558276, 0.020948069170117378, -0.007395226042717695, 0.02083709090948105, -0.004413839429616928, 0.044100333005189896, -0.019710823893547058, 0.08718948811292648, 0.001998952589929104, 0.010988854803144932, -0.0053400699980556965, -0.005580463912338018, -0.035456668585538864, -0.014209634624421597, -0.009210494346916676, 0.05562688410282135, 0.006753180176019669, 0.024983638897538185, -0.03664796054363251, 0.005704429466277361, 0.0240105539560318, -0.010328035801649094, -0.08430645614862442, -0.008082849904894829, -0.04999537020921707, 0.05243345722556114, 0.031808797270059586, 0.013059436343610287, 0.010307710617780685, -0.022028420120477676, -0.024363752454519272, 0.04230715334415436, 0.022446710616350174, -0.0078152259811759, -0.01963040791451931, 0.03538917377591133, -0.03503957763314247, 0.04703708738088608, 0.023207509890198708, -0.05372637137770653, 0.022914035245776176, 0.02797628380358219, 0.03768257051706314, -0.029402730986475945, -0.05894489958882332, 0.03370388597249985, 0.025783665478229523, -0.037587519735097885, -0.03902878984808922, -0.027151398360729218, -0.03007500059902668, 0.03577941283583641, 0.00588424876332283, 0.002832418540492654, 0.03707681596279144, -0.06398651003837585, -0.07798368483781815, 0.018610870465636253, -0.050449028611183167, 0.00014423337415792048, 0.007786695379763842, 0.026216357946395874, -0.2776263654232025, 0.0317036509513855, 0.01491088792681694, 0.04079142212867737, 0.017030512914061546, 0.01159741636365652, -0.026568884029984474, -0.01563847064971924, -0.0035013186279684305, -0.0008892466430552304, 0.020253239199519157, -0.022627731785178185, -0.04419761523604393, -0.017783792689442635, -0.018593566492199898, 0.012505936436355114, 0.04833220690488815, 0.040260858833789825, -0.09198913723230362, 0.07739799469709396, 0.009342332370579243, 0.04159940779209137, 0.15382054448127747, 0.06109803169965744, -0.07206805795431137, -0.040305495262145996, 0.04741785302758217, 0.04009685665369034, -0.014677608385682106, -0.004034533631056547, 0.00010110265429830179, 0.02192450314760208, 0.04603616148233414, 0.013949338346719742, 0.0027828537859022617, -0.0007118460489436984, -0.008898904547095299, 0.029266169294714928, 0.07444663345813751, 0.0037637092173099518, -0.058585695922374725, -0.008676853962242603, 0.0012105838395655155, -0.02906629629433155, 0.03631701320409775, 0.041063036769628525, -0.011200466193258762, -0.09830885380506516, -0.04530405253171921, 0.03827125206589699, -0.030057257041335106, -0.036756545305252075, 0.0010797632858157158, -0.007512159179896116, 0.025340862572193146, -0.014145840890705585, -0.025649603456258774, 0.004374774172902107, 0.04005303978919983, 0.01989375427365303, -0.03439050167798996, 0.00037560734199360013, 0.08711224794387817, 0.03831402212381363, 0.004804563708603382], "634afe95-7345-41ce-b03d-2c9de0763939": [-0.07834222167730331, 0.021058332175016403, 0.07125436514616013, 0.02789054811000824, 0.01750064827501774, 0.03762035444378853, 0.08595329523086548, -0.02516046352684498, -0.005394392646849155, -0.031136037781834602, 0.02773652970790863, -0.02994733490049839, -0.02765233814716339, -0.01601841114461422, -0.00575985899195075, 0.024334542453289032, -0.04088312014937401, -0.0596429780125618, -0.11496786028146744, 0.024378318339586258, -0.046361107379198074, -0.010915860533714294, 0.023909663781523705, -0.019892819225788116, -0.04635784775018692, -0.028772737830877304, -0.01478398684412241, -0.03478999808430672, -0.013491758145391941, -0.13148581981658936, 0.022518405690789223, -0.02367248758673668, -0.009740996174514294, -0.005444913171231747, -0.015763787552714348, 0.07435638457536697, 0.0037232160102576017, 0.03718269616365433, 0.000807014002930373, 0.029571814462542534, 0.028344035148620605, 0.029857320711016655, -0.02450077049434185, 0.004361084196716547, 0.07750566303730011, 0.015902021899819374, 0.009423566050827503, 0.01857360452413559, 0.016940783709287643, -0.0016050647245720029, -0.0662921816110611, -0.04993557557463646, 0.00010478132026037201, 0.014358840882778168, -0.025226730853319168, 0.03556670621037483, 0.036289069801568985, 0.0028917663730680943, 0.10183655470609665, 0.013175299391150475, 0.02514265850186348, 0.03077208809554577, -0.0840507298707962, 0.039311110973358154, 0.06486760824918747, 0.007832150906324387, -0.0514199361205101, -0.03747369721531868, 0.020061137154698372, 0.0592329204082489, 0.0002999239368364215, 0.021427547559142113, 0.022756516933441162, 0.03864062577486038, -0.0002467585145495832, 0.015546757727861404, -0.016267431899905205, -0.007602731231600046, 0.042019546031951904, 0.03932800516486168, -0.07371534407138824, 0.01906738430261612, -0.06120723858475685, 0.00989625696092844, -0.03419460728764534, -0.07324463129043579, -0.013106516562402248, -0.037655387073755264, -0.004838989581912756, -0.029461640864610672, 0.025229323655366898, -0.054415781050920486, -0.0075371447019279, -0.00800574105232954, 0.018587475642561913, -0.020926568657159805, -0.029022809118032455, 0.050864312797784805, 0.03907504677772522, 0.3870374858379364, 0.04206952825188637, 0.011455030180513859, 0.005097637884318829, 0.0439816489815712, 0.009320669807493687, -0.036168646067380905, -0.004358222708106041, -0.03369922563433647, 0.04036342725157738, 0.07889457792043686, 0.03528769686818123, 0.0021842068526893854, 0.052735745906829834, -0.0054163336753845215, 0.030284369364380836, 0.029837744310498238, 0.06587479263544083, -0.004934201017022133, -0.05545969307422638, -0.03229643031954765, 0.020990032702684402, 0.01176557969301939, -0.02907811850309372, -0.030708493664860725, 0.02648160792887211, -0.0004092234303243458, 0.05803303048014641, 0.05528426542878151, 0.029206767678260803, -0.06627292186021805, -0.012642383575439453, -0.057814568281173706, 0.028071176260709763, 0.026360251009464264, -0.0003722344117704779, -0.03322098031640053, 0.020357368513941765, -0.0018798288656398654, 0.07139826565980911, -0.04010293260216713, -0.06251402199268341, -0.17516709864139557, -0.0691646933555603, -0.016920749098062515, -0.0224577896296978, 0.04505738243460655, 0.0030397935770452023, -0.03799121454358101, 0.029646610841155052, 0.04220428317785263, 0.008463215082883835, 0.012684880755841732, -0.008147191256284714, 0.012471690773963928, 0.029227852821350098, 0.0039138467982411385, 0.03943849727511406, 0.10996027290821075, 0.022906964644789696, -0.016614198684692383, 0.024051876738667488, -0.01774238422513008, 0.03188915550708771, -0.005699005909264088, 0.015297310426831245, -0.022643206641077995, -0.028539275750517845, -0.01767841726541519, -0.05189470201730728, -0.018668552860617638, 0.06495368480682373, 0.022098738700151443, -0.0794660747051239, 0.048007406294345856, 0.0064873588271439075, -0.03508641570806503, -0.050331275910139084, -0.01690041832625866, 0.01883881539106369, 0.0039961556904017925, 0.0020697140134871006, -0.07493653893470764, -0.010147305205464363, 0.04901443421840668, -0.059117767959833145, -0.0038296948187053204, -0.006244450807571411, -0.005431644152849913, 0.002307143295183778, 0.003160847583785653, 0.018662819638848305, 0.041601426899433136, -0.07829751074314117, 0.023692186921834946, -0.06598780304193497, -0.04437870904803276, -0.009499815292656422, 0.003706325078383088, -0.00803291890770197, 0.0169399194419384, -0.0477287657558918, -0.008015577681362629, -0.012135014869272709, 0.03512447327375412, 0.04989836737513542, 0.08500706404447556, 0.0050138430669903755, -0.011974496766924858, 0.11241718381643295, 0.005866250488907099, -0.017905954271554947, -0.026917556300759315, -0.008778145536780357, -0.007601196877658367, 0.0296898502856493, 0.015772227197885513, 0.01107874233275652, 0.03071938455104828, -0.02283388376235962, -0.011842445470392704, -0.005353342741727829, -0.06916181743144989, -0.08490683883428574, -0.3481580913066864, 0.016282053664326668, -0.020742280408740044, -0.0698237344622612, 0.02462920732796192, -0.05649149417877197, 0.02326108142733574, -0.026518402621150017, 0.03637266531586647, -0.11349187791347504, -0.06273246556520462, -0.04528741165995598, 0.0441180057823658, 0.006703647319227457, -0.015912910923361778, 0.03865547105669975, -0.05649443715810776, 0.005627910140901804, 0.04183919355273247, 0.03307008370757103, 0.00374267203733325, 0.05224516615271568, -0.006715688854455948, -0.06550481170415878, -0.051280438899993896, 0.0020840330980718136, 0.13737067580223083, 0.06362410634756088, 0.036867182701826096, -0.0019484211225062609, 0.037000622600317, 0.026217617094516754, -0.04298851639032364, -0.07448358088731766, 0.017645616084337234, 0.012289832346141338, 0.03874073922634125, -0.038754966109991074, -0.009432953782379627, 0.041552893817424774, -0.04309248551726341, 0.055814336985349655, -0.029893286526203156, 0.008666491135954857, -0.026861192658543587, 0.02818569354712963, 0.0016379861626774073, 0.021632403135299683, -0.027988871559500694, 0.026312949135899544, -0.014156644232571125, 0.0018359986133873463, -0.025772446766495705, -0.03253859654068947, -0.02604140155017376, -0.04995473846793175, -0.09411872178316116, -0.0176905058324337, -0.06379285454750061, 0.054538168013095856, -0.02466781809926033, 0.001747220754623413, 0.041183311492204666, -0.0488593727350235, -0.01773209311068058, 0.03224131464958191, 0.030279802158474922, -0.00533089367672801, 0.013708493672311306, 0.001558032352477312, -0.010042964480817318, 0.06075042486190796, 0.009068557992577553, -0.032190918922424316, 0.08327596634626389, 0.01226892415434122, 0.004672817420214415, 0.023008359596133232, -0.03450741991400719, 0.0021012178622186184, 0.0077011557295918465, -0.0022065683733671904, -0.0441531166434288, 0.0016831845277920365, -0.05929935723543167, -0.019365480169653893, -0.004418774973601103, -0.03928953781723976, 0.05568251013755798, -0.04474824294447899, -0.06382116675376892, 0.013273477554321289, -0.06546182185411453, 0.021157830953598022, 0.0021775246132165194, 0.038765646517276764, -0.2884480655193329, 0.025313161313533783, 0.02177482098340988, 0.06651191413402557, 0.009496660903096199, 0.03118148259818554, 0.008494185283780098, 0.01938154362142086, -0.011868618428707123, 0.0022158867213875055, 0.05524645745754242, -0.04346778243780136, -0.016162002459168434, 0.0073923938907682896, -0.03531251847743988, 0.007282759062945843, 0.03947393596172333, 0.03508322313427925, -0.07973644137382507, 0.059556830674409866, 0.020377129316329956, 0.037898194044828415, 0.14193914830684662, 0.07008461654186249, -0.037222009152173996, -0.042825303971767426, 0.010574336163699627, 0.018532445654273033, 0.0008190402295440435, -0.010659219697117805, -0.025152020156383514, -0.0005349985440261662, 0.03474457934498787, 0.017414681613445282, -0.0157863087952137, -0.022813336923718452, 0.034220900386571884, 0.033273499459028244, 0.09954866766929626, 0.03153044730424881, 0.00691146170720458, 0.014789986424148083, 0.03363410010933876, 0.022459542378783226, 0.05899709090590477, 0.017249202355742455, 0.045153338462114334, 0.008712577633559704, -0.09651739150285721, 0.006893348414450884, -0.024327225983142853, -0.01759037934243679, 0.022669997066259384, 0.010736426338553429, 0.048089828342199326, 0.013731217011809349, -0.0421983003616333, 0.015699245035648346, 0.03533743694424629, 0.007883429527282715, -0.019661448895931244, -0.03920348733663559, 0.04707147181034088, 0.000980452517978847, 0.0016310270875692368], "ae028f00-c1a7-411f-affb-cd644f26a898": [-0.07748071849346161, 0.040982432663440704, 0.01706537976861, 0.04238227382302284, 0.0185934416949749, -0.00627868389710784, 0.07096840441226959, -0.00569426454603672, 0.022631101310253143, -0.043722376227378845, 0.0024604876525700092, 0.01662052981555462, -0.007610141299664974, -0.016203006729483604, -0.0034918885212391615, 0.02806445211172104, -0.045936327427625656, -0.04829024896025658, -0.12515988945960999, 0.030601128935813904, 0.0019223694689571857, -0.02730542980134487, 0.03913802653551102, -0.010442676953971386, -0.04025573283433914, -0.025662828236818314, 0.0213492251932621, -0.03952106088399887, 0.017433395609259605, -0.14233259856700897, 0.020949386060237885, -0.04486057907342911, -0.02048068307340145, -0.02509809471666813, -0.008246742188930511, 0.05814507231116295, 2.841728382918518e-05, 0.0047700973227620125, -0.03233974799513817, 0.031016843393445015, 0.016168376430869102, 0.0033733020536601543, -0.023272519931197166, 0.03618061915040016, 0.06423809379339218, 0.02061719447374344, 0.017277412116527557, 0.006940904539078474, 0.010118905454874039, -0.0014989693881943822, -0.039520956575870514, -0.03550133854150772, 0.018089769408106804, -0.02265261299908161, -0.012884728610515594, 0.042009852826595306, 0.04426058754324913, 0.031346000730991364, 0.0842408835887909, 0.002805254189297557, 0.013138510286808014, -0.009287811815738678, -0.11679147928953171, 0.055080875754356384, 0.05645999684929848, 0.007292997092008591, -0.03705685958266258, -0.02205997332930565, -0.018346965312957764, 0.051797498017549515, -0.03714488446712494, -0.003711844328790903, 0.028141401708126068, 0.02841419354081154, -0.039652589708566666, 0.01397382840514183, 0.0349765419960022, 0.018168115988373756, 0.018398122861981392, 0.024413585662841797, -0.05997208505868912, 0.030944524332880974, -0.06865458190441132, 0.014261825941503048, -0.04596095532178879, -0.06386379897594452, -0.013457948341965675, -0.025919759646058083, -0.016472103074193, -0.05701235681772232, 0.05782672390341759, -0.03175293654203415, 0.0012342565460130572, 0.005536976736038923, -0.030960503965616226, -0.01849924772977829, -0.032503891736269, 0.03695813566446304, 0.02754613757133484, 0.40363842248916626, 0.03094607964158058, -0.013531877659261227, 0.011242717504501343, -0.0031011139508336782, 0.030623232945799828, -0.051638163626194, 0.003488510847091675, -0.07248730957508087, 0.034384097903966904, 0.08240550011396408, 0.05029813200235367, -0.00013525465328712016, 0.09071406722068787, 0.0005248658126220107, 0.08083164691925049, 0.019202329218387604, 0.05576475337147713, -0.02208090014755726, -0.04883652552962303, 0.012435643933713436, 0.026784686371684074, 0.04014502838253975, -0.029481936246156693, -0.05412325635552406, 0.0019395936978980899, -0.009953594766557217, 0.08908329904079437, 0.05117025971412659, 0.031555838882923126, -0.10097437351942062, -0.003979664761573076, -0.04097231850028038, 0.05192005634307861, 0.020678194239735603, 0.011666906997561455, -0.01781887374818325, 0.015772048383951187, -0.02391374669969082, 0.08258151262998581, -0.05022449418902397, -0.03653593733906746, -0.17374449968338013, -0.07154429703950882, -0.04513712599873543, -0.03517880290746689, 0.02245880663394928, 0.021602092310786247, -0.05280807241797447, 0.020012594759464264, 0.027253933250904083, 0.015926891937851906, -0.0010420626495033503, -0.010028917342424393, -0.0037491300608962774, 0.006973729003220797, -0.023159144446253777, 0.026887863874435425, 0.14109952747821808, 0.028359305113554, 0.024186601862311363, 0.043867938220500946, -0.055631667375564575, 0.004139831755310297, -0.026118919253349304, 0.0144448047503829, -0.013329294510185719, -0.013724254444241524, -0.007811189163476229, -0.01730976440012455, -0.022445350885391235, 0.05861397832632065, 0.01820562779903412, -0.08140474557876587, 0.008797119371592999, -0.01816740445792675, -0.03329847753047943, -0.023818572983145714, -0.008697761222720146, -0.0033390142489224672, 0.029091084375977516, -0.008598762564361095, -0.044652435928583145, -0.02287500537931919, 0.04807445406913757, -0.060282714664936066, 0.02728118933737278, -0.016018159687519073, -0.024458730593323708, 0.021402183920145035, 0.007773090153932571, 0.008192786946892738, 0.019284088164567947, -0.062176864594221115, -0.003927641082555056, -0.04376157000660896, -0.020326970145106316, -0.02697325311601162, -0.015104473568499088, 0.01082034595310688, 0.018715400248765945, -0.05057339742779732, -0.05004226416349411, -0.01956692524254322, 0.05329826846718788, 0.060852110385894775, 0.0716923251748085, 0.017047559842467308, -0.021468598395586014, 0.09373786300420761, 0.02459307760000229, -0.024370450526475906, -0.024647248908877373, -0.014241419732570648, 0.013011127710342407, 0.04815022647380829, 0.0475936233997345, 0.019239477813243866, 0.037292204797267914, -0.01736278645694256, -0.011437727138400078, -0.010360293090343475, -0.08145427703857422, -0.07030799984931946, -0.3319879472255707, -0.022018857300281525, -0.009893616661429405, -0.07327494025230408, 0.05705687403678894, -0.06843003630638123, -0.012352004647254944, -0.050387606024742126, 0.01447892002761364, -0.03866783529520035, -0.0009269431466236711, -0.06266025453805923, 0.0359102226793766, 0.02631782367825508, 0.001957416068762541, 0.06496693938970566, -0.03978161886334419, 0.019062703475356102, 0.053116027265787125, 0.05468538776040077, 0.021376552060246468, 0.05277266353368759, 0.004707921762019396, -0.040238384157419205, -0.0600578673183918, 0.061405282467603683, 0.135451540350914, 0.06041836366057396, 0.05029933154582977, 0.0035625591408461332, 0.027721455320715904, 0.034794460982084274, -0.005081570241600275, -0.039085209369659424, 0.018915705382823944, 0.015170449391007423, -0.01719033718109131, -0.03686313331127167, 0.012363117188215256, 0.01901429519057274, -0.04010029509663582, 0.0770510658621788, -0.032345548272132874, -0.0032864478416740894, -0.03084307163953781, 0.015949243679642677, -0.0060858046635985374, -0.028142793104052544, -0.038959603756666183, 0.03481432795524597, 0.015371773391962051, 0.03673258796334267, -0.048501551151275635, 0.0017285277135670185, 0.004768955521285534, -0.009035894647240639, -0.08826389908790588, -0.017052017152309418, -0.037300486117601395, 0.012130110524594784, 0.004932490177452564, -0.006415178067982197, 0.047602783888578415, -0.03342525660991669, -0.02063819393515587, 0.07524000853300095, 0.03642803803086281, -0.022768275812268257, -0.007558583281934261, 0.05122653394937515, -0.020768629387021065, 0.07829552888870239, -0.0042185415513813496, -0.05506181716918945, 0.034740131348371506, 0.024260276928544044, 0.04686111956834793, -0.012964624911546707, -0.061452336609363556, 0.009107185527682304, 0.03916115313768387, -0.011653292924165726, -0.028901482000947, -0.003980688285082579, -0.061836451292037964, 0.026759354397654533, 0.023388780653476715, -0.03157728910446167, 0.06376074254512787, -0.046200115233659744, -0.05085102468729019, 0.042817965149879456, -0.03464680537581444, 0.01694326102733612, 0.01771140843629837, 0.03406393527984619, -0.28472158312797546, 0.02860591560602188, 0.013610191643238068, 0.05082263797521591, 0.011316193267703056, 0.034057196229696274, -0.0065030488185584545, -0.0028335852548480034, -0.0348074845969677, -0.010351036675274372, 0.04678027704358101, -0.0228875819593668, -0.016537446528673172, -0.015153095126152039, -0.018976902589201927, -0.018587255850434303, 0.029620522633194923, 0.030323294922709465, -0.07961074262857437, 0.018117737025022507, 0.015022297389805317, 0.03671758621931076, 0.11687637865543365, 0.019114037975668907, -0.048545245081186295, -0.026028787717223167, 0.017646024003624916, -0.019727347418665886, -0.033619947731494904, 0.020522041246294975, -0.011374030262231827, 0.008148192428052425, 0.04501481354236603, 0.005416394677013159, 0.013006400316953659, -0.029020637273788452, 0.007532436400651932, 0.031281765550374985, 0.07999569922685623, 0.04935412481427193, -0.06563089787960052, 0.009834054857492447, 0.022338269278407097, -0.04231908544898033, 0.040817029774188995, 0.030631188303232193, 0.02849721349775791, -0.03345059975981712, -0.05717764049768448, 0.02135947346687317, -0.031201466917991638, -0.015061911195516586, 0.0038886251859366894, 0.008393006399273872, 0.02027294598519802, -0.011660921387374401, -0.019222885370254517, 0.04556698352098465, 0.017179885879158974, 0.010247367434203625, -0.03848525136709213, -0.032833393663167953, 0.0976903885602951, 0.017094844952225685, -0.030371014028787613], "222d0242-4459-4a03-abf3-c3853ca4fc2c": [-0.06865134090185165, 0.040117159485816956, 0.05273088812828064, 0.02609281800687313, 0.01272513810545206, 0.02434796839952469, 0.07603933662176132, -0.029371261596679688, 0.03217962384223938, -0.03742922469973564, -0.014672196470201015, 0.000828420976176858, -0.00023868888092692941, -0.02394590899348259, -0.014570551924407482, 0.003636456560343504, -0.02237539552152157, -0.03598599508404732, -0.12320685386657715, 0.030991211533546448, -0.03883954510092735, -0.04370444640517235, 0.030755888670682907, 0.00477316789329052, -0.06371772289276123, -0.02502387762069702, -0.000801757734734565, -0.03508048132061958, -0.03580810874700546, -0.12855662405490875, -0.004702621605247259, -0.03187358006834984, -0.028572620823979378, -0.002185218269005418, 0.009075405076146126, 0.08394496142864227, 0.026352522894740105, 0.005311455577611923, 0.00014080916298553348, 0.03978023678064346, 0.031836289912462234, -0.01695850118994713, 0.003926822915673256, -0.012972002848982811, 0.06344302743673325, 0.011553033255040646, 0.016057489439845085, -0.03551290184259415, 0.005867262836545706, -0.010947953909635544, -0.06197153776884079, -0.00712540652602911, -0.025657732039690018, -0.013580129481852055, -0.005590703338384628, 0.04028509929776192, 0.022782662883400917, -0.002086463151499629, 0.10443903505802155, 0.01840435154736042, 0.040043070912361145, 0.013143827207386494, -0.10655061900615692, 0.026365967467427254, 0.048656780272722244, -0.013453853316605091, -0.0589764378964901, -0.02968292124569416, -0.015021733939647675, 0.08320443332195282, -0.029851406812667847, -0.005131840240210295, 0.02040710113942623, 0.022069988772273064, -0.0218207947909832, 0.03288900852203369, 0.03975324332714081, -0.023724935948848724, 0.017954960465431213, 0.018861137330532074, -0.053735118359327316, 0.021267183125019073, -0.0598897822201252, -0.002607260597869754, -0.05391429737210274, -0.07543326169252396, -0.007687062490731478, -0.0570533461868763, -0.013107748702168465, -0.048918433487415314, 0.033736567944288254, -0.03891934081912041, 0.010068564675748348, 0.017954813316464424, -0.02885751612484455, -0.0356469564139843, -0.0008862853865139186, 0.026932351291179657, 0.05428127571940422, 0.3824831545352936, 0.008837460540235043, -0.009300137870013714, -0.0005896490183658898, 0.009861375205218792, 0.012891807593405247, -0.06516212970018387, -0.005217499565333128, -0.031728409230709076, 0.05806836113333702, 0.04605850577354431, 0.020243771374225616, -0.00278490106575191, 0.05713165923953056, 0.01196798961609602, 0.053673576563596725, 0.0382453128695488, 0.0792292058467865, -0.011548224836587906, -0.054176781326532364, -0.021615101024508476, 0.05193798243999481, 0.01211196556687355, -0.023945070803165436, -0.04549187794327736, 0.04137374088168144, -0.002263984177261591, 0.0781056135892868, 0.04790126904845238, 0.022390296682715416, -0.06019649654626846, 0.011834531091153622, -0.056827861815690994, 0.02919941022992134, -0.002605046145617962, -0.012886670418083668, -0.030635688453912735, 0.04072704166173935, -0.009642710909247398, 0.07374876737594604, -0.06770570576190948, -0.03689287230372429, -0.19483403861522675, -0.08409126102924347, -0.041589099913835526, 0.016146404668688774, 0.026043133810162544, -0.019422033801674843, -0.05220546945929527, 0.011666566133499146, 0.03667760640382767, 0.033679407089948654, 0.024422097951173782, 0.0028599617071449757, 0.036384038627147675, 0.030364686623215675, -0.038320157676935196, -0.005428051110357046, 0.13121533393859863, 0.01409938558936119, 0.009983362630009651, 0.043810855597257614, -0.048861853778362274, 0.02478477917611599, -0.024474479258060455, 0.022679857909679413, -0.023755650967359543, -0.02484085224568844, 0.004870194476097822, -0.0399312786757946, -0.030173297971487045, 0.06634575873613358, 0.03133789822459221, -0.11978206783533096, 0.04043345898389816, -0.026534631848335266, -0.05758616700768471, -0.035549379885196686, -0.015243167988955975, 0.00041857556789182127, 0.005112268961966038, -0.050771765410900116, -0.06321223080158234, -0.03314158320426941, 0.037207964807748795, -0.02749798446893692, 0.023426907137036324, -0.029842780902981758, -0.004489139188081026, -0.005179043393582106, 0.015320146456360817, 0.02566206268966198, 0.03903539478778839, -0.06400208175182343, 0.036306653171777725, -0.07149091362953186, -0.014138189144432545, -0.03308079019188881, 0.01504584401845932, 0.00535921473056078, 0.011287306435406208, -0.03382471948862076, -0.037980224937200546, -0.032173868268728256, 0.04130498692393303, 0.05200476571917534, 0.04601282626390457, 0.033643268048763275, -0.024634668603539467, 0.08051688969135284, 0.023356961086392403, -0.0039251940324902534, -0.03391492739319801, 0.015249541960656643, 0.005229327827692032, 0.04711480066180229, 0.022271739318966866, 0.01606547087430954, 0.046129267662763596, -0.0010388571536168456, -0.031623899936676025, -0.0056805540807545185, -0.06736715137958527, -0.05061786249279976, -0.33468279242515564, 0.010875829495489597, 0.015480026602745056, -0.06664770841598511, 0.030778754502534866, -0.06468378752470016, -0.012804635800421238, -0.015933066606521606, 0.028511909767985344, -0.09155869483947754, 0.0026934880297631025, -0.06728719174861908, 0.04624362662434578, 0.06930238008499146, 0.0053816488943994045, 0.061973635107278824, -0.043617453426122665, 0.017659084871411324, 0.04660230502486229, 0.04690687358379364, 0.03792582079768181, 0.04237008094787598, -0.01711791381239891, -0.04951605200767517, -0.05118546634912491, 0.0633339211344719, 0.14585556089878082, 0.04208999127149582, 0.055731598287820816, 3.083044430240989e-05, 0.023750126361846924, 0.02553071454167366, -0.029658669605851173, -0.02220125123858452, 0.03041122667491436, 0.025763453915715218, 0.02567254565656185, -0.029740959405899048, -0.00044924882240593433, 0.030351128429174423, -0.01563623547554016, 0.09089355915784836, -0.0014294844586402178, -0.008389144204556942, 0.0006781654665246606, 0.012917100451886654, -0.010437440127134323, -0.007761605083942413, -0.04922838136553764, 0.015411646105349064, -0.005957401357591152, 0.02961592748761177, -0.057709284126758575, -0.040132515132427216, 0.008818887174129486, -0.03287232667207718, -0.07485687732696533, -0.03054528683423996, -0.06859777122735977, 0.07095497846603394, -0.013873539865016937, -0.020374687388539314, 0.04086476191878319, 0.0026381760835647583, -0.0419544018805027, 0.05217737331986427, 0.03672250732779503, -0.00111009634565562, 0.0015634401934221387, 0.011649012565612793, -0.02623845636844635, 0.036904770880937576, 0.02707793563604355, -0.02463441900908947, 0.020831966772675514, 0.03635461628437042, 0.027447940781712532, 0.007186315953731537, -0.06231723353266716, -0.00011352019646437839, 0.04314005374908447, -0.03647840395569801, -0.0021662323269993067, -0.01078880112618208, -0.02711803838610649, 0.0007972079329192638, 0.025548681616783142, -0.033681657165288925, 0.07261636108160019, -0.03462643176317215, -0.08657854050397873, 0.024836476892232895, -0.05270006135106087, 0.024691669270396233, 0.004900496453046799, 0.04752858355641365, -0.2589225471019745, 0.06225084140896797, 0.04611367732286453, 0.039412736892700195, 0.011041360907256603, 0.053010813891887665, -0.00564561365172267, 0.013282676227390766, -0.011768156662583351, -0.007329059299081564, 0.04070806875824928, -0.03293292969465256, -0.015290656127035618, -0.0020512593910098076, -0.04400140047073364, 0.007840638980269432, 0.050154294818639755, 0.04342968389391899, -0.0741385892033577, 0.07033874839544296, 0.022878803312778473, 0.05007511004805565, 0.13816824555397034, 0.03683724254369736, -0.04453491419553757, -0.03557645156979561, 0.02637900970876217, 0.02376844547688961, -0.0191271360963583, 0.0031643265392631292, -0.010433001443743706, -0.006174576003104448, 0.03613583371043205, -0.0055252304300665855, -0.0020026215352118015, -0.027840955182909966, 0.012640321627259254, 0.051802147179841995, 0.09434228390455246, 0.03077443689107895, -0.05556231737136841, -0.03490952402353287, 0.024887779727578163, -0.048259634524583817, 0.057695161551237106, 0.005677657201886177, 0.009285417385399342, -0.02200353890657425, -0.04685274884104729, 0.03824580833315849, -0.008624106645584106, -0.01677752286195755, -0.0044731623493134975, 0.005110912024974823, 0.019978199154138565, -0.0010483686346560717, -0.008751466870307922, 0.036271851509809494, 0.036016978323459625, -0.008259588852524757, -0.020565710961818695, -0.05190237984061241, 0.08018428832292557, -0.011624469421803951, 0.0033384589478373528], "e6442ed4-3e7c-45d1-8a7d-e73382c83301": [-0.09107369184494019, 0.014528913423418999, 0.0742526426911354, 0.047228362411260605, 0.015633774921298027, -0.010154853574931622, 0.06939108669757843, -0.022962510585784912, 0.009723572991788387, -0.00811622105538845, -0.010961397551000118, 0.02954276092350483, -0.011792363598942757, 6.144629151094705e-05, -0.045099347829818726, 0.03517729789018631, -0.01722501590847969, -0.04910396784543991, -0.11433401703834534, 0.019516875967383385, 0.006342076696455479, -0.04530340060591698, 0.033504046499729156, 0.0366092212498188, -0.08696006238460541, -0.005699618719518185, -0.013513866811990738, -0.03700537607073784, -0.008069917559623718, -0.16359162330627441, -0.0029569377657026052, -0.0453486442565918, -0.02179018408060074, 0.005473584868013859, -0.014722508378326893, 0.030272331088781357, 0.01686032861471176, -0.007040458731353283, -0.015202812850475311, 0.04729258641600609, -0.0031640930101275444, 0.010558906942605972, -0.05557413026690483, -0.00874215830117464, 0.04575841501355171, -0.04677441343665123, 0.022711332887411118, -0.00028849896625615656, -0.007705206051468849, -0.04852106422185898, -0.0645950436592102, -0.05634636804461479, -0.0051521980203688145, -0.0415356270968914, -0.029604656621813774, -0.011453610844910145, 0.035128239542245865, -0.008882015943527222, 0.10215532779693604, 0.003165743313729763, 0.07310979813337326, 0.04933062568306923, -0.07029017060995102, 0.04492003843188286, 0.024093246087431908, 0.04661066457629204, -0.06333095580339432, -0.015483296476304531, 0.008876748383045197, 0.033502042293548584, -0.03289804980158806, -0.029169103130698204, 0.018668700009584427, 0.04648280516266823, -0.014571433886885643, 0.007870480418205261, 0.03938782960176468, -0.0032450275029987097, 0.01790519617497921, 0.024890098720788956, -0.06953693926334381, 0.04363369941711426, -0.06188927963376045, 0.04868653789162636, -0.007853048853576183, -0.03607359901070595, 0.026905272156000137, -0.016571685671806335, 0.019354885444045067, -0.01895849034190178, 0.07255661487579346, -0.04793886840343475, 0.01892957277595997, 0.010649456642568111, -0.018351299688220024, -0.014175615273416042, -0.011539453640580177, 0.01755339838564396, 0.028875630348920822, 0.4351676106452942, 0.021167512983083725, 0.006051112897694111, 0.020138250663876534, 0.007182170636951923, 0.022477056831121445, -0.029750024899840355, -0.010419839061796665, -0.07441699504852295, 0.03607483208179474, 0.057080455124378204, 0.04604008421301842, -0.03706152364611626, 0.05432051047682762, 0.010777993127703667, 0.05101938545703888, 0.06000804528594017, 0.05506809428334236, -0.02638028748333454, -0.053614046424627304, 0.013777866959571838, 0.010141903534531593, -0.00021004266454838216, -0.04169508442282677, -0.07502555847167969, 0.060746487230062485, -0.016777075827121735, 0.06948089599609375, 0.04628665745258331, 0.02205953188240528, -0.07135267555713654, 0.01077522337436676, -0.05500384420156479, 0.029408862814307213, 0.009355898015201092, -0.00197183177806437, 0.009448269382119179, 0.0029997737146914005, -0.045334380120038986, 0.06353169679641724, -0.05727542191743851, -0.02198999561369419, -0.1228770837187767, -0.07945363223552704, -0.025415079668164253, -0.03284679725766182, 0.040612079203128815, 0.009289692156016827, -0.014943852089345455, -0.01328608114272356, 0.006960364058613777, 0.034645672887563705, 0.022443488240242004, -0.015399192459881306, 0.02389138750731945, 0.01158464327454567, -0.040369268506765366, 0.002063531894236803, 0.14081980288028717, 0.0006343374261632562, 0.013506762683391571, 0.05447561293840408, 0.01205417700111866, 0.03191196918487549, 0.02616916038095951, 0.040532659739255905, -0.006043076049536467, 0.01002448983490467, -0.021978244185447693, -0.039540212601423264, -0.025078194215893745, 0.03839771822094917, 0.03475894033908844, -0.0918133556842804, 0.05141947790980339, -0.044971298426389694, -0.04893059283494949, -0.06615393608808517, -0.023626428097486496, 0.0020661514718085527, 0.005878046620637178, -0.011821049265563488, -0.04838121682405472, -0.04453612118959427, 0.0427604578435421, -0.029110461473464966, -0.028900159522891045, -0.019651049748063087, 0.007849743589758873, 0.00888910423964262, -0.013091064058244228, 0.041589152067899704, 0.04163500294089317, -0.056618351489305496, 0.037408262491226196, -0.06275992840528488, -0.05312124639749527, -0.0015070440713316202, 0.006268399301916361, -0.061709314584732056, -0.012639094144105911, -0.06543559581041336, -0.04474763944745064, -0.045314352959394455, 0.024649178609251976, 0.016500256955623627, 0.0195026695728302, 0.04930771887302399, -0.014782175421714783, 0.09126941114664078, 0.01993175595998764, -0.030341558158397675, -0.014708728529512882, -0.007943887263536453, 0.017733339220285416, 0.0024451531935483217, 0.004883936606347561, -0.014501296915113926, 0.03252524510025978, 0.028798416256904602, -0.02231450378894806, 0.0025226110592484474, -0.08900998532772064, -0.0215204618871212, -0.30658185482025146, -0.04397319629788399, -0.010851817205548286, 0.00010029464465333149, 0.03820836544036865, -0.051095083355903625, 0.027593303471803665, 0.03130842000246048, 0.07207109034061432, -0.05056172236800194, -0.013746180571615696, -0.023251540958881378, 0.023367268964648247, 0.009657315909862518, -0.0004973858594894409, 0.044519390910863876, -0.027110937982797623, 0.02392658405005932, 0.01714429259300232, 0.058336470276117325, -0.0016020378097891808, 0.04964238405227661, 0.008319815620779991, -0.039317212998867035, -0.022133009508252144, 0.07098795473575592, 0.1363646388053894, 0.06556263566017151, 0.0311141237616539, -0.0005224055494181812, 0.027442358434200287, -0.024125922471284866, -0.049836158752441406, -0.03593624383211136, 0.01951046846807003, 0.00844618771225214, 0.008842023089528084, 0.03525511920452118, -0.00913605559617281, 0.014589340426027775, -0.03951527923345566, 0.07323569804430008, -0.011641391552984715, 0.005342076998203993, -0.017760390415787697, 0.021795056760311127, -0.019866688176989555, 0.003312154905870557, 0.0017328009707853198, 0.013937237672507763, 0.006950945593416691, 0.021946022287011147, -0.015673035755753517, -0.03746834397315979, 0.02115643210709095, 0.01523115485906601, -0.05530206859111786, -0.04430557042360306, -0.04714420437812805, 0.03738180920481682, 0.019349578768014908, -0.00843730103224516, 0.008324767462909222, -0.025591611862182617, -0.03861553221940994, 0.03773640841245651, 0.03748288378119469, 0.002283274894580245, 0.02075246348977089, 0.001502541359513998, -0.03281945362687111, 0.060358576476573944, 0.0018964128103107214, -0.03484433516860008, 0.01760163903236389, 0.02597835287451744, 0.046371880918741226, -0.02734699659049511, -0.05631311237812042, 0.06730730086565018, 0.024138053879141808, -0.03305889666080475, -0.047734830528497696, -0.0018714056350290775, -0.030742235481739044, 0.031511515378952026, 0.0017702985787764192, -0.016499415040016174, 0.050058577209711075, -0.04776110127568245, -0.09521684050559998, 0.0212362352758646, -0.06164827197790146, -0.0007205654983408749, 0.008901604451239109, 0.01831088960170746, -0.2751923203468323, 0.06313414126634598, -0.003973681945353746, 0.04451043903827667, 0.006476461887359619, 0.03801988065242767, -0.03222540393471718, -0.03657481446862221, -0.019055580720305443, 0.013722755946218967, 0.023159006610512733, -0.007794440723955631, -0.0015814520884305239, 0.007033083122223616, -0.01035354845225811, 0.04027353972196579, 0.05972442403435707, 0.03543972596526146, -0.05919211357831955, 0.0639106035232544, -0.00024315500922966748, 0.0762876346707344, 0.14553606510162354, 0.03639357164502144, -0.04018181934952736, -0.020943518728017807, 0.02882823906838894, 0.04653305187821388, -0.04253191500902176, -0.0040669068694114685, -0.018208343535661697, 0.03803214058279991, -0.01593409851193428, -0.03092259354889393, -0.016072455793619156, -0.041692495346069336, -0.01751582697033882, 0.025040803477168083, 0.09762297570705414, 0.0044868807308375835, -0.011758198030292988, -0.021824728697538376, 0.03923124074935913, -0.009153326973319054, 0.05671589821577072, 0.05812744051218033, -0.012460270896553993, -0.05337018892168999, -0.04465784132480621, 0.0566592663526535, -0.042869821190834045, -0.03295528143644333, 0.047436922788619995, -0.025923000648617744, 0.05120541527867317, -0.034517478197813034, 0.016952279955148697, 0.020724743604660034, 0.043586499989032745, -0.03368500620126724, -0.02192809246480465, -0.03477291017770767, 0.09081050008535385, 0.007136232685297728, -0.023932091891765594], "a33cd0f6-5e50-42ba-9bc0-b29bb479d51d": [-0.09608390927314758, 0.029237914830446243, 0.07327572256326675, 0.021122096106410027, -0.03990713506937027, -0.024530403316020966, 0.061452772468328476, -0.005911624059081078, 0.023570938035845757, 0.008718688040971756, -0.009600008837878704, 0.030435768887400627, 0.013294534757733345, -0.011064480990171432, -0.023456145077943802, 0.027814261615276337, -0.016706006601452827, -0.017086397856473923, -0.09035517275333405, 0.05620850995182991, -0.00023451422748621553, -0.06530451774597168, 0.0533023439347744, 0.05082560330629349, -0.05500287562608719, 0.00566628435626626, -0.03175663203001022, -0.01051994226872921, -0.013949580490589142, -0.14967599511146545, -0.007464266382157803, -0.010106810368597507, -0.01906006783246994, -0.03519711270928383, 0.012650793418288231, 0.05912681668996811, -0.011396707035601139, -0.03165537491440773, -0.011961245909333229, 0.023400112986564636, 0.02621779404580593, 0.0013488098047673702, -0.06171419471502304, 0.0005937117384746671, 0.048481717705726624, -0.03493190184235573, 0.05868232250213623, -0.03770654276013374, 0.011921481229364872, -0.02008870802819729, -0.04661085084080696, -0.06000048667192459, -0.00902731716632843, -0.027721980586647987, -0.012776477262377739, -0.019145773723721504, 0.06513313949108124, 0.007544924970716238, 0.08763671666383743, -0.0024811953771859407, 0.06848166137933731, 0.051008190959692, -0.09537152945995331, -0.005800826475024223, 0.04329724609851837, 0.026014138013124466, -0.07655799388885498, -0.023359956219792366, -0.01618700474500656, 0.08132906258106232, -0.0190352164208889, -0.0220278799533844, 0.02089044265449047, 0.052768342196941376, -0.007455308455973864, 0.0027632585261017084, 0.04565935209393501, -0.03839164972305298, -0.009167898446321487, 0.005347109865397215, -0.06976187974214554, 0.014362892135977745, -0.07244967669248581, 0.061771150678396225, -0.01876188814640045, -0.016697954386472702, 0.020294882357120514, -0.032991573214530945, 0.03193257376551628, -0.023367898538708687, 0.07182376831769943, -0.033493008464574814, 0.023283997550606728, -0.009328183718025684, -0.02041964791715145, -0.009005985222756863, -0.02811318077147007, 0.005103951785713434, 0.02279803343117237, 0.42434459924697876, 0.011954504065215588, 0.0012846146710217, 0.02419680543243885, 0.006241536233574152, 0.0054895514622330666, -0.044338200241327286, 0.03590960428118706, -0.08261152356863022, 0.024233633652329445, 0.03625484183430672, 0.05137500539422035, -0.01606329157948494, 0.030071686953306198, 0.020148208364844322, 0.0635080635547638, 0.0751693919301033, 0.05964834988117218, -0.01535653043538332, -0.05619704723358154, -0.014597172848880291, -0.003440549597144127, -0.004786214791238308, -0.0509992279112339, -0.07811547070741653, 0.05074238032102585, -0.0103422487154603, 0.0707779973745346, 0.05594652146100998, 0.04489528387784958, -0.06747779995203018, 0.0014347292017191648, -0.04593946039676666, 0.03592507168650627, 0.02510496973991394, 0.006260680966079235, -0.020724201574921608, 0.011138254776597023, -0.002842098707333207, 0.03631823882460594, -0.05451042577624321, -0.011855791322886944, -0.12754490971565247, -0.0662609189748764, -0.015822401270270348, 0.012427153065800667, 0.07823805510997772, 0.0031240254174917936, -0.023046158254146576, -0.01033624168485403, 0.016712727025151253, 0.01086171343922615, 0.0006437588599510491, -0.03218135982751846, 0.00753509858623147, -0.027676068246364594, -0.021227184683084488, -0.008954395540058613, 0.12419915199279785, -0.005709294229745865, 0.027568554505705833, 0.06886062026023865, -0.016441890969872475, -0.015959298238158226, 0.03314239904284477, 0.027328932657837868, 0.004158602096140385, -0.01851528137922287, 0.0048114885576069355, -0.029227131977677345, 0.011413775384426117, 0.048330117017030716, -0.01085585542023182, -0.06781083345413208, 0.05724486708641052, -0.030587637796998024, -0.03942636400461197, -0.042041413486003876, 0.0069677685387432575, -0.010410664603114128, -0.006721993908286095, 0.008709725923836231, -0.06598541885614395, -0.05379209294915199, 0.05828172713518143, -0.03545507416129112, -0.02409287542104721, -0.03822321817278862, -0.008493845351040363, 0.009382039308547974, 0.02996200881898403, 0.0341084823012352, 0.04029766470193863, -0.05847751349210739, 0.016802065074443817, -0.06677626818418503, -0.05155156925320625, -0.01050073653459549, -0.0315495990216732, -0.07607761770486832, -0.028161536902189255, -0.05125073343515396, -0.026576999574899673, -0.035415858030319214, 0.037055954337120056, 0.020006680861115456, 0.02204974740743637, 0.03316803649067879, -0.03339749947190285, 0.07144105434417725, 0.005250316113233566, -0.007222408428788185, -0.029471689835190773, -0.030066581442952156, 0.006638737861067057, 0.020909935235977173, -0.019819702953100204, -0.012962546199560165, 0.02885391190648079, 0.012667353264987469, -0.04698239639401436, 0.004416537471115589, -0.10774461179971695, -0.03926841914653778, -0.3126627206802368, -0.049574583768844604, -0.015019928105175495, -0.0041000316850841045, 0.05307132005691528, -0.013529560528695583, 0.012591339647769928, 0.02064497023820877, 0.03553054481744766, -0.051054757088422775, 0.023090636357665062, -0.05362526327371597, 0.0273846797645092, 0.04761824756860733, -0.01589873433113098, 0.023248765617609024, -0.05367554724216461, 0.014317559078335762, 0.00023251670063473284, 0.036516282707452774, -0.0040351832285523415, 0.04985108971595764, 0.009326433762907982, -0.06827844679355621, -0.01892506703734398, 0.04269613325595856, 0.1428464949131012, 0.07031169533729553, 0.021178606897592545, -0.02478024922311306, 0.004188606049865484, -0.002065379871055484, -0.024848440662026405, -0.07022999972105026, 0.036236830055713654, 0.01972527801990509, -0.010283117182552814, 0.06684418767690659, -0.027891037985682487, 0.026003316044807434, -0.040158431977033615, 0.06414494663476944, -0.020074641332030296, 0.027543315663933754, -0.006034732796251774, 0.006379031576216221, -0.02056552842259407, -0.038794178515672684, -0.00044187268940731883, 0.051864802837371826, 0.022354673594236374, 0.057494744658470154, -0.008206983096897602, -0.014155733399093151, 0.030571801587939262, 0.02499973215162754, -0.06150646135210991, 0.0004732332599814981, -0.027357930317521095, 0.032432883977890015, 0.011266989633440971, -0.0037447717040777206, 0.06241409853100777, -0.04515622556209564, -0.06701842695474625, 0.013778803870081902, 0.015109153464436531, -0.014945882372558117, 0.02115565724670887, 0.026536665856838226, -0.054316069930791855, 0.06862325221300125, -0.025976009666919708, -0.05139317736029625, 0.02256070449948311, 0.03690817579627037, 0.039530135691165924, 0.05053694173693657, -0.013898328877985477, 0.023901868611574173, 0.0573459193110466, -0.015213723294436932, -0.015225857496261597, -0.00560233648866415, -0.007683948613703251, 0.04450402781367302, 0.023492343723773956, -0.01990264095366001, 0.05931621044874191, -0.04189027473330498, -0.0869816392660141, 0.02453017793595791, -0.06377747654914856, -0.01604495570063591, 0.002930611604824662, -0.0038735372945666313, -0.2695571482181549, 0.07525438815355301, -0.00961455050855875, 0.05861964076757431, 0.016646306961774826, 0.0496298149228096, 0.001101260888390243, 0.026154665276408195, -0.01646284945309162, 0.030258869752287865, 0.04693044722080231, -0.030197851359844208, -0.01530921459197998, -0.0025295037776231766, -0.02673119679093361, 0.002405828097835183, 0.045652542263269424, 0.024470137432217598, -0.05480049550533295, 0.06131548807024956, 0.025414738804101944, 0.05939561501145363, 0.11500824987888336, 0.024495810270309448, -0.04384249076247215, -0.028255736455321312, 0.037102967500686646, 0.03714350238442421, 0.002494138665497303, 0.013134438544511795, 0.009148696437478065, 0.032232630997896194, -0.0338200144469738, -0.002110161352902651, -0.005339156836271286, -0.06039109081029892, -0.011678224429488182, 0.003956555854529142, 0.09258738160133362, 0.024854864925146103, -0.01066072378307581, -0.014893002808094025, 0.06174062564969063, 0.008156944997608662, 0.06759561598300934, 0.05573989078402519, -0.007297151256352663, -0.07196470350027084, -0.038077086210250854, 0.021143190562725067, -0.044678978621959686, -0.023179490119218826, 0.01832449436187744, -0.01854032650589943, 0.011672485619783401, -0.045240774750709534, 0.005674052517861128, 0.015713859349489212, 0.04421431943774223, -0.02660682052373886, -0.08213827013969421, -0.03690969944000244, 0.10067898035049438, 0.009407484903931618, -0.014058245345950127], "0ce65c33-74f8-4874-80c6-5b34e3efbd7e": [-0.11051536351442337, 0.009812403470277786, 0.05664712190628052, 0.024982769042253494, 0.004747509490698576, -0.028085246682167053, 0.03153900057077408, -0.04095987230539322, 0.050025057047605515, 0.013273525051772594, -0.011167632415890694, 0.054464954882860184, -0.03385452553629875, -0.049495842307806015, -0.06472761183977127, -0.008509169332683086, -0.012512637302279472, -0.04355683922767639, -0.10597718507051468, 0.05284642428159714, 0.04969247803092003, -0.05069888010621071, 0.012941209599375725, 0.005731220822781324, -0.013988562859594822, 0.042990658432245255, 0.005468821153044701, -0.06509604305028915, -0.00694649713113904, -0.17294199764728546, -0.0020877004135400057, -0.021332360804080963, -0.033573172986507416, 0.005651799030601978, 0.000567656708881259, 0.06953119486570358, 0.03319316357374191, -0.011339900083839893, -0.009466294199228287, 0.0052313432097435, -0.004580737557262182, 0.04302886873483658, 0.01926783286035061, 0.02119656465947628, 0.07454614341259003, 0.02618400566279888, 0.04363784193992615, -0.029385285452008247, 0.0031455045100301504, 0.007369526196271181, -0.0399259552359581, -0.011451217345893383, -0.020543178543448448, -0.00816857349127531, -0.015344572253525257, 0.0038320079911500216, 0.05205132067203522, 0.00762941874563694, 0.08734194189310074, -0.026340225711464882, 0.04779387265443802, 0.017620055004954338, -0.1148548573255539, 0.043463628739118576, 0.03850613906979561, -0.0068954904563724995, -0.04686620831489563, -0.02325122058391571, -0.01912134513258934, 0.05677037686109543, -0.00037396838888525963, -0.009022670798003674, 0.019761240109801292, 0.06653532385826111, 0.004008880816400051, -0.036525458097457886, 0.0004403721250128001, -0.04383791238069534, 0.009549517184495926, -0.004269527271389961, -0.051964472979307175, -0.02569335699081421, -0.07319071888923645, 0.022691760212183, -0.03708026185631752, -0.02875143103301525, 0.001609313185326755, -0.022217949852347374, 0.01612347736954689, -0.025343751534819603, 0.0804770216345787, -0.06914007663726807, 0.023637525737285614, 0.0034222027752548456, -0.04996249079704285, -0.0437249094247818, -0.004697173833847046, -0.0008531278581358492, 0.02770552784204483, 0.40371617674827576, -0.013146434910595417, 0.01400081068277359, -0.0028334714006632566, 0.04982411116361618, 0.020889172330498695, -0.01999473385512829, 0.030123604461550713, -0.07195746153593063, 0.014661045745015144, 0.020272720605134964, 0.03636002540588379, -0.0025295771192759275, 0.05490269511938095, 0.01914013922214508, 0.04342697933316231, 0.06806124001741409, 0.06928078085184097, 0.004022306762635708, -0.06999321281909943, 0.00810237042605877, 0.01402366254478693, -0.008680674247443676, -0.0722729042172432, -0.06377008557319641, 0.016327999532222748, -0.0026187326293438673, 0.07457154244184494, 0.03569768741726875, 0.04191335663199425, -0.06641194224357605, 0.0022557794582098722, -0.06802483648061752, 0.006191940978169441, 0.0004048365808557719, -0.01184543501585722, -0.013102333061397076, 0.00949499849230051, 0.011970737017691135, 0.08332759141921997, -0.08285043388605118, -0.030260229483246803, -0.1343996524810791, -0.0702856034040451, 0.0009541789768263698, 0.01752755418419838, 0.06593458354473114, 0.008670205250382423, -0.03407803550362587, -0.003525319043546915, 0.030142907053232193, 0.04700726643204689, 0.014692772179841995, -0.03307535499334335, 0.014189278706908226, -0.0059562427923083305, -0.009127925150096416, 0.01750875636935234, 0.14875468611717224, 0.017323948442935944, 0.014321520924568176, 0.04816964268684387, 0.004155092407017946, -0.01298440434038639, 0.029859399423003197, 0.021115612238645554, 0.0015830958727747202, -0.01379301119595766, -0.016944853588938713, -0.02128409408032894, -0.0112402169033885, 0.04645412042737007, -0.03210208937525749, -0.09143243730068207, 0.07844148576259613, -0.0024541092570871115, -0.051548972725868225, -0.029561294242739677, -0.01667768508195877, 0.007084173616021872, 0.019246721640229225, -0.03064826875925064, -0.04322519153356552, -0.04313896223902702, 0.04052583500742912, -0.014613868668675423, 0.010315293446183205, -0.015881314873695374, -0.014257981441915035, 0.04984608292579651, 0.026343820616602898, 0.040406011044979095, 0.08489765226840973, -0.05987003073096275, 0.022067412734031677, -0.07637894153594971, -0.05057553946971893, -0.014911197125911713, 0.008687173947691917, -0.02325190044939518, -0.01177514623850584, -0.04718449339270592, 0.01104813627898693, -0.052112895995378494, -0.0022072962019592524, 0.048713717609643936, 0.0166360754519701, 0.046734027564525604, -0.05046394467353821, 0.06718961894512177, 0.006026143673807383, -0.017782453447580338, -0.02407463639974594, -0.02862812578678131, -0.01501639373600483, 0.017511237412691116, -0.026340307667851448, -0.029695658013224602, -0.00583281833678484, 0.006774379406124353, -0.024919182062149048, -0.021420501172542572, -0.07412078231573105, -0.05424989387392998, -0.31889551877975464, -0.009209148585796356, -0.0020155722741037607, -0.053085774183273315, 0.08540980517864227, -0.054454151540994644, 0.017532868310809135, 0.010439771227538586, 0.023579850792884827, -0.05347270518541336, -0.003201376413926482, -0.03843306005001068, 0.016400376334786415, 0.03974030166864395, -0.022229667752981186, 0.035556361079216, -0.0696958377957344, 0.04924582690000534, 0.05556101351976395, 0.035615332424640656, 0.01910967379808426, 0.05107465758919716, -0.021278025582432747, -0.04956022650003433, -0.021768901497125626, 0.053486619144678116, 0.14397220313549042, 0.015589624643325806, 0.041349999606609344, 0.002290800679475069, 0.0046278126537799835, -0.005993725266307592, -0.04840771108865738, -0.02748204581439495, 0.019148193299770355, 0.01112524513155222, -0.019801326096057892, 0.03327397629618645, -0.014720197767019272, 0.0006898291758261621, 0.008617579005658627, 0.06734642386436462, -0.0037841906305402517, 0.013231506571173668, -0.026049131527543068, 0.006697762291878462, -0.005903484765440226, -0.010953914374113083, -0.025183232501149178, 0.012909477576613426, 0.04492656886577606, 0.028875956311821938, -0.047791488468647, -0.0038440870121121407, 0.011356249451637268, -0.010601484216749668, -0.08903101831674576, -0.014303192496299744, -0.0230923593044281, 0.06422079354524612, -0.0010533214081078768, -0.007617677096277475, 0.035935673862695694, -0.0024418607354164124, -0.04300796613097191, 0.022237174212932587, 0.029489852488040924, -0.008014904335141182, 0.03218039125204086, 0.013032198883593082, -0.03907466307282448, 0.038303911685943604, -0.019857387989759445, -0.047718506306409836, 0.054381515830755234, 0.060849107801914215, 0.023229612037539482, 0.047541022300720215, -0.029078036546707153, 0.01949947699904442, 0.028063194826245308, -0.00019221982802264392, -0.005585652310401201, -0.002275298349559307, -0.005099061410874128, 0.006286896765232086, 0.010083717294037342, -0.006838261615484953, 0.02829473465681076, -0.018575474619865417, -0.07441186159849167, 0.02300531044602394, -0.06809365749359131, -0.008301576599478722, -0.027349498122930527, -0.011904673650860786, -0.28043070435523987, 0.039793577045202255, 0.022623803466558456, 0.06927341967821121, 0.010260351933538914, 0.05296245589852333, 0.02073792740702629, 0.004639350343495607, -0.022568561136722565, 0.016192778944969177, 0.0453236885368824, -0.028449269011616707, -0.03668849170207977, -0.02282697707414627, -0.02373690716922283, -0.0005036890506744385, 0.044395241886377335, 0.04098202660679817, -0.07087834924459457, 0.06914769858121872, 0.024541987106204033, 0.06745155155658722, 0.12255369871854782, 0.06536669284105301, -0.04683814197778702, -0.01747995801270008, 0.05672731250524521, 0.010340560227632523, -0.010420087724924088, -0.019340727478265762, -0.03820838779211044, 0.037196919322013855, 0.03380146250128746, -0.024946562945842743, -0.0038577320519834757, -0.042763080447912216, 0.0069891116581857204, 0.0405135378241539, 0.08366092294454575, -0.025456374511122704, -0.05332700535655022, -0.030345622450113297, 0.018637191504240036, -0.023147374391555786, 0.05238114669919014, 0.04565766453742981, -0.01874469965696335, -0.031157732009887695, -0.028307726606726646, 0.029155559837818146, -0.047304388135671616, 0.001397624728269875, -0.04082012549042702, 0.021077696233987808, 0.03559376671910286, -0.0020455941557884216, 0.017299629747867584, 0.0053861080668866634, 0.029044829308986664, -0.014144104905426502, -0.10026703029870987, 0.03240615874528885, 0.097296342253685, 0.01722637750208378, 0.011365951970219612], "def06a6a-09fd-4087-a67c-4a583ade7545": [-0.0827140286564827, 0.007015066687017679, 0.07694436609745026, 0.013100584968924522, 0.011005762964487076, -0.010326055809855461, 0.10078279674053192, -0.03537030890583992, 0.019785365089774132, -0.005107630044221878, -0.0041755507700145245, 0.009643856436014175, -0.004875007085502148, -0.04700687527656555, -0.021659191697835922, 0.03869332745671272, -0.03183530271053314, -0.05631023272871971, -0.13795438408851624, 0.021589552983641624, 0.0148052629083395, -0.06349383294582367, 0.009407959878444672, 0.06379184871912003, -0.04218209162354469, 0.015590187162160873, 0.02374589443206787, -0.029985470697283745, -0.006601701024919748, -0.11411486566066742, -0.006542827934026718, -0.02400367148220539, -0.03150254860520363, -0.01910240761935711, 0.019238976761698723, 0.04738713428378105, -0.0024411464110016823, 0.002027349779382348, -0.029747122898697853, 0.004282309673726559, -0.007940849289298058, -0.036935169249773026, 0.026634948328137398, 0.03141429275274277, 0.07702257484197617, 0.01762836053967476, 0.04446706920862198, 0.030621187761425972, -0.005932276137173176, 0.003573142923414707, -0.042426783591508865, -0.017788412049412727, -0.010024501010775566, -0.024656156077980995, -0.006328844930976629, 0.021577727049589157, 0.06423506885766983, 0.015282301232218742, 0.08074334263801575, -0.013830714859068394, -0.0033640798646956682, 0.034672223031520844, -0.07415876537561417, 0.028081944212317467, 0.04118543863296509, 0.03891098126769066, -0.05661162734031677, -0.02312701940536499, -0.02546694502234459, 0.05130944028496742, -0.009643887169659138, -0.038535475730895996, -0.010987408459186554, 0.016678670421242714, -0.0442606583237648, 0.02394106052815914, -0.0018987624207511544, 0.012265784665942192, -0.002815143670886755, -0.0075585790909826756, -0.07607703655958176, 0.06464064866304398, -0.03375633805990219, 0.03669961541891098, -0.05901975557208061, -0.02976916916668415, 0.03571612387895584, -0.010758469812572002, -0.023201823234558105, -0.046482525765895844, 0.07452259957790375, -0.06381822377443314, -0.011729799211025238, 0.011692358180880547, -0.04051486775279045, -0.0058546969667077065, -0.01695210300385952, -0.007544419728219509, 0.02013346180319786, 0.3844905495643616, 0.011730531230568886, -0.004605281166732311, -0.031453169882297516, 0.03668072074651718, 0.018443387001752853, -0.03442210331559181, -0.004506850149482489, -0.059974685311317444, 0.01735326275229454, 0.04573376849293709, 0.07037085294723511, -0.013734038919210434, 0.03631489723920822, -0.05707152932882309, 0.04653850570321083, 0.037746746093034744, 0.056013546884059906, -0.005109169986099005, -0.06441596895456314, -0.03332699462771416, 0.035177670419216156, 0.035505227744579315, -0.0226015392690897, -0.030292300507426262, 0.019173793494701385, -0.033733464777469635, 0.09735964983701706, 0.053931158035993576, 0.019637279212474823, -0.05040070787072182, -0.0679338276386261, -0.04966307431459427, 0.029014045372605324, 0.0028101352509111166, 0.0012003182200714946, 0.006006093230098486, 0.010139557532966137, 0.005421353038400412, 0.11000143736600876, -0.010688125155866146, -0.01771601103246212, -0.1143212839961052, -0.08362902700901031, 0.024889428168535233, -0.006802100222557783, 0.04503713548183441, 0.02567370794713497, -0.02670731022953987, 0.010719451121985912, 0.06130877509713173, 0.04315485432744026, 0.015833040699362755, -0.02651830203831196, -0.017546851187944412, 0.048253364861011505, -0.04413602501153946, 0.02581913210451603, 0.14413823187351227, -0.005567765794694424, 0.021376265212893486, 0.06345923244953156, -0.03714875504374504, 0.008840858936309814, 0.005586844868957996, 0.022034872323274612, -0.04177384823560715, 0.02168785035610199, -0.029023610055446625, 0.0033265899401158094, -0.05573808774352074, 0.042917780578136444, 0.00967523455619812, -0.10256297141313553, 0.08363661915063858, -0.023689929395914078, -0.05196620896458626, -0.021447664126753807, -0.013941713608801365, 0.02033059485256672, 0.03288743644952774, -0.04460245743393898, -0.02967708371579647, -0.04293954372406006, 0.04230425879359245, -0.02456606552004814, -0.014782514423131943, -0.0281468965113163, 0.012271113693714142, 0.03725505247712135, 0.007230910938233137, 0.04391539841890335, 0.0370415635406971, -0.04633603245019913, 0.004721160512417555, -0.07854034006595612, -0.0691569596529007, -0.011141542345285416, 0.019397130236029625, -0.06674458086490631, -0.003322070697322488, -0.08770298957824707, -0.012313797138631344, -0.022689497098326683, 0.025521235540509224, 0.011582544073462486, 0.04117116704583168, 0.03534312918782234, -0.054774366319179535, 0.06640337407588959, 0.012194167822599411, -0.03553114831447601, -0.012941890396177769, -0.008025173097848892, -0.01334200706332922, 0.01113688014447689, -0.007486699149012566, -0.005361341405659914, -0.002429589396342635, 0.0053289299830794334, -0.031218890100717545, -0.037022463977336884, -0.08303360641002655, -0.04754630848765373, -0.3277127742767334, -0.026775527745485306, -0.008345380425453186, -0.005741465371102095, 0.038268886506557465, -0.061816323548555374, 0.03153204545378685, 0.0003838776610791683, 0.0344034768640995, -0.033556219190359116, -0.01537877693772316, -0.07630530744791031, 0.01192685030400753, 0.04585232958197594, 0.019348548725247383, 0.061287254095077515, -0.04509525001049042, 0.020381199195981026, 0.03899373114109039, 0.060292214155197144, -0.01228795200586319, 0.03972781077027321, -0.007080969866365194, -0.022378621622920036, -0.04120466485619545, 0.03656652197241783, 0.16184324026107788, 0.07135491818189621, 0.02061823569238186, -0.016638662666082382, 0.05661432445049286, 0.02249826490879059, -0.008886491879820824, -0.07314230501651764, 0.018815992400050163, 0.015465735457837582, -0.014955949038267136, 0.015358192846179008, 0.01316885557025671, 0.03033028356730938, -0.031034739688038826, 0.03690987080335617, 0.0021708824206143618, 0.012996586039662361, -0.0012006795732304454, 0.0026509680319577456, -0.0497438870370388, -0.009877570904791355, -0.015963949263095856, 0.052297163754701614, 0.01840362884104252, 0.04601149260997772, -0.040940895676612854, -0.01879865676164627, -0.005083325784653425, 0.003233503084629774, -0.06730405241250992, -0.026168586686253548, -0.008680994622409344, 0.07829293608665466, 0.004028565250337124, -0.018216295167803764, 0.01851486973464489, -0.04895192012190819, -0.06426750123500824, 0.026603806763887405, 0.025434592738747597, -0.0063392361626029015, 0.05300428718328476, 0.015416903421282768, -0.03089860826730728, 0.0752788782119751, 0.00652181264013052, -0.051304470747709274, 0.040910009294748306, 0.026280377060174942, 0.010647308081388474, -0.02839651331305504, -0.06464926153421402, 0.030330685898661613, 0.0031072592828422785, -0.030446887016296387, -0.0016434425488114357, -0.042769186198711395, -0.034210823476314545, 0.0039195716381073, 0.008183986879885197, 0.008399469777941704, 0.050237514078617096, 0.020005663856863976, -0.061510346829891205, 0.003193875076249242, -0.05336819589138031, -0.008560890331864357, 0.03294747322797775, -0.015160271897912025, -0.2785056233406067, 0.038606517016887665, -0.012716850265860558, 0.07774442434310913, -0.001028658589348197, 0.05202953517436981, 0.008791105821728706, -0.01006897073239088, -0.039317891001701355, 0.004563982132822275, 0.053030576556921005, -0.03847894072532654, -0.007578155025839806, -0.008469454944133759, 0.016652170568704605, 0.015656031668186188, 0.06361699849367142, 0.015119104646146297, -0.07968834042549133, 0.05818566679954529, 0.03604476526379585, 0.042106933891773224, 0.16229109466075897, 0.05531664937734604, -0.07665957510471344, 0.007696402259171009, 0.02215862274169922, 0.04338934272527695, -0.015059973113238811, 0.018165169283747673, -0.023568706586956978, 0.042283568531274796, -0.006197618320584297, 0.023564163595438004, 0.01458359882235527, -0.07387009263038635, -0.026748521253466606, 0.020404435694217682, 0.057904284447431564, 0.0017363452352583408, -0.05297888070344925, 0.0005458254599943757, 0.009558913297951221, 0.0024920289870351553, 0.028902752324938774, 0.04791530594229698, 0.016072817146778107, -0.04203229397535324, -0.03334546089172363, 0.0035319048911333084, -0.04597969725728035, -0.02845880761742592, 0.003350428305566311, 0.001361156697385013, 0.056734245270490646, 0.003519021440297365, -0.01981940120458603, -0.016720931977033615, 0.02960631065070629, -0.004103058949112892, -0.04078243672847748, 0.026114456355571747, 0.13490734994411469, -0.006457832641899586, -0.01187308132648468], "38d54015-192f-4202-8cae-e4463b050f7a": [-0.07783713936805725, 0.05253438279032707, 0.057994578033685684, 0.02865062654018402, -0.004146857652813196, -0.02370821312069893, 0.06311231851577759, -0.03947014734148979, 0.0061072357930243015, -0.022259866818785667, 0.0019528482807800174, -0.01872819848358631, -0.028076140210032463, -0.02420523390173912, -0.008163712918758392, 0.008151629939675331, 0.004505691584199667, -0.0308656208217144, -0.11810433119535446, 0.04413401708006859, 0.04769427329301834, -0.02274979092180729, 0.0153421675786376, 0.035105448216199875, -0.05503847450017929, 0.005292900837957859, 0.017573414370417595, -0.028275659307837486, -0.00962550938129425, -0.15353606641292572, -0.01885574497282505, -0.016307462006807327, -0.03690569847822189, -0.02329559251666069, -0.007042238023132086, 0.08355455100536346, -0.003540613455697894, 0.01643720269203186, -0.022542793303728104, 0.03884868323802948, -0.004715810064226389, 0.01957325078547001, -0.025672126561403275, 0.02549222856760025, 0.08120343089103699, 0.005596896167844534, 0.014190224930644035, -0.01399698294699192, 0.01436418853700161, 0.006876738276332617, -0.06437072157859802, -0.021353483200073242, 0.024160809814929962, -0.028887303546071053, 0.002907339483499527, 0.035830460488796234, 0.04802555963397026, 0.04040086641907692, 0.08146722614765167, -0.03899059072136879, 0.04131626337766647, 0.030470075085759163, -0.10225245356559753, 0.0331038236618042, 0.06343742460012436, 0.008668720722198486, -0.08707057684659958, 0.0013953587040305138, -0.028241684660315514, 0.05933969095349312, 0.011844247579574585, -0.004997975192964077, 0.017595291137695312, 0.06456761807203293, 0.0039484440349042416, 0.027850469574332237, 0.009371829219162464, -0.010812303982675076, 0.01354003045707941, -0.008811443112790585, -0.054488714784383774, 0.013500005006790161, -0.05252016335725784, 0.020234638825058937, -0.04531494155526161, -0.032264433801174164, -0.007026699371635914, -0.029016593471169472, -0.014762217178940773, -0.039524003863334656, 0.05798804387450218, -0.0446508452296257, 0.02259383164346218, -0.013162339106202126, -0.05315282568335533, -0.019403837621212006, -0.01250086072832346, -0.006164066027849913, 0.040811702609062195, 0.4180052876472473, 0.01783599704504013, 0.031154906377196312, 0.016581036150455475, 0.02234111726284027, -0.015072858892381191, -0.04265977814793587, 0.006975955329835415, -0.08633068948984146, 0.03247162699699402, 0.024257829412817955, 0.020395567640662193, -0.03393982723355293, 0.07590421289205551, 0.004451724700629711, 0.03167635574936867, 0.03473116457462311, 0.044637519866228104, -0.049038179218769073, -0.04019535705447197, 0.008024605922400951, -0.009727835655212402, 0.01802288182079792, -0.023769130930304527, -0.049376241862773895, 0.015633586794137955, 0.018705695867538452, 0.08407896757125854, 0.07677216827869415, 0.04667443409562111, -0.08477756381034851, 0.008369075134396553, -0.052139461040496826, 0.024035628885030746, 0.01847725734114647, 0.0008652401156723499, -0.013806570321321487, 0.03040231019258499, -0.007776000536978245, 0.04179954528808594, -0.035899627953767776, -0.020730823278427124, -0.13317041099071503, -0.0629129707813263, -0.00626585865393281, -0.0078078568913042545, 0.028059521690011024, 0.0161921214312315, -0.03055860847234726, 0.015004150569438934, 0.05854478478431702, 0.01760094054043293, 0.020499419420957565, -0.03390010446310043, 0.01838422752916813, -0.006050200201570988, -0.04253397136926651, -0.009144405834376812, 0.08683449774980545, 0.006651521660387516, 0.028622344136238098, 0.046083129942417145, -0.011360048316419125, -0.003985044080764055, 0.02126898430287838, 0.020503712818026543, 0.04762275144457817, -0.025710444897413254, -0.028262760490179062, -0.03469943627715111, -0.03453677147626877, 0.05737493559718132, 0.02642967365682125, -0.07431111484766006, 0.11002141982316971, -0.021254468709230423, -0.020650474354624748, -0.04054523631930351, -0.003453273791819811, -0.001470229122787714, 0.02697753719985485, -0.024308698251843452, -0.0592987947165966, -0.031431905925273895, 0.028925007209181786, -0.027303898707032204, -0.02469598688185215, 0.011031528003513813, 0.0005945455632172525, 0.05682164430618286, 0.0038576137740164995, 0.08477845788002014, 0.027818262577056885, -0.05957416817545891, 0.018921097740530968, -0.05937328189611435, -0.05822890251874924, -0.009749754332005978, -0.00639647850766778, -0.03905521705746651, -0.05004143342375755, -0.03750785067677498, -0.029750827699899673, -0.010672598145902157, 0.03298092260956764, 0.035713955760002136, 0.021375805139541626, 0.014119702391326427, -0.03537546843290329, 0.08626938611268997, 0.02246922254562378, -0.03921591490507126, -0.026021713390946388, -0.04687168821692467, 0.009598893113434315, 0.06095104664564133, -0.0082338722422719, 0.016595708206295967, 0.025121882557868958, -0.03984822705388069, -0.027581587433815002, -0.007498023100197315, -0.09877849370241165, -0.07694312185049057, -0.321969598531723, -0.0022084638476371765, 0.001794339157640934, -0.008566812612116337, 0.05729156732559204, -0.05489466339349747, -0.0032034621108323336, -0.022804591804742813, 0.035548530519008636, -0.039073407649993896, -0.027784282341599464, -0.06619544327259064, 0.015573983080685139, 0.027188671752810478, -0.009220752865076065, 0.0371767096221447, -0.05419272184371948, 0.002594077493995428, 0.032575272023677826, 0.05192806199193001, -0.0014451142633333802, 0.09223484247922897, -0.007335920352488756, -0.040214188396930695, -0.050813667476177216, 0.04539614915847778, 0.15603864192962646, 0.05453585460782051, 0.03286130353808403, 0.010221438482403755, -0.001916309236548841, 0.06830362230539322, -0.052533555775880814, -0.08691439777612686, 0.032092511653900146, 0.03297429159283638, -0.03169144317507744, 0.052378419786691666, -0.0028497790917754173, 0.021771319210529327, -0.0023116914089769125, 0.06504711508750916, -0.01841057650744915, -0.0024506794288754463, -0.03149397671222687, 0.02947731502354145, 0.020432796329259872, -0.012154336087405682, -0.016617409884929657, 0.019670823588967323, -0.02953040413558483, 0.04491806775331497, -0.029935114085674286, -0.023680079728364944, 0.019825266674160957, 0.02771809883415699, -0.07844282686710358, -0.01152106560766697, -0.03655686601996422, 0.018235061317682266, -0.009694471955299377, -0.009408250451087952, 0.039626795798540115, -0.04149647802114487, -0.050498269498348236, 0.023213542997837067, 0.029515456408262253, 0.0014721554471179843, 0.009562584571540356, 0.004036776255816221, -0.025130044668912888, 0.058228325098752975, -0.0024110544472932816, -0.07148207724094391, 0.01448769774287939, 0.040139392018318176, 0.01222823467105627, -0.00969416368752718, -0.0060199592262506485, 0.01141444407403469, -0.007294232491403818, -0.024360416457057, -0.0024454903323203325, -0.020261911675333977, -0.027660226449370384, 0.060806240886449814, -0.0003149574331473559, -0.04912152886390686, 0.04537764936685562, -0.05887479707598686, -0.03274259716272354, 0.0004335950070526451, -0.021064860746264458, -0.004406938795000315, 0.043904997408390045, 0.031362466514110565, -0.2642896771430969, 0.05528160557150841, 0.006000902038067579, 0.05301349610090256, 0.001985311508178711, 0.06646627187728882, -0.0008351331343874335, 0.005702555179595947, -0.05561590939760208, 0.006766834296286106, 0.043287765234708786, -0.011829469352960587, -0.03415493294596672, -0.027159400284290314, -0.046468570828437805, 0.013570601120591164, 0.05942317843437195, 3.2742434996180236e-05, -0.041039738804101944, 0.058435358107089996, 0.0262867771089077, 0.06491325795650482, 0.1461937576532364, 0.009535706602036953, -0.07363618165254593, -0.04512331634759903, 0.03479389473795891, 0.010038799606263638, -0.017794396728277206, 0.044325657188892365, -0.02147565968334675, 0.04359658807516098, -0.0006391503848135471, -0.0027281411457806826, -0.0017481476534157991, -0.05087152495980263, -0.00912376306951046, 0.012881431728601456, 0.11938103288412094, 0.0007041663047857583, -0.0302421972155571, -0.0006316612125374377, 0.025389915332198143, -0.005150963552296162, 0.018479125574231148, 0.05871038883924484, 0.021012457087635994, -0.05998695641756058, -0.06841837614774704, 0.0016657013911753893, -0.03674103319644928, -0.0010074012679979205, 0.043822869658470154, -0.006614263169467449, 0.03329724818468094, -0.025326361879706383, -0.03556853532791138, 0.016413632780313492, 0.04457508772611618, -0.010410194285213947, -0.05070275813341141, -0.012621977366507053, 0.09714920073747635, 0.023609843105077744, -0.033591169863939285], "0f046a91-5659-484d-ad56-297dc6449f54": [-0.10479404032230377, 0.03184755519032478, 0.06759598106145859, 0.06480225920677185, 0.012089326046407223, 0.03519748896360397, 0.0403364859521389, -0.02444927953183651, 0.026660675182938576, -0.018622059375047684, -0.012466080486774445, 0.0005966658936813474, -0.05263303592801094, -0.022260358557105064, -0.029973704367876053, 0.04090213403105736, -0.010066810064017773, -0.0645468458533287, -0.1298297643661499, 0.053611259907484055, 0.023505443707108498, -0.044277165085077286, 0.022498389706015587, 0.05049088969826698, -0.021522527560591698, 0.019787471741437912, -0.0016056534368544817, -0.05515462905168533, -0.03634566441178322, -0.14171408116817474, -0.01535501703619957, 0.01458843145519495, 0.0016549115534871817, -0.015144282951951027, 0.018111638724803925, 0.08013509213924408, 0.01774316281080246, 0.05505545437335968, -0.011556887999176979, -0.005540952552109957, 0.021630048751831055, -0.029203912243247032, -0.017374292016029358, -0.04677877202630043, 0.08891960233449936, -0.03705975040793419, 0.015334556810557842, -0.025224434211850166, 0.012430772185325623, -0.00221785600297153, -0.05892796069383621, -0.021328162401914597, -0.01961796171963215, -0.030847899615764618, -0.0013224442955106497, 0.03555694967508316, 0.01896231807768345, -0.009238708764314651, 0.0919870063662529, 0.011976750567555428, 0.02632160484790802, 0.010892985388636589, -0.08891476690769196, 0.050447531044483185, 0.02010352537035942, 0.013880726881325245, -0.06498736143112183, 0.004704643040895462, 0.003900789190083742, 0.084834024310112, -0.042735256254673004, 0.0030343837570399046, 0.0015132002299651504, 0.036729201674461365, 0.0019048500107601285, 0.047548532485961914, 0.056317854672670364, 0.010292019695043564, 0.07901819795370102, 0.01613200455904007, -0.07079289853572845, 0.0053908429108560085, -0.039678409695625305, 0.03732411935925484, -0.027462737634778023, -0.047259461134672165, -0.031373199075460434, -0.016910288482904434, -0.03184938430786133, -0.021120315417647362, 0.055826179683208466, -0.05491303279995918, -0.01049887016415596, -0.00968857854604721, -0.02465030923485756, -0.03311479464173317, -0.037596020847558975, 0.004713013768196106, 0.018312746658921242, 0.39536362886428833, 0.05601705238223076, 0.05192733183503151, 0.0015012018848210573, 0.02121010050177574, -0.02205720916390419, -0.04923564940690994, 0.03658640757203102, -0.09063977748155594, 0.027601268142461777, 0.024801025167107582, 0.0332217775285244, -0.04217301309108734, 0.08696139603853226, 0.008832384832203388, 0.05828991159796715, 0.021230371668934822, 0.04577288776636124, -0.02141641080379486, -0.03264349699020386, 0.030981115996837616, -0.000983797712251544, 0.019743911921977997, -0.026646580547094345, -0.08322593569755554, -0.012991756200790405, -0.011963428929448128, 0.05319720879197121, 0.06968410313129425, 0.003383207367733121, -0.06566821783781052, 0.026678914204239845, -0.03482571244239807, 0.024836953729391098, 0.04738711938261986, 0.0026513065677136183, 0.017343156039714813, 0.02361386828124523, -0.0052604456432163715, 0.06702020764350891, -0.05417698994278908, -0.027075713500380516, -0.1123732328414917, -0.04795143008232117, 0.006295443512499332, -0.015577655285596848, 0.0076957521960139275, 0.05677635967731476, 0.004235226660966873, 0.03228369355201721, 0.10372522473335266, 0.06248331442475319, 0.010455210693180561, -0.031528644263744354, -0.03851163759827614, -0.0013627659063786268, -0.028658870607614517, 0.01943831332027912, 0.12544198334217072, 0.022052166983485222, -0.008524522185325623, 0.07969270646572113, -0.023795509710907936, 0.024866268038749695, -0.013628699816763401, -0.012456272728741169, -0.001523744547739625, -0.03229282423853874, -0.06836254894733429, -0.022037552669644356, -0.05445823818445206, 0.05696696415543556, 0.018859002739191055, -0.10123404860496521, 0.03910127282142639, -0.005375728942453861, -0.02936302311718464, 0.016321204602718353, -0.029084859415888786, -0.001620566239580512, 0.017218539491295815, -0.04635901004076004, -0.05361776426434517, 0.009233880788087845, 0.034229837357997894, -0.010636492632329464, -0.04708002507686615, 0.024622539058327675, -0.006288859527558088, 0.02244587056338787, -0.03331318870186806, 0.05007931590080261, 0.028732366859912872, -0.026064740493893623, 0.04738965258002281, -0.07063273340463638, -0.07466765493154526, -0.009172801859676838, -0.0013928512344136834, -0.06762245297431946, -0.013011463917791843, -0.019914750009775162, -0.004561878740787506, -0.03877146542072296, 0.047705356031656265, 0.042236730456352234, 0.021018343046307564, 0.006187619175761938, -0.0395447202026844, 0.08675090968608856, 0.027717484161257744, -0.002564491704106331, -0.05303429067134857, 0.017553886398673058, 0.027311773970723152, -0.022121936082839966, 0.015628648921847343, -0.008425451815128326, 0.010386724956333637, -0.027256760746240616, 0.012472476810216904, 0.007368342485278845, -0.12575861811637878, -0.06144484505057335, -0.32911884784698486, -0.014685525558888912, -0.020942823961377144, -0.04517382010817528, 0.03852011635899544, -0.058612458407878876, 0.026882722973823547, -0.03719090670347214, 0.0019942885264754295, -0.018245672807097435, -0.012294940650463104, -0.05777888745069504, 0.017751537263393402, 0.02352139540016651, 0.0013171284226700664, 0.06540456414222717, -0.05830325186252594, 0.016343554481863976, 0.03289366513490677, 0.038915958255529404, 0.02054300345480442, -0.009019746445119381, -0.014947057701647282, -0.06763777881860733, -0.04798271879553795, 0.040165748447179794, 0.1800064742565155, 0.06142805516719818, 0.01629525050520897, 0.014286111108958721, 0.013314701616764069, 0.05638646334409714, -0.03541908785700798, -0.0505811981856823, 0.025974711403250694, 0.013383431360125542, 0.001968314405530691, 0.01215666625648737, 0.005596342962235212, 0.011033096350729465, -0.047045353800058365, 0.07273294776678085, -0.010173005051910877, 0.015296644531190395, -0.0304619949311018, -0.010400236584246159, -0.061199892312288284, -0.017108051106333733, 0.004606748931109905, 0.04544958472251892, -0.010866978205740452, 0.04303674027323723, -0.05156026780605316, -0.026068992912769318, 0.03142985701560974, -0.018822696059942245, -0.089260533452034, -0.02888866886496544, -0.047195423394441605, 0.07083888351917267, -0.021354680880904198, 0.010015669278800488, -0.011317925527691841, -0.05102662742137909, -0.03261523321270943, 0.02797129936516285, 0.0047085159458220005, -0.028123140335083008, 0.006885820534080267, 0.015151931904256344, -0.03621571138501167, 0.06394940614700317, -0.008410811424255371, -0.0684228390455246, 0.03562469780445099, 0.033834099769592285, 0.03371699899435043, -0.011002988554537296, -0.06209206581115723, -0.006679918151348829, 0.0039105769246816635, -0.031070569530129433, 0.006759846583008766, -0.0003738336090464145, -0.03305437043309212, 0.00637851981446147, 0.007860417477786541, -0.014870201237499714, 0.04124879464507103, 0.001640045433305204, -0.037040844559669495, 0.03242778405547142, -0.03769054263830185, 0.005156715400516987, 0.0292035099118948, -0.028352227061986923, -0.23476731777191162, 0.022352663800120354, 0.0044028786942362785, 0.03476123884320259, 0.027264507487416267, 0.04866495355963707, 0.01204071007668972, 0.018232407048344612, -0.03704212233424187, 0.019272400066256523, 0.029309865087270737, -0.02095256932079792, 0.009521691128611565, 0.005036881193518639, -0.02962702140212059, -0.013666556216776371, 0.06453747302293777, 0.0209686066955328, -0.007072563283145428, 0.043983254581689835, 0.009722169488668442, 0.05815935879945755, 0.10564478486776352, 0.07376265525817871, -0.045255862176418304, -0.06575432419776917, -0.020320365205407143, 0.03425463289022446, -0.006157806143164635, 0.05661720037460327, -0.01549568958580494, 0.05488388612866402, -0.0020815804600715637, 0.034228112548589706, 0.01331851352006197, -0.05330347642302513, -0.012257029302418232, 0.042121581733226776, 0.10598775744438171, 0.016007497906684875, -0.021548530086874962, -0.005337894894182682, 0.02605554834008217, -0.02563527785241604, 0.04474128782749176, 0.04307623207569122, 0.032114703208208084, -0.016987884417176247, -0.09383108466863632, 0.022752778604626656, -0.033217672258615494, 6.0834794567199424e-05, 0.015744918957352638, 0.006439328659325838, 0.031225217506289482, 0.011484957300126553, -0.06118141859769821, 0.0006588518153876066, 0.05222821235656738, -0.0053253197111189365, -0.0385766439139843, -0.0356929637491703, 0.086482934653759, 0.003103553084656596, -0.021178951486945152], "2726c3b9-8887-45df-8af5-b304ca532ff0": [-0.05165494978427887, -0.03344733640551567, 0.10412828624248505, 0.09440325945615768, 0.0237237848341465, 0.04408653825521469, 0.011048360727727413, -0.035102758556604385, -0.0500437393784523, -0.013770847581326962, -0.0014204764738678932, 0.004089832305908203, -0.010520309209823608, -0.015546685084700584, -0.004474747460335493, 0.030699945986270905, 0.003616182366386056, -0.02111155539751053, -0.14543479681015015, 0.03584892302751541, -0.030356477946043015, -0.021612588316202164, 0.03637740761041641, 0.04709118977189064, -0.06427497416734695, 0.05577363446354866, 0.03073098696768284, -0.009904798120260239, -0.026601260527968407, -0.10837434977293015, 0.01882871985435486, 0.026873983442783356, -0.014302119612693787, -0.01808197610080242, -0.020441686734557152, 0.07277481257915497, 0.03562260419130325, 0.04833536222577095, -0.004702381789684296, 0.01222854945808649, 0.03768490254878998, -0.054217737168073654, -0.013714637607336044, -0.028161795809864998, 0.04527226835489273, -0.05942973867058754, 0.0048618009313941, 0.0016306681791320443, 0.001960162306204438, -0.02745329961180687, -0.07944627851247787, -0.02773495763540268, -0.032852109521627426, 0.006786812096834183, -0.030202072113752365, 0.05889204144477844, 0.010641594417393208, 0.006527815945446491, 0.0914168432354927, 0.009131415747106075, 0.054594073444604874, 0.06658860296010971, -0.039518341422080994, 0.05967947468161583, 0.04005260765552521, 0.02639218606054783, -0.06607618927955627, -0.0844784528017044, 0.044719111174345016, 0.049100834876298904, -0.02475043758749962, 0.04024364426732063, 0.012210477143526077, 0.03163011744618416, 0.012782328762114048, 0.04715460538864136, 0.04893968626856804, 0.024278705939650536, 0.02381056547164917, 0.028883716091513634, -0.08110553026199341, 0.020541531965136528, -0.02201053313910961, 0.03549303486943245, 0.02374359965324402, 0.008701512590050697, 0.009794427081942558, -0.04075777158141136, -0.07192718237638474, 0.012750117108225822, -0.022007619962096214, -0.05976712331175804, -0.04899584874510765, -0.024735473096370697, 0.0067657544277608395, -0.015066095627844334, -0.030154220759868622, 0.024906687438488007, 0.038961153477430344, 0.30381283164024353, 0.05001816526055336, -0.009755018167197704, 0.028432000428438187, 0.005133091937750578, -0.06139395385980606, 0.010968251153826714, 8.819966024020687e-05, -0.05349979177117348, 0.01039341650903225, 0.05390877649188042, -0.01011745911091566, -0.05720433592796326, 0.03946932777762413, 0.004604103974997997, 0.03711703419685364, -0.00429866649210453, 0.027526963502168655, -0.009812787175178528, -0.02162242867052555, -0.005425496958196163, 0.026984743773937225, 0.018952256068587303, -0.06390433758497238, -0.06434231996536255, 0.02366115339100361, 0.05868145078420639, 0.10744907706975937, 0.062432724982500076, 9.298024815507233e-05, -0.037884000688791275, 0.03572468087077141, -0.020490312948822975, 0.046939220279455185, 0.03834390640258789, 0.010204531252384186, 0.022836759686470032, -0.016438212245702744, -0.0399341844022274, 0.06543619930744171, -0.06934066861867905, -0.00901737716048956, -0.12653501331806183, -0.026005588471889496, -0.012619689106941223, -0.009960309602320194, 0.023416010662913322, 0.06888110935688019, 0.005989694502204657, 0.032046061009168625, 0.07467778772115707, 0.042012378573417664, 0.03835928067564964, -0.024273227900266647, -0.0007013925933279097, 0.03182348981499672, 0.008754964917898178, -0.016432369127869606, 0.16945119202136993, 0.07793620973825455, 0.014372973702847958, 0.06975840777158737, -0.048034802079200745, 0.03407888859510422, -0.024790238589048386, 0.0011954688234254718, -0.016979500651359558, -0.020565757527947426, -0.03356653079390526, -0.04256202280521393, -0.0034864807967096567, 0.04559413716197014, 0.02681979164481163, -0.09526406973600388, 0.0419141985476017, -0.03006623685359955, -0.02658669836819172, -0.013744320720434189, 0.01219745073467493, -0.02840973250567913, -0.02579399384558201, -0.039208441972732544, -0.06946912407875061, -0.002954289549961686, 0.08573984354734421, -0.05748971179127693, -0.048229049891233444, 0.03496818616986275, -0.03657419979572296, -0.022844700142741203, -0.04531686007976532, 0.09746439754962921, 0.05154917761683464, -0.038276415318250656, 0.004683937411755323, -0.01843363232910633, -0.06916829198598862, 0.008593692444264889, -0.03313745558261871, -0.05423032119870186, -0.01534651406109333, -0.045503512024879456, -0.03688069432973862, -0.10626775771379471, 0.01620534248650074, 0.019798940047621727, -0.007025253493338823, 0.024637069553136826, -0.00877982284873724, 0.10485053062438965, -0.002384222811087966, 0.023430872708559036, -0.014896310865879059, 0.03131994605064392, -0.00018013933731708676, -0.04902760684490204, -0.015417599119246006, -0.05643396079540253, 0.010436411015689373, -0.013130172155797482, 0.026583904400467873, 0.00764540396630764, -0.12588654458522797, -0.056432753801345825, -0.30287477374076843, -0.022469446063041687, -0.02315337583422661, -0.06137510761618614, 0.031158918514847755, -0.08357361704111099, -0.03702496737241745, -0.022667502984404564, 0.05409076437354088, -0.06885194033384323, 0.042603686451911926, -0.047675542533397675, 0.0027387887239456177, 0.06414948403835297, -0.024741388857364655, -0.0007722090813331306, -0.023699898272752762, 0.022542908787727356, 0.059284504503011703, 0.04323156923055649, -0.002107673790305853, -0.00021044962340965867, 0.038521088659763336, -0.04642936587333679, -0.04109301418066025, 0.02053266577422619, 0.16540321707725525, 0.020400868728756905, 0.05121258646249771, -0.020799802616238594, -0.0018511551897972822, -0.0024483276065438986, 0.0032251018565148115, -0.03221455216407776, 0.020458506420254707, 0.08058946579694748, 0.06652262806892395, 0.026189470663666725, 0.03237958997488022, -0.040550682693719864, -0.04701603949069977, 0.08277851343154907, -0.021294530481100082, -0.031242752447724342, -0.05097414180636406, 0.03308819606900215, -0.04074506834149361, 0.02438049390912056, 0.027639398351311684, 0.02788534015417099, -0.006310224067419767, 0.020910266786813736, -0.04940929636359215, -0.04844356328248978, -0.022653397172689438, -0.009440810419619083, -0.05217479169368744, -0.00786201935261488, -0.054764728993177414, 0.1016479954123497, -0.012699530459940434, -0.013766794465482235, 0.02513440139591694, -0.0932239443063736, -0.0032254529651254416, -0.01778149977326393, -0.0018777092918753624, -0.024792363867163658, 0.013190511614084244, 0.009709064848721027, -0.03987552598118782, 0.02785298228263855, -0.010861649177968502, -0.03297992795705795, 0.060117024928331375, -0.01866905763745308, 0.000598764221649617, 0.025469306856393814, -0.0172361359000206, 0.014608537778258324, 0.02382509410381317, -0.02617357112467289, -0.046173304319381714, 0.006204579491168261, -0.03677599877119064, 0.0036273961886763573, 0.022964930161833763, -0.06440702825784683, 0.029161807149648666, -0.004248263780027628, -0.049705084413290024, 0.04112566262483597, -0.05512150749564171, 0.03665933012962341, 0.028307827189564705, -0.0028633014298975468, -0.2576417326927185, -0.002494160318747163, -0.0368289016187191, 0.045670412480831146, -0.003561376826837659, 0.022920163348317146, 0.011329003609716892, 0.011233529075980186, -0.006897121202200651, -0.026086125522851944, 0.07655665278434753, -0.028525708243250847, 0.026194095611572266, 0.05042543634772301, -0.008084683679044247, 0.02653561159968376, -0.0020360033959150314, 0.03957560658454895, -0.0887494906783104, -0.007619188632816076, -0.006854524835944176, 0.08595454692840576, 0.14124171435832977, 0.05559775233268738, -0.07512645423412323, -0.03521626070141792, -0.024524595588445663, 0.06698709726333618, -0.01184903271496296, 0.04358341917395592, -0.024696098640561104, 0.04302027449011803, -0.0036464559379965067, 0.01733865775167942, -0.023293854668736458, -0.061839427798986435, -0.021440427750349045, 0.032153770327568054, 0.09633498638868332, -0.021591508761048317, -0.006719348020851612, 0.027765441685914993, 0.01905703917145729, 0.011278845369815826, 0.060249123722314835, 0.03207825496792793, 0.05780693143606186, 0.038485221564769745, -0.0868312194943428, 0.02702583372592926, -0.026505189016461372, -0.006135905161499977, 0.026028290390968323, -0.024644000455737114, 0.046997811645269394, -0.022936565801501274, -0.0027800570242106915, 0.014248046092689037, -0.009060473181307316, -0.04964018240571022, -0.01025417447090149, -0.04705627262592316, 0.04421016946434975, -0.018497062847018242, 0.014990611001849174], "97904648-eda4-4b05-947f-8013c724cbd7": [-0.08317215740680695, 0.005342468153685331, 0.07025112211704254, 0.05615103617310524, -0.02667379193007946, 0.007329364772886038, -0.047774288803339005, -0.015916312113404274, -0.04949143901467323, -0.03171202540397644, 0.03258847817778587, 0.006362976040691137, -0.027084145694971085, -0.02118268609046936, -0.03768458217382431, 0.05211540684103966, 0.013319902122020721, 0.005240783095359802, -0.11282820999622345, 0.03214125335216522, 0.019031619653105736, -0.08522801101207733, 0.015791183337569237, 0.012718159705400467, -0.013605328276753426, 0.05419677123427391, -0.02578108198940754, -0.017252525314688683, -0.029287369921803474, -0.13018593192100525, 1.9997754861833528e-05, 0.0309564508497715, -0.02955061011016369, -0.011963726952672005, -0.0002357477933401242, 0.031046172603964806, 0.04907224699854851, 0.05988873168826103, -0.02664870209991932, 0.018721699714660645, 0.0023575639352202415, -0.021180758252739906, -0.02289409190416336, 0.02454773336648941, 0.059772901237010956, -0.01693897508084774, -0.012940451502799988, -0.025881029665470123, 0.03135304152965546, -0.02109401300549507, -0.0530213788151741, -0.008681122213602066, -0.02318619005382061, 0.019577011466026306, -0.040947701781988144, 0.09739227592945099, 0.04149801656603813, -0.0008016435313038528, 0.02623191475868225, -0.0029456880874931812, 0.06375419348478317, 0.049822527915239334, -0.10093370079994202, 0.04169464111328125, 0.03690135106444359, 0.04631219804286957, -0.0641438364982605, -0.03595614805817604, 0.02492908574640751, 0.03801179677248001, -0.06233610212802887, -0.007742439396679401, 0.00382990762591362, 0.04184674099087715, -0.0016544356476515532, 0.01298918854445219, 0.042308975011110306, -0.0036378621589392424, -0.031932536512613297, 0.026676950976252556, -0.0918588638305664, 0.04103313386440277, 0.007189090363681316, 0.06595166772603989, 0.000785438809543848, -0.014831584878265858, 0.037132155150175095, -0.08517391979694366, -0.020206032320857048, 0.0075910659506917, -0.03873879462480545, -0.06372617930173874, -0.0067409309558570385, -0.0036492382641881704, -0.04131030663847923, 0.012005196884274483, -0.04594828560948372, 0.022219810634851456, 0.08085811138153076, 0.43233850598335266, -0.036013923585414886, 0.04127506539225578, 0.04524613544344902, -0.014372777193784714, -0.0570325069129467, 0.024401668459177017, -0.0009710795129649341, -0.0497276708483696, -0.02053728699684143, -0.005907000042498112, -0.013134989887475967, -0.04480384662747383, -0.005877838935703039, 0.006620726082473993, 0.055032841861248016, -0.012168364599347115, 0.009966026060283184, -0.008291431702673435, 0.021853990852832794, 0.029821641743183136, 0.02468353696167469, 0.0006544470088556409, -0.026328105479478836, -0.05313010886311531, 0.0016596250934526324, -0.025836890563368797, 0.06696964800357819, 0.043811067938804626, -0.015950486063957214, -0.0430120974779129, 0.020457712933421135, 0.0008811565348878503, 0.018158189952373505, 0.02380238100886345, 0.021267052739858627, -0.010537909343838692, 0.004188851453363895, -0.04506103694438934, 0.058180078864097595, -0.08304750174283981, -0.0068755606189370155, -0.10398922115564346, -0.05388369783759117, 0.0022719595581293106, -0.03602933883666992, 0.07036496698856354, 0.10245633870363235, 0.02582540176808834, 0.05678442120552063, 0.07236607372760773, 0.03526841476559639, 0.09151805192232132, -0.026500297710299492, -0.03912971913814545, 0.041736822575330734, 0.018051739782094955, 0.04836612194776535, 0.11809559911489487, -0.009878885000944138, 0.0007494070450775325, 0.047554269433021545, -0.03320976719260216, 0.011889873072504997, -0.001172521966509521, -0.02218390814960003, -0.02272360399365425, 0.031146876513957977, -0.004747579339891672, 0.01314400602132082, 0.0198915246874094, 0.051030199974775314, -0.004830181133002043, -0.03702608495950699, 0.046930402517318726, 0.02536550536751747, -0.009228558279573917, 0.02631036937236786, -0.003959461115300655, 0.005003123078495264, 0.037508055567741394, -0.04130100458860397, -0.04875658079981804, 0.0037337294779717922, 0.06185844913125038, -0.040740374475717545, -0.04086046665906906, 0.03963229060173035, -0.023163555189967155, 0.02266261912882328, -0.01564854197204113, 0.058949064463377, 0.015240364708006382, -0.01983649469912052, 0.02198793739080429, -0.004632258787751198, -0.069207102060318, -0.010493962094187737, -0.027271071448922157, -0.059679847210645676, -0.0078111859038472176, -0.04943963140249252, -0.0014599170535802841, -0.08430600166320801, 0.0011814582394436002, -0.018456686288118362, 0.006995281670242548, 0.08490060269832611, -0.03274993970990181, 0.10707376152276993, 0.00687763188034296, -0.024174656718969345, -0.007981555536389351, 0.004559735767543316, -0.004992478061467409, -0.02156822197139263, -0.011543397791683674, -0.01306147314608097, 0.024954769760370255, 0.0030013478826731443, 0.01176207885146141, -0.04777787998318672, -0.13527192175388336, -0.054836712777614594, -0.29295048117637634, 0.0009278712677769363, -0.06333794444799423, -0.07053382694721222, -0.007439112290740013, -0.08392450213432312, 0.000991996843367815, -0.01637013629078865, 0.04153696075081825, -0.02102472260594368, 0.025144781917333603, -0.06480205804109573, -0.002446885220706463, 0.022569142282009125, -0.0023501424584537745, -0.018243419006466866, -0.013896772637963295, -0.022930895909667015, 0.002779847476631403, 0.04857510328292847, -0.00963433738797903, 0.005013533402234316, -0.02550315298140049, -0.044179219752550125, -0.016355397179722786, 0.013173854909837246, 0.12543167173862457, 0.05582646280527115, 0.01998402550816536, -0.028995564207434654, -0.013238374143838882, 0.035265110433101654, -0.005282883532345295, -0.04769517108798027, 0.0022397704888135195, 0.034577641636133194, -0.008285054005682468, -0.0041492655873298645, 0.0005937854293733835, -0.013688567094504833, -0.05726943165063858, 0.0791860818862915, -0.004637337755411863, 0.001019184128381312, -0.0327749028801918, -0.010880297049880028, 0.023141799494624138, 0.004278284497559071, 0.037413835525512695, 0.04404143989086151, -0.019617959856987, -0.04324127733707428, -0.04726777970790863, -0.05478948354721069, 0.018067847937345505, 0.021186958998441696, -0.03190494328737259, 0.02299991063773632, -0.06802619248628616, 0.045483898371458054, -0.0341031551361084, -0.006926832254976034, 0.028383975848555565, -0.06569325923919678, -0.00951426662504673, -0.01713378354907036, 0.007796204183250666, -0.03934846073389053, -0.00820996891707182, -0.038298364728689194, -0.021925562992691994, 0.01672404631972313, -0.08230786770582199, -0.05692217871546745, 0.036958061158657074, 0.039451245218515396, 0.00727872597053647, 0.020245948806405067, -0.0394129753112793, 0.009441354312002659, 0.005748871248215437, -0.05847286060452461, -0.025453977286815643, 0.05155720189213753, -0.027907628566026688, -0.0019720671698451042, -0.027626454830169678, -0.03910860791802406, 0.008612546138465405, -0.025605279952287674, -0.05546673759818077, 0.018775714561343193, -0.009937259368598461, 0.017230447381734848, 0.05028853565454483, 0.04755343496799469, -0.2604581117630005, 0.023160483688116074, -0.040294572710990906, 0.043914731591939926, 0.04779818281531334, 0.058834198862314224, 0.0363018736243248, 0.01935749314725399, 0.06625212728977203, 0.014327985234558582, 0.07025802880525589, 0.00833108276128769, 0.06696920841932297, -0.019475053995847702, -0.03115309216082096, 0.055219508707523346, 0.005752918776124716, 0.07115095853805542, -0.012269195169210434, 0.03792329505085945, 0.027898263186216354, 0.07065271586179733, 0.11493194103240967, 0.0853126049041748, -0.11285852640867233, -0.015725048258900642, -0.018111921846866608, 0.03531385958194733, 0.015705600380897522, 0.028620490804314613, -0.021379299461841583, 0.05606827884912491, 0.02262505516409874, 0.047634683549404144, 0.029435154050588608, -0.051070764660835266, -0.035235293209552765, 0.022451326251029968, 0.055122844874858856, -0.024366240948438644, -0.01199512928724289, 0.010840712115168571, -0.006700363475829363, 0.010120706632733345, 0.06779167801141739, 0.03697238117456436, -0.019180672243237495, 0.004028799012303352, -0.11091484874486923, 0.004422411322593689, -0.019347812980413437, 0.0060362499207258224, 0.009845585562288761, -0.015586250461637974, 0.030318789184093475, 0.012961587868630886, -0.027077222242951393, 0.012108411639928818, -0.0113074304535985, -0.035238515585660934, -0.02159472368657589, 0.039954204112291336, 0.07735472917556763, 0.022865965962409973, 0.021072329953312874]}, "text_id_to_ref_doc_id": {"2c486807-00fb-455e-a12b-d3785b3775a6": "6719012a-2e00-4899-8155-f76f13498640", "4c27fcde-4cfa-478f-93f8-11e29b973e5c": "6719012a-2e00-4899-8155-f76f13498640", "8c55f38d-fcd4-4e9d-b108-83965b3dd7f8": "6719012a-2e00-4899-8155-f76f13498640", "bb99a80b-7739-42ae-83b9-f993f4e68a8d": "6719012a-2e00-4899-8155-f76f13498640", "6ada6637-2304-4a9c-bd5e-9c1c1fa0b44b": "6719012a-2e00-4899-8155-f76f13498640", "160c8748-dc41-4bac-ab9f-8de97a0e3a14": "6719012a-2e00-4899-8155-f76f13498640", "c6677b6e-8cdd-4cf9-8fa5-30e37bf8efae": "6719012a-2e00-4899-8155-f76f13498640", "ee8665a9-0a40-4b77-b307-10438f99e061": "6719012a-2e00-4899-8155-f76f13498640", "4203f0ce-85fa-413d-9c3c-21a3198706b9": "6719012a-2e00-4899-8155-f76f13498640", "e0440273-311e-4c23-ab1b-e60c6869591c": "6719012a-2e00-4899-8155-f76f13498640", "b28e90df-47fc-4443-90bb-fb148f26137a": "6719012a-2e00-4899-8155-f76f13498640", "e6c9a6c4-3755-4f6c-926f-f3dcbda6ad7f": "6719012a-2e00-4899-8155-f76f13498640", "7cafdc7d-5b5b-4de9-9d10-c785f70d6ebf": "6719012a-2e00-4899-8155-f76f13498640", "c4665ae7-ffad-4ece-9aae-7bab82bf571e": "6719012a-2e00-4899-8155-f76f13498640", "f839fe67-453e-4385-a719-4f527a31f3b4": "6719012a-2e00-4899-8155-f76f13498640", "2a109748-864a-43e3-afb0-fbd276017f26": "6719012a-2e00-4899-8155-f76f13498640", "25041e74-2cb2-43c1-ae33-3a8d833bcb5d": "6719012a-2e00-4899-8155-f76f13498640", "b18627a3-d1da-495c-afee-5f0ac6c982f4": "6719012a-2e00-4899-8155-f76f13498640", "5c084f96-5468-4d47-9633-d651fdee2c06": "6719012a-2e00-4899-8155-f76f13498640", "1e10b962-1bf2-4135-9844-a8b37395269b": "6719012a-2e00-4899-8155-f76f13498640", "9c977b29-2b5e-4adb-ac39-8cd17e89d6a0": "6719012a-2e00-4899-8155-f76f13498640", "525f4ace-6468-4482-8704-b40282846811": "6719012a-2e00-4899-8155-f76f13498640", "11a31fba-c851-494f-888d-137034ec349b": "6719012a-2e00-4899-8155-f76f13498640", "0d0abb6b-626a-4c17-93ee-420c9623e6a1": "6719012a-2e00-4899-8155-f76f13498640", "82aa444e-5073-4b50-b902-1396d1d859c6": "6719012a-2e00-4899-8155-f76f13498640", "c21a250f-de9f-4e2d-b2e9-f026feac7b72": "6719012a-2e00-4899-8155-f76f13498640", "ca94437a-258d-4e48-b8c8-0aa25499e748": "6719012a-2e00-4899-8155-f76f13498640", "b086b9a1-6dc8-4a5a-a632-e779ebb3cf28": "6719012a-2e00-4899-8155-f76f13498640", "864dd49d-de1d-41da-8e10-5b39b130d97b": "6719012a-2e00-4899-8155-f76f13498640", "83db070a-a453-44c7-af9f-630b992bfc10": "6719012a-2e00-4899-8155-f76f13498640", "91082429-933a-44e2-ada6-494afaab7d5c": "6719012a-2e00-4899-8155-f76f13498640", "6ffdc1b6-485a-4391-884a-60cdcf9f6728": "6719012a-2e00-4899-8155-f76f13498640", "95dca97f-5aff-45ef-98fc-180a28d96776": "6719012a-2e00-4899-8155-f76f13498640", "a3ee7823-d883-4689-a3d3-16fee0d55a8e": "6719012a-2e00-4899-8155-f76f13498640", "e099c9b1-f180-495c-8a90-4acf0eed27f4": "6719012a-2e00-4899-8155-f76f13498640", "9a3f19c3-bc9a-461b-ac98-2cc578a9fed4": "6719012a-2e00-4899-8155-f76f13498640", "fcb9a991-6838-4188-84f5-e9c96fceec63": "6719012a-2e00-4899-8155-f76f13498640", "2f98b957-934d-4a85-896d-0632239404fb": "6719012a-2e00-4899-8155-f76f13498640", "ee0235fc-aab4-421e-a54d-615fc84de98f": "6719012a-2e00-4899-8155-f76f13498640", "6d3c8af5-02e0-4ea9-911a-c0877855bfdf": "6719012a-2e00-4899-8155-f76f13498640", "4d59b79a-1649-4503-be5a-caa5e698aae3": "6719012a-2e00-4899-8155-f76f13498640", "8ffeef58-0d8d-4981-8ede-39ab9a001f87": "6719012a-2e00-4899-8155-f76f13498640", "5939816d-45db-4a4e-8fc9-11359dea8dff": "6719012a-2e00-4899-8155-f76f13498640", "c83a7ea4-98db-4453-b5fa-96d9b1aa3309": "6719012a-2e00-4899-8155-f76f13498640", "d1a9c3a1-f823-4f70-a082-df0ea065abde": "6719012a-2e00-4899-8155-f76f13498640", "0be3a661-3a75-4ada-864a-d7d60fb0290d": "6719012a-2e00-4899-8155-f76f13498640", "2c5d4291-5db2-4e19-ad43-df69d548615f": "6719012a-2e00-4899-8155-f76f13498640", "1b06fee1-88bd-4071-bd33-b1f42ba88701": "6719012a-2e00-4899-8155-f76f13498640", "90855a3c-2335-412e-a6fc-77688c814dfa": "6719012a-2e00-4899-8155-f76f13498640", "ce04402a-6406-4e23-b72c-33e705b94d0b": "6719012a-2e00-4899-8155-f76f13498640", "975dd9b7-60dd-49a9-a498-e3c76eeefc22": "6719012a-2e00-4899-8155-f76f13498640", "2702477b-1b69-42a2-b623-483d4bdbf88f": "6719012a-2e00-4899-8155-f76f13498640", "b10dd663-a214-4daa-9b67-2060a3fca070": "6719012a-2e00-4899-8155-f76f13498640", "21fd3f20-774f-42f9-a359-d88d2641457f": "6719012a-2e00-4899-8155-f76f13498640", "bf2f865a-d8c4-4b15-90af-629ce3ac7eb9": "6719012a-2e00-4899-8155-f76f13498640", "7721ec01-3d3e-4c30-ae35-f93b645c25ef": "6719012a-2e00-4899-8155-f76f13498640", "9ee46feb-fde8-40c1-849b-2fe9e87f86c1": "6719012a-2e00-4899-8155-f76f13498640", "1f2a2fd1-9e1c-4f26-b9fd-498cea121509": "6719012a-2e00-4899-8155-f76f13498640", "8830bda2-9381-4980-9c33-4a2f3190533a": "6719012a-2e00-4899-8155-f76f13498640", "eb950247-a6b5-4546-a9be-143137d800a4": "6719012a-2e00-4899-8155-f76f13498640", "73cf0f78-2e8e-42d1-8492-894bcbec71b6": "6719012a-2e00-4899-8155-f76f13498640", "65ef8204-7330-4f00-877d-4c3a97de50f5": "6719012a-2e00-4899-8155-f76f13498640", "70f69635-07dd-4453-baac-747e5ba5aeab": "6719012a-2e00-4899-8155-f76f13498640", "26300e13-b5ca-4453-8d34-4d487299fd45": "6719012a-2e00-4899-8155-f76f13498640", "262fe5ab-ef9e-4f15-a98b-6f707b92fb93": "6719012a-2e00-4899-8155-f76f13498640", "2d1d4e9c-d20b-4ffc-b560-99d0ea4b096a": "6719012a-2e00-4899-8155-f76f13498640", "6757402d-4af3-4fec-b8a4-569720149968": "6719012a-2e00-4899-8155-f76f13498640", "20270017-a10d-461e-988d-d9531cd85e33": "6719012a-2e00-4899-8155-f76f13498640", "8e7992c9-10c1-433f-bc40-1777dc777556": "6719012a-2e00-4899-8155-f76f13498640", "49f10e08-48b5-4add-8b05-0ce338db73f6": "6719012a-2e00-4899-8155-f76f13498640", "06b01d70-77ec-4d19-bf36-9e0831baccb4": "6719012a-2e00-4899-8155-f76f13498640", "7c38af20-205c-4a4d-b88f-11df9d5b11fd": "6719012a-2e00-4899-8155-f76f13498640", "d14945b7-af8e-43d1-814e-34f5e2bb6a63": "6719012a-2e00-4899-8155-f76f13498640", "e2b2188d-34a2-46d9-b84c-e109d9bc99dc": "6719012a-2e00-4899-8155-f76f13498640", "6ed6df16-8cd9-485a-b293-597b90d1f230": "6719012a-2e00-4899-8155-f76f13498640", "9a90e271-1939-42eb-b961-b007ee6a7fd4": "6719012a-2e00-4899-8155-f76f13498640", "dffcd13c-ece5-48d4-8308-d285ea6765e7": "6719012a-2e00-4899-8155-f76f13498640", "80931e85-8d71-4f41-bafd-f14d003d6188": "6719012a-2e00-4899-8155-f76f13498640", "634afe95-7345-41ce-b03d-2c9de0763939": "6719012a-2e00-4899-8155-f76f13498640", "ae028f00-c1a7-411f-affb-cd644f26a898": "6719012a-2e00-4899-8155-f76f13498640", "222d0242-4459-4a03-abf3-c3853ca4fc2c": "6719012a-2e00-4899-8155-f76f13498640", "e6442ed4-3e7c-45d1-8a7d-e73382c83301": "6719012a-2e00-4899-8155-f76f13498640", "a33cd0f6-5e50-42ba-9bc0-b29bb479d51d": "6719012a-2e00-4899-8155-f76f13498640", "0ce65c33-74f8-4874-80c6-5b34e3efbd7e": "6719012a-2e00-4899-8155-f76f13498640", "def06a6a-09fd-4087-a67c-4a583ade7545": "6719012a-2e00-4899-8155-f76f13498640", "38d54015-192f-4202-8cae-e4463b050f7a": "6719012a-2e00-4899-8155-f76f13498640", "0f046a91-5659-484d-ad56-297dc6449f54": "6719012a-2e00-4899-8155-f76f13498640", "2726c3b9-8887-45df-8af5-b304ca532ff0": "6719012a-2e00-4899-8155-f76f13498640", "97904648-eda4-4b05-947f-8013c724cbd7": "6719012a-2e00-4899-8155-f76f13498640"}, "metadata_dict": {"2c486807-00fb-455e-a12b-d3785b3775a6": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "4c27fcde-4cfa-478f-93f8-11e29b973e5c": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "8c55f38d-fcd4-4e9d-b108-83965b3dd7f8": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "bb99a80b-7739-42ae-83b9-f993f4e68a8d": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "6ada6637-2304-4a9c-bd5e-9c1c1fa0b44b": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "160c8748-dc41-4bac-ab9f-8de97a0e3a14": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "c6677b6e-8cdd-4cf9-8fa5-30e37bf8efae": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "ee8665a9-0a40-4b77-b307-10438f99e061": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "4203f0ce-85fa-413d-9c3c-21a3198706b9": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "e0440273-311e-4c23-ab1b-e60c6869591c": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "b28e90df-47fc-4443-90bb-fb148f26137a": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "e6c9a6c4-3755-4f6c-926f-f3dcbda6ad7f": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "7cafdc7d-5b5b-4de9-9d10-c785f70d6ebf": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "c4665ae7-ffad-4ece-9aae-7bab82bf571e": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "f839fe67-453e-4385-a719-4f527a31f3b4": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "2a109748-864a-43e3-afb0-fbd276017f26": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "25041e74-2cb2-43c1-ae33-3a8d833bcb5d": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "b18627a3-d1da-495c-afee-5f0ac6c982f4": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "5c084f96-5468-4d47-9633-d651fdee2c06": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "1e10b962-1bf2-4135-9844-a8b37395269b": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "9c977b29-2b5e-4adb-ac39-8cd17e89d6a0": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "525f4ace-6468-4482-8704-b40282846811": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "11a31fba-c851-494f-888d-137034ec349b": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "0d0abb6b-626a-4c17-93ee-420c9623e6a1": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "82aa444e-5073-4b50-b902-1396d1d859c6": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "c21a250f-de9f-4e2d-b2e9-f026feac7b72": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "ca94437a-258d-4e48-b8c8-0aa25499e748": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "b086b9a1-6dc8-4a5a-a632-e779ebb3cf28": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "864dd49d-de1d-41da-8e10-5b39b130d97b": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "83db070a-a453-44c7-af9f-630b992bfc10": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "91082429-933a-44e2-ada6-494afaab7d5c": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "6ffdc1b6-485a-4391-884a-60cdcf9f6728": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "95dca97f-5aff-45ef-98fc-180a28d96776": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "a3ee7823-d883-4689-a3d3-16fee0d55a8e": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "e099c9b1-f180-495c-8a90-4acf0eed27f4": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "9a3f19c3-bc9a-461b-ac98-2cc578a9fed4": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "fcb9a991-6838-4188-84f5-e9c96fceec63": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "2f98b957-934d-4a85-896d-0632239404fb": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "ee0235fc-aab4-421e-a54d-615fc84de98f": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "6d3c8af5-02e0-4ea9-911a-c0877855bfdf": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "4d59b79a-1649-4503-be5a-caa5e698aae3": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "8ffeef58-0d8d-4981-8ede-39ab9a001f87": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "5939816d-45db-4a4e-8fc9-11359dea8dff": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "c83a7ea4-98db-4453-b5fa-96d9b1aa3309": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "d1a9c3a1-f823-4f70-a082-df0ea065abde": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "0be3a661-3a75-4ada-864a-d7d60fb0290d": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "2c5d4291-5db2-4e19-ad43-df69d548615f": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "1b06fee1-88bd-4071-bd33-b1f42ba88701": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "90855a3c-2335-412e-a6fc-77688c814dfa": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "ce04402a-6406-4e23-b72c-33e705b94d0b": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "975dd9b7-60dd-49a9-a498-e3c76eeefc22": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "2702477b-1b69-42a2-b623-483d4bdbf88f": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "b10dd663-a214-4daa-9b67-2060a3fca070": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "21fd3f20-774f-42f9-a359-d88d2641457f": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "bf2f865a-d8c4-4b15-90af-629ce3ac7eb9": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "7721ec01-3d3e-4c30-ae35-f93b645c25ef": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "9ee46feb-fde8-40c1-849b-2fe9e87f86c1": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "1f2a2fd1-9e1c-4f26-b9fd-498cea121509": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "8830bda2-9381-4980-9c33-4a2f3190533a": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "eb950247-a6b5-4546-a9be-143137d800a4": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "73cf0f78-2e8e-42d1-8492-894bcbec71b6": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "65ef8204-7330-4f00-877d-4c3a97de50f5": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "70f69635-07dd-4453-baac-747e5ba5aeab": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "26300e13-b5ca-4453-8d34-4d487299fd45": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "262fe5ab-ef9e-4f15-a98b-6f707b92fb93": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "2d1d4e9c-d20b-4ffc-b560-99d0ea4b096a": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "6757402d-4af3-4fec-b8a4-569720149968": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "20270017-a10d-461e-988d-d9531cd85e33": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "8e7992c9-10c1-433f-bc40-1777dc777556": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "49f10e08-48b5-4add-8b05-0ce338db73f6": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "06b01d70-77ec-4d19-bf36-9e0831baccb4": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "7c38af20-205c-4a4d-b88f-11df9d5b11fd": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "d14945b7-af8e-43d1-814e-34f5e2bb6a63": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "e2b2188d-34a2-46d9-b84c-e109d9bc99dc": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "6ed6df16-8cd9-485a-b293-597b90d1f230": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "9a90e271-1939-42eb-b961-b007ee6a7fd4": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "dffcd13c-ece5-48d4-8308-d285ea6765e7": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "80931e85-8d71-4f41-bafd-f14d003d6188": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "634afe95-7345-41ce-b03d-2c9de0763939": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "ae028f00-c1a7-411f-affb-cd644f26a898": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "222d0242-4459-4a03-abf3-c3853ca4fc2c": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "e6442ed4-3e7c-45d1-8a7d-e73382c83301": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "a33cd0f6-5e50-42ba-9bc0-b29bb479d51d": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "0ce65c33-74f8-4874-80c6-5b34e3efbd7e": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "def06a6a-09fd-4087-a67c-4a583ade7545": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "38d54015-192f-4202-8cae-e4463b050f7a": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "0f046a91-5659-484d-ad56-297dc6449f54": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "2726c3b9-8887-45df-8af5-b304ca532ff0": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "97904648-eda4-4b05-947f-8013c724cbd7": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26", "_node_type": "TextNode", "document_id": "6719012a-2e00-4899-8155-f76f13498640", "doc_id": "6719012a-2e00-4899-8155-f76f13498640", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}}} \ No newline at end of file diff --git a/src/store/docstore.json b/src/store/docstore.json new file mode 100644 index 0000000..7e2edda --- /dev/null +++ b/src/store/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"6719012a-2e00-4899-8155-f76f13498640": {"doc_hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130"}, "2c486807-00fb-455e-a12b-d3785b3775a6": {"doc_hash": "02ed2d6bf71c51eb3dc83e689e73e95cdf7ace8e1c31f3eb0d42caa00a437311", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "4c27fcde-4cfa-478f-93f8-11e29b973e5c": {"doc_hash": "0485542c4a0919bd95087671205c9af92353208653f97c0473826197511e06c1", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "8c55f38d-fcd4-4e9d-b108-83965b3dd7f8": {"doc_hash": "d97347bb27aba706efa49aad3be197dd92ac48d03976f44f455f0a5db30cb0fc", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "bb99a80b-7739-42ae-83b9-f993f4e68a8d": {"doc_hash": "4b2e0191cadcb7612849bf9a94f054a28d3a3e591354c8adefc59c0ff8e12234", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "6ada6637-2304-4a9c-bd5e-9c1c1fa0b44b": {"doc_hash": "bef90b0ba2888c314aacd1b8865092271ce6f69b604ae5c1d1585f7590849344", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "160c8748-dc41-4bac-ab9f-8de97a0e3a14": {"doc_hash": "20ad2d6df83c3c874603ca09418677bf0ee3a0007cd17de7ea322ccd2de934f6", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "c6677b6e-8cdd-4cf9-8fa5-30e37bf8efae": {"doc_hash": "41e156d375df10579b56e66c3dd82d78d466d2fc0cfb7601ed5fb506ddaf1854", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "ee8665a9-0a40-4b77-b307-10438f99e061": {"doc_hash": "51f27f8bc5266d34906b03f76158a2119e3c0bdf19ab6b9fb941e4c86e1b4778", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "4203f0ce-85fa-413d-9c3c-21a3198706b9": {"doc_hash": "0de7bb1a0b998609d41cf720369e6305c08204e706092bfad981450e55539f24", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "e0440273-311e-4c23-ab1b-e60c6869591c": {"doc_hash": "e35a44013c564935c257100571d8735dc067b43b1c175739399be21f71a72b51", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "b28e90df-47fc-4443-90bb-fb148f26137a": {"doc_hash": "69aa753913d291a2e53faa69540d5c0fc97435fa5e9cbdf4d340333db69c43ea", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "e6c9a6c4-3755-4f6c-926f-f3dcbda6ad7f": {"doc_hash": "fced429732d28514354bc93efb83bdff90da81003817c9db61cbd2ae6c0d4b36", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "7cafdc7d-5b5b-4de9-9d10-c785f70d6ebf": {"doc_hash": "68e5d9fcbae82e1ad4ee16daa39f76ef2f6d0d2fad2332af41c091f711b54a8a", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "c4665ae7-ffad-4ece-9aae-7bab82bf571e": {"doc_hash": "f71a22da11016d370d45b96392fcf53c933e8c4713d3dc3369299642142b3244", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "f839fe67-453e-4385-a719-4f527a31f3b4": {"doc_hash": "d9d28c9ca41245ca64720791e6d37a74f7199165aa4560d8ea0df602eb9b8877", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "2a109748-864a-43e3-afb0-fbd276017f26": {"doc_hash": "6cf374d25c20321ba32b18b556ea7ebeb2c44cc0a8a9a88e3ac315562ed9b270", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "25041e74-2cb2-43c1-ae33-3a8d833bcb5d": {"doc_hash": "074e0b495da51c3b0a37b991ab13ac4fff13a1b852b78d4bdb9c5884291edcde", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "b18627a3-d1da-495c-afee-5f0ac6c982f4": {"doc_hash": "46a9204ed1584117e913f1ac99a7fb0add6ef5830bcf231d5e4a1fbf4aa00bb8", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "5c084f96-5468-4d47-9633-d651fdee2c06": {"doc_hash": "88daedeecde7a6c4f657d16964f5370932c9e63d16a3cde2c003ecd9a701ce57", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "1e10b962-1bf2-4135-9844-a8b37395269b": {"doc_hash": "50a3f20f092edad52770e9bd71a819a1be070e905fc63e835822219299924e44", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "9c977b29-2b5e-4adb-ac39-8cd17e89d6a0": {"doc_hash": "a306c228250173a875052d80b078ed975bd00f768878a8a9b346ac10fb3be2e8", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "525f4ace-6468-4482-8704-b40282846811": {"doc_hash": "102437a5085f1d67387d1f2c3ea4ffc1925cb2484098ba389e82cf58863959b8", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "11a31fba-c851-494f-888d-137034ec349b": {"doc_hash": "40e832c7021f8f000eb61449d3c72bbe6fcb06f0a9aeb9adb999ad202bbb9abe", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "0d0abb6b-626a-4c17-93ee-420c9623e6a1": {"doc_hash": "8d6f0904b325a42a28defe54cc5505d4f33174441fbf5433515443c9472116fd", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "82aa444e-5073-4b50-b902-1396d1d859c6": {"doc_hash": "415611875287f91263ddab1614859c4bfa6f7d649b7860ae2f618d3d076469ef", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "c21a250f-de9f-4e2d-b2e9-f026feac7b72": {"doc_hash": "382bc6bbd1a6e0a7d9e9d920b146758c26ca02c011c2f56427781bb5f0fd3b45", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "ca94437a-258d-4e48-b8c8-0aa25499e748": {"doc_hash": "b72f008fa700d39e3a591f10b447b741b33020945fd6aee4c6239a391ebace2c", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "b086b9a1-6dc8-4a5a-a632-e779ebb3cf28": {"doc_hash": "7f0e167b8309e9cdc912c851e3e287eff16e0d7816c5a6e184ebe9e18850b8cf", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "864dd49d-de1d-41da-8e10-5b39b130d97b": {"doc_hash": "6c5c5e4e26226dd1385b4582ae5e44e24257b8e7bbd072461fabf45e7d6425ba", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "83db070a-a453-44c7-af9f-630b992bfc10": {"doc_hash": "707c7dbeeb39657f8ba8f9aa01c915d449ef977775e3cb33181790aafe574cfe", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "91082429-933a-44e2-ada6-494afaab7d5c": {"doc_hash": "9781c96b40e8bfff2c7747f8f15f3c9f43449d4cfab69e97b3d0f11c7d65cd8c", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "6ffdc1b6-485a-4391-884a-60cdcf9f6728": {"doc_hash": "63e2c356bb4f7003afeec7aa28aa7061f1213503e828b2c65f206ad35d8686f8", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "95dca97f-5aff-45ef-98fc-180a28d96776": {"doc_hash": "16c35354e65d749d7b62442d37ca601415a59234b968fc3a89ece7c754a6d153", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "a3ee7823-d883-4689-a3d3-16fee0d55a8e": {"doc_hash": "d6fc75ba6ca1eae3d2daa9d8df3ffd063208261133623769b4a38e1fa51e0f63", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "e099c9b1-f180-495c-8a90-4acf0eed27f4": {"doc_hash": "81853d9515125c5b0f58be894448ca9b4880f846c6d0afb15fd86235a7827f04", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "9a3f19c3-bc9a-461b-ac98-2cc578a9fed4": {"doc_hash": "12d4ce5ed30f2e03ef1c4ef31a9be5dc5fcd6a929ebe242091a364b84e25a0aa", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "fcb9a991-6838-4188-84f5-e9c96fceec63": {"doc_hash": "29c1a43efa43018895bf405edefd76cb3ae2d21940f14c620eef53d46c824ea1", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "2f98b957-934d-4a85-896d-0632239404fb": {"doc_hash": "7c87c02968d97c5bf6cbc274508a0375e98a53a90a15a0b242da2ef676bf0b2d", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "ee0235fc-aab4-421e-a54d-615fc84de98f": {"doc_hash": "b84a06277d90a6b8ef0658ca9357eedc39a0bbcbbca3dfbb00ed15c622a09e9d", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "6d3c8af5-02e0-4ea9-911a-c0877855bfdf": {"doc_hash": "f81211e4b6b3acc5443e8e6a7ba9bc2a64193d911edd2981ec2127e954c89074", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "4d59b79a-1649-4503-be5a-caa5e698aae3": {"doc_hash": "9b7fbea696f48d3ea84ec28031e7c7a124602b7e5232335db614c887dd6f7451", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "8ffeef58-0d8d-4981-8ede-39ab9a001f87": {"doc_hash": "f89b925cf8d18d3b99ceeaab4d654aad29296b7ce9fac26f23f73100f699c7ac", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "5939816d-45db-4a4e-8fc9-11359dea8dff": {"doc_hash": "1581a218e53c096130558737a0efdbef4c01efbcac2ec1c80af3ffc38a5544d8", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "c83a7ea4-98db-4453-b5fa-96d9b1aa3309": {"doc_hash": "9608914f48af9f2aa62ddc18e063b561941924e0d3f306a4c4a76b05ffc25d0f", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "d1a9c3a1-f823-4f70-a082-df0ea065abde": {"doc_hash": "13b4e82ff75ffe76e00d1037ccad25df289f67760e87c7abe4ff3a5e0b1a52f9", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "0be3a661-3a75-4ada-864a-d7d60fb0290d": {"doc_hash": "b12b8d6f750c6059fc02908dc4f8611d60d107dbbf771bf42b925385e10b8c23", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "2c5d4291-5db2-4e19-ad43-df69d548615f": {"doc_hash": "15a305aabca1fcef4817833d1ae9c5825395ce5687e2f72ef0c7896ac08edda2", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "1b06fee1-88bd-4071-bd33-b1f42ba88701": {"doc_hash": "4acdbe06d5d67d6bc0843d047c95684849a8e6cc1152cc7329409af0d4cd3b6c", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "90855a3c-2335-412e-a6fc-77688c814dfa": {"doc_hash": "b6439db0e3fce03c9cce02788806c751d31458c50fd5f20dc0c2cc2c9a95a8e2", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "ce04402a-6406-4e23-b72c-33e705b94d0b": {"doc_hash": "632145dac2dee7eea1bc54b5c40d9dbde5ed9626863f00ad613b406e03a65709", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "975dd9b7-60dd-49a9-a498-e3c76eeefc22": {"doc_hash": "9ea371f6b205b4c6de89d29c8f3e36c3e8f30ca4997a577995326d755a657d22", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "2702477b-1b69-42a2-b623-483d4bdbf88f": {"doc_hash": "013f3d1c8449e8575e76868ef81ed8950ccf3bb6a1700ab095e0a5cc610a16d6", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "b10dd663-a214-4daa-9b67-2060a3fca070": {"doc_hash": "ebd748e878714f08a4b6b557ab7b7611c5d13b2b0cfa6c5e3066352d6d1f9280", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "21fd3f20-774f-42f9-a359-d88d2641457f": {"doc_hash": "a0d2df869e505df4ccfe3c1257df80100f3b6ea7482f37b85a78f58496daddbe", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "bf2f865a-d8c4-4b15-90af-629ce3ac7eb9": {"doc_hash": "bc5186098f6a933973af99bcbddb07a0b46e2690c02acd65cca84c3617bed88b", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "7721ec01-3d3e-4c30-ae35-f93b645c25ef": {"doc_hash": "80e54db46549b0d7d336b454fccc426d489f67233e057920a184dfad2665de1e", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "9ee46feb-fde8-40c1-849b-2fe9e87f86c1": {"doc_hash": "faad692a0931fb91969ad4af0e6870bb3ef2f5a8e2a5e40908e362d21c13eb0e", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "1f2a2fd1-9e1c-4f26-b9fd-498cea121509": {"doc_hash": "e178a38abc1c9a82b786287bc4132580479c409263e52831885402055077f8e2", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "8830bda2-9381-4980-9c33-4a2f3190533a": {"doc_hash": "3c57a889a490ac4c95daa5f4520255556e076a6394a14d14a7de20e6cb32c34f", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "eb950247-a6b5-4546-a9be-143137d800a4": {"doc_hash": "1a93784b01315ac86d61d2db69a2ce53914c9eb89566411e24ce18deb07c65de", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "73cf0f78-2e8e-42d1-8492-894bcbec71b6": {"doc_hash": "6a4355f741a3f685c50505e0dbd945a252e2a17a44f397036e6b78538ebbdbbc", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "65ef8204-7330-4f00-877d-4c3a97de50f5": {"doc_hash": "0fb93fa053698b36e3ad2d7c25e6a83df0ccf3f6077ac70cca2e687ac47bf5f1", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "70f69635-07dd-4453-baac-747e5ba5aeab": {"doc_hash": "d14c5cc27d3b766a97f6131d42cd1f56e3b1d2e41444d8d9d5b49e177f582a3b", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "26300e13-b5ca-4453-8d34-4d487299fd45": {"doc_hash": "a31bdd70195866cd455f1824f76f6aca679b34cf4652369e47a0ebc47437e8cd", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "262fe5ab-ef9e-4f15-a98b-6f707b92fb93": {"doc_hash": "c02d22a59c513db522b89ec78719579b420594b12d18ed8193413ca70cb302d9", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "2d1d4e9c-d20b-4ffc-b560-99d0ea4b096a": {"doc_hash": "a6976e59caf3d2aaa0b682fc897a42f33554b805e7604f1497eb65051578b9a8", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "6757402d-4af3-4fec-b8a4-569720149968": {"doc_hash": "23ec16ff4d7b75f1ee017b5c533c437c8a9245c7bf7b4365cda52ba935fe1b72", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "20270017-a10d-461e-988d-d9531cd85e33": {"doc_hash": "d428268df97c35ee3519b53c04dec7f0e2b3c6e8c07fba4cdf36cfd9ff68744f", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "8e7992c9-10c1-433f-bc40-1777dc777556": {"doc_hash": "34eab19168ec96db61d233207311f35c11773ad04ce0d21828780615b03b6fe5", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "49f10e08-48b5-4add-8b05-0ce338db73f6": {"doc_hash": "7eb170799be4e0f3e9b2d8b67469149f284d3bb342ebc4ff85bcfdf8c9214fe9", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "06b01d70-77ec-4d19-bf36-9e0831baccb4": {"doc_hash": "afffa81b608fbea50c74175acff8afcb70bd014eb96f36429bbbbd8477032647", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "7c38af20-205c-4a4d-b88f-11df9d5b11fd": {"doc_hash": "5624c4d761151c8cecf01d134fe8cb78b5cd9dc69f81930a03b07fbca5c7243b", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "d14945b7-af8e-43d1-814e-34f5e2bb6a63": {"doc_hash": "07d0ee84db040348874649592f65cbfeb952103b0489ed7db89098a003d999d2", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "e2b2188d-34a2-46d9-b84c-e109d9bc99dc": {"doc_hash": "b3e83d1c4b738f078a27dc7b19f2cb8d0b1d3928c048ba390ccac225a4145d0e", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "6ed6df16-8cd9-485a-b293-597b90d1f230": {"doc_hash": "98cd04562abe17a356bfa14223029ebd76ea801c470ca464313356729cea6ee6", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "9a90e271-1939-42eb-b961-b007ee6a7fd4": {"doc_hash": "8eace23d2fb79a4cf2fd7cffae808146d9df6f8eee1c4fdc041dafc2fcc0e152", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "dffcd13c-ece5-48d4-8308-d285ea6765e7": {"doc_hash": "39c678e0546b830bb3f8d0efe0c4efa1740cfc78d4c78a306cc2da74b5a894ca", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "80931e85-8d71-4f41-bafd-f14d003d6188": {"doc_hash": "0a6c1ff73e522efa502ab1f1ae235c6f29c43c8ba52ab687805d7e5913a951b9", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "634afe95-7345-41ce-b03d-2c9de0763939": {"doc_hash": "317c132f6f3017c090353c60ed24ca78f2785a27c5940314f53627299eb53d20", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "ae028f00-c1a7-411f-affb-cd644f26a898": {"doc_hash": "25f6e697fd5a7b789fca5ef4650f9726f79cf02c18d3d70a25b8b0c9f3c7642f", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "222d0242-4459-4a03-abf3-c3853ca4fc2c": {"doc_hash": "e94c72905304977e2d773e7749b55e07a8ac2a9ac3989b8794bb36957cced4c1", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "e6442ed4-3e7c-45d1-8a7d-e73382c83301": {"doc_hash": "e6155df3db1f4f02d931b3e3c51abf1b9f375cf95121e76add6efe06f2c7d01b", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "a33cd0f6-5e50-42ba-9bc0-b29bb479d51d": {"doc_hash": "4f440922c544a12544c4e260ccc8448eb60eeabb500798012115c2f229113dba", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "0ce65c33-74f8-4874-80c6-5b34e3efbd7e": {"doc_hash": "42eb6bbaf4b3ea87c7c5930c28a2d4f01c880e686bdbbe3d9b428921e2b48d54", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "def06a6a-09fd-4087-a67c-4a583ade7545": {"doc_hash": "16abb2c9bf525b6f0583fd3c413f9c74986f5ddf29e3334cb65c2a36eea7cad1", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "38d54015-192f-4202-8cae-e4463b050f7a": {"doc_hash": "a3c71ff0c942f02a76bb074c03c48e1f946667e649516d8de4914d3d6211794b", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "0f046a91-5659-484d-ad56-297dc6449f54": {"doc_hash": "128eab44d11f1f716ef7703f1732b1d4221e116f67cf2b39c7300c100ac5119b", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "2726c3b9-8887-45df-8af5-b304ca532ff0": {"doc_hash": "109b418a2eacdb37d032bf2adb9f6c13b855710cd7566d9719aca754301ca721", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}, "97904648-eda4-4b05-947f-8013c724cbd7": {"doc_hash": "56a727a907b29a96f4e6115515c644296ad2f9aca9953e7caadd022afbdce37d", "ref_doc_id": "6719012a-2e00-4899-8155-f76f13498640"}}, "docstore/data": {"2c486807-00fb-455e-a12b-d3785b3775a6": {"__data__": {"id_": "2c486807-00fb-455e-a12b-d3785b3775a6", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4c27fcde-4cfa-478f-93f8-11e29b973e5c", "node_type": "1", "metadata": {}, "hash": "f2ee88dc99fa07f20636edf1683106706e5421ba9950acb854f364ed89c26d1b", "class_name": "RelatedNodeInfo"}}, "text": "*** START OF THE PROJECT GUTENBERG EBOOK ALICE'S ADVENTURES IN\nWONDERLAND ***\n[Illustration]\n\n\n\n\nAlice\u2019s Adventures in Wonderland\n\nby Lewis Carroll\n\nTHE MILLENNIUM FULCRUM EDITION 3.0\n\nContents\n\n CHAPTER I. Down the Rabbit-Hole\n CHAPTER II. The Pool of Tears\n CHAPTER III. A Caucus-Race and a Long Tale\n CHAPTER IV. The Rabbit Sends in a Little Bill\n CHAPTER V. Advice from a Caterpillar\n CHAPTER VI. Pig and Pepper\n CHAPTER VII. A Mad Tea-Party\n CHAPTER VIII. The Queen\u2019s Croquet-Ground\n CHAPTER IX. The Mock Turtle\u2019s Story\n CHAPTER X. The Lobster Quadrille\n CHAPTER XI. Who Stole the Tarts?\n CHAPTER XII. Alice\u2019s Evidence\n\n\n\n\nCHAPTER I.\nDown the Rabbit-Hole\n\n\nAlice was beginning to get very tired of sitting by her sister on the\nbank, and of having nothing to do: once or twice she had peeped into\nthe book her sister was reading, but it had no pictures or\nconversations in it, \u201cand what is the use of a book,\u201d thought Alice\n\u201cwithout pictures or conversations?\u201d\n\nSo she was considering in her own mind (as well as she could, for the\nhot day made her feel very sleepy and stupid), whether the pleasure of\nmaking a daisy-chain would be worth the trouble of getting up and\npicking the daisies, when suddenly a White Rabbit with pink eyes ran\nclose by her.\n\nThere was nothing so _very_ remarkable in that; nor did Alice think it\nso _very_ much out of the way to hear the Rabbit say to itself, \u201cOh\ndear! Oh dear!", "mimetype": "text/plain", "start_char_idx": 0, "end_char_idx": 1444, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4c27fcde-4cfa-478f-93f8-11e29b973e5c": {"__data__": {"id_": "4c27fcde-4cfa-478f-93f8-11e29b973e5c", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2c486807-00fb-455e-a12b-d3785b3775a6", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "02ed2d6bf71c51eb3dc83e689e73e95cdf7ace8e1c31f3eb0d42caa00a437311", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8c55f38d-fcd4-4e9d-b108-83965b3dd7f8", "node_type": "1", "metadata": {}, "hash": "48431a0001cd943f9f21151859d2ed68ca5ee3363ad13a8f81ff533e375c0267", "class_name": "RelatedNodeInfo"}}, "text": "There was nothing so _very_ remarkable in that; nor did Alice think it\nso _very_ much out of the way to hear the Rabbit say to itself, \u201cOh\ndear! Oh dear! I shall be late!\u201d (when she thought it over afterwards,\nit occurred to her that she ought to have wondered at this, but at the\ntime it all seemed quite natural); but when the Rabbit actually _took a\nwatch out of its waistcoat-pocket_, and looked at it, and then hurried\non, Alice started to her feet, for it flashed across her mind that she\nhad never before seen a rabbit with either a waistcoat-pocket, or a\nwatch to take out of it, and burning with curiosity, she ran across the\nfield after it, and fortunately was just in time to see it pop down a\nlarge rabbit-hole under the hedge.\n\nIn another moment down went Alice after it, never once considering how\nin the world she was to get out again.\n\nThe rabbit-hole went straight on like a tunnel for some way, and then\ndipped suddenly down, so suddenly that Alice had not a moment to think\nabout stopping herself before she found herself falling down a very\ndeep well.\n\nEither the well was very deep, or she fell very slowly, for she had\nplenty of time as she went down to look about her and to wonder what\nwas going to happen next. First, she tried to look down and make out\nwhat she was coming to, but it was too dark to see anything; then she\nlooked at the sides of the well, and noticed that they were filled with\ncupboards and book-shelves; here and there she saw maps and pictures\nhung upon pegs. She took down a jar from one of the shelves as she\npassed; it was labelled \u201cORANGE MARMALADE\u201d, but to her great\ndisappointment it was empty: she did not like to drop the jar for fear\nof killing somebody underneath, so managed to put it into one of the\ncupboards as she fell past it.\n\n\u201cWell!\u201d thought Alice to herself, \u201cafter such a fall as this, I shall\nthink nothing of tumbling down stairs! How brave they\u2019ll all think me\nat home!", "mimetype": "text/plain", "start_char_idx": 1291, "end_char_idx": 3229, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8c55f38d-fcd4-4e9d-b108-83965b3dd7f8": {"__data__": {"id_": "8c55f38d-fcd4-4e9d-b108-83965b3dd7f8", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4c27fcde-4cfa-478f-93f8-11e29b973e5c", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "0485542c4a0919bd95087671205c9af92353208653f97c0473826197511e06c1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bb99a80b-7739-42ae-83b9-f993f4e68a8d", "node_type": "1", "metadata": {}, "hash": "ac75e27747fa01deb48dab44ac07db358800205c6d01bdb5c41163dbd6480663", "class_name": "RelatedNodeInfo"}}, "text": "\u201cWell!\u201d thought Alice to herself, \u201cafter such a fall as this, I shall\nthink nothing of tumbling down stairs! How brave they\u2019ll all think me\nat home! Why, I wouldn\u2019t say anything about it, even if I fell off the\ntop of the house!\u201d (Which was very likely true.)\n\nDown, down, down. Would the fall _never_ come to an end? \u201cI wonder how\nmany miles I\u2019ve fallen by this time?\u201d she said aloud. \u201cI must be\ngetting somewhere near the centre of the earth. Let me see: that would\nbe four thousand miles down, I think\u2014\u201d (for, you see, Alice had learnt\nseveral things of this sort in her lessons in the schoolroom, and\nthough this was not a _very_ good opportunity for showing off her\nknowledge, as there was no one to listen to her, still it was good\npractice to say it over) \u201c\u2014yes, that\u2019s about the right distance\u2014but\nthen I wonder what Latitude or Longitude I\u2019ve got to?\u201d (Alice had no\nidea what Latitude was, or Longitude either, but thought they were nice\ngrand words to say.)\n\nPresently she began again. \u201cI wonder if I shall fall right _through_\nthe earth! How funny it\u2019ll seem to come out among the people that walk\nwith their heads downward! The Antipathies, I think\u2014\u201d (she was rather\nglad there _was_ no one listening, this time, as it didn\u2019t sound at all\nthe right word) \u201c\u2014but I shall have to ask them what the name of the\ncountry is, you know. Please, Ma\u2019am, is this New Zealand or Australia?\u201d\n(and she tried to curtsey as she spoke\u2014fancy _curtseying_ as you\u2019re\nfalling through the air! Do you think you could manage it?) \u201cAnd what\nan ignorant little girl she\u2019ll think me for asking! No, it\u2019ll never do\nto ask: perhaps I shall see it written up somewhere.\u201d\n\nDown, down, down. There was nothing else to do, so Alice soon began\ntalking again.", "mimetype": "text/plain", "start_char_idx": 3081, "end_char_idx": 4818, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bb99a80b-7739-42ae-83b9-f993f4e68a8d": {"__data__": {"id_": "bb99a80b-7739-42ae-83b9-f993f4e68a8d", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8c55f38d-fcd4-4e9d-b108-83965b3dd7f8", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "d97347bb27aba706efa49aad3be197dd92ac48d03976f44f455f0a5db30cb0fc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6ada6637-2304-4a9c-bd5e-9c1c1fa0b44b", "node_type": "1", "metadata": {}, "hash": "10e364bb7dfeecb1075476d48202a03a6dc5b98c25e9d4ccaae6109b022bee0f", "class_name": "RelatedNodeInfo"}}, "text": "No, it\u2019ll never do\nto ask: perhaps I shall see it written up somewhere.\u201d\n\nDown, down, down. There was nothing else to do, so Alice soon began\ntalking again. \u201cDinah\u2019ll miss me very much to-night, I should think!\u201d\n(Dinah was the cat.) \u201cI hope they\u2019ll remember her saucer of milk at\ntea-time. Dinah my dear! I wish you were down here with me! There are\nno mice in the air, I\u2019m afraid, but you might catch a bat, and that\u2019s\nvery like a mouse, you know. But do cats eat bats, I wonder?\u201d And here\nAlice began to get rather sleepy, and went on saying to herself, in a\ndreamy sort of way, \u201cDo cats eat bats? Do cats eat bats?\u201d and\nsometimes, \u201cDo bats eat cats?\u201d for, you see, as she couldn\u2019t answer\neither question, it didn\u2019t much matter which way she put it. She felt\nthat she was dozing off, and had just begun to dream that she was\nwalking hand in hand with Dinah, and saying to her very earnestly,\n\u201cNow, Dinah, tell me the truth: did you ever eat a bat?\u201d when suddenly,\nthump! thump! down she came upon a heap of sticks and dry leaves, and\nthe fall was over.\n\nAlice was not a bit hurt, and she jumped up on to her feet in a moment:\nshe looked up, but it was all dark overhead; before her was another\nlong passage, and the White Rabbit was still in sight, hurrying down\nit. There was not a moment to be lost: away went Alice like the wind,\nand was just in time to hear it say, as it turned a corner, \u201cOh my ears\nand whiskers, how late it\u2019s getting!\u201d She was close behind it when she\nturned the corner, but the Rabbit was no longer to be seen: she found\nherself in a long, low hall, which was lit up by a row of lamps hanging\nfrom the roof.", "mimetype": "text/plain", "start_char_idx": 4662, "end_char_idx": 6296, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6ada6637-2304-4a9c-bd5e-9c1c1fa0b44b": {"__data__": {"id_": "6ada6637-2304-4a9c-bd5e-9c1c1fa0b44b", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bb99a80b-7739-42ae-83b9-f993f4e68a8d", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "4b2e0191cadcb7612849bf9a94f054a28d3a3e591354c8adefc59c0ff8e12234", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "160c8748-dc41-4bac-ab9f-8de97a0e3a14", "node_type": "1", "metadata": {}, "hash": "ae70924d24ad987010984169631ca2d41ce9a7ca13bb6fbb2182b252363425f1", "class_name": "RelatedNodeInfo"}}, "text": "There were doors all round the hall, but they were all locked; and when\nAlice had been all the way down one side and up the other, trying every\ndoor, she walked sadly down the middle, wondering how she was ever to\nget out again.\n\nSuddenly she came upon a little three-legged table, all made of solid\nglass; there was nothing on it except a tiny golden key, and Alice\u2019s\nfirst thought was that it might belong to one of the doors of the hall;\nbut, alas! either the locks were too large, or the key was too small,\nbut at any rate it would not open any of them. However, on the second\ntime round, she came upon a low curtain she had not noticed before, and\nbehind it was a little door about fifteen inches high: she tried the\nlittle golden key in the lock, and to her great delight it fitted!\n\nAlice opened the door and found that it led into a small passage, not\nmuch larger than a rat-hole: she knelt down and looked along the\npassage into the loveliest garden you ever saw. How she longed to get\nout of that dark hall, and wander about among those beds of bright\nflowers and those cool fountains, but she could not even get her head\nthrough the doorway; \u201cand even if my head would go through,\u201d thought\npoor Alice, \u201cit would be of very little use without my shoulders. Oh,\nhow I wish I could shut up like a telescope! I think I could, if I only\nknew how to begin.\u201d For, you see, so many out-of-the-way things had\nhappened lately, that Alice had begun to think that very few things\nindeed were really impossible.\n\nThere seemed to be no use in waiting by the little door, so she went\nback to the table, half hoping she might find another key on it, or at\nany rate a book of rules for shutting people up like telescopes: this\ntime she found a little bottle on it, (\u201cwhich certainly was not here\nbefore,\u201d said Alice,) and round the neck of the bottle was a paper\nlabel, with the words \u201cDRINK ME,\u201d beautifully printed on it in large\nletters.", "mimetype": "text/plain", "start_char_idx": 6298, "end_char_idx": 8232, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "160c8748-dc41-4bac-ab9f-8de97a0e3a14": {"__data__": {"id_": "160c8748-dc41-4bac-ab9f-8de97a0e3a14", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6ada6637-2304-4a9c-bd5e-9c1c1fa0b44b", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "bef90b0ba2888c314aacd1b8865092271ce6f69b604ae5c1d1585f7590849344", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c6677b6e-8cdd-4cf9-8fa5-30e37bf8efae", "node_type": "1", "metadata": {}, "hash": "67ce04edc16d01c525268786bb41ed9c0b7607c56028d659c9503311135b4dd2", "class_name": "RelatedNodeInfo"}}, "text": "It was all very well to say \u201cDrink me,\u201d but the wise little Alice was\nnot going to do _that_ in a hurry. \u201cNo, I\u2019ll look first,\u201d she said,\n\u201cand see whether it\u2019s marked \u2018_poison_\u2019 or not\u201d; for she had read\nseveral nice little histories about children who had got burnt, and\neaten up by wild beasts and other unpleasant things, all because they\n_would_ not remember the simple rules their friends had taught them:\nsuch as, that a red-hot poker will burn you if you hold it too long;\nand that if you cut your finger _very_ deeply with a knife, it usually\nbleeds; and she had never forgotten that, if you drink much from a\nbottle marked \u201cpoison,\u201d it is almost certain to disagree with you,\nsooner or later.\n\nHowever, this bottle was _not_ marked \u201cpoison,\u201d so Alice ventured to\ntaste it, and finding it very nice, (it had, in fact, a sort of mixed\nflavour of cherry-tart, custard, pine-apple, roast turkey, toffee, and\nhot buttered toast,) she very soon finished it off.\n\n* * * * * * *\n\n * * * * * *\n\n* * * * * * *\n\n\n\u201cWhat a curious feeling!\u201d said Alice; \u201cI must be shutting up like a\ntelescope.\u201d\n\nAnd so it was indeed: she was now only ten inches high, and her face\nbrightened up at the thought that she was now the right size for going\nthrough the little door into that lovely garden. First, however, she\nwaited for a few minutes to see if she was going to shrink any further:\nshe felt a little nervous about this; \u201cfor it might end, you know,\u201d\nsaid Alice to herself, \u201cin my going out altogether, like a candle. I\nwonder what I should be like then?\u201d And she tried to fancy what the\nflame of a candle is like after the candle is blown out, for she could\nnot remember ever having seen such a thing.", "mimetype": "text/plain", "start_char_idx": 8234, "end_char_idx": 10014, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c6677b6e-8cdd-4cf9-8fa5-30e37bf8efae": {"__data__": {"id_": "c6677b6e-8cdd-4cf9-8fa5-30e37bf8efae", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "160c8748-dc41-4bac-ab9f-8de97a0e3a14", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "20ad2d6df83c3c874603ca09418677bf0ee3a0007cd17de7ea322ccd2de934f6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ee8665a9-0a40-4b77-b307-10438f99e061", "node_type": "1", "metadata": {}, "hash": "db1670dca8b2bfeae20a740fd0c517df6ca9888f3b661b4214b95bc8e9961304", "class_name": "RelatedNodeInfo"}}, "text": "I\nwonder what I should be like then?\u201d And she tried to fancy what the\nflame of a candle is like after the candle is blown out, for she could\nnot remember ever having seen such a thing.\n\nAfter a while, finding that nothing more happened, she decided on going\ninto the garden at once; but, alas for poor Alice! when she got to the\ndoor, she found she had forgotten the little golden key, and when she\nwent back to the table for it, she found she could not possibly reach\nit: she could see it quite plainly through the glass, and she tried her\nbest to climb up one of the legs of the table, but it was too slippery;\nand when she had tired herself out with trying, the poor little thing\nsat down and cried.\n\n\u201cCome, there\u2019s no use in crying like that!\u201d said Alice to herself,\nrather sharply; \u201cI advise you to leave off this minute!\u201d She generally\ngave herself very good advice, (though she very seldom followed it),\nand sometimes she scolded herself so severely as to bring tears into\nher eyes; and once she remembered trying to box her own ears for having\ncheated herself in a game of croquet she was playing against herself,\nfor this curious child was very fond of pretending to be two people.\n\u201cBut it\u2019s no use now,\u201d thought poor Alice, \u201cto pretend to be two\npeople! Why, there\u2019s hardly enough of me left to make _one_ respectable\nperson!\u201d\n\nSoon her eye fell on a little glass box that was lying under the table:\nshe opened it, and found in it a very small cake, on which the words\n\u201cEAT ME\u201d were beautifully marked in currants. \u201cWell, I\u2019ll eat it,\u201d said\nAlice, \u201cand if it makes me grow larger, I can reach the key; and if it\nmakes me grow smaller, I can creep under the door; so either way I\u2019ll\nget into the garden, and I don\u2019t care which happens!\u201d\n\nShe ate a little bit, and said anxiously to herself, \u201cWhich way?", "mimetype": "text/plain", "start_char_idx": 9830, "end_char_idx": 11641, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ee8665a9-0a40-4b77-b307-10438f99e061": {"__data__": {"id_": "ee8665a9-0a40-4b77-b307-10438f99e061", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c6677b6e-8cdd-4cf9-8fa5-30e37bf8efae", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "41e156d375df10579b56e66c3dd82d78d466d2fc0cfb7601ed5fb506ddaf1854", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4203f0ce-85fa-413d-9c3c-21a3198706b9", "node_type": "1", "metadata": {}, "hash": "a2212b5b49613300bd2c65f0f5fff55bdaad64f3e16420bf56daa1135fd272d3", "class_name": "RelatedNodeInfo"}}, "text": "Which\nway?\u201d, holding her hand on the top of her head to feel which way it was\ngrowing, and she was quite surprised to find that she remained the same\nsize: to be sure, this generally happens when one eats cake, but Alice\nhad got so much into the way of expecting nothing but out-of-the-way\nthings to happen, that it seemed quite dull and stupid for life to go\non in the common way.\n\nSo she set to work, and very soon finished off the cake.\n\n* * * * * * *\n\n * * * * * *\n\n* * * * * * *\n\n\n\n\nCHAPTER II.\nThe Pool of Tears\n\n\n\u201cCuriouser and curiouser!\u201d cried Alice (she was so much surprised, that\nfor the moment she quite forgot how to speak good English); \u201cnow I\u2019m\nopening out like the largest telescope that ever was! Good-bye, feet!\u201d\n(for when she looked down at her feet, they seemed to be almost out of\nsight, they were getting so far off). \u201cOh, my poor little feet, I\nwonder who will put on your shoes and stockings for you now, dears? I\u2019m\nsure _I_ shan\u2019t be able! I shall be a great deal too far off to trouble\nmyself about you: you must manage the best way you can;\u2014but I must be\nkind to them,\u201d thought Alice, \u201cor perhaps they won\u2019t walk the way I\nwant to go! Let me see: I\u2019ll give them a new pair of boots every\nChristmas.\u201d\n\nAnd she went on planning to herself how she would manage it. \u201cThey must\ngo by the carrier,\u201d she thought; \u201cand how funny it\u2019ll seem, sending\npresents to one\u2019s own feet! And how odd the directions will look!\n\n _Alice\u2019s Right Foot, Esq., Hearthrug, near the Fender,_ (_with\n Alice\u2019s love_).\n\nOh dear, what nonsense I\u2019m talking!\u201d\n\nJust then her head struck against the roof of the hall: in fact she was\nnow more than nine feet high, and she at once took up the little golden\nkey and hurried off to the garden door.", "mimetype": "text/plain", "start_char_idx": 11642, "end_char_idx": 13477, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4203f0ce-85fa-413d-9c3c-21a3198706b9": {"__data__": {"id_": "4203f0ce-85fa-413d-9c3c-21a3198706b9", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ee8665a9-0a40-4b77-b307-10438f99e061", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "51f27f8bc5266d34906b03f76158a2119e3c0bdf19ab6b9fb941e4c86e1b4778", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e0440273-311e-4c23-ab1b-e60c6869591c", "node_type": "1", "metadata": {}, "hash": "27d71998ac17e27b7e297976e8ec21c9e44729e21b044dffc08ba300fd51a9be", "class_name": "RelatedNodeInfo"}}, "text": "Poor Alice! It was as much as she could do, lying down on one side, to\nlook through into the garden with one eye; but to get through was more\nhopeless than ever: she sat down and began to cry again.\n\n\u201cYou ought to be ashamed of yourself,\u201d said Alice, \u201ca great girl like\nyou,\u201d (she might well say this), \u201cto go on crying in this way! Stop\nthis moment, I tell you!\u201d But she went on all the same, shedding\ngallons of tears, until there was a large pool all round her, about\nfour inches deep and reaching half down the hall.\n\nAfter a time she heard a little pattering of feet in the distance, and\nshe hastily dried her eyes to see what was coming. It was the White\nRabbit returning, splendidly dressed, with a pair of white kid gloves\nin one hand and a large fan in the other: he came trotting along in a\ngreat hurry, muttering to himself as he came, \u201cOh! the Duchess, the\nDuchess! Oh! won\u2019t she be savage if I\u2019ve kept her waiting!\u201d Alice felt\nso desperate that she was ready to ask help of any one; so, when the\nRabbit came near her, she began, in a low, timid voice, \u201cIf you please,\nsir\u2014\u201d The Rabbit started violently, dropped the white kid gloves and\nthe fan, and skurried away into the darkness as hard as he could go.\n\nAlice took up the fan and gloves, and, as the hall was very hot, she\nkept fanning herself all the time she went on talking: \u201cDear, dear! How\nqueer everything is to-day! And yesterday things went on just as usual.\nI wonder if I\u2019ve been changed in the night? Let me think: was I the\nsame when I got up this morning? I almost think I can remember feeling\na little different. But if I\u2019m not the same, the next question is, Who\nin the world am I?", "mimetype": "text/plain", "start_char_idx": 13479, "end_char_idx": 15140, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e0440273-311e-4c23-ab1b-e60c6869591c": {"__data__": {"id_": "e0440273-311e-4c23-ab1b-e60c6869591c", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4203f0ce-85fa-413d-9c3c-21a3198706b9", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "0de7bb1a0b998609d41cf720369e6305c08204e706092bfad981450e55539f24", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b28e90df-47fc-4443-90bb-fb148f26137a", "node_type": "1", "metadata": {}, "hash": "5af6c289a2887194592ebdf452c3945608921c7abb5c43737a48dc0d66d3337b", "class_name": "RelatedNodeInfo"}}, "text": "I almost think I can remember feeling\na little different. But if I\u2019m not the same, the next question is, Who\nin the world am I? Ah, _that\u2019s_ the great puzzle!\u201d And she began\nthinking over all the children she knew that were of the same age as\nherself, to see if she could have been changed for any of them.\n\n\u201cI\u2019m sure I\u2019m not Ada,\u201d she said, \u201cfor her hair goes in such long\nringlets, and mine doesn\u2019t go in ringlets at all; and I\u2019m sure I can\u2019t\nbe Mabel, for I know all sorts of things, and she, oh! she knows such a\nvery little! Besides, _she\u2019s_ she, and _I\u2019m_ I, and\u2014oh dear, how\npuzzling it all is! I\u2019ll try if I know all the things I used to know.\nLet me see: four times five is twelve, and four times six is thirteen,\nand four times seven is\u2014oh dear! I shall never get to twenty at that\nrate! However, the Multiplication Table doesn\u2019t signify: let\u2019s try\nGeography. London is the capital of Paris, and Paris is the capital of\nRome, and Rome\u2014no, _that\u2019s_ all wrong, I\u2019m certain! I must have been\nchanged for Mabel! I\u2019ll try and say \u2018_How doth the little_\u2014\u2019\u201d and she\ncrossed her hands on her lap as if she were saying lessons, and began\nto repeat it, but her voice sounded hoarse and strange, and the words\ndid not come the same as they used to do:\u2014\n\n\u201cHow doth the little crocodile\n Improve his shining tail,\nAnd pour the waters of the Nile\n On every golden scale!\n\n\u201cHow cheerfully he seems to grin,\n How neatly spread his claws,\nAnd welcome little fishes in\n With gently smiling jaws!\u201d", "mimetype": "text/plain", "start_char_idx": 15013, "end_char_idx": 16513, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b28e90df-47fc-4443-90bb-fb148f26137a": {"__data__": {"id_": "b28e90df-47fc-4443-90bb-fb148f26137a", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e0440273-311e-4c23-ab1b-e60c6869591c", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "e35a44013c564935c257100571d8735dc067b43b1c175739399be21f71a72b51", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e6c9a6c4-3755-4f6c-926f-f3dcbda6ad7f", "node_type": "1", "metadata": {}, "hash": "78cce61566fc52e4a3a1f1d49f8cd4db88063ad365efa0ba9198ca3d4dd6c875", "class_name": "RelatedNodeInfo"}}, "text": "\u201cHow cheerfully he seems to grin,\n How neatly spread his claws,\nAnd welcome little fishes in\n With gently smiling jaws!\u201d\n\n\n\u201cI\u2019m sure those are not the right words,\u201d said poor Alice, and her eyes\nfilled with tears again as she went on, \u201cI must be Mabel after all, and\nI shall have to go and live in that poky little house, and have next to\nno toys to play with, and oh! ever so many lessons to learn! No, I\u2019ve\nmade up my mind about it; if I\u2019m Mabel, I\u2019ll stay down here! It\u2019ll be\nno use their putting their heads down and saying \u2018Come up again, dear!\u2019\nI shall only look up and say \u2018Who am I then? Tell me that first, and\nthen, if I like being that person, I\u2019ll come up: if not, I\u2019ll stay down\nhere till I\u2019m somebody else\u2019\u2014but, oh dear!\u201d cried Alice, with a sudden\nburst of tears, \u201cI do wish they _would_ put their heads down! I am so\n_very_ tired of being all alone here!\u201d\n\nAs she said this she looked down at her hands, and was surprised to see\nthat she had put on one of the Rabbit\u2019s little white kid gloves while\nshe was talking. \u201cHow _can_ I have done that?\u201d she thought. \u201cI must be\ngrowing small again.\u201d She got up and went to the table to measure\nherself by it, and found that, as nearly as she could guess, she was\nnow about two feet high, and was going on shrinking rapidly: she soon\nfound out that the cause of this was the fan she was holding, and she\ndropped it hastily, just in time to avoid shrinking away altogether.\n\n\u201cThat _was_ a narrow escape!\u201d said Alice, a good deal frightened at the\nsudden change, but very glad to find herself still in existence; \u201cand\nnow for the garden!\u201d and she ran with all speed back to the little\ndoor: but, alas!", "mimetype": "text/plain", "start_char_idx": 16387, "end_char_idx": 18049, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e6c9a6c4-3755-4f6c-926f-f3dcbda6ad7f": {"__data__": {"id_": "e6c9a6c4-3755-4f6c-926f-f3dcbda6ad7f", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b28e90df-47fc-4443-90bb-fb148f26137a", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "69aa753913d291a2e53faa69540d5c0fc97435fa5e9cbdf4d340333db69c43ea", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7cafdc7d-5b5b-4de9-9d10-c785f70d6ebf", "node_type": "1", "metadata": {}, "hash": "22167136c37f8c9265ba536bef6ebcfc3db8fa78c8adf1e12cfaff827642dd27", "class_name": "RelatedNodeInfo"}}, "text": "the little door was shut again, and the little golden\nkey was lying on the glass table as before, \u201cand things are worse than\never,\u201d thought the poor child, \u201cfor I never was so small as this\nbefore, never! And I declare it\u2019s too bad, that it is!\u201d\n\nAs she said these words her foot slipped, and in another moment,\nsplash! she was up to her chin in salt water. Her first idea was that\nshe had somehow fallen into the sea, \u201cand in that case I can go back by\nrailway,\u201d she said to herself. (Alice had been to the seaside once in\nher life, and had come to the general conclusion, that wherever you go\nto on the English coast you find a number of bathing machines in the\nsea, some children digging in the sand with wooden spades, then a row\nof lodging houses, and behind them a railway station.) However, she\nsoon made out that she was in the pool of tears which she had wept when\nshe was nine feet high.\n\n\u201cI wish I hadn\u2019t cried so much!\u201d said Alice, as she swam about, trying\nto find her way out. \u201cI shall be punished for it now, I suppose, by\nbeing drowned in my own tears! That _will_ be a queer thing, to be\nsure! However, everything is queer to-day.\u201d\n\nJust then she heard something splashing about in the pool a little way\noff, and she swam nearer to make out what it was: at first she thought\nit must be a walrus or hippopotamus, but then she remembered how small\nshe was now, and she soon made out that it was only a mouse that had\nslipped in like herself.\n\n\u201cWould it be of any use, now,\u201d thought Alice, \u201cto speak to this mouse?\nEverything is so out-of-the-way down here, that I should think very\nlikely it can talk: at any rate, there\u2019s no harm in trying.\u201d So she\nbegan: \u201cO Mouse, do you know the way out of this pool?", "mimetype": "text/plain", "start_char_idx": 18050, "end_char_idx": 19769, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7cafdc7d-5b5b-4de9-9d10-c785f70d6ebf": {"__data__": {"id_": "7cafdc7d-5b5b-4de9-9d10-c785f70d6ebf", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e6c9a6c4-3755-4f6c-926f-f3dcbda6ad7f", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "fced429732d28514354bc93efb83bdff90da81003817c9db61cbd2ae6c0d4b36", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c4665ae7-ffad-4ece-9aae-7bab82bf571e", "node_type": "1", "metadata": {}, "hash": "61cb9b70de77e273fc426cd82951ffd22fdaa1f19a0a3f08e9adaf37cf2819e7", "class_name": "RelatedNodeInfo"}}, "text": "I am very tired\nof swimming about here, O Mouse!\u201d (Alice thought this must be the right\nway of speaking to a mouse: she had never done such a thing before, but\nshe remembered having seen in her brother\u2019s Latin Grammar, \u201cA mouse\u2014of\na mouse\u2014to a mouse\u2014a mouse\u2014O mouse!\u201d) The Mouse looked at her rather\ninquisitively, and seemed to her to wink with one of its little eyes,\nbut it said nothing.\n\n\u201cPerhaps it doesn\u2019t understand English,\u201d thought Alice; \u201cI daresay it\u2019s\na French mouse, come over with William the Conqueror.\u201d (For, with all\nher knowledge of history, Alice had no very clear notion how long ago\nanything had happened.) So she began again: \u201cO\u00f9 est ma chatte?\u201d which\nwas the first sentence in her French lesson-book. The Mouse gave a\nsudden leap out of the water, and seemed to quiver all over with\nfright. \u201cOh, I beg your pardon!\u201d cried Alice hastily, afraid that she\nhad hurt the poor animal\u2019s feelings. \u201cI quite forgot you didn\u2019t like\ncats.\u201d\n\n\u201cNot like cats!\u201d cried the Mouse, in a shrill, passionate voice. \u201cWould\n_you_ like cats if you were me?\u201d\n\n\u201cWell, perhaps not,\u201d said Alice in a soothing tone: \u201cdon\u2019t be angry\nabout it. And yet I wish I could show you our cat Dinah: I think you\u2019d\ntake a fancy to cats if you could only see her. She is such a dear\nquiet thing,\u201d Alice went on, half to herself, as she swam lazily about\nin the pool, \u201cand she sits purring so nicely by the fire, licking her\npaws and washing her face\u2014and she is such a nice soft thing to\nnurse\u2014and she\u2019s such a capital one for catching mice\u2014oh, I beg your\npardon!\u201d cried Alice again, for this time the Mouse was bristling all\nover, and she felt certain it must be really offended. \u201cWe won\u2019t talk\nabout her any more if you\u2019d rather not.\u201d\n\n\u201cWe indeed!\u201d cried the Mouse, who was trembling down to the end of his\ntail.", "mimetype": "text/plain", "start_char_idx": 19770, "end_char_idx": 21565, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c4665ae7-ffad-4ece-9aae-7bab82bf571e": {"__data__": {"id_": "c4665ae7-ffad-4ece-9aae-7bab82bf571e", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7cafdc7d-5b5b-4de9-9d10-c785f70d6ebf", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "68e5d9fcbae82e1ad4ee16daa39f76ef2f6d0d2fad2332af41c091f711b54a8a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f839fe67-453e-4385-a719-4f527a31f3b4", "node_type": "1", "metadata": {}, "hash": "9a6ba11573e34e28b678c98d1b475ddc687b419a7714d88ce6728c2e41ce3277", "class_name": "RelatedNodeInfo"}}, "text": "\u201cWe won\u2019t talk\nabout her any more if you\u2019d rather not.\u201d\n\n\u201cWe indeed!\u201d cried the Mouse, who was trembling down to the end of his\ntail. \u201cAs if _I_ would talk on such a subject! Our family always\n_hated_ cats: nasty, low, vulgar things! Don\u2019t let me hear the name\nagain!\u201d\n\n\u201cI won\u2019t indeed!\u201d said Alice, in a great hurry to change the subject of\nconversation. \u201cAre you\u2014are you fond\u2014of\u2014of dogs?\u201d The Mouse did not\nanswer, so Alice went on eagerly: \u201cThere is such a nice little dog near\nour house I should like to show you! A little bright-eyed terrier, you\nknow, with oh, such long curly brown hair! And it\u2019ll fetch things when\nyou throw them, and it\u2019ll sit up and beg for its dinner, and all sorts\nof things\u2014I can\u2019t remember half of them\u2014and it belongs to a farmer, you\nknow, and he says it\u2019s so useful, it\u2019s worth a hundred pounds! He says\nit kills all the rats and\u2014oh dear!\u201d cried Alice in a sorrowful tone,\n\u201cI\u2019m afraid I\u2019ve offended it again!\u201d For the Mouse was swimming away\nfrom her as hard as it could go, and making quite a commotion in the\npool as it went.\n\nSo she called softly after it, \u201cMouse dear! Do come back again, and we\nwon\u2019t talk about cats or dogs either, if you don\u2019t like them!\u201d When the\nMouse heard this, it turned round and swam slowly back to her: its face\nwas quite pale (with passion, Alice thought), and it said in a low\ntrembling voice, \u201cLet us get to the shore, and then I\u2019ll tell you my\nhistory, and you\u2019ll understand why it is I hate cats and dogs.\u201d\n\nIt was high time to go, for the pool was getting quite crowded with the\nbirds and animals that had fallen into it: there were a Duck and a\nDodo, a Lory and an Eaglet, and several other curious creatures. Alice\nled the way, and the whole party swam to the shore.\n\n\n\n\nCHAPTER III.\nA Caucus-Race and a Long Tale", "mimetype": "text/plain", "start_char_idx": 21432, "end_char_idx": 23218, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f839fe67-453e-4385-a719-4f527a31f3b4": {"__data__": {"id_": "f839fe67-453e-4385-a719-4f527a31f3b4", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c4665ae7-ffad-4ece-9aae-7bab82bf571e", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "f71a22da11016d370d45b96392fcf53c933e8c4713d3dc3369299642142b3244", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2a109748-864a-43e3-afb0-fbd276017f26", "node_type": "1", "metadata": {}, "hash": "32ede92eb9808265fbc5bb15a23130c4b1b0c3a95128d04d55608dc25fafe150", "class_name": "RelatedNodeInfo"}}, "text": "Alice\nled the way, and the whole party swam to the shore.\n\n\n\n\nCHAPTER III.\nA Caucus-Race and a Long Tale\n\n\nThey were indeed a queer-looking party that assembled on the bank\u2014the\nbirds with draggled feathers, the animals with their fur clinging close\nto them, and all dripping wet, cross, and uncomfortable.\n\nThe first question of course was, how to get dry again: they had a\nconsultation about this, and after a few minutes it seemed quite\nnatural to Alice to find herself talking familiarly with them, as if\nshe had known them all her life. Indeed, she had quite a long argument\nwith the Lory, who at last turned sulky, and would only say, \u201cI am\nolder than you, and must know better;\u201d and this Alice would not allow\nwithout knowing how old it was, and, as the Lory positively refused to\ntell its age, there was no more to be said.\n\nAt last the Mouse, who seemed to be a person of authority among them,\ncalled out, \u201cSit down, all of you, and listen to me! _I\u2019ll_ soon make\nyou dry enough!\u201d They all sat down at once, in a large ring, with the\nMouse in the middle. Alice kept her eyes anxiously fixed on it, for she\nfelt sure she would catch a bad cold if she did not get dry very soon.\n\n\u201cAhem!\u201d said the Mouse with an important air, \u201care you all ready? This\nis the driest thing I know. Silence all round, if you please! \u2018William\nthe Conqueror, whose cause was favoured by the pope, was soon submitted\nto by the English, who wanted leaders, and had been of late much\naccustomed to usurpation and conquest. Edwin and Morcar, the earls of\nMercia and Northumbria\u2014\u2019\u201d\n\n\u201cUgh!\u201d said the Lory, with a shiver.\n\n\u201cI beg your pardon!\u201d said the Mouse, frowning, but very politely: \u201cDid\nyou speak?\u201d\n\n\u201cNot I!\u201d said the Lory hastily.\n\n\u201cI thought you did,\u201d said the Mouse. \u201c\u2014I proceed.", "mimetype": "text/plain", "start_char_idx": 23114, "end_char_idx": 24880, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2a109748-864a-43e3-afb0-fbd276017f26": {"__data__": {"id_": "2a109748-864a-43e3-afb0-fbd276017f26", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f839fe67-453e-4385-a719-4f527a31f3b4", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "d9d28c9ca41245ca64720791e6d37a74f7199165aa4560d8ea0df602eb9b8877", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "25041e74-2cb2-43c1-ae33-3a8d833bcb5d", "node_type": "1", "metadata": {}, "hash": "695d62655cd9073020467b2ee8f7073e03d0a6cb220c0e53ca197cb09f5e7831", "class_name": "RelatedNodeInfo"}}, "text": "\u201cI beg your pardon!\u201d said the Mouse, frowning, but very politely: \u201cDid\nyou speak?\u201d\n\n\u201cNot I!\u201d said the Lory hastily.\n\n\u201cI thought you did,\u201d said the Mouse. \u201c\u2014I proceed. \u2018Edwin and Morcar,\nthe earls of Mercia and Northumbria, declared for him: and even\nStigand, the patriotic archbishop of Canterbury, found it advisable\u2014\u2019\u201d\n\n\u201cFound _what_?\u201d said the Duck.\n\n\u201cFound _it_,\u201d the Mouse replied rather crossly: \u201cof course you know\nwhat \u2018it\u2019 means.\u201d\n\n\u201cI know what \u2018it\u2019 means well enough, when _I_ find a thing,\u201d said the\nDuck: \u201cit\u2019s generally a frog or a worm. The question is, what did the\narchbishop find?\u201d\n\nThe Mouse did not notice this question, but hurriedly went on, \u201c\u2018\u2014found\nit advisable to go with Edgar Atheling to meet William and offer him\nthe crown. William\u2019s conduct at first was moderate. But the insolence\nof his Normans\u2014\u2019 How are you getting on now, my dear?\u201d it continued,\nturning to Alice as it spoke.\n\n\u201cAs wet as ever,\u201d said Alice in a melancholy tone: \u201cit doesn\u2019t seem to\ndry me at all.\u201d\n\n\u201cIn that case,\u201d said the Dodo solemnly, rising to its feet, \u201cI move\nthat the meeting adjourn, for the immediate adoption of more energetic\nremedies\u2014\u201d\n\n\u201cSpeak English!\u201d said the Eaglet. \u201cI don\u2019t know the meaning of half\nthose long words, and, what\u2019s more, I don\u2019t believe you do either!\u201d And\nthe Eaglet bent down its head to hide a smile: some of the other birds\ntittered audibly.\n\n\u201cWhat I was going to say,\u201d said the Dodo in an offended tone, \u201cwas,\nthat the best thing to get us dry would be a Caucus-race.\u201d\n\n\u201cWhat _is_ a Caucus-race?\u201d said Alice; not that she wanted much to\nknow, but the Dodo had paused as if it thought that _somebody_ ought to\nspeak, and no one else seemed inclined to say anything.", "mimetype": "text/plain", "start_char_idx": 24714, "end_char_idx": 26416, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "25041e74-2cb2-43c1-ae33-3a8d833bcb5d": {"__data__": {"id_": "25041e74-2cb2-43c1-ae33-3a8d833bcb5d", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2a109748-864a-43e3-afb0-fbd276017f26", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "6cf374d25c20321ba32b18b556ea7ebeb2c44cc0a8a9a88e3ac315562ed9b270", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b18627a3-d1da-495c-afee-5f0ac6c982f4", "node_type": "1", "metadata": {}, "hash": "511ec0a5a367e4e41dbebdab7777aa3c85c4c61681a3978efbdb718e9dee4a98", "class_name": "RelatedNodeInfo"}}, "text": "\u201cWhy,\u201d said the Dodo, \u201cthe best way to explain it is to do it.\u201d (And,\nas you might like to try the thing yourself, some winter day, I will\ntell you how the Dodo managed it.)\n\nFirst it marked out a race-course, in a sort of circle, (\u201cthe exact\nshape doesn\u2019t matter,\u201d it said,) and then all the party were placed\nalong the course, here and there. There was no \u201cOne, two, three, and\naway,\u201d but they began running when they liked, and left off when they\nliked, so that it was not easy to know when the race was over. However,\nwhen they had been running half an hour or so, and were quite dry\nagain, the Dodo suddenly called out \u201cThe race is over!\u201d and they all\ncrowded round it, panting, and asking, \u201cBut who has won?\u201d\n\nThis question the Dodo could not answer without a great deal of\nthought, and it sat for a long time with one finger pressed upon its\nforehead (the position in which you usually see Shakespeare, in the\npictures of him), while the rest waited in silence. At last the Dodo\nsaid, \u201c_Everybody_ has won, and all must have prizes.\u201d\n\n\u201cBut who is to give the prizes?\u201d quite a chorus of voices asked.\n\n\u201cWhy, _she_, of course,\u201d said the Dodo, pointing to Alice with one\nfinger; and the whole party at once crowded round her, calling out in a\nconfused way, \u201cPrizes! Prizes!\u201d\n\nAlice had no idea what to do, and in despair she put her hand in her\npocket, and pulled out a box of comfits, (luckily the salt water had\nnot got into it), and handed them round as prizes. There was exactly\none a-piece, all round.\n\n\u201cBut she must have a prize herself, you know,\u201d said the Mouse.\n\n\u201cOf course,\u201d the Dodo replied very gravely. \u201cWhat else have you got in\nyour pocket?\u201d he went on, turning to Alice.\n\n\u201cOnly a thimble,\u201d said Alice sadly.\n\n\u201cHand it over here,\u201d said the Dodo.", "mimetype": "text/plain", "start_char_idx": 26418, "end_char_idx": 28182, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b18627a3-d1da-495c-afee-5f0ac6c982f4": {"__data__": {"id_": "b18627a3-d1da-495c-afee-5f0ac6c982f4", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "25041e74-2cb2-43c1-ae33-3a8d833bcb5d", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "074e0b495da51c3b0a37b991ab13ac4fff13a1b852b78d4bdb9c5884291edcde", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5c084f96-5468-4d47-9633-d651fdee2c06", "node_type": "1", "metadata": {}, "hash": "bc91ccfb8ed738407e2ebbace00d1176c8374a31311051f9ca83f99c07babb32", "class_name": "RelatedNodeInfo"}}, "text": "\u201cWhat else have you got in\nyour pocket?\u201d he went on, turning to Alice.\n\n\u201cOnly a thimble,\u201d said Alice sadly.\n\n\u201cHand it over here,\u201d said the Dodo.\n\nThen they all crowded round her once more, while the Dodo solemnly\npresented the thimble, saying \u201cWe beg your acceptance of this elegant\nthimble;\u201d and, when it had finished this short speech, they all\ncheered.\n\nAlice thought the whole thing very absurd, but they all looked so grave\nthat she did not dare to laugh; and, as she could not think of anything\nto say, she simply bowed, and took the thimble, looking as solemn as\nshe could.\n\nThe next thing was to eat the comfits: this caused some noise and\nconfusion, as the large birds complained that they could not taste\ntheirs, and the small ones choked and had to be patted on the back.\nHowever, it was over at last, and they sat down again in a ring, and\nbegged the Mouse to tell them something more.\n\n\u201cYou promised to tell me your history, you know,\u201d said Alice, \u201cand why\nit is you hate\u2014C and D,\u201d she added in a whisper, half afraid that it\nwould be offended again.\n\n\u201cMine is a long and a sad tale!\u201d said the Mouse, turning to Alice, and\nsighing.", "mimetype": "text/plain", "start_char_idx": 28038, "end_char_idx": 29182, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5c084f96-5468-4d47-9633-d651fdee2c06": {"__data__": {"id_": "5c084f96-5468-4d47-9633-d651fdee2c06", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b18627a3-d1da-495c-afee-5f0ac6c982f4", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "46a9204ed1584117e913f1ac99a7fb0add6ef5830bcf231d5e4a1fbf4aa00bb8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1e10b962-1bf2-4135-9844-a8b37395269b", "node_type": "1", "metadata": {}, "hash": "3bc06a2f6741fa5c11d605b62811d374f860436bbf691880e2d91741da1cca7f", "class_name": "RelatedNodeInfo"}}, "text": "\u201cMine is a long and a sad tale!\u201d said the Mouse, turning to Alice, and\nsighing.\n\n\u201cIt _is_ a long tail, certainly,\u201d said Alice, looking down with wonder\nat the Mouse\u2019s tail; \u201cbut why do you call it sad?\u201d And she kept on\npuzzling about it while the Mouse was speaking, so that her idea of the\ntale was something like this:\u2014\n\n \u201cFury said to a mouse, That he met in the house, \u2018Let us both\n go to law: _I_ will prosecute _you_.\u2014Come, I\u2019ll take no\n denial; We must have a trial: For really this morning I\u2019ve\n nothing to do.\u2019 Said the mouse to the cur, \u2018Such a trial, dear\n sir, With no jury or judge, would be wasting our breath.\u2019\n \u2018I\u2019ll be judge, I\u2019ll be jury,\u2019 Said cunning old Fury: \u2018I\u2019ll\n try the whole cause, and condemn you to death.\u2019\u201d\n\n\u201cYou are not attending!\u201d said the Mouse to Alice severely. \u201cWhat are\nyou thinking of?\u201d\n\n\u201cI beg your pardon,\u201d said Alice very humbly: \u201cyou had got to the fifth\nbend, I think?\u201d\n\n\u201cI had _not!_\u201d cried the Mouse, sharply and very angrily.\n\n\u201cA knot!\u201d said Alice, always ready to make herself useful, and looking\nanxiously about her. \u201cOh, do let me help to undo it!\u201d\n\n\u201cI shall do nothing of the sort,\u201d said the Mouse, getting up and\nwalking away. \u201cYou insult me by talking such nonsense!\u201d\n\n\u201cI didn\u2019t mean it!\u201d pleaded poor Alice. \u201cBut you\u2019re so easily offended,\nyou know!\u201d\n\nThe Mouse only growled in reply.\n\n\u201cPlease come back and finish your story!\u201d Alice called after it; and\nthe others all joined in chorus, \u201cYes, please do!\u201d but the Mouse only\nshook its head impatiently, and walked a little quicker.\n\n\u201cWhat a pity it wouldn\u2019t stay!\u201d sighed the Lory, as soon as it was\nquite out of sight; and an old Crab took the opportunity of saying to\nher daughter \u201cAh, my dear!", "mimetype": "text/plain", "start_char_idx": 29103, "end_char_idx": 30858, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1e10b962-1bf2-4135-9844-a8b37395269b": {"__data__": {"id_": "1e10b962-1bf2-4135-9844-a8b37395269b", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5c084f96-5468-4d47-9633-d651fdee2c06", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "88daedeecde7a6c4f657d16964f5370932c9e63d16a3cde2c003ecd9a701ce57", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9c977b29-2b5e-4adb-ac39-8cd17e89d6a0", "node_type": "1", "metadata": {}, "hash": "84ea14d7b1339ec627b462312d2196452b1143c2e1b69e86e8d340f87546e3a6", "class_name": "RelatedNodeInfo"}}, "text": "\u201cWhat a pity it wouldn\u2019t stay!\u201d sighed the Lory, as soon as it was\nquite out of sight; and an old Crab took the opportunity of saying to\nher daughter \u201cAh, my dear! Let this be a lesson to you never to lose\n_your_ temper!\u201d \u201cHold your tongue, Ma!\u201d said the young Crab, a little\nsnappishly. \u201cYou\u2019re enough to try the patience of an oyster!\u201d\n\n\u201cI wish I had our Dinah here, I know I do!\u201d said Alice aloud,\naddressing nobody in particular. \u201cShe\u2019d soon fetch it back!\u201d\n\n\u201cAnd who is Dinah, if I might venture to ask the question?\u201d said the\nLory.\n\nAlice replied eagerly, for she was always ready to talk about her pet:\n\u201cDinah\u2019s our cat. And she\u2019s such a capital one for catching mice you\ncan\u2019t think! And oh, I wish you could see her after the birds! Why,\nshe\u2019ll eat a little bird as soon as look at it!\u201d\n\nThis speech caused a remarkable sensation among the party. Some of the\nbirds hurried off at once: one old Magpie began wrapping itself up very\ncarefully, remarking, \u201cI really must be getting home; the night-air\ndoesn\u2019t suit my throat!\u201d and a Canary called out in a trembling voice\nto its children, \u201cCome away, my dears! It\u2019s high time you were all in\nbed!\u201d On various pretexts they all moved off, and Alice was soon left\nalone.\n\n\u201cI wish I hadn\u2019t mentioned Dinah!\u201d she said to herself in a melancholy\ntone. \u201cNobody seems to like her, down here, and I\u2019m sure she\u2019s the best\ncat in the world! Oh, my dear Dinah! I wonder if I shall ever see you\nany more!\u201d And here poor Alice began to cry again, for she felt very\nlonely and low-spirited. In a little while, however, she again heard a\nlittle pattering of footsteps in the distance, and she looked up\neagerly, half hoping that the Mouse had changed his mind, and was\ncoming back to finish his story.\n\n\n\n\nCHAPTER IV.\nThe Rabbit Sends in a Little Bill", "mimetype": "text/plain", "start_char_idx": 30695, "end_char_idx": 32487, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9c977b29-2b5e-4adb-ac39-8cd17e89d6a0": {"__data__": {"id_": "9c977b29-2b5e-4adb-ac39-8cd17e89d6a0", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1e10b962-1bf2-4135-9844-a8b37395269b", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "50a3f20f092edad52770e9bd71a819a1be070e905fc63e835822219299924e44", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "525f4ace-6468-4482-8704-b40282846811", "node_type": "1", "metadata": {}, "hash": "6ac626d24946cda622506919ff77ea2e768acd8750358da5d4684b721ac30275", "class_name": "RelatedNodeInfo"}}, "text": "CHAPTER IV.\nThe Rabbit Sends in a Little Bill\n\n\nIt was the White Rabbit, trotting slowly back again, and looking\nanxiously about as it went, as if it had lost something; and she heard\nit muttering to itself \u201cThe Duchess! The Duchess! Oh my dear paws! Oh\nmy fur and whiskers! She\u2019ll get me executed, as sure as ferrets are\nferrets! Where _can_ I have dropped them, I wonder?\u201d Alice guessed in a\nmoment that it was looking for the fan and the pair of white kid\ngloves, and she very good-naturedly began hunting about for them, but\nthey were nowhere to be seen\u2014everything seemed to have changed since\nher swim in the pool, and the great hall, with the glass table and the\nlittle door, had vanished completely.\n\nVery soon the Rabbit noticed Alice, as she went hunting about, and\ncalled out to her in an angry tone, \u201cWhy, Mary Ann, what _are_ you\ndoing out here? Run home this moment, and fetch me a pair of gloves and\na fan! Quick, now!\u201d And Alice was so much frightened that she ran off\nat once in the direction it pointed to, without trying to explain the\nmistake it had made.\n\n\u201cHe took me for his housemaid,\u201d she said to herself as she ran. \u201cHow\nsurprised he\u2019ll be when he finds out who I am! But I\u2019d better take him\nhis fan and gloves\u2014that is, if I can find them.\u201d As she said this, she\ncame upon a neat little house, on the door of which was a bright brass\nplate with the name \u201cW. RABBIT,\u201d engraved upon it. She went in without\nknocking, and hurried upstairs, in great fear lest she should meet the\nreal Mary Ann, and be turned out of the house before she had found the\nfan and gloves.\n\n\u201cHow queer it seems,\u201d Alice said to herself, \u201cto be going messages for\na rabbit! I suppose Dinah\u2019ll be sending me on messages next!\u201d And she\nbegan fancying the sort of thing that would happen: \u201c\u2018Miss Alice!", "mimetype": "text/plain", "start_char_idx": 32442, "end_char_idx": 34236, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "525f4ace-6468-4482-8704-b40282846811": {"__data__": {"id_": "525f4ace-6468-4482-8704-b40282846811", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9c977b29-2b5e-4adb-ac39-8cd17e89d6a0", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "a306c228250173a875052d80b078ed975bd00f768878a8a9b346ac10fb3be2e8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "11a31fba-c851-494f-888d-137034ec349b", "node_type": "1", "metadata": {}, "hash": "790d85dffdb466a3eb61a3528ce7e84f6418d427abdd97dd9f68984bb513515c", "class_name": "RelatedNodeInfo"}}, "text": "I suppose Dinah\u2019ll be sending me on messages next!\u201d And she\nbegan fancying the sort of thing that would happen: \u201c\u2018Miss Alice! Come\nhere directly, and get ready for your walk!\u2019 \u2018Coming in a minute,\nnurse! But I\u2019ve got to see that the mouse doesn\u2019t get out.\u2019 Only I\ndon\u2019t think,\u201d Alice went on, \u201cthat they\u2019d let Dinah stop in the house\nif it began ordering people about like that!\u201d\n\nBy this time she had found her way into a tidy little room with a table\nin the window, and on it (as she had hoped) a fan and two or three\npairs of tiny white kid gloves: she took up the fan and a pair of the\ngloves, and was just going to leave the room, when her eye fell upon a\nlittle bottle that stood near the looking-glass. There was no label\nthis time with the words \u201cDRINK ME,\u201d but nevertheless she uncorked it\nand put it to her lips. \u201cI know _something_ interesting is sure to\nhappen,\u201d she said to herself, \u201cwhenever I eat or drink anything; so\nI\u2019ll just see what this bottle does. I do hope it\u2019ll make me grow large\nagain, for really I\u2019m quite tired of being such a tiny little thing!\u201d\n\nIt did so indeed, and much sooner than she had expected: before she had\ndrunk half the bottle, she found her head pressing against the ceiling,\nand had to stoop to save her neck from being broken. She hastily put\ndown the bottle, saying to herself \u201cThat\u2019s quite enough\u2014I hope I shan\u2019t\ngrow any more\u2014As it is, I can\u2019t get out at the door\u2014I do wish I hadn\u2019t\ndrunk quite so much!\u201d\n\nAlas! it was too late to wish that! She went on growing, and growing,\nand very soon had to kneel down on the floor: in another minute there\nwas not even room for this, and she tried the effect of lying down with\none elbow against the door, and the other arm curled round her head.", "mimetype": "text/plain", "start_char_idx": 34111, "end_char_idx": 35847, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "11a31fba-c851-494f-888d-137034ec349b": {"__data__": {"id_": "11a31fba-c851-494f-888d-137034ec349b", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "525f4ace-6468-4482-8704-b40282846811", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "102437a5085f1d67387d1f2c3ea4ffc1925cb2484098ba389e82cf58863959b8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0d0abb6b-626a-4c17-93ee-420c9623e6a1", "node_type": "1", "metadata": {}, "hash": "ba5ef5786318418499cb7f8d4398047860ed50cf5172283ac51a4da197c2329e", "class_name": "RelatedNodeInfo"}}, "text": "Still she went on growing, and, as a last resource, she put one arm out\nof the window, and one foot up the chimney, and said to herself \u201cNow I\ncan do no more, whatever happens. What _will_ become of me?\u201d\n\nLuckily for Alice, the little magic bottle had now had its full effect,\nand she grew no larger: still it was very uncomfortable, and, as there\nseemed to be no sort of chance of her ever getting out of the room\nagain, no wonder she felt unhappy.\n\n\u201cIt was much pleasanter at home,\u201d thought poor Alice, \u201cwhen one wasn\u2019t\nalways growing larger and smaller, and being ordered about by mice and\nrabbits. I almost wish I hadn\u2019t gone down that rabbit-hole\u2014and yet\u2014and\nyet\u2014it\u2019s rather curious, you know, this sort of life! I do wonder what\n_can_ have happened to me! When I used to read fairy-tales, I fancied\nthat kind of thing never happened, and now here I am in the middle of\none! There ought to be a book written about me, that there ought! And\nwhen I grow up, I\u2019ll write one\u2014but I\u2019m grown up now,\u201d she added in a\nsorrowful tone; \u201cat least there\u2019s no room to grow up any more _here_.\u201d\n\n\u201cBut then,\u201d thought Alice, \u201cshall I _never_ get any older than I am\nnow? That\u2019ll be a comfort, one way\u2014never to be an old woman\u2014but\nthen\u2014always to have lessons to learn! Oh, I shouldn\u2019t like _that!_\u201d\n\n\u201cOh, you foolish Alice!\u201d she answered herself. \u201cHow can you learn\nlessons in here? Why, there\u2019s hardly room for _you_, and no room at all\nfor any lesson-books!\u201d\n\nAnd so she went on, taking first one side and then the other, and\nmaking quite a conversation of it altogether; but after a few minutes\nshe heard a voice outside, and stopped to listen.\n\n\u201cMary Ann! Mary Ann!\u201d said the voice. \u201cFetch me my gloves this moment!\u201d\nThen came a little pattering of feet on the stairs.", "mimetype": "text/plain", "start_char_idx": 35848, "end_char_idx": 37607, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0d0abb6b-626a-4c17-93ee-420c9623e6a1": {"__data__": {"id_": "0d0abb6b-626a-4c17-93ee-420c9623e6a1", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "11a31fba-c851-494f-888d-137034ec349b", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "40e832c7021f8f000eb61449d3c72bbe6fcb06f0a9aeb9adb999ad202bbb9abe", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "82aa444e-5073-4b50-b902-1396d1d859c6", "node_type": "1", "metadata": {}, "hash": "7c5d416f0cf48d7feb3554e080b8ba980d1a8cd2fb502aa11434a096fa6b7f63", "class_name": "RelatedNodeInfo"}}, "text": "\u201cMary Ann! Mary Ann!\u201d said the voice. \u201cFetch me my gloves this moment!\u201d\nThen came a little pattering of feet on the stairs. Alice knew it was\nthe Rabbit coming to look for her, and she trembled till she shook the\nhouse, quite forgetting that she was now about a thousand times as\nlarge as the Rabbit, and had no reason to be afraid of it.\n\nPresently the Rabbit came up to the door, and tried to open it; but, as\nthe door opened inwards, and Alice\u2019s elbow was pressed hard against it,\nthat attempt proved a failure. Alice heard it say to itself \u201cThen I\u2019ll\ngo round and get in at the window.\u201d\n\n\u201c_That_ you won\u2019t!\u201d thought Alice, and, after waiting till she fancied\nshe heard the Rabbit just under the window, she suddenly spread out her\nhand, and made a snatch in the air. She did not get hold of anything,\nbut she heard a little shriek and a fall, and a crash of broken glass,\nfrom which she concluded that it was just possible it had fallen into a\ncucumber-frame, or something of the sort.\n\nNext came an angry voice\u2014the Rabbit\u2019s\u2014\u201cPat! Pat! Where are you?\u201d And\nthen a voice she had never heard before, \u201cSure then I\u2019m here! Digging\nfor apples, yer honour!\u201d\n\n\u201cDigging for apples, indeed!\u201d said the Rabbit angrily. \u201cHere! Come and\nhelp me out of _this!_\u201d (Sounds of more broken glass.)\n\n\u201cNow tell me, Pat, what\u2019s that in the window?\u201d\n\n\u201cSure, it\u2019s an arm, yer honour!\u201d (He pronounced it \u201carrum.\u201d)\n\n\u201cAn arm, you goose! Who ever saw one that size?", "mimetype": "text/plain", "start_char_idx": 37484, "end_char_idx": 38924, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "82aa444e-5073-4b50-b902-1396d1d859c6": {"__data__": {"id_": "82aa444e-5073-4b50-b902-1396d1d859c6", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0d0abb6b-626a-4c17-93ee-420c9623e6a1", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8d6f0904b325a42a28defe54cc5505d4f33174441fbf5433515443c9472116fd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c21a250f-de9f-4e2d-b2e9-f026feac7b72", "node_type": "1", "metadata": {}, "hash": "c717c1a81667c2543cceb9c4849a46e212042d41c48bd83c263c905dd8a16325", "class_name": "RelatedNodeInfo"}}, "text": "\u201cNow tell me, Pat, what\u2019s that in the window?\u201d\n\n\u201cSure, it\u2019s an arm, yer honour!\u201d (He pronounced it \u201carrum.\u201d)\n\n\u201cAn arm, you goose! Who ever saw one that size? Why, it fills the whole\nwindow!\u201d\n\n\u201cSure, it does, yer honour: but it\u2019s an arm for all that.\u201d\n\n\u201cWell, it\u2019s got no business there, at any rate: go and take it away!\u201d\n\nThere was a long silence after this, and Alice could only hear whispers\nnow and then; such as, \u201cSure, I don\u2019t like it, yer honour, at all, at\nall!\u201d \u201cDo as I tell you, you coward!\u201d and at last she spread out her\nhand again, and made another snatch in the air. This time there were\n_two_ little shrieks, and more sounds of broken glass. \u201cWhat a number\nof cucumber-frames there must be!\u201d thought Alice. \u201cI wonder what\nthey\u2019ll do next! As for pulling me out of the window, I only wish they\n_could!_ I\u2019m sure _I_ don\u2019t want to stay in here any longer!\u201d\n\nShe waited for some time without hearing anything more: at last came a\nrumbling of little cartwheels, and the sound of a good many voices all\ntalking together: she made out the words: \u201cWhere\u2019s the other\nladder?\u2014Why, I hadn\u2019t to bring but one; Bill\u2019s got the other\u2014Bill!\nfetch it here, lad!\u2014Here, put \u2019em up at this corner\u2014No, tie \u2019em\ntogether first\u2014they don\u2019t reach half high enough yet\u2014Oh! they\u2019ll do\nwell enough; don\u2019t be particular\u2014Here, Bill! catch hold of this\nrope\u2014Will the roof bear?\u2014Mind that loose slate\u2014Oh, it\u2019s coming down!\nHeads below!\u201d (a loud crash)\u2014\u201cNow, who did that?\u2014It was Bill, I\nfancy\u2014Who\u2019s to go down the chimney?\u2014Nay, _I_ shan\u2019t! _You_ do\nit!\u2014_That_ I won\u2019t, then!\u2014Bill\u2019s to go down\u2014Here, Bill!", "mimetype": "text/plain", "start_char_idx": 38767, "end_char_idx": 40355, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c21a250f-de9f-4e2d-b2e9-f026feac7b72": {"__data__": {"id_": "c21a250f-de9f-4e2d-b2e9-f026feac7b72", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "82aa444e-5073-4b50-b902-1396d1d859c6", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "415611875287f91263ddab1614859c4bfa6f7d649b7860ae2f618d3d076469ef", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ca94437a-258d-4e48-b8c8-0aa25499e748", "node_type": "1", "metadata": {}, "hash": "e39bc3b052a5bafd19d053e61c0b05e032ce7eaadf652f21990162ea50a1414a", "class_name": "RelatedNodeInfo"}}, "text": "_You_ do\nit!\u2014_That_ I won\u2019t, then!\u2014Bill\u2019s to go down\u2014Here, Bill! the master says\nyou\u2019re to go down the chimney!\u201d\n\n\u201cOh! So Bill\u2019s got to come down the chimney, has he?\u201d said Alice to\nherself. \u201cShy, they seem to put everything upon Bill! I wouldn\u2019t be in\nBill\u2019s place for a good deal: this fireplace is narrow, to be sure; but\nI _think_ I can kick a little!\u201d\n\nShe drew her foot as far down the chimney as she could, and waited till\nshe heard a little animal (she couldn\u2019t guess of what sort it was)\nscratching and scrambling about in the chimney close above her: then,\nsaying to herself \u201cThis is Bill,\u201d she gave one sharp kick, and waited\nto see what would happen next.\n\nThe first thing she heard was a general chorus of \u201cThere goes Bill!\u201d\nthen the Rabbit\u2019s voice along\u2014\u201cCatch him, you by the hedge!\u201d then\nsilence, and then another confusion of voices\u2014\u201cHold up his head\u2014Brandy\nnow\u2014Don\u2019t choke him\u2014How was it, old fellow? What happened to you? Tell\nus all about it!\u201d\n\nLast came a little feeble, squeaking voice, (\u201cThat\u2019s Bill,\u201d thought\nAlice,) \u201cWell, I hardly know\u2014No more, thank ye; I\u2019m better now\u2014but I\u2019m\na deal too flustered to tell you\u2014all I know is, something comes at me\nlike a Jack-in-the-box, and up I goes like a sky-rocket!\u201d\n\n\u201cSo you did, old fellow!\u201d said the others.\n\n\u201cWe must burn the house down!\u201d said the Rabbit\u2019s voice; and Alice\ncalled out as loud as she could, \u201cIf you do, I\u2019ll set Dinah at you!\u201d\n\nThere was a dead silence instantly, and Alice thought to herself, \u201cI\nwonder what they _will_ do next!", "mimetype": "text/plain", "start_char_idx": 40291, "end_char_idx": 41805, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ca94437a-258d-4e48-b8c8-0aa25499e748": {"__data__": {"id_": "ca94437a-258d-4e48-b8c8-0aa25499e748", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c21a250f-de9f-4e2d-b2e9-f026feac7b72", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "382bc6bbd1a6e0a7d9e9d920b146758c26ca02c011c2f56427781bb5f0fd3b45", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b086b9a1-6dc8-4a5a-a632-e779ebb3cf28", "node_type": "1", "metadata": {}, "hash": "afd1191de8a348e688565061f517433caad6503d38ae62b0872e78ca15074574", "class_name": "RelatedNodeInfo"}}, "text": "If they had any sense, they\u2019d take the\nroof off.\u201d After a minute or two, they began moving about again, and\nAlice heard the Rabbit say, \u201cA barrowful will do, to begin with.\u201d\n\n\u201cA barrowful of _what?_\u201d thought Alice; but she had not long to doubt,\nfor the next moment a shower of little pebbles came rattling in at the\nwindow, and some of them hit her in the face. \u201cI\u2019ll put a stop to\nthis,\u201d she said to herself, and shouted out, \u201cYou\u2019d better not do that\nagain!\u201d which produced another dead silence.\n\nAlice noticed with some surprise that the pebbles were all turning into\nlittle cakes as they lay on the floor, and a bright idea came into her\nhead. \u201cIf I eat one of these cakes,\u201d she thought, \u201cit\u2019s sure to make\n_some_ change in my size; and as it can\u2019t possibly make me larger, it\nmust make me smaller, I suppose.\u201d\n\nSo she swallowed one of the cakes, and was delighted to find that she\nbegan shrinking directly. As soon as she was small enough to get\nthrough the door, she ran out of the house, and found quite a crowd of\nlittle animals and birds waiting outside. The poor little Lizard, Bill,\nwas in the middle, being held up by two guinea-pigs, who were giving it\nsomething out of a bottle. They all made a rush at Alice the moment she\nappeared; but she ran off as hard as she could, and soon found herself\nsafe in a thick wood.\n\n\u201cThe first thing I\u2019ve got to do,\u201d said Alice to herself, as she\nwandered about in the wood, \u201cis to grow to my right size again; and the\nsecond thing is to find my way into that lovely garden. I think that\nwill be the best plan.\u201d\n\nIt sounded an excellent plan, no doubt, and very neatly and simply\narranged; the only difficulty was, that she had not the smallest idea\nhow to set about it; and while she was peering about anxiously among\nthe trees, a little sharp bark just over her head made her look up in a\ngreat hurry.", "mimetype": "text/plain", "start_char_idx": 41806, "end_char_idx": 43659, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b086b9a1-6dc8-4a5a-a632-e779ebb3cf28": {"__data__": {"id_": "b086b9a1-6dc8-4a5a-a632-e779ebb3cf28", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ca94437a-258d-4e48-b8c8-0aa25499e748", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "b72f008fa700d39e3a591f10b447b741b33020945fd6aee4c6239a391ebace2c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "864dd49d-de1d-41da-8e10-5b39b130d97b", "node_type": "1", "metadata": {}, "hash": "6afe5a0e15bb77da27ebd62377beac67c49958483bdad8f74578e4bbe449a069", "class_name": "RelatedNodeInfo"}}, "text": "An enormous puppy was looking down at her with large round eyes, and\nfeebly stretching out one paw, trying to touch her. \u201cPoor little\nthing!\u201d said Alice, in a coaxing tone, and she tried hard to whistle to\nit; but she was terribly frightened all the time at the thought that it\nmight be hungry, in which case it would be very likely to eat her up in\nspite of all her coaxing.\n\nHardly knowing what she did, she picked up a little bit of stick, and\nheld it out to the puppy; whereupon the puppy jumped into the air off\nall its feet at once, with a yelp of delight, and rushed at the stick,\nand made believe to worry it; then Alice dodged behind a great thistle,\nto keep herself from being run over; and the moment she appeared on the\nother side, the puppy made another rush at the stick, and tumbled head\nover heels in its hurry to get hold of it; then Alice, thinking it was\nvery like having a game of play with a cart-horse, and expecting every\nmoment to be trampled under its feet, ran round the thistle again; then\nthe puppy began a series of short charges at the stick, running a very\nlittle way forwards each time and a long way back, and barking hoarsely\nall the while, till at last it sat down a good way off, panting, with\nits tongue hanging out of its mouth, and its great eyes half shut.\n\nThis seemed to Alice a good opportunity for making her escape; so she\nset off at once, and ran till she was quite tired and out of breath,\nand till the puppy\u2019s bark sounded quite faint in the distance.\n\n\u201cAnd yet what a dear little puppy it was!\u201d said Alice, as she leant\nagainst a buttercup to rest herself, and fanned herself with one of the\nleaves: \u201cI should have liked teaching it tricks very much, if\u2014if I\u2019d\nonly been the right size to do it! Oh dear! I\u2019d nearly forgotten that\nI\u2019ve got to grow up again! Let me see\u2014how _is_ it to be managed?", "mimetype": "text/plain", "start_char_idx": 43661, "end_char_idx": 45505, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "864dd49d-de1d-41da-8e10-5b39b130d97b": {"__data__": {"id_": "864dd49d-de1d-41da-8e10-5b39b130d97b", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b086b9a1-6dc8-4a5a-a632-e779ebb3cf28", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "7f0e167b8309e9cdc912c851e3e287eff16e0d7816c5a6e184ebe9e18850b8cf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "83db070a-a453-44c7-af9f-630b992bfc10", "node_type": "1", "metadata": {}, "hash": "cc0c1a8af6869f495b3745a2c1826eb3063a0460480c18d508a07d4055eefd9f", "class_name": "RelatedNodeInfo"}}, "text": "Oh dear! I\u2019d nearly forgotten that\nI\u2019ve got to grow up again! Let me see\u2014how _is_ it to be managed? I\nsuppose I ought to eat or drink something or other; but the great\nquestion is, what?\u201d\n\nThe great question certainly was, what? Alice looked all round her at\nthe flowers and the blades of grass, but she did not see anything that\nlooked like the right thing to eat or drink under the circumstances.\nThere was a large mushroom growing near her, about the same height as\nherself; and when she had looked under it, and on both sides of it, and\nbehind it, it occurred to her that she might as well look and see what\nwas on the top of it.\n\nShe stretched herself up on tiptoe, and peeped over the edge of the\nmushroom, and her eyes immediately met those of a large blue\ncaterpillar, that was sitting on the top with its arms folded, quietly\nsmoking a long hookah, and taking not the smallest notice of her or of\nanything else.\n\n\n\n\nCHAPTER V.\nAdvice from a Caterpillar\n\n\nThe Caterpillar and Alice looked at each other for some time in\nsilence: at last the Caterpillar took the hookah out of its mouth, and\naddressed her in a languid, sleepy voice.\n\n\u201cWho are _you?_\u201d said the Caterpillar.\n\nThis was not an encouraging opening for a conversation. Alice replied,\nrather shyly, \u201cI\u2014I hardly know, sir, just at present\u2014at least I know\nwho I _was_ when I got up this morning, but I think I must have been\nchanged several times since then.\u201d\n\n\u201cWhat do you mean by that?\u201d said the Caterpillar sternly. \u201cExplain\nyourself!\u201d\n\n\u201cI can\u2019t explain _myself_, I\u2019m afraid, sir,\u201d said Alice, \u201cbecause I\u2019m\nnot myself, you see.\u201d\n\n\u201cI don\u2019t see,\u201d said the Caterpillar.\n\n\u201cI\u2019m afraid I can\u2019t put it more clearly,\u201d Alice replied very politely,\n\u201cfor I can\u2019t understand it myself to begin with; and being so many\ndifferent sizes in a day is very confusing.\u201d\n\n\u201cIt isn\u2019t,\u201d said the Caterpillar.", "mimetype": "text/plain", "start_char_idx": 45406, "end_char_idx": 47260, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "83db070a-a453-44c7-af9f-630b992bfc10": {"__data__": {"id_": "83db070a-a453-44c7-af9f-630b992bfc10", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "864dd49d-de1d-41da-8e10-5b39b130d97b", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "6c5c5e4e26226dd1385b4582ae5e44e24257b8e7bbd072461fabf45e7d6425ba", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "91082429-933a-44e2-ada6-494afaab7d5c", "node_type": "1", "metadata": {}, "hash": "899c126b815ef088b6db5c311374f12582eb2dd566691aec82f76f48c9627eed", "class_name": "RelatedNodeInfo"}}, "text": "\u201cWell, perhaps you haven\u2019t found it so yet,\u201d said Alice; \u201cbut when you\nhave to turn into a chrysalis\u2014you will some day, you know\u2014and then\nafter that into a butterfly, I should think you\u2019ll feel it a little\nqueer, won\u2019t you?\u201d\n\n\u201cNot a bit,\u201d said the Caterpillar.\n\n\u201cWell, perhaps your feelings may be different,\u201d said Alice; \u201call I know\nis, it would feel very queer to _me_.\u201d\n\n\u201cYou!\u201d said the Caterpillar contemptuously. \u201cWho are _you?_\u201d\n\nWhich brought them back again to the beginning of the conversation.\nAlice felt a little irritated at the Caterpillar\u2019s making such _very_\nshort remarks, and she drew herself up and said, very gravely, \u201cI\nthink, you ought to tell me who _you_ are, first.\u201d\n\n\u201cWhy?\u201d said the Caterpillar.\n\nHere was another puzzling question; and as Alice could not think of any\ngood reason, and as the Caterpillar seemed to be in a _very_ unpleasant\nstate of mind, she turned away.\n\n\u201cCome back!\u201d the Caterpillar called after her. \u201cI\u2019ve something\nimportant to say!\u201d\n\nThis sounded promising, certainly: Alice turned and came back again.\n\n\u201cKeep your temper,\u201d said the Caterpillar.\n\n\u201cIs that all?\u201d said Alice, swallowing down her anger as well as she\ncould.\n\n\u201cNo,\u201d said the Caterpillar.\n\nAlice thought she might as well wait, as she had nothing else to do,\nand perhaps after all it might tell her something worth hearing. For\nsome minutes it puffed away without speaking, but at last it unfolded\nits arms, took the hookah out of its mouth again, and said, \u201cSo you\nthink you\u2019re changed, do you?\u201d\n\n\u201cI\u2019m afraid I am, sir,\u201d said Alice; \u201cI can\u2019t remember things as I\nused\u2014and I don\u2019t keep the same size for ten minutes together!\u201d\n\n\u201cCan\u2019t remember _what_ things?\u201d said the Caterpillar.\n\n\u201cWell, I\u2019ve tried to say \u201cHow doth the little busy bee,\u201d but it all\ncame different!\u201d Alice replied in a very melancholy voice.\n\n\u201cRepeat, \u201c_You are old, Father William_,\u2019\u201d said the Caterpillar.", "mimetype": "text/plain", "start_char_idx": 47262, "end_char_idx": 49147, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "91082429-933a-44e2-ada6-494afaab7d5c": {"__data__": {"id_": "91082429-933a-44e2-ada6-494afaab7d5c", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83db070a-a453-44c7-af9f-630b992bfc10", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "707c7dbeeb39657f8ba8f9aa01c915d449ef977775e3cb33181790aafe574cfe", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6ffdc1b6-485a-4391-884a-60cdcf9f6728", "node_type": "1", "metadata": {}, "hash": "4ce1293c86483d3d7c54b4649d8600927f9126e43bbc6294620ac4cc8a86c028", "class_name": "RelatedNodeInfo"}}, "text": "\u201cRepeat, \u201c_You are old, Father William_,\u2019\u201d said the Caterpillar.\n\nAlice folded her hands, and began:\u2014\n\n\u201cYou are old, Father William,\u201d the young man said,\n \u201cAnd your hair has become very white;\nAnd yet you incessantly stand on your head\u2014\n Do you think, at your age, it is right?\u201d\n\n\u201cIn my youth,\u201d Father William replied to his son,\n \u201cI feared it might injure the brain;\nBut, now that I\u2019m perfectly sure I have none,\n Why, I do it again and again.\u201d\n\n\u201cYou are old,\u201d said the youth, \u201cas I mentioned before,\n And have grown most uncommonly fat;\nYet you turned a back-somersault in at the door\u2014\n Pray, what is the reason of that?\u201d\n\n\u201cIn my youth,\u201d said the sage, as he shook his grey locks,\n \u201cI kept all my limbs very supple\nBy the use of this ointment\u2014one shilling the box\u2014\n Allow me to sell you a couple?\u201d\n\n\u201cYou are old,\u201d said the youth, \u201cand your jaws are too weak\n For anything tougher than suet;\nYet you finished the goose, with the bones and the beak\u2014\n Pray, how did you manage to do it?\u201d\n\n\u201cIn my youth,\u201d said his father, \u201cI took to the law,\n And argued each case with my wife;\nAnd the muscular strength, which it gave to my jaw,\n Has lasted the rest of my life.\u201d\n\n\u201cYou are old,\u201d said the youth, \u201cone would hardly suppose\n That your eye was as steady as ever;\nYet you balanced an eel on the end of your nose\u2014\n What made you so awfully clever?\u201d\n\n\u201cI have answered three questions, and that is enough,\u201d\n Said his father; \u201cdon\u2019t give yourself airs!\nDo you think I can listen all day to such stuff?\n Be off, or I\u2019ll kick you down stairs!\u201d\n\n\n\u201cThat is not said right,\u201d said the Caterpillar.\n\n\u201cNot _quite_ right, I\u2019m afraid,\u201d said Alice, timidly; \u201csome of the\nwords have got altered.\u201d\n\n\u201cIt is wrong from beginning to end,\u201d said the Caterpillar decidedly,\nand there was silence for some minutes.\n\nThe Caterpillar was the first to speak.", "mimetype": "text/plain", "start_char_idx": 49083, "end_char_idx": 50956, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6ffdc1b6-485a-4391-884a-60cdcf9f6728": {"__data__": {"id_": "6ffdc1b6-485a-4391-884a-60cdcf9f6728", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "91082429-933a-44e2-ada6-494afaab7d5c", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "9781c96b40e8bfff2c7747f8f15f3c9f43449d4cfab69e97b3d0f11c7d65cd8c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "95dca97f-5aff-45ef-98fc-180a28d96776", "node_type": "1", "metadata": {}, "hash": "bb7b2bb5d4e2c4ff796fd7efff2f3c0dbd5efcee53bae2824833fb717d0e97b8", "class_name": "RelatedNodeInfo"}}, "text": "The Caterpillar was the first to speak.\n\n\u201cWhat size do you want to be?\u201d it asked.\n\n\u201cOh, I\u2019m not particular as to size,\u201d Alice hastily replied; \u201conly one\ndoesn\u2019t like changing so often, you know.\u201d\n\n\u201cI _don\u2019t_ know,\u201d said the Caterpillar.\n\nAlice said nothing: she had never been so much contradicted in her life\nbefore, and she felt that she was losing her temper.\n\n\u201cAre you content now?\u201d said the Caterpillar.\n\n\u201cWell, I should like to be a _little_ larger, sir, if you wouldn\u2019t\nmind,\u201d said Alice: \u201cthree inches is such a wretched height to be.\u201d\n\n\u201cIt is a very good height indeed!\u201d said the Caterpillar angrily,\nrearing itself upright as it spoke (it was exactly three inches high).\n\n\u201cBut I\u2019m not used to it!\u201d pleaded poor Alice in a piteous tone. And she\nthought of herself, \u201cI wish the creatures wouldn\u2019t be so easily\noffended!\u201d\n\n\u201cYou\u2019ll get used to it in time,\u201d said the Caterpillar; and it put the\nhookah into its mouth and began smoking again.\n\nThis time Alice waited patiently until it chose to speak again. In a\nminute or two the Caterpillar took the hookah out of its mouth and\nyawned once or twice, and shook itself. Then it got down off the\nmushroom, and crawled away in the grass, merely remarking as it went,\n\u201cOne side will make you grow taller, and the other side will make you\ngrow shorter.\u201d\n\n\u201cOne side of _what?_ The other side of _what?_\u201d thought Alice to\nherself.\n\n\u201cOf the mushroom,\u201d said the Caterpillar, just as if she had asked it\naloud; and in another moment it was out of sight.\n\nAlice remained looking thoughtfully at the mushroom for a minute,\ntrying to make out which were the two sides of it; and as it was\nperfectly round, she found this a very difficult question. However, at\nlast she stretched her arms round it as far as they would go, and broke\noff a bit of the edge with each hand.", "mimetype": "text/plain", "start_char_idx": 50917, "end_char_idx": 52728, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "95dca97f-5aff-45ef-98fc-180a28d96776": {"__data__": {"id_": "95dca97f-5aff-45ef-98fc-180a28d96776", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6ffdc1b6-485a-4391-884a-60cdcf9f6728", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "63e2c356bb4f7003afeec7aa28aa7061f1213503e828b2c65f206ad35d8686f8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a3ee7823-d883-4689-a3d3-16fee0d55a8e", "node_type": "1", "metadata": {}, "hash": "12c76863b55b44aea6a7610bdbc7d575c90636d1b2a9a6535e010bb234a4c7c4", "class_name": "RelatedNodeInfo"}}, "text": "However, at\nlast she stretched her arms round it as far as they would go, and broke\noff a bit of the edge with each hand.\n\n\u201cAnd now which is which?\u201d she said to herself, and nibbled a little of\nthe right-hand bit to try the effect: the next moment she felt a\nviolent blow underneath her chin: it had struck her foot!\n\nShe was a good deal frightened by this very sudden change, but she felt\nthat there was no time to be lost, as she was shrinking rapidly; so she\nset to work at once to eat some of the other bit. Her chin was pressed\nso closely against her foot, that there was hardly room to open her\nmouth; but she did it at last, and managed to swallow a morsel of the\nlefthand bit.\n\n* * * * * * *\n\n * * * * * *\n\n* * * * * * *\n\n\n\u201cCome, my head\u2019s free at last!\u201d said Alice in a tone of delight, which\nchanged into alarm in another moment, when she found that her shoulders\nwere nowhere to be found: all she could see, when she looked down, was\nan immense length of neck, which seemed to rise like a stalk out of a\nsea of green leaves that lay far below her.\n\n\u201cWhat _can_ all that green stuff be?\u201d said Alice. \u201cAnd where _have_ my\nshoulders got to? And oh, my poor hands, how is it I can\u2019t see you?\u201d\nShe was moving them about as she spoke, but no result seemed to follow,\nexcept a little shaking among the distant green leaves.\n\nAs there seemed to be no chance of getting her hands up to her head,\nshe tried to get her head down to them, and was delighted to find that\nher neck would bend about easily in any direction, like a serpent.", "mimetype": "text/plain", "start_char_idx": 52607, "end_char_idx": 54230, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a3ee7823-d883-4689-a3d3-16fee0d55a8e": {"__data__": {"id_": "a3ee7823-d883-4689-a3d3-16fee0d55a8e", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "95dca97f-5aff-45ef-98fc-180a28d96776", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "16c35354e65d749d7b62442d37ca601415a59234b968fc3a89ece7c754a6d153", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e099c9b1-f180-495c-8a90-4acf0eed27f4", "node_type": "1", "metadata": {}, "hash": "9937585b7cc2686342654789c70468842a27e737b8e16624345ed75f572bd1bd", "class_name": "RelatedNodeInfo"}}, "text": "As there seemed to be no chance of getting her hands up to her head,\nshe tried to get her head down to them, and was delighted to find that\nher neck would bend about easily in any direction, like a serpent. She\nhad just succeeded in curving it down into a graceful zigzag, and was\ngoing to dive in among the leaves, which she found to be nothing but\nthe tops of the trees under which she had been wandering, when a sharp\nhiss made her draw back in a hurry: a large pigeon had flown into her\nface, and was beating her violently with its wings.\n\n\u201cSerpent!\u201d screamed the Pigeon.\n\n\u201cI\u2019m _not_ a serpent!\u201d said Alice indignantly. \u201cLet me alone!\u201d\n\n\u201cSerpent, I say again!\u201d repeated the Pigeon, but in a more subdued\ntone, and added with a kind of sob, \u201cI\u2019ve tried every way, and nothing\nseems to suit them!\u201d\n\n\u201cI haven\u2019t the least idea what you\u2019re talking about,\u201d said Alice.\n\n\u201cI\u2019ve tried the roots of trees, and I\u2019ve tried banks, and I\u2019ve tried\nhedges,\u201d the Pigeon went on, without attending to her; \u201cbut those\nserpents! There\u2019s no pleasing them!\u201d\n\nAlice was more and more puzzled, but she thought there was no use in\nsaying anything more till the Pigeon had finished.\n\n\u201cAs if it wasn\u2019t trouble enough hatching the eggs,\u201d said the Pigeon;\n\u201cbut I must be on the look-out for serpents night and day! Why, I\nhaven\u2019t had a wink of sleep these three weeks!\u201d\n\n\u201cI\u2019m very sorry you\u2019ve been annoyed,\u201d said Alice, who was beginning to\nsee its meaning.\n\n\u201cAnd just as I\u2019d taken the highest tree in the wood,\u201d continued the\nPigeon, raising its voice to a shriek, \u201cand just as I was thinking I\nshould be free of them at last, they must needs come wriggling down\nfrom the sky! Ugh, Serpent!\u201d\n\n\u201cBut I\u2019m _not_ a serpent, I tell you!\u201d said Alice. \u201cI\u2019m a\u2014I\u2019m a\u2014\u201d\n\n\u201cWell! _What_ are you?\u201d said the Pigeon.", "mimetype": "text/plain", "start_char_idx": 54024, "end_char_idx": 55801, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e099c9b1-f180-495c-8a90-4acf0eed27f4": {"__data__": {"id_": "e099c9b1-f180-495c-8a90-4acf0eed27f4", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a3ee7823-d883-4689-a3d3-16fee0d55a8e", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "d6fc75ba6ca1eae3d2daa9d8df3ffd063208261133623769b4a38e1fa51e0f63", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9a3f19c3-bc9a-461b-ac98-2cc578a9fed4", "node_type": "1", "metadata": {}, "hash": "83ed831dd39011fb61972bf2f0ec131aec2aa4a2772ad4f28f7baa70b7340fd8", "class_name": "RelatedNodeInfo"}}, "text": "Ugh, Serpent!\u201d\n\n\u201cBut I\u2019m _not_ a serpent, I tell you!\u201d said Alice. \u201cI\u2019m a\u2014I\u2019m a\u2014\u201d\n\n\u201cWell! _What_ are you?\u201d said the Pigeon. \u201cI can see you\u2019re trying to\ninvent something!\u201d\n\n\u201cI\u2014I\u2019m a little girl,\u201d said Alice, rather doubtfully, as she remembered\nthe number of changes she had gone through that day.\n\n\u201cA likely story indeed!\u201d said the Pigeon in a tone of the deepest\ncontempt. \u201cI\u2019ve seen a good many little girls in my time, but never\n_one_ with such a neck as that! No, no! You\u2019re a serpent; and there\u2019s\nno use denying it. I suppose you\u2019ll be telling me next that you never\ntasted an egg!\u201d\n\n\u201cI _have_ tasted eggs, certainly,\u201d said Alice, who was a very truthful\nchild; \u201cbut little girls eat eggs quite as much as serpents do, you\nknow.\u201d\n\n\u201cI don\u2019t believe it,\u201d said the Pigeon; \u201cbut if they do, why then\nthey\u2019re a kind of serpent, that\u2019s all I can say.\u201d\n\nThis was such a new idea to Alice, that she was quite silent for a\nminute or two, which gave the Pigeon the opportunity of adding, \u201cYou\u2019re\nlooking for eggs, I know _that_ well enough; and what does it matter to\nme whether you\u2019re a little girl or a serpent?\u201d\n\n\u201cIt matters a good deal to _me_,\u201d said Alice hastily; \u201cbut I\u2019m not\nlooking for eggs, as it happens; and if I was, I shouldn\u2019t want\n_yours_: I don\u2019t like them raw.\u201d\n\n\u201cWell, be off, then!\u201d said the Pigeon in a sulky tone, as it settled\ndown again into its nest. Alice crouched down among the trees as well\nas she could, for her neck kept getting entangled among the branches,\nand every now and then she had to stop and untwist it.", "mimetype": "text/plain", "start_char_idx": 55678, "end_char_idx": 57217, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9a3f19c3-bc9a-461b-ac98-2cc578a9fed4": {"__data__": {"id_": "9a3f19c3-bc9a-461b-ac98-2cc578a9fed4", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e099c9b1-f180-495c-8a90-4acf0eed27f4", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "81853d9515125c5b0f58be894448ca9b4880f846c6d0afb15fd86235a7827f04", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fcb9a991-6838-4188-84f5-e9c96fceec63", "node_type": "1", "metadata": {}, "hash": "4f31bfd22cf876a5676ad139ca133c3516b2bc08c22360349abd7773a5fa90af", "class_name": "RelatedNodeInfo"}}, "text": "Alice crouched down among the trees as well\nas she could, for her neck kept getting entangled among the branches,\nand every now and then she had to stop and untwist it. After a while\nshe remembered that she still held the pieces of mushroom in her hands,\nand she set to work very carefully, nibbling first at one and then at\nthe other, and growing sometimes taller and sometimes shorter, until\nshe had succeeded in bringing herself down to her usual height.\n\nIt was so long since she had been anything near the right size, that it\nfelt quite strange at first; but she got used to it in a few minutes,\nand began talking to herself, as usual. \u201cCome, there\u2019s half my plan\ndone now! How puzzling all these changes are! I\u2019m never sure what I\u2019m\ngoing to be, from one minute to another! However, I\u2019ve got back to my\nright size: the next thing is, to get into that beautiful garden\u2014how\n_is_ that to be done, I wonder?\u201d As she said this, she came suddenly\nupon an open place, with a little house in it about four feet high.\n\u201cWhoever lives there,\u201d thought Alice, \u201cit\u2019ll never do to come upon them\n_this_ size: why, I should frighten them out of their wits!\u201d So she\nbegan nibbling at the righthand bit again, and did not venture to go\nnear the house till she had brought herself down to nine inches high.\n\n\n\n\nCHAPTER VI.\nPig and Pepper\n\n\nFor a minute or two she stood looking at the house, and wondering what\nto do next, when suddenly a footman in livery came running out of the\nwood\u2014(she considered him to be a footman because he was in livery:\notherwise, judging by his face only, she would have called him a\nfish)\u2014and rapped loudly at the door with his knuckles. It was opened by\nanother footman in livery, with a round face, and large eyes like a\nfrog; and both footmen, Alice noticed, had powdered hair that curled\nall over their heads. She felt very curious to know what it was all\nabout, and crept a little way out of the wood to listen.", "mimetype": "text/plain", "start_char_idx": 57049, "end_char_idx": 58982, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fcb9a991-6838-4188-84f5-e9c96fceec63": {"__data__": {"id_": "fcb9a991-6838-4188-84f5-e9c96fceec63", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9a3f19c3-bc9a-461b-ac98-2cc578a9fed4", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "12d4ce5ed30f2e03ef1c4ef31a9be5dc5fcd6a929ebe242091a364b84e25a0aa", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2f98b957-934d-4a85-896d-0632239404fb", "node_type": "1", "metadata": {}, "hash": "dcb8385875af443ad1ffa3d0a31643cb3074ec6fd5a11310d359e4281cd32329", "class_name": "RelatedNodeInfo"}}, "text": "She felt very curious to know what it was all\nabout, and crept a little way out of the wood to listen.\n\nThe Fish-Footman began by producing from under his arm a great letter,\nnearly as large as himself, and this he handed over to the other,\nsaying, in a solemn tone, \u201cFor the Duchess. An invitation from the\nQueen to play croquet.\u201d The Frog-Footman repeated, in the same solemn\ntone, only changing the order of the words a little, \u201cFrom the Queen.\nAn invitation for the Duchess to play croquet.\u201d\n\nThen they both bowed low, and their curls got entangled together.\n\nAlice laughed so much at this, that she had to run back into the wood\nfor fear of their hearing her; and when she next peeped out the\nFish-Footman was gone, and the other was sitting on the ground near the\ndoor, staring stupidly up into the sky.\n\nAlice went timidly up to the door, and knocked.\n\n\u201cThere\u2019s no sort of use in knocking,\u201d said the Footman, \u201cand that for\ntwo reasons. First, because I\u2019m on the same side of the door as you\nare; secondly, because they\u2019re making such a noise inside, no one could\npossibly hear you.\u201d And certainly there _was_ a most extraordinary\nnoise going on within\u2014a constant howling and sneezing, and every now\nand then a great crash, as if a dish or kettle had been broken to\npieces.\n\n\u201cPlease, then,\u201d said Alice, \u201chow am I to get in?\u201d\n\n\u201cThere might be some sense in your knocking,\u201d the Footman went on\nwithout attending to her, \u201cif we had the door between us. For instance,\nif you were _inside_, you might knock, and I could let you out, you\nknow.\u201d He was looking up into the sky all the time he was speaking, and\nthis Alice thought decidedly uncivil. \u201cBut perhaps he can\u2019t help it,\u201d\nshe said to herself; \u201chis eyes are so _very_ nearly at the top of his\nhead. But at any rate he might answer questions.\u2014How am I to get in?\u201d\nshe repeated, aloud.", "mimetype": "text/plain", "start_char_idx": 58880, "end_char_idx": 60720, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2f98b957-934d-4a85-896d-0632239404fb": {"__data__": {"id_": "2f98b957-934d-4a85-896d-0632239404fb", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fcb9a991-6838-4188-84f5-e9c96fceec63", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "29c1a43efa43018895bf405edefd76cb3ae2d21940f14c620eef53d46c824ea1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ee0235fc-aab4-421e-a54d-615fc84de98f", "node_type": "1", "metadata": {}, "hash": "ecfd6dd5da3df3b805547d08d6e82732f935b28404b2d24cf1170ea61f90e1cf", "class_name": "RelatedNodeInfo"}}, "text": "But at any rate he might answer questions.\u2014How am I to get in?\u201d\nshe repeated, aloud.\n\n\u201cI shall sit here,\u201d the Footman remarked, \u201ctill tomorrow\u2014\u201d\n\nAt this moment the door of the house opened, and a large plate came\nskimming out, straight at the Footman\u2019s head: it just grazed his nose,\nand broke to pieces against one of the trees behind him.\n\n\u201c\u2014or next day, maybe,\u201d the Footman continued in the same tone, exactly\nas if nothing had happened.\n\n\u201cHow am I to get in?\u201d asked Alice again, in a louder tone.\n\n\u201c_Are_ you to get in at all?\u201d said the Footman. \u201cThat\u2019s the first\nquestion, you know.\u201d\n\nIt was, no doubt: only Alice did not like to be told so. \u201cIt\u2019s really\ndreadful,\u201d she muttered to herself, \u201cthe way all the creatures argue.\nIt\u2019s enough to drive one crazy!\u201d\n\nThe Footman seemed to think this a good opportunity for repeating his\nremark, with variations. \u201cI shall sit here,\u201d he said, \u201con and off, for\ndays and days.\u201d\n\n\u201cBut what am _I_ to do?\u201d said Alice.\n\n\u201cAnything you like,\u201d said the Footman, and began whistling.\n\n\u201cOh, there\u2019s no use in talking to him,\u201d said Alice desperately: \u201che\u2019s\nperfectly idiotic!\u201d And she opened the door and went in.\n\nThe door led right into a large kitchen, which was full of smoke from\none end to the other: the Duchess was sitting on a three-legged stool\nin the middle, nursing a baby; the cook was leaning over the fire,\nstirring a large cauldron which seemed to be full of soup.\n\n\u201cThere\u2019s certainly too much pepper in that soup!\u201d Alice said to\nherself, as well as she could for sneezing.\n\nThere was certainly too much of it in the air. Even the Duchess sneezed\noccasionally; and as for the baby, it was sneezing and howling\nalternately without a moment\u2019s pause. The only things in the kitchen\nthat did not sneeze, were the cook, and a large cat which was sitting\non the hearth and grinning from ear to ear.", "mimetype": "text/plain", "start_char_idx": 60636, "end_char_idx": 62479, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ee0235fc-aab4-421e-a54d-615fc84de98f": {"__data__": {"id_": "ee0235fc-aab4-421e-a54d-615fc84de98f", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2f98b957-934d-4a85-896d-0632239404fb", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "7c87c02968d97c5bf6cbc274508a0375e98a53a90a15a0b242da2ef676bf0b2d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6d3c8af5-02e0-4ea9-911a-c0877855bfdf", "node_type": "1", "metadata": {}, "hash": "a023cbd0dd7077cca716163ac2c542d6ce64fbed5965505f97b5a0d3b8efa96b", "class_name": "RelatedNodeInfo"}}, "text": "The only things in the kitchen\nthat did not sneeze, were the cook, and a large cat which was sitting\non the hearth and grinning from ear to ear.\n\n\u201cPlease would you tell me,\u201d said Alice, a little timidly, for she was\nnot quite sure whether it was good manners for her to speak first, \u201cwhy\nyour cat grins like that?\u201d\n\n\u201cIt\u2019s a Cheshire cat,\u201d said the Duchess, \u201cand that\u2019s why. Pig!\u201d\n\nShe said the last word with such sudden violence that Alice quite\njumped; but she saw in another moment that it was addressed to the\nbaby, and not to her, so she took courage, and went on again:\u2014\n\n\u201cI didn\u2019t know that Cheshire cats always grinned; in fact, I didn\u2019t\nknow that cats _could_ grin.\u201d\n\n\u201cThey all can,\u201d said the Duchess; \u201cand most of \u2019em do.\u201d\n\n\u201cI don\u2019t know of any that do,\u201d Alice said very politely, feeling quite\npleased to have got into a conversation.\n\n\u201cYou don\u2019t know much,\u201d said the Duchess; \u201cand that\u2019s a fact.\u201d\n\nAlice did not at all like the tone of this remark, and thought it would\nbe as well to introduce some other subject of conversation. While she\nwas trying to fix on one, the cook took the cauldron of soup off the\nfire, and at once set to work throwing everything within her reach at\nthe Duchess and the baby\u2014the fire-irons came first; then followed a\nshower of saucepans, plates, and dishes. The Duchess took no notice of\nthem even when they hit her; and the baby was howling so much already,\nthat it was quite impossible to say whether the blows hurt it or not.\n\n\u201cOh, _please_ mind what you\u2019re doing!\u201d cried Alice, jumping up and down\nin an agony of terror. \u201cOh, there goes his _precious_ nose!\u201d as an\nunusually large saucepan flew close by it, and very nearly carried it\noff.", "mimetype": "text/plain", "start_char_idx": 62335, "end_char_idx": 64020, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6d3c8af5-02e0-4ea9-911a-c0877855bfdf": {"__data__": {"id_": "6d3c8af5-02e0-4ea9-911a-c0877855bfdf", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ee0235fc-aab4-421e-a54d-615fc84de98f", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "b84a06277d90a6b8ef0658ca9357eedc39a0bbcbbca3dfbb00ed15c622a09e9d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4d59b79a-1649-4503-be5a-caa5e698aae3", "node_type": "1", "metadata": {}, "hash": "04f98430a5a80dfbff95eca8ad0197b8aec36d3cff10db9c1fa0821d41e87fc1", "class_name": "RelatedNodeInfo"}}, "text": "\u201cOh, there goes his _precious_ nose!\u201d as an\nunusually large saucepan flew close by it, and very nearly carried it\noff.\n\n\u201cIf everybody minded their own business,\u201d the Duchess said in a hoarse\ngrowl, \u201cthe world would go round a deal faster than it does.\u201d\n\n\u201cWhich would _not_ be an advantage,\u201d said Alice, who felt very glad to\nget an opportunity of showing off a little of her knowledge. \u201cJust\nthink of what work it would make with the day and night! You see the\nearth takes twenty-four hours to turn round on its axis\u2014\u201d\n\n\u201cTalking of axes,\u201d said the Duchess, \u201cchop off her head!\u201d\n\nAlice glanced rather anxiously at the cook, to see if she meant to take\nthe hint; but the cook was busily stirring the soup, and seemed not to\nbe listening, so she went on again: \u201cTwenty-four hours, I _think_; or\nis it twelve? I\u2014\u201d\n\n\u201cOh, don\u2019t bother _me_,\u201d said the Duchess; \u201cI never could abide\nfigures!\u201d And with that she began nursing her child again, singing a\nsort of lullaby to it as she did so, and giving it a violent shake at\nthe end of every line:\n\n\u201cSpeak roughly to your little boy,\n And beat him when he sneezes:\nHe only does it to annoy,\n Because he knows it teases.\u201d\n\n\nCHORUS.\n(In which the cook and the baby joined):\n\n\n\u201cWow! wow! wow!\u201d\n\n\nWhile the Duchess sang the second verse of the song, she kept tossing\nthe baby violently up and down, and the poor little thing howled so,\nthat Alice could hardly hear the words:\u2014\n\n\u201cI speak severely to my boy,\n I beat him when he sneezes;\nFor he can thoroughly enjoy\n The pepper when he pleases!\u201d\n\n\nCHORUS.\n\n\n\u201cWow! wow! wow!\u201d\n\n\n\u201cHere! you may nurse it a bit, if you like!\u201d the Duchess said to Alice,\nflinging the baby at her as she spoke. \u201cI must go and get ready to play\ncroquet with the Queen,\u201d and she hurried out of the room.", "mimetype": "text/plain", "start_char_idx": 63902, "end_char_idx": 65675, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4d59b79a-1649-4503-be5a-caa5e698aae3": {"__data__": {"id_": "4d59b79a-1649-4503-be5a-caa5e698aae3", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d3c8af5-02e0-4ea9-911a-c0877855bfdf", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "f81211e4b6b3acc5443e8e6a7ba9bc2a64193d911edd2981ec2127e954c89074", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8ffeef58-0d8d-4981-8ede-39ab9a001f87", "node_type": "1", "metadata": {}, "hash": "5fe26751a61553fd9ee2990fa471c812f3e02aa2c7e5a9510d579b0ef38f6e04", "class_name": "RelatedNodeInfo"}}, "text": "\u201cI must go and get ready to play\ncroquet with the Queen,\u201d and she hurried out of the room. The cook\nthrew a frying-pan after her as she went out, but it just missed her.\n\nAlice caught the baby with some difficulty, as it was a queer-shaped\nlittle creature, and held out its arms and legs in all directions,\n\u201cjust like a star-fish,\u201d thought Alice. The poor little thing was\nsnorting like a steam-engine when she caught it, and kept doubling\nitself up and straightening itself out again, so that altogether, for\nthe first minute or two, it was as much as she could do to hold it.\n\nAs soon as she had made out the proper way of nursing it, (which was to\ntwist it up into a sort of knot, and then keep tight hold of its right\near and left foot, so as to prevent its undoing itself,) she carried it\nout into the open air. \u201cIf I don\u2019t take this child away with me,\u201d\nthought Alice, \u201cthey\u2019re sure to kill it in a day or two: wouldn\u2019t it be\nmurder to leave it behind?\u201d She said the last words out loud, and the\nlittle thing grunted in reply (it had left off sneezing by this time).\n\u201cDon\u2019t grunt,\u201d said Alice; \u201cthat\u2019s not at all a proper way of\nexpressing yourself.\u201d\n\nThe baby grunted again, and Alice looked very anxiously into its face\nto see what was the matter with it. There could be no doubt that it had\na _very_ turn-up nose, much more like a snout than a real nose; also\nits eyes were getting extremely small for a baby: altogether Alice did\nnot like the look of the thing at all. \u201cBut perhaps it was only\nsobbing,\u201d she thought, and looked into its eyes again, to see if there\nwere any tears.\n\nNo, there were no tears. \u201cIf you\u2019re going to turn into a pig, my dear,\u201d\nsaid Alice, seriously, \u201cI\u2019ll have nothing more to do with you. Mind\nnow!\u201d The poor little thing sobbed again (or grunted, it was impossible\nto say which), and they went on for some while in silence.", "mimetype": "text/plain", "start_char_idx": 65585, "end_char_idx": 67447, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8ffeef58-0d8d-4981-8ede-39ab9a001f87": {"__data__": {"id_": "8ffeef58-0d8d-4981-8ede-39ab9a001f87", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4d59b79a-1649-4503-be5a-caa5e698aae3", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "9b7fbea696f48d3ea84ec28031e7c7a124602b7e5232335db614c887dd6f7451", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5939816d-45db-4a4e-8fc9-11359dea8dff", "node_type": "1", "metadata": {}, "hash": "e32d802f709fd58111350d64a03a4b6cb5d52395006c4c49ac13eb4922dcc01f", "class_name": "RelatedNodeInfo"}}, "text": "Mind\nnow!\u201d The poor little thing sobbed again (or grunted, it was impossible\nto say which), and they went on for some while in silence.\n\nAlice was just beginning to think to herself, \u201cNow, what am I to do\nwith this creature when I get it home?\u201d when it grunted again, so\nviolently, that she looked down into its face in some alarm. This time\nthere could be _no_ mistake about it: it was neither more nor less than\na pig, and she felt that it would be quite absurd for her to carry it\nfurther.\n\nSo she set the little creature down, and felt quite relieved to see it\ntrot away quietly into the wood. \u201cIf it had grown up,\u201d she said to\nherself, \u201cit would have made a dreadfully ugly child: but it makes\nrather a handsome pig, I think.\u201d And she began thinking over other\nchildren she knew, who might do very well as pigs, and was just saying\nto herself, \u201cif one only knew the right way to change them\u2014\u201d when she\nwas a little startled by seeing the Cheshire Cat sitting on a bough of\na tree a few yards off.\n\nThe Cat only grinned when it saw Alice. It looked good-natured, she\nthought: still it had _very_ long claws and a great many teeth, so she\nfelt that it ought to be treated with respect.\n\n\u201cCheshire Puss,\u201d she began, rather timidly, as she did not at all know\nwhether it would like the name: however, it only grinned a little\nwider. \u201cCome, it\u2019s pleased so far,\u201d thought Alice, and she went on.\n\u201cWould you tell me, please, which way I ought to go from here?\u201d\n\n\u201cThat depends a good deal on where you want to get to,\u201d said the Cat.\n\n\u201cI don\u2019t much care where\u2014\u201d said Alice.\n\n\u201cThen it doesn\u2019t matter which way you go,\u201d said the Cat.\n\n\u201c\u2014so long as I get _somewhere_,\u201d Alice added as an explanation.\n\n\u201cOh, you\u2019re sure to do that,\u201d said the Cat, \u201cif you only walk long\nenough.\u201d\n\nAlice felt that this could not be denied, so she tried another\nquestion.", "mimetype": "text/plain", "start_char_idx": 67312, "end_char_idx": 69155, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5939816d-45db-4a4e-8fc9-11359dea8dff": {"__data__": {"id_": "5939816d-45db-4a4e-8fc9-11359dea8dff", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8ffeef58-0d8d-4981-8ede-39ab9a001f87", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "f89b925cf8d18d3b99ceeaab4d654aad29296b7ce9fac26f23f73100f699c7ac", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c83a7ea4-98db-4453-b5fa-96d9b1aa3309", "node_type": "1", "metadata": {}, "hash": "16e00705a19681073f7d9b290ec5fcb605bf9e37852af08e0b2a698ba06a7184", "class_name": "RelatedNodeInfo"}}, "text": "\u201cOh, you\u2019re sure to do that,\u201d said the Cat, \u201cif you only walk long\nenough.\u201d\n\nAlice felt that this could not be denied, so she tried another\nquestion. \u201cWhat sort of people live about here?\u201d\n\n\u201cIn _that_ direction,\u201d the Cat said, waving its right paw round, \u201clives\na Hatter: and in _that_ direction,\u201d waving the other paw, \u201clives a\nMarch Hare. Visit either you like: they\u2019re both mad.\u201d\n\n\u201cBut I don\u2019t want to go among mad people,\u201d Alice remarked.\n\n\u201cOh, you can\u2019t help that,\u201d said the Cat: \u201cwe\u2019re all mad here. I\u2019m mad.\nYou\u2019re mad.\u201d\n\n\u201cHow do you know I\u2019m mad?\u201d said Alice.\n\n\u201cYou must be,\u201d said the Cat, \u201cor you wouldn\u2019t have come here.\u201d\n\nAlice didn\u2019t think that proved it at all; however, she went on \u201cAnd how\ndo you know that you\u2019re mad?\u201d\n\n\u201cTo begin with,\u201d said the Cat, \u201ca dog\u2019s not mad. You grant that?\u201d\n\n\u201cI suppose so,\u201d said Alice.\n\n\u201cWell, then,\u201d the Cat went on, \u201cyou see, a dog growls when it\u2019s angry,\nand wags its tail when it\u2019s pleased. Now _I_ growl when I\u2019m pleased,\nand wag my tail when I\u2019m angry. Therefore I\u2019m mad.\u201d\n\n\u201c_I_ call it purring, not growling,\u201d said Alice.\n\n\u201cCall it what you like,\u201d said the Cat. \u201cDo you play croquet with the\nQueen to-day?\u201d\n\n\u201cI should like it very much,\u201d said Alice, \u201cbut I haven\u2019t been invited\nyet.\u201d\n\n\u201cYou\u2019ll see me there,\u201d said the Cat, and vanished.\n\nAlice was not much surprised at this, she was getting so used to queer\nthings happening. While she was looking at the place where it had been,\nit suddenly appeared again.\n\n\u201cBy-the-bye, what became of the baby?\u201d said the Cat. \u201cI\u2019d nearly\nforgotten to ask.\u201d\n\n\u201cIt turned into a pig,\u201d Alice quietly said, just as if it had come back\nin a natural way.\n\n\u201cI thought it would,\u201d said the Cat, and vanished again.", "mimetype": "text/plain", "start_char_idx": 69006, "end_char_idx": 70698, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c83a7ea4-98db-4453-b5fa-96d9b1aa3309": {"__data__": {"id_": "c83a7ea4-98db-4453-b5fa-96d9b1aa3309", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5939816d-45db-4a4e-8fc9-11359dea8dff", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "1581a218e53c096130558737a0efdbef4c01efbcac2ec1c80af3ffc38a5544d8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d1a9c3a1-f823-4f70-a082-df0ea065abde", "node_type": "1", "metadata": {}, "hash": "f207ddb481ff86049e783239e7fbc13f3b046b6d3d175fef543e0b793b526c36", "class_name": "RelatedNodeInfo"}}, "text": "\u201cI\u2019d nearly\nforgotten to ask.\u201d\n\n\u201cIt turned into a pig,\u201d Alice quietly said, just as if it had come back\nin a natural way.\n\n\u201cI thought it would,\u201d said the Cat, and vanished again.\n\nAlice waited a little, half expecting to see it again, but it did not\nappear, and after a minute or two she walked on in the direction in\nwhich the March Hare was said to live. \u201cI\u2019ve seen hatters before,\u201d she\nsaid to herself; \u201cthe March Hare will be much the most interesting, and\nperhaps as this is May it won\u2019t be raving mad\u2014at least not so mad as it\nwas in March.\u201d As she said this, she looked up, and there was the Cat\nagain, sitting on a branch of a tree.\n\n\u201cDid you say pig, or fig?\u201d said the Cat.\n\n\u201cI said pig,\u201d replied Alice; \u201cand I wish you wouldn\u2019t keep appearing\nand vanishing so suddenly: you make one quite giddy.\u201d\n\n\u201cAll right,\u201d said the Cat; and this time it vanished quite slowly,\nbeginning with the end of the tail, and ending with the grin, which\nremained some time after the rest of it had gone.\n\n\u201cWell! I\u2019ve often seen a cat without a grin,\u201d thought Alice; \u201cbut a\ngrin without a cat! It\u2019s the most curious thing I ever saw in my life!\u201d\n\nShe had not gone much farther before she came in sight of the house of\nthe March Hare: she thought it must be the right house, because the\nchimneys were shaped like ears and the roof was thatched with fur. It\nwas so large a house, that she did not like to go nearer till she had\nnibbled some more of the lefthand bit of mushroom, and raised herself\nto about two feet high: even then she walked up towards it rather\ntimidly, saying to herself \u201cSuppose it should be raving mad after all!\nI almost wish I\u2019d gone to see the Hatter instead!\u201d\n\n\n\n\nCHAPTER VII.\nA Mad Tea-Party", "mimetype": "text/plain", "start_char_idx": 70520, "end_char_idx": 72224, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d1a9c3a1-f823-4f70-a082-df0ea065abde": {"__data__": {"id_": "d1a9c3a1-f823-4f70-a082-df0ea065abde", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c83a7ea4-98db-4453-b5fa-96d9b1aa3309", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "9608914f48af9f2aa62ddc18e063b561941924e0d3f306a4c4a76b05ffc25d0f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0be3a661-3a75-4ada-864a-d7d60fb0290d", "node_type": "1", "metadata": {}, "hash": "062faeab4ce640a2ac7ca7146edc1e1d35205ff195bfe4cda3684a0fe65559ca", "class_name": "RelatedNodeInfo"}}, "text": "I almost wish I\u2019d gone to see the Hatter instead!\u201d\n\n\n\n\nCHAPTER VII.\nA Mad Tea-Party\n\n\nThere was a table set out under a tree in front of the house, and the\nMarch Hare and the Hatter were having tea at it: a Dormouse was sitting\nbetween them, fast asleep, and the other two were using it as a\ncushion, resting their elbows on it, and talking over its head. \u201cVery\nuncomfortable for the Dormouse,\u201d thought Alice; \u201conly, as it\u2019s asleep,\nI suppose it doesn\u2019t mind.\u201d\n\nThe table was a large one, but the three were all crowded together at\none corner of it: \u201cNo room! No room!\u201d they cried out when they saw\nAlice coming. \u201cThere\u2019s _plenty_ of room!\u201d said Alice indignantly, and\nshe sat down in a large arm-chair at one end of the table.\n\n\u201cHave some wine,\u201d the March Hare said in an encouraging tone.\n\nAlice looked all round the table, but there was nothing on it but tea.\n\u201cI don\u2019t see any wine,\u201d she remarked.\n\n\u201cThere isn\u2019t any,\u201d said the March Hare.\n\n\u201cThen it wasn\u2019t very civil of you to offer it,\u201d said Alice angrily.\n\n\u201cIt wasn\u2019t very civil of you to sit down without being invited,\u201d said\nthe March Hare.\n\n\u201cI didn\u2019t know it was _your_ table,\u201d said Alice; \u201cit\u2019s laid for a great\nmany more than three.\u201d\n\n\u201cYour hair wants cutting,\u201d said the Hatter. He had been looking at\nAlice for some time with great curiosity, and this was his first\nspeech.\n\n\u201cYou should learn not to make personal remarks,\u201d Alice said with some\nseverity; \u201cit\u2019s very rude.\u201d\n\nThe Hatter opened his eyes very wide on hearing this; but all he _said_\nwas, \u201cWhy is a raven like a writing-desk?\u201d\n\n\u201cCome, we shall have some fun now!\u201d thought Alice. \u201cI\u2019m glad they\u2019ve\nbegun asking riddles.\u2014I believe I can guess that,\u201d she added aloud.\n\n\u201cDo you mean that you think you can find out the answer to it?\u201d said\nthe March Hare.\n\n\u201cExactly so,\u201d said Alice.\n\n\u201cThen you should say what you mean,\u201d the March Hare went on.", "mimetype": "text/plain", "start_char_idx": 72141, "end_char_idx": 74003, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0be3a661-3a75-4ada-864a-d7d60fb0290d": {"__data__": {"id_": "0be3a661-3a75-4ada-864a-d7d60fb0290d", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d1a9c3a1-f823-4f70-a082-df0ea065abde", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "13b4e82ff75ffe76e00d1037ccad25df289f67760e87c7abe4ff3a5e0b1a52f9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2c5d4291-5db2-4e19-ad43-df69d548615f", "node_type": "1", "metadata": {}, "hash": "b5258d53f0c59aeebf869311dd6aa09f6ed0d0751ad21e43852a8538d0cafe92", "class_name": "RelatedNodeInfo"}}, "text": "\u201cDo you mean that you think you can find out the answer to it?\u201d said\nthe March Hare.\n\n\u201cExactly so,\u201d said Alice.\n\n\u201cThen you should say what you mean,\u201d the March Hare went on.\n\n\u201cI do,\u201d Alice hastily replied; \u201cat least\u2014at least I mean what I\nsay\u2014that\u2019s the same thing, you know.\u201d\n\n\u201cNot the same thing a bit!\u201d said the Hatter. \u201cYou might just as well\nsay that \u2018I see what I eat\u2019 is the same thing as \u2018I eat what I see\u2019!\u201d\n\n\u201cYou might just as well say,\u201d added the March Hare, \u201cthat \u2018I like what\nI get\u2019 is the same thing as \u2018I get what I like\u2019!\u201d\n\n\u201cYou might just as well say,\u201d added the Dormouse, who seemed to be\ntalking in his sleep, \u201cthat \u2018I breathe when I sleep\u2019 is the same thing\nas \u2018I sleep when I breathe\u2019!\u201d\n\n\u201cIt _is_ the same thing with you,\u201d said the Hatter, and here the\nconversation dropped, and the party sat silent for a minute, while\nAlice thought over all she could remember about ravens and\nwriting-desks, which wasn\u2019t much.\n\nThe Hatter was the first to break the silence. \u201cWhat day of the month\nis it?\u201d he said, turning to Alice: he had taken his watch out of his\npocket, and was looking at it uneasily, shaking it every now and then,\nand holding it to his ear.\n\nAlice considered a little, and then said \u201cThe fourth.\u201d\n\n\u201cTwo days wrong!\u201d sighed the Hatter. \u201cI told you butter wouldn\u2019t suit\nthe works!\u201d he added looking angrily at the March Hare.\n\n\u201cIt was the _best_ butter,\u201d the March Hare meekly replied.\n\n\u201cYes, but some crumbs must have got in as well,\u201d the Hatter grumbled:\n\u201cyou shouldn\u2019t have put it in with the bread-knife.\u201d\n\nThe March Hare took the watch and looked at it gloomily: then he dipped\nit into his cup of tea, and looked at it again: but he could think of\nnothing better to say than his first remark, \u201cIt was the _best_ butter,\nyou know.\u201d\n\nAlice had been looking over his shoulder with some curiosity.", "mimetype": "text/plain", "start_char_idx": 73830, "end_char_idx": 75657, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2c5d4291-5db2-4e19-ad43-df69d548615f": {"__data__": {"id_": "2c5d4291-5db2-4e19-ad43-df69d548615f", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0be3a661-3a75-4ada-864a-d7d60fb0290d", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "b12b8d6f750c6059fc02908dc4f8611d60d107dbbf771bf42b925385e10b8c23", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1b06fee1-88bd-4071-bd33-b1f42ba88701", "node_type": "1", "metadata": {}, "hash": "41e3be340c7c2a456731a959ce3b9f633953403943376fa5a309ebda7e30daee", "class_name": "RelatedNodeInfo"}}, "text": "\u201cWhat a\nfunny watch!\u201d she remarked. \u201cIt tells the day of the month, and doesn\u2019t\ntell what o\u2019clock it is!\u201d\n\n\u201cWhy should it?\u201d muttered the Hatter. \u201cDoes _your_ watch tell you what\nyear it is?\u201d\n\n\u201cOf course not,\u201d Alice replied very readily: \u201cbut that\u2019s because it\nstays the same year for such a long time together.\u201d\n\n\u201cWhich is just the case with _mine_,\u201d said the Hatter.\n\nAlice felt dreadfully puzzled. The Hatter\u2019s remark seemed to have no\nsort of meaning in it, and yet it was certainly English. \u201cI don\u2019t quite\nunderstand you,\u201d she said, as politely as she could.\n\n\u201cThe Dormouse is asleep again,\u201d said the Hatter, and he poured a little\nhot tea upon its nose.\n\nThe Dormouse shook its head impatiently, and said, without opening its\neyes, \u201cOf course, of course; just what I was going to remark myself.\u201d\n\n\u201cHave you guessed the riddle yet?\u201d the Hatter said, turning to Alice\nagain.\n\n\u201cNo, I give it up,\u201d Alice replied: \u201cwhat\u2019s the answer?\u201d\n\n\u201cI haven\u2019t the slightest idea,\u201d said the Hatter.\n\n\u201cNor I,\u201d said the March Hare.\n\nAlice sighed wearily. \u201cI think you might do something better with the\ntime,\u201d she said, \u201cthan waste it in asking riddles that have no\nanswers.\u201d\n\n\u201cIf you knew Time as well as I do,\u201d said the Hatter, \u201cyou wouldn\u2019t talk\nabout wasting _it_. It\u2019s _him_.\u201d\n\n\u201cI don\u2019t know what you mean,\u201d said Alice.\n\n\u201cOf course you don\u2019t!\u201d the Hatter said, tossing his head\ncontemptuously. \u201cI dare say you never even spoke to Time!\u201d\n\n\u201cPerhaps not,\u201d Alice cautiously replied: \u201cbut I know I have to beat\ntime when I learn music.\u201d\n\n\u201cAh! that accounts for it,\u201d said the Hatter. \u201cHe won\u2019t stand beating.\nNow, if you only kept on good terms with him, he\u2019d do almost anything\nyou liked with the clock.", "mimetype": "text/plain", "start_char_idx": 75658, "end_char_idx": 77345, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1b06fee1-88bd-4071-bd33-b1f42ba88701": {"__data__": {"id_": "1b06fee1-88bd-4071-bd33-b1f42ba88701", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2c5d4291-5db2-4e19-ad43-df69d548615f", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "15a305aabca1fcef4817833d1ae9c5825395ce5687e2f72ef0c7896ac08edda2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "90855a3c-2335-412e-a6fc-77688c814dfa", "node_type": "1", "metadata": {}, "hash": "6b76ee2072f99e4cfc82b045aee168dc2d8635f5a17ac9e30b50da5308460537", "class_name": "RelatedNodeInfo"}}, "text": "that accounts for it,\u201d said the Hatter. \u201cHe won\u2019t stand beating.\nNow, if you only kept on good terms with him, he\u2019d do almost anything\nyou liked with the clock. For instance, suppose it were nine o\u2019clock in\nthe morning, just time to begin lessons: you\u2019d only have to whisper a\nhint to Time, and round goes the clock in a twinkling! Half-past one,\ntime for dinner!\u201d\n\n(\u201cI only wish it was,\u201d the March Hare said to itself in a whisper.)\n\n\u201cThat would be grand, certainly,\u201d said Alice thoughtfully: \u201cbut then\u2014I\nshouldn\u2019t be hungry for it, you know.\u201d\n\n\u201cNot at first, perhaps,\u201d said the Hatter: \u201cbut you could keep it to\nhalf-past one as long as you liked.\u201d\n\n\u201cIs that the way _you_ manage?\u201d Alice asked.\n\nThe Hatter shook his head mournfully. \u201cNot I!\u201d he replied. \u201cWe\nquarrelled last March\u2014just before _he_ went mad, you know\u2014\u201d (pointing\nwith his tea spoon at the March Hare,) \u201c\u2014it was at the great concert\ngiven by the Queen of Hearts, and I had to sing\n\n\u2018Twinkle, twinkle, little bat!\nHow I wonder what you\u2019re at!\u2019\n\n\nYou know the song, perhaps?\u201d\n\n\u201cI\u2019ve heard something like it,\u201d said Alice.\n\n\u201cIt goes on, you know,\u201d the Hatter continued, \u201cin this way:\u2014\n\n\u2018Up above the world you fly,\nLike a tea-tray in the sky.\n Twinkle, twinkle\u2014\u2019\u201d\n\n\nHere the Dormouse shook itself, and began singing in its sleep\n\u201c_Twinkle, twinkle, twinkle, twinkle_\u2014\u201d and went on so long that they\nhad to pinch it to make it stop.\n\n\u201cWell, I\u2019d hardly finished the first verse,\u201d said the Hatter, \u201cwhen the\nQueen jumped up and bawled out, \u2018He\u2019s murdering the time! Off with his\nhead!\u2019\u201d\n\n\u201cHow dreadfully savage!\u201d exclaimed Alice.\n\n\u201cAnd ever since that,\u201d the Hatter went on in a mournful tone, \u201che won\u2019t\ndo a thing I ask!", "mimetype": "text/plain", "start_char_idx": 77185, "end_char_idx": 78884, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "90855a3c-2335-412e-a6fc-77688c814dfa": {"__data__": {"id_": "90855a3c-2335-412e-a6fc-77688c814dfa", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1b06fee1-88bd-4071-bd33-b1f42ba88701", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "4acdbe06d5d67d6bc0843d047c95684849a8e6cc1152cc7329409af0d4cd3b6c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ce04402a-6406-4e23-b72c-33e705b94d0b", "node_type": "1", "metadata": {}, "hash": "d6b826770917c94123f1a5f804e3c350c664a831b5260ae4a460b83248e0ea26", "class_name": "RelatedNodeInfo"}}, "text": "Off with his\nhead!\u2019\u201d\n\n\u201cHow dreadfully savage!\u201d exclaimed Alice.\n\n\u201cAnd ever since that,\u201d the Hatter went on in a mournful tone, \u201che won\u2019t\ndo a thing I ask! It\u2019s always six o\u2019clock now.\u201d\n\nA bright idea came into Alice\u2019s head. \u201cIs that the reason so many\ntea-things are put out here?\u201d she asked.\n\n\u201cYes, that\u2019s it,\u201d said the Hatter with a sigh: \u201cit\u2019s always tea-time,\nand we\u2019ve no time to wash the things between whiles.\u201d\n\n\u201cThen you keep moving round, I suppose?\u201d said Alice.\n\n\u201cExactly so,\u201d said the Hatter: \u201cas the things get used up.\u201d\n\n\u201cBut what happens when you come to the beginning again?\u201d Alice ventured\nto ask.\n\n\u201cSuppose we change the subject,\u201d the March Hare interrupted, yawning.\n\u201cI\u2019m getting tired of this. I vote the young lady tells us a story.\u201d\n\n\u201cI\u2019m afraid I don\u2019t know one,\u201d said Alice, rather alarmed at the\nproposal.\n\n\u201cThen the Dormouse shall!\u201d they both cried. \u201cWake up, Dormouse!\u201d And\nthey pinched it on both sides at once.\n\nThe Dormouse slowly opened his eyes. \u201cI wasn\u2019t asleep,\u201d he said in a\nhoarse, feeble voice: \u201cI heard every word you fellows were saying.\u201d\n\n\u201cTell us a story!\u201d said the March Hare.\n\n\u201cYes, please do!\u201d pleaded Alice.\n\n\u201cAnd be quick about it,\u201d added the Hatter, \u201cor you\u2019ll be asleep again\nbefore it\u2019s done.\u201d\n\n\u201cOnce upon a time there were three little sisters,\u201d the Dormouse began\nin a great hurry; \u201cand their names were Elsie, Lacie, and Tillie; and\nthey lived at the bottom of a well\u2014\u201d\n\n\u201cWhat did they live on?\u201d said Alice, who always took a great interest\nin questions of eating and drinking.\n\n\u201cThey lived on treacle,\u201d said the Dormouse, after thinking a minute or\ntwo.", "mimetype": "text/plain", "start_char_idx": 78730, "end_char_idx": 80335, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ce04402a-6406-4e23-b72c-33e705b94d0b": {"__data__": {"id_": "ce04402a-6406-4e23-b72c-33e705b94d0b", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "90855a3c-2335-412e-a6fc-77688c814dfa", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "b6439db0e3fce03c9cce02788806c751d31458c50fd5f20dc0c2cc2c9a95a8e2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "975dd9b7-60dd-49a9-a498-e3c76eeefc22", "node_type": "1", "metadata": {}, "hash": "37122d3c580316bec625a3fdda1030196e64ae585c29fb6f6af23ba1b03ba662", "class_name": "RelatedNodeInfo"}}, "text": "\u201cThey lived on treacle,\u201d said the Dormouse, after thinking a minute or\ntwo.\n\n\u201cThey couldn\u2019t have done that, you know,\u201d Alice gently remarked;\n\u201cthey\u2019d have been ill.\u201d\n\n\u201cSo they were,\u201d said the Dormouse; \u201c_very_ ill.\u201d\n\nAlice tried to fancy to herself what such an extraordinary ways of\nliving would be like, but it puzzled her too much, so she went on: \u201cBut\nwhy did they live at the bottom of a well?\u201d\n\n\u201cTake some more tea,\u201d the March Hare said to Alice, very earnestly.\n\n\u201cI\u2019ve had nothing yet,\u201d Alice replied in an offended tone, \u201cso I can\u2019t\ntake more.\u201d\n\n\u201cYou mean you can\u2019t take _less_,\u201d said the Hatter: \u201cit\u2019s very easy to\ntake _more_ than nothing.\u201d\n\n\u201cNobody asked _your_ opinion,\u201d said Alice.\n\n\u201cWho\u2019s making personal remarks now?\u201d the Hatter asked triumphantly.\n\nAlice did not quite know what to say to this: so she helped herself to\nsome tea and bread-and-butter, and then turned to the Dormouse, and\nrepeated her question. \u201cWhy did they live at the bottom of a well?\u201d\n\nThe Dormouse again took a minute or two to think about it, and then\nsaid, \u201cIt was a treacle-well.\u201d\n\n\u201cThere\u2019s no such thing!\u201d Alice was beginning very angrily, but the\nHatter and the March Hare went \u201cSh! sh!\u201d and the Dormouse sulkily\nremarked, \u201cIf you can\u2019t be civil, you\u2019d better finish the story for\nyourself.\u201d\n\n\u201cNo, please go on!\u201d Alice said very humbly; \u201cI won\u2019t interrupt again. I\ndare say there may be _one_.\u201d\n\n\u201cOne, indeed!\u201d said the Dormouse indignantly. However, he consented to\ngo on. \u201cAnd so these three little sisters\u2014they were learning to draw,\nyou know\u2014\u201d\n\n\u201cWhat did they draw?\u201d said Alice, quite forgetting her promise.\n\n\u201cTreacle,\u201d said the Dormouse, without considering at all this time.", "mimetype": "text/plain", "start_char_idx": 80260, "end_char_idx": 81934, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "975dd9b7-60dd-49a9-a498-e3c76eeefc22": {"__data__": {"id_": "975dd9b7-60dd-49a9-a498-e3c76eeefc22", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ce04402a-6406-4e23-b72c-33e705b94d0b", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "632145dac2dee7eea1bc54b5c40d9dbde5ed9626863f00ad613b406e03a65709", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2702477b-1b69-42a2-b623-483d4bdbf88f", "node_type": "1", "metadata": {}, "hash": "1c1583a4d68f1dc02abe0bed532b8e758c2f1c0c5308dd0d6077b4f3f3603354", "class_name": "RelatedNodeInfo"}}, "text": "\u201cAnd so these three little sisters\u2014they were learning to draw,\nyou know\u2014\u201d\n\n\u201cWhat did they draw?\u201d said Alice, quite forgetting her promise.\n\n\u201cTreacle,\u201d said the Dormouse, without considering at all this time.\n\n\u201cI want a clean cup,\u201d interrupted the Hatter: \u201clet\u2019s all move one place\non.\u201d\n\nHe moved on as he spoke, and the Dormouse followed him: the March Hare\nmoved into the Dormouse\u2019s place, and Alice rather unwillingly took the\nplace of the March Hare. The Hatter was the only one who got any\nadvantage from the change: and Alice was a good deal worse off than\nbefore, as the March Hare had just upset the milk-jug into his plate.\n\nAlice did not wish to offend the Dormouse again, so she began very\ncautiously: \u201cBut I don\u2019t understand. Where did they draw the treacle\nfrom?\u201d\n\n\u201cYou can draw water out of a water-well,\u201d said the Hatter; \u201cso I should\nthink you could draw treacle out of a treacle-well\u2014eh, stupid?\u201d\n\n\u201cBut they were _in_ the well,\u201d Alice said to the Dormouse, not choosing\nto notice this last remark.\n\n\u201cOf course they were,\u201d said the Dormouse; \u201c\u2014well in.\u201d\n\nThis answer so confused poor Alice, that she let the Dormouse go on for\nsome time without interrupting it.\n\n\u201cThey were learning to draw,\u201d the Dormouse went on, yawning and rubbing\nits eyes, for it was getting very sleepy; \u201cand they drew all manner of\nthings\u2014everything that begins with an M\u2014\u201d\n\n\u201cWhy with an M?\u201d said Alice.\n\n\u201cWhy not?\u201d said the March Hare.\n\nAlice was silent.", "mimetype": "text/plain", "start_char_idx": 81727, "end_char_idx": 83171, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2702477b-1b69-42a2-b623-483d4bdbf88f": {"__data__": {"id_": "2702477b-1b69-42a2-b623-483d4bdbf88f", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "975dd9b7-60dd-49a9-a498-e3c76eeefc22", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "9ea371f6b205b4c6de89d29c8f3e36c3e8f30ca4997a577995326d755a657d22", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b10dd663-a214-4daa-9b67-2060a3fca070", "node_type": "1", "metadata": {}, "hash": "323e06db42e48c43895296454d90f236f67a0fc0a3a2fed9282eefec0c54cfdc", "class_name": "RelatedNodeInfo"}}, "text": "\u201cWhy not?\u201d said the March Hare.\n\nAlice was silent.\n\nThe Dormouse had closed its eyes by this time, and was going off into a\ndoze; but, on being pinched by the Hatter, it woke up again with a\nlittle shriek, and went on: \u201c\u2014that begins with an M, such as\nmouse-traps, and the moon, and memory, and muchness\u2014you know you say\nthings are \u201cmuch of a muchness\u201d\u2014did you ever see such a thing as a\ndrawing of a muchness?\u201d\n\n\u201cReally, now you ask me,\u201d said Alice, very much confused, \u201cI don\u2019t\nthink\u2014\u201d\n\n\u201cThen you shouldn\u2019t talk,\u201d said the Hatter.\n\nThis piece of rudeness was more than Alice could bear: she got up in\ngreat disgust, and walked off; the Dormouse fell asleep instantly, and\nneither of the others took the least notice of her going, though she\nlooked back once or twice, half hoping that they would call after her:\nthe last time she saw them, they were trying to put the Dormouse into\nthe teapot.\n\n\u201cAt any rate I\u2019ll never go _there_ again!\u201d said Alice as she picked her\nway through the wood. \u201cIt\u2019s the stupidest tea-party I ever was at in\nall my life!\u201d\n\nJust as she said this, she noticed that one of the trees had a door\nleading right into it. \u201cThat\u2019s very curious!\u201d she thought. \u201cBut\neverything\u2019s curious today. I think I may as well go in at once.\u201d And\nin she went.\n\nOnce more she found herself in the long hall, and close to the little\nglass table. \u201cNow, I\u2019ll manage better this time,\u201d she said to herself,\nand began by taking the little golden key, and unlocking the door that\nled into the garden. Then she went to work nibbling at the mushroom\n(she had kept a piece of it in her pocket) till she was about a foot\nhigh: then she walked down the little passage: and _then_\u2014she found\nherself at last in the beautiful garden, among the bright flower-beds\nand the cool fountains.\n\n\n\n\nCHAPTER VIII.\nThe Queen\u2019s Croquet-Ground", "mimetype": "text/plain", "start_char_idx": 83121, "end_char_idx": 84945, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b10dd663-a214-4daa-9b67-2060a3fca070": {"__data__": {"id_": "b10dd663-a214-4daa-9b67-2060a3fca070", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2702477b-1b69-42a2-b623-483d4bdbf88f", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "013f3d1c8449e8575e76868ef81ed8950ccf3bb6a1700ab095e0a5cc610a16d6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "21fd3f20-774f-42f9-a359-d88d2641457f", "node_type": "1", "metadata": {}, "hash": "ebd10bfd9367488248a0b97b02e9d15b838fa1aa5e6c1122d0cb020072273586", "class_name": "RelatedNodeInfo"}}, "text": "CHAPTER VIII.\nThe Queen\u2019s Croquet-Ground\n\n\nA large rose-tree stood near the entrance of the garden: the roses\ngrowing on it were white, but there were three gardeners at it, busily\npainting them red. Alice thought this a very curious thing, and she\nwent nearer to watch them, and just as she came up to them she heard\none of them say, \u201cLook out now, Five! Don\u2019t go splashing paint over me\nlike that!\u201d\n\n\u201cI couldn\u2019t help it,\u201d said Five, in a sulky tone; \u201cSeven jogged my\nelbow.\u201d\n\nOn which Seven looked up and said, \u201cThat\u2019s right, Five! Always lay the\nblame on others!\u201d\n\n\u201c_You\u2019d_ better not talk!\u201d said Five. \u201cI heard the Queen say only\nyesterday you deserved to be beheaded!\u201d\n\n\u201cWhat for?\u201d said the one who had spoken first.\n\n\u201cThat\u2019s none of _your_ business, Two!\u201d said Seven.\n\n\u201cYes, it _is_ his business!\u201d said Five, \u201cand I\u2019ll tell him\u2014it was for\nbringing the cook tulip-roots instead of onions.\u201d\n\nSeven flung down his brush, and had just begun \u201cWell, of all the unjust\nthings\u2014\u201d when his eye chanced to fall upon Alice, as she stood watching\nthem, and he checked himself suddenly: the others looked round also,\nand all of them bowed low.\n\n\u201cWould you tell me,\u201d said Alice, a little timidly, \u201cwhy you are\npainting those roses?\u201d\n\nFive and Seven said nothing, but looked at Two. Two began in a low\nvoice, \u201cWhy the fact is, you see, Miss, this here ought to have been a\n_red_ rose-tree, and we put a white one in by mistake; and if the Queen\nwas to find it out, we should all have our heads cut off, you know. So\nyou see, Miss, we\u2019re doing our best, afore she comes, to\u2014\u201d At this\nmoment Five, who had been anxiously looking across the garden, called\nout \u201cThe Queen! The Queen!\u201d and the three gardeners instantly threw\nthemselves flat upon their faces.", "mimetype": "text/plain", "start_char_idx": 84905, "end_char_idx": 86649, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "21fd3f20-774f-42f9-a359-d88d2641457f": {"__data__": {"id_": "21fd3f20-774f-42f9-a359-d88d2641457f", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b10dd663-a214-4daa-9b67-2060a3fca070", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "ebd748e878714f08a4b6b557ab7b7611c5d13b2b0cfa6c5e3066352d6d1f9280", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bf2f865a-d8c4-4b15-90af-629ce3ac7eb9", "node_type": "1", "metadata": {}, "hash": "1bc30a13f425ea604f07cfe2dad7ea7c5090b7a4770ce9e07ab1d4ba4cc6cb8b", "class_name": "RelatedNodeInfo"}}, "text": "The Queen!\u201d and the three gardeners instantly threw\nthemselves flat upon their faces. There was a sound of many footsteps,\nand Alice looked round, eager to see the Queen.\n\nFirst came ten soldiers carrying clubs; these were all shaped like the\nthree gardeners, oblong and flat, with their hands and feet at the\ncorners: next the ten courtiers; these were ornamented all over with\ndiamonds, and walked two and two, as the soldiers did. After these came\nthe royal children; there were ten of them, and the little dears came\njumping merrily along hand in hand, in couples: they were all\nornamented with hearts. Next came the guests, mostly Kings and Queens,\nand among them Alice recognised the White Rabbit: it was talking in a\nhurried nervous manner, smiling at everything that was said, and went\nby without noticing her. Then followed the Knave of Hearts, carrying\nthe King\u2019s crown on a crimson velvet cushion; and, last of all this\ngrand procession, came THE KING AND QUEEN OF HEARTS.\n\nAlice was rather doubtful whether she ought not to lie down on her face\nlike the three gardeners, but she could not remember ever having heard\nof such a rule at processions; \u201cand besides, what would be the use of a\nprocession,\u201d thought she, \u201cif people had all to lie down upon their\nfaces, so that they couldn\u2019t see it?\u201d So she stood still where she was,\nand waited.\n\nWhen the procession came opposite to Alice, they all stopped and looked\nat her, and the Queen said severely \u201cWho is this?\u201d She said it to the\nKnave of Hearts, who only bowed and smiled in reply.\n\n\u201cIdiot!\u201d said the Queen, tossing her head impatiently; and, turning to\nAlice, she went on, \u201cWhat\u2019s your name, child?\u201d\n\n\u201cMy name is Alice, so please your Majesty,\u201d said Alice very politely;\nbut she added, to herself, \u201cWhy, they\u2019re only a pack of cards, after\nall.", "mimetype": "text/plain", "start_char_idx": 86564, "end_char_idx": 88375, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bf2f865a-d8c4-4b15-90af-629ce3ac7eb9": {"__data__": {"id_": "bf2f865a-d8c4-4b15-90af-629ce3ac7eb9", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "21fd3f20-774f-42f9-a359-d88d2641457f", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "a0d2df869e505df4ccfe3c1257df80100f3b6ea7482f37b85a78f58496daddbe", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7721ec01-3d3e-4c30-ae35-f93b645c25ef", "node_type": "1", "metadata": {}, "hash": "60997ef1555f6183f26bf0a0a1908df5cd02eed901735ac99b6b4acd281796a3", "class_name": "RelatedNodeInfo"}}, "text": "I needn\u2019t be afraid of them!\u201d\n\n\u201cAnd who are _these?_\u201d said the Queen, pointing to the three gardeners\nwho were lying round the rose-tree; for, you see, as they were lying on\ntheir faces, and the pattern on their backs was the same as the rest of\nthe pack, she could not tell whether they were gardeners, or soldiers,\nor courtiers, or three of her own children.\n\n\u201cHow should _I_ know?\u201d said Alice, surprised at her own courage. \u201cIt\u2019s\nno business of _mine_.\u201d\n\nThe Queen turned crimson with fury, and, after glaring at her for a\nmoment like a wild beast, screamed \u201cOff with her head! Off\u2014\u201d\n\n\u201cNonsense!\u201d said Alice, very loudly and decidedly, and the Queen was\nsilent.\n\nThe King laid his hand upon her arm, and timidly said \u201cConsider, my\ndear: she is only a child!\u201d\n\nThe Queen turned angrily away from him, and said to the Knave \u201cTurn\nthem over!\u201d\n\nThe Knave did so, very carefully, with one foot.\n\n\u201cGet up!\u201d said the Queen, in a shrill, loud voice, and the three\ngardeners instantly jumped up, and began bowing to the King, the Queen,\nthe royal children, and everybody else.\n\n\u201cLeave off that!\u201d screamed the Queen. \u201cYou make me giddy.\u201d And then,\nturning to the rose-tree, she went on, \u201cWhat _have_ you been doing\nhere?\u201d\n\n\u201cMay it please your Majesty,\u201d said Two, in a very humble tone, going\ndown on one knee as he spoke, \u201cwe were trying\u2014\u201d\n\n\u201c_I_ see!\u201d said the Queen, who had meanwhile been examining the roses.\n\u201cOff with their heads!\u201d and the procession moved on, three of the\nsoldiers remaining behind to execute the unfortunate gardeners, who ran\nto Alice for protection.\n\n\u201cYou shan\u2019t be beheaded!\u201d said Alice, and she put them into a large\nflower-pot that stood near. The three soldiers wandered about for a\nminute or two, looking for them, and then quietly marched off after the\nothers.\n\n\u201cAre their heads off?\u201d shouted the Queen.", "mimetype": "text/plain", "start_char_idx": 88376, "end_char_idx": 90203, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7721ec01-3d3e-4c30-ae35-f93b645c25ef": {"__data__": {"id_": "7721ec01-3d3e-4c30-ae35-f93b645c25ef", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf2f865a-d8c4-4b15-90af-629ce3ac7eb9", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "bc5186098f6a933973af99bcbddb07a0b46e2690c02acd65cca84c3617bed88b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9ee46feb-fde8-40c1-849b-2fe9e87f86c1", "node_type": "1", "metadata": {}, "hash": "51011b37799897bf332b4a42617b291ea7d498ebf2e1a066dd7a178a61f3b28d", "class_name": "RelatedNodeInfo"}}, "text": "The three soldiers wandered about for a\nminute or two, looking for them, and then quietly marched off after the\nothers.\n\n\u201cAre their heads off?\u201d shouted the Queen.\n\n\u201cTheir heads are gone, if it please your Majesty!\u201d the soldiers shouted\nin reply.\n\n\u201cThat\u2019s right!\u201d shouted the Queen. \u201cCan you play croquet?\u201d\n\nThe soldiers were silent, and looked at Alice, as the question was\nevidently meant for her.\n\n\u201cYes!\u201d shouted Alice.\n\n\u201cCome on, then!\u201d roared the Queen, and Alice joined the procession,\nwondering very much what would happen next.\n\n\u201cIt\u2019s\u2014it\u2019s a very fine day!\u201d said a timid voice at her side. She was\nwalking by the White Rabbit, who was peeping anxiously into her face.\n\n\u201cVery,\u201d said Alice: \u201c\u2014where\u2019s the Duchess?\u201d\n\n\u201cHush! Hush!\u201d said the Rabbit in a low, hurried tone. He looked\nanxiously over his shoulder as he spoke, and then raised himself upon\ntiptoe, put his mouth close to her ear, and whispered \u201cShe\u2019s under\nsentence of execution.\u201d\n\n\u201cWhat for?\u201d said Alice.\n\n\u201cDid you say \u2018What a pity!\u2019?\u201d the Rabbit asked.\n\n\u201cNo, I didn\u2019t,\u201d said Alice: \u201cI don\u2019t think it\u2019s at all a pity. I said\n\u2018What for?\u2019\u201d\n\n\u201cShe boxed the Queen\u2019s ears\u2014\u201d the Rabbit began. Alice gave a little\nscream of laughter. \u201cOh, hush!\u201d the Rabbit whispered in a frightened\ntone. \u201cThe Queen will hear you! You see, she came rather late, and the\nQueen said\u2014\u201d\n\n\u201cGet to your places!\u201d shouted the Queen in a voice of thunder, and\npeople began running about in all directions, tumbling up against each\nother; however, they got settled down in a minute or two, and the game\nbegan. Alice thought she had never seen such a curious croquet-ground\nin her life; it was all ridges and furrows; the balls were live\nhedgehogs, the mallets live flamingoes, and the soldiers had to double\nthemselves up and to stand on their hands and feet, to make the arches.", "mimetype": "text/plain", "start_char_idx": 90041, "end_char_idx": 91853, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9ee46feb-fde8-40c1-849b-2fe9e87f86c1": {"__data__": {"id_": "9ee46feb-fde8-40c1-849b-2fe9e87f86c1", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7721ec01-3d3e-4c30-ae35-f93b645c25ef", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "80e54db46549b0d7d336b454fccc426d489f67233e057920a184dfad2665de1e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1f2a2fd1-9e1c-4f26-b9fd-498cea121509", "node_type": "1", "metadata": {}, "hash": "47754845f42036734ea9bdbc181c660ae84343787a0c7d54ccc3365f1d7dc521", "class_name": "RelatedNodeInfo"}}, "text": "The chief difficulty Alice found at first was in managing her flamingo:\nshe succeeded in getting its body tucked away, comfortably enough,\nunder her arm, with its legs hanging down, but generally, just as she\nhad got its neck nicely straightened out, and was going to give the\nhedgehog a blow with its head, it _would_ twist itself round and look\nup in her face, with such a puzzled expression that she could not help\nbursting out laughing: and when she had got its head down, and was\ngoing to begin again, it was very provoking to find that the hedgehog\nhad unrolled itself, and was in the act of crawling away: besides all\nthis, there was generally a ridge or furrow in the way wherever she\nwanted to send the hedgehog to, and, as the doubled-up soldiers were\nalways getting up and walking off to other parts of the ground, Alice\nsoon came to the conclusion that it was a very difficult game indeed.\n\nThe players all played at once without waiting for turns, quarrelling\nall the while, and fighting for the hedgehogs; and in a very short time\nthe Queen was in a furious passion, and went stamping about, and\nshouting \u201cOff with his head!\u201d or \u201cOff with her head!\u201d about once in a\nminute.\n\nAlice began to feel very uneasy: to be sure, she had not as yet had any\ndispute with the Queen, but she knew that it might happen any minute,\n\u201cand then,\u201d thought she, \u201cwhat would become of me? They\u2019re dreadfully\nfond of beheading people here; the great wonder is, that there\u2019s any\none left alive!\u201d\n\nShe was looking about for some way of escape, and wondering whether she\ncould get away without being seen, when she noticed a curious\nappearance in the air: it puzzled her very much at first, but, after\nwatching it a minute or two, she made it out to be a grin, and she said\nto herself \u201cIt\u2019s the Cheshire Cat: now I shall have somebody to talk\nto.\u201d\n\n\u201cHow are you getting on?\u201d said the Cat, as soon as there was mouth\nenough for it to speak with.\n\nAlice waited till the eyes appeared, and then nodded.", "mimetype": "text/plain", "start_char_idx": 91855, "end_char_idx": 93843, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1f2a2fd1-9e1c-4f26-b9fd-498cea121509": {"__data__": {"id_": "1f2a2fd1-9e1c-4f26-b9fd-498cea121509", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9ee46feb-fde8-40c1-849b-2fe9e87f86c1", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "faad692a0931fb91969ad4af0e6870bb3ef2f5a8e2a5e40908e362d21c13eb0e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8830bda2-9381-4980-9c33-4a2f3190533a", "node_type": "1", "metadata": {}, "hash": "c4a0ead151f7f2c3e3a44e4d3ee3dce6a4de82ba80e711faf6c089fcc83ced56", "class_name": "RelatedNodeInfo"}}, "text": "Alice waited till the eyes appeared, and then nodded. \u201cIt\u2019s no use\nspeaking to it,\u201d she thought, \u201ctill its ears have come, or at least one\nof them.\u201d In another minute the whole head appeared, and then Alice put\ndown her flamingo, and began an account of the game, feeling very glad\nshe had someone to listen to her. The Cat seemed to think that there\nwas enough of it now in sight, and no more of it appeared.\n\n\u201cI don\u2019t think they play at all fairly,\u201d Alice began, in rather a\ncomplaining tone, \u201cand they all quarrel so dreadfully one can\u2019t hear\noneself speak\u2014and they don\u2019t seem to have any rules in particular; at\nleast, if there are, nobody attends to them\u2014and you\u2019ve no idea how\nconfusing it is all the things being alive; for instance, there\u2019s the\narch I\u2019ve got to go through next walking about at the other end of the\nground\u2014and I should have croqueted the Queen\u2019s hedgehog just now, only\nit ran away when it saw mine coming!\u201d\n\n\u201cHow do you like the Queen?\u201d said the Cat in a low voice.\n\n\u201cNot at all,\u201d said Alice: \u201cshe\u2019s so extremely\u2014\u201d Just then she noticed\nthat the Queen was close behind her, listening: so she went on,\n\u201c\u2014likely to win, that it\u2019s hardly worth while finishing the game.\u201d\n\nThe Queen smiled and passed on.\n\n\u201cWho _are_ you talking to?\u201d said the King, going up to Alice, and\nlooking at the Cat\u2019s head with great curiosity.\n\n\u201cIt\u2019s a friend of mine\u2014a Cheshire Cat,\u201d said Alice: \u201callow me to\nintroduce it.\u201d\n\n\u201cI don\u2019t like the look of it at all,\u201d said the King: \u201chowever, it may\nkiss my hand if it likes.\u201d\n\n\u201cI\u2019d rather not,\u201d the Cat remarked.\n\n\u201cDon\u2019t be impertinent,\u201d said the King, \u201cand don\u2019t look at me like\nthat!\u201d He got behind Alice as he spoke.\n\n\u201cA cat may look at a king,\u201d said Alice.", "mimetype": "text/plain", "start_char_idx": 93790, "end_char_idx": 95495, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8830bda2-9381-4980-9c33-4a2f3190533a": {"__data__": {"id_": "8830bda2-9381-4980-9c33-4a2f3190533a", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f2a2fd1-9e1c-4f26-b9fd-498cea121509", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "e178a38abc1c9a82b786287bc4132580479c409263e52831885402055077f8e2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "eb950247-a6b5-4546-a9be-143137d800a4", "node_type": "1", "metadata": {}, "hash": "bb0f86f21aa44554c178477837a586d72056aa20d195667c27808af12caa94ca", "class_name": "RelatedNodeInfo"}}, "text": "\u201cDon\u2019t be impertinent,\u201d said the King, \u201cand don\u2019t look at me like\nthat!\u201d He got behind Alice as he spoke.\n\n\u201cA cat may look at a king,\u201d said Alice. \u201cI\u2019ve read that in some book,\nbut I don\u2019t remember where.\u201d\n\n\u201cWell, it must be removed,\u201d said the King very decidedly, and he called\nthe Queen, who was passing at the moment, \u201cMy dear! I wish you would\nhave this cat removed!\u201d\n\nThe Queen had only one way of settling all difficulties, great or\nsmall. \u201cOff with his head!\u201d she said, without even looking round.\n\n\u201cI\u2019ll fetch the executioner myself,\u201d said the King eagerly, and he\nhurried off.\n\nAlice thought she might as well go back, and see how the game was going\non, as she heard the Queen\u2019s voice in the distance, screaming with\npassion. She had already heard her sentence three of the players to be\nexecuted for having missed their turns, and she did not like the look\nof things at all, as the game was in such confusion that she never knew\nwhether it was her turn or not. So she went in search of her hedgehog.\n\nThe hedgehog was engaged in a fight with another hedgehog, which seemed\nto Alice an excellent opportunity for croqueting one of them with the\nother: the only difficulty was, that her flamingo was gone across to\nthe other side of the garden, where Alice could see it trying in a\nhelpless sort of way to fly up into a tree.\n\nBy the time she had caught the flamingo and brought it back, the fight\nwas over, and both the hedgehogs were out of sight: \u201cbut it doesn\u2019t\nmatter much,\u201d thought Alice, \u201cas all the arches are gone from this side\nof the ground.\u201d So she tucked it away under her arm, that it might not\nescape again, and went back for a little more conversation with her\nfriend.\n\nWhen she got back to the Cheshire Cat, she was surprised to find quite\na large crowd collected round it: there was a dispute going on between\nthe executioner, the King, and the Queen, who were all talking at once,\nwhile all the rest were quite silent, and looked very uncomfortable.", "mimetype": "text/plain", "start_char_idx": 95349, "end_char_idx": 97324, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "eb950247-a6b5-4546-a9be-143137d800a4": {"__data__": {"id_": "eb950247-a6b5-4546-a9be-143137d800a4", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8830bda2-9381-4980-9c33-4a2f3190533a", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "3c57a889a490ac4c95daa5f4520255556e076a6394a14d14a7de20e6cb32c34f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "73cf0f78-2e8e-42d1-8492-894bcbec71b6", "node_type": "1", "metadata": {}, "hash": "ab71e73be5e469fa8fe93867f1eaf65aa2b8b4ee6ce78f3c47f6627d58e91c5f", "class_name": "RelatedNodeInfo"}}, "text": "The moment Alice appeared, she was appealed to by all three to settle\nthe question, and they repeated their arguments to her, though, as they\nall spoke at once, she found it very hard indeed to make out exactly\nwhat they said.\n\nThe executioner\u2019s argument was, that you couldn\u2019t cut off a head unless\nthere was a body to cut it off from: that he had never had to do such a\nthing before, and he wasn\u2019t going to begin at _his_ time of life.\n\nThe King\u2019s argument was, that anything that had a head could be\nbeheaded, and that you weren\u2019t to talk nonsense.\n\nThe Queen\u2019s argument was, that if something wasn\u2019t done about it in\nless than no time she\u2019d have everybody executed, all round. (It was\nthis last remark that had made the whole party look so grave and\nanxious.)\n\nAlice could think of nothing else to say but \u201cIt belongs to the\nDuchess: you\u2019d better ask _her_ about it.\u201d\n\n\u201cShe\u2019s in prison,\u201d the Queen said to the executioner: \u201cfetch her here.\u201d\nAnd the executioner went off like an arrow.\n\nThe Cat\u2019s head began fading away the moment he was gone, and, by the\ntime he had come back with the Duchess, it had entirely disappeared; so\nthe King and the executioner ran wildly up and down looking for it,\nwhile the rest of the party went back to the game.\n\n\n\n\nCHAPTER IX.\nThe Mock Turtle\u2019s Story\n\n\n\u201cYou can\u2019t think how glad I am to see you again, you dear old thing!\u201d\nsaid the Duchess, as she tucked her arm affectionately into Alice\u2019s,\nand they walked off together.\n\nAlice was very glad to find her in such a pleasant temper, and thought\nto herself that perhaps it was only the pepper that had made her so\nsavage when they met in the kitchen.\n\n\u201cWhen _I\u2019m_ a Duchess,\u201d she said to herself, (not in a very hopeful\ntone though), \u201cI won\u2019t have any pepper in my kitchen _at all_.", "mimetype": "text/plain", "start_char_idx": 97326, "end_char_idx": 99095, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "73cf0f78-2e8e-42d1-8492-894bcbec71b6": {"__data__": {"id_": "73cf0f78-2e8e-42d1-8492-894bcbec71b6", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "eb950247-a6b5-4546-a9be-143137d800a4", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "1a93784b01315ac86d61d2db69a2ce53914c9eb89566411e24ce18deb07c65de", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "65ef8204-7330-4f00-877d-4c3a97de50f5", "node_type": "1", "metadata": {}, "hash": "89890483ef7ef82954a47e9933484fcd8e110a6105a6af39fedeaa7cbcc92433", "class_name": "RelatedNodeInfo"}}, "text": "\u201cWhen _I\u2019m_ a Duchess,\u201d she said to herself, (not in a very hopeful\ntone though), \u201cI won\u2019t have any pepper in my kitchen _at all_. Soup\ndoes very well without\u2014Maybe it\u2019s always pepper that makes people\nhot-tempered,\u201d she went on, very much pleased at having found out a new\nkind of rule, \u201cand vinegar that makes them sour\u2014and camomile that makes\nthem bitter\u2014and\u2014and barley-sugar and such things that make children\nsweet-tempered. I only wish people knew _that_: then they wouldn\u2019t be\nso stingy about it, you know\u2014\u201d\n\nShe had quite forgotten the Duchess by this time, and was a little\nstartled when she heard her voice close to her ear. \u201cYou\u2019re thinking\nabout something, my dear, and that makes you forget to talk. I can\u2019t\ntell you just now what the moral of that is, but I shall remember it in\na bit.\u201d\n\n\u201cPerhaps it hasn\u2019t one,\u201d Alice ventured to remark.\n\n\u201cTut, tut, child!\u201d said the Duchess. \u201cEverything\u2019s got a moral, if only\nyou can find it.\u201d And she squeezed herself up closer to Alice\u2019s side as\nshe spoke.\n\nAlice did not much like keeping so close to her: first, because the\nDuchess was _very_ ugly; and secondly, because she was exactly the\nright height to rest her chin upon Alice\u2019s shoulder, and it was an\nuncomfortably sharp chin. However, she did not like to be rude, so she\nbore it as well as she could.\n\n\u201cThe game\u2019s going on rather better now,\u201d she said, by way of keeping up\nthe conversation a little.\n\n\u201c\u2019Tis so,\u201d said the Duchess: \u201cand the moral of that is\u2014\u2018Oh, \u2019tis love,\n\u2019tis love, that makes the world go round!\u2019\u201d\n\n\u201cSomebody said,\u201d Alice whispered, \u201cthat it\u2019s done by everybody minding\ntheir own business!\u201d\n\n\u201cAh, well!", "mimetype": "text/plain", "start_char_idx": 98965, "end_char_idx": 100598, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "65ef8204-7330-4f00-877d-4c3a97de50f5": {"__data__": {"id_": "65ef8204-7330-4f00-877d-4c3a97de50f5", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "73cf0f78-2e8e-42d1-8492-894bcbec71b6", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "6a4355f741a3f685c50505e0dbd945a252e2a17a44f397036e6b78538ebbdbbc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "70f69635-07dd-4453-baac-747e5ba5aeab", "node_type": "1", "metadata": {}, "hash": "c61726c5c52c0dc3773a6c9c00fc22daf35c37199eeed589512b705252d50ac0", "class_name": "RelatedNodeInfo"}}, "text": "It means much the same thing,\u201d said the Duchess, digging her\nsharp little chin into Alice\u2019s shoulder as she added, \u201cand the moral of\n_that_ is\u2014\u2018Take care of the sense, and the sounds will take care of\nthemselves.\u2019\u201d\n\n\u201cHow fond she is of finding morals in things!\u201d Alice thought to\nherself.\n\n\u201cI dare say you\u2019re wondering why I don\u2019t put my arm round your waist,\u201d\nthe Duchess said after a pause: \u201cthe reason is, that I\u2019m doubtful about\nthe temper of your flamingo. Shall I try the experiment?\u201d\n\n\u201cHe might bite,\u201d Alice cautiously replied, not feeling at all anxious\nto have the experiment tried.\n\n\u201cVery true,\u201d said the Duchess: \u201cflamingoes and mustard both bite. And\nthe moral of that is\u2014\u2018Birds of a feather flock together.\u2019\u201d\n\n\u201cOnly mustard isn\u2019t a bird,\u201d Alice remarked.\n\n\u201cRight, as usual,\u201d said the Duchess: \u201cwhat a clear way you have of\nputting things!\u201d\n\n\u201cIt\u2019s a mineral, I _think_,\u201d said Alice.\n\n\u201cOf course it is,\u201d said the Duchess, who seemed ready to agree to\neverything that Alice said; \u201cthere\u2019s a large mustard-mine near here.\nAnd the moral of that is\u2014\u2018The more there is of mine, the less there is\nof yours.\u2019\u201d\n\n\u201cOh, I know!\u201d exclaimed Alice, who had not attended to this last\nremark, \u201cit\u2019s a vegetable. It doesn\u2019t look like one, but it is.\u201d\n\n\u201cI quite agree with you,\u201d said the Duchess; \u201cand the moral of that\nis\u2014\u2018Be what you would seem to be\u2019\u2014or if you\u2019d like it put more\nsimply\u2014\u2018Never imagine yourself not to be otherwise than what it might\nappear to others that what you were or might have been was not\notherwise than what you had been would have appeared to them to be\notherwise.\u2019\u201d\n\n\u201cI think I should understand that better,\u201d Alice said very politely,\n\u201cif I had it written down: but I can\u2019t quite follow it as you say it.\u201d\n\n\u201cThat\u2019s nothing to what I could say if I chose,\u201d the Duchess replied,\nin a pleased tone.\n\n\u201cPray don\u2019t trouble yourself to say it any longer than that,\u201d said\nAlice.", "mimetype": "text/plain", "start_char_idx": 100599, "end_char_idx": 102493, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "70f69635-07dd-4453-baac-747e5ba5aeab": {"__data__": {"id_": "70f69635-07dd-4453-baac-747e5ba5aeab", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "65ef8204-7330-4f00-877d-4c3a97de50f5", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "0fb93fa053698b36e3ad2d7c25e6a83df0ccf3f6077ac70cca2e687ac47bf5f1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "26300e13-b5ca-4453-8d34-4d487299fd45", "node_type": "1", "metadata": {}, "hash": "715051635e4899c3750e8cfe9c9199b675e815437fbc35ae92a68fa92c4685b3", "class_name": "RelatedNodeInfo"}}, "text": "\u201cPray don\u2019t trouble yourself to say it any longer than that,\u201d said\nAlice.\n\n\u201cOh, don\u2019t talk about trouble!\u201d said the Duchess. \u201cI make you a present\nof everything I\u2019ve said as yet.\u201d\n\n\u201cA cheap sort of present!\u201d thought Alice. \u201cI\u2019m glad they don\u2019t give\nbirthday presents like that!\u201d But she did not venture to say it out\nloud.\n\n\u201cThinking again?\u201d the Duchess asked, with another dig of her sharp\nlittle chin.\n\n\u201cI\u2019ve a right to think,\u201d said Alice sharply, for she was beginning to\nfeel a little worried.\n\n\u201cJust about as much right,\u201d said the Duchess, \u201cas pigs have to fly; and\nthe m\u2014\u201d\n\nBut here, to Alice\u2019s great surprise, the Duchess\u2019s voice died away,\neven in the middle of her favourite word \u2018moral,\u2019 and the arm that was\nlinked into hers began to tremble. Alice looked up, and there stood the\nQueen in front of them, with her arms folded, frowning like a\nthunderstorm.\n\n\u201cA fine day, your Majesty!\u201d the Duchess began in a low, weak voice.\n\n\u201cNow, I give you fair warning,\u201d shouted the Queen, stamping on the\nground as she spoke; \u201ceither you or your head must be off, and that in\nabout half no time! Take your choice!\u201d\n\nThe Duchess took her choice, and was gone in a moment.\n\n\u201cLet\u2019s go on with the game,\u201d the Queen said to Alice; and Alice was too\nmuch frightened to say a word, but slowly followed her back to the\ncroquet-ground.\n\nThe other guests had taken advantage of the Queen\u2019s absence, and were\nresting in the shade: however, the moment they saw her, they hurried\nback to the game, the Queen merely remarking that a moment\u2019s delay\nwould cost them their lives.", "mimetype": "text/plain", "start_char_idx": 102420, "end_char_idx": 103981, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "26300e13-b5ca-4453-8d34-4d487299fd45": {"__data__": {"id_": "26300e13-b5ca-4453-8d34-4d487299fd45", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "70f69635-07dd-4453-baac-747e5ba5aeab", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "d14c5cc27d3b766a97f6131d42cd1f56e3b1d2e41444d8d9d5b49e177f582a3b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "262fe5ab-ef9e-4f15-a98b-6f707b92fb93", "node_type": "1", "metadata": {}, "hash": "8cd3a3d1a2a9563f64918425815db49357c77703718b7148cc449d8c0dbdca68", "class_name": "RelatedNodeInfo"}}, "text": "All the time they were playing the Queen never left off quarrelling\nwith the other players, and shouting \u201cOff with his head!\u201d or \u201cOff with\nher head!\u201d Those whom she sentenced were taken into custody by the\nsoldiers, who of course had to leave off being arches to do this, so\nthat by the end of half an hour or so there were no arches left, and\nall the players, except the King, the Queen, and Alice, were in custody\nand under sentence of execution.\n\nThen the Queen left off, quite out of breath, and said to Alice, \u201cHave\nyou seen the Mock Turtle yet?\u201d\n\n\u201cNo,\u201d said Alice. \u201cI don\u2019t even know what a Mock Turtle is.\u201d\n\n\u201cIt\u2019s the thing Mock Turtle Soup is made from,\u201d said the Queen.\n\n\u201cI never saw one, or heard of one,\u201d said Alice.\n\n\u201cCome on, then,\u201d said the Queen, \u201cand he shall tell you his history,\u201d\n\nAs they walked off together, Alice heard the King say in a low voice,\nto the company generally, \u201cYou are all pardoned.\u201d \u201cCome, _that\u2019s_ a\ngood thing!\u201d she said to herself, for she had felt quite unhappy at the\nnumber of executions the Queen had ordered.\n\nThey very soon came upon a Gryphon, lying fast asleep in the sun. (If\nyou don\u2019t know what a Gryphon is, look at the picture.) \u201cUp, lazy\nthing!\u201d said the Queen, \u201cand take this young lady to see the Mock\nTurtle, and to hear his history. I must go back and see after some\nexecutions I have ordered;\u201d and she walked off, leaving Alice alone\nwith the Gryphon. Alice did not quite like the look of the creature,\nbut on the whole she thought it would be quite as safe to stay with it\nas to go after that savage Queen: so she waited.\n\nThe Gryphon sat up and rubbed its eyes: then it watched the Queen till\nshe was out of sight: then it chuckled. \u201cWhat fun!\u201d said the Gryphon,\nhalf to itself, half to Alice.\n\n\u201cWhat _is_ the fun?\u201d said Alice.\n\n\u201cWhy, _she_,\u201d said the Gryphon.", "mimetype": "text/plain", "start_char_idx": 103983, "end_char_idx": 105803, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "262fe5ab-ef9e-4f15-a98b-6f707b92fb93": {"__data__": {"id_": "262fe5ab-ef9e-4f15-a98b-6f707b92fb93", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "26300e13-b5ca-4453-8d34-4d487299fd45", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "a31bdd70195866cd455f1824f76f6aca679b34cf4652369e47a0ebc47437e8cd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2d1d4e9c-d20b-4ffc-b560-99d0ea4b096a", "node_type": "1", "metadata": {}, "hash": "5c97b6fd459d892e892869148cbaa19e190cd15eeb1e4f41906c34b3df9b721b", "class_name": "RelatedNodeInfo"}}, "text": "\u201cWhat fun!\u201d said the Gryphon,\nhalf to itself, half to Alice.\n\n\u201cWhat _is_ the fun?\u201d said Alice.\n\n\u201cWhy, _she_,\u201d said the Gryphon. \u201cIt\u2019s all her fancy, that: they never\nexecutes nobody, you know. Come on!\u201d\n\n\u201cEverybody says \u2018come on!\u2019 here,\u201d thought Alice, as she went slowly\nafter it: \u201cI never was so ordered about in all my life, never!\u201d\n\nThey had not gone far before they saw the Mock Turtle in the distance,\nsitting sad and lonely on a little ledge of rock, and, as they came\nnearer, Alice could hear him sighing as if his heart would break. She\npitied him deeply. \u201cWhat is his sorrow?\u201d she asked the Gryphon, and the\nGryphon answered, very nearly in the same words as before, \u201cIt\u2019s all\nhis fancy, that: he hasn\u2019t got no sorrow, you know. Come on!\u201d\n\nSo they went up to the Mock Turtle, who looked at them with large eyes\nfull of tears, but said nothing.\n\n\u201cThis here young lady,\u201d said the Gryphon, \u201cshe wants for to know your\nhistory, she do.\u201d\n\n\u201cI\u2019ll tell it her,\u201d said the Mock Turtle in a deep, hollow tone: \u201csit\ndown, both of you, and don\u2019t speak a word till I\u2019ve finished.\u201d\n\nSo they sat down, and nobody spoke for some minutes. Alice thought to\nherself, \u201cI don\u2019t see how he can _ever_ finish, if he doesn\u2019t begin.\u201d\nBut she waited patiently.\n\n\u201cOnce,\u201d said the Mock Turtle at last, with a deep sigh, \u201cI was a real\nTurtle.\u201d\n\nThese words were followed by a very long silence, broken only by an\noccasional exclamation of \u201cHjckrrh!\u201d from the Gryphon, and the constant\nheavy sobbing of the Mock Turtle. Alice was very nearly getting up and\nsaying, \u201cThank you, sir, for your interesting story,\u201d but she could not\nhelp thinking there _must_ be more to come, so she sat still and said\nnothing.", "mimetype": "text/plain", "start_char_idx": 105676, "end_char_idx": 107362, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2d1d4e9c-d20b-4ffc-b560-99d0ea4b096a": {"__data__": {"id_": "2d1d4e9c-d20b-4ffc-b560-99d0ea4b096a", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "262fe5ab-ef9e-4f15-a98b-6f707b92fb93", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "c02d22a59c513db522b89ec78719579b420594b12d18ed8193413ca70cb302d9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6757402d-4af3-4fec-b8a4-569720149968", "node_type": "1", "metadata": {}, "hash": "3b357190c1de56ddbda1eb4ef0cf4111d2c3487ca87ded14e7e9a5da1e688219", "class_name": "RelatedNodeInfo"}}, "text": "Alice was very nearly getting up and\nsaying, \u201cThank you, sir, for your interesting story,\u201d but she could not\nhelp thinking there _must_ be more to come, so she sat still and said\nnothing.\n\n\u201cWhen we were little,\u201d the Mock Turtle went on at last, more calmly,\nthough still sobbing a little now and then, \u201cwe went to school in the\nsea. The master was an old Turtle\u2014we used to call him Tortoise\u2014\u201d\n\n\u201cWhy did you call him Tortoise, if he wasn\u2019t one?\u201d Alice asked.\n\n\u201cWe called him Tortoise because he taught us,\u201d said the Mock Turtle\nangrily: \u201creally you are very dull!\u201d\n\n\u201cYou ought to be ashamed of yourself for asking such a simple\nquestion,\u201d added the Gryphon; and then they both sat silent and looked\nat poor Alice, who felt ready to sink into the earth. At last the\nGryphon said to the Mock Turtle, \u201cDrive on, old fellow! Don\u2019t be all\nday about it!\u201d and he went on in these words:\n\n\u201cYes, we went to school in the sea, though you mayn\u2019t believe it\u2014\u201d\n\n\u201cI never said I didn\u2019t!\u201d interrupted Alice.\n\n\u201cYou did,\u201d said the Mock Turtle.\n\n\u201cHold your tongue!\u201d added the Gryphon, before Alice could speak again.\nThe Mock Turtle went on.\n\n\u201cWe had the best of educations\u2014in fact, we went to school every day\u2014\u201d\n\n\u201c_I\u2019ve_ been to a day-school, too,\u201d said Alice; \u201cyou needn\u2019t be so\nproud as all that.\u201d\n\n\u201cWith extras?\u201d asked the Mock Turtle a little anxiously.\n\n\u201cYes,\u201d said Alice, \u201cwe learned French and music.\u201d\n\n\u201cAnd washing?\u201d said the Mock Turtle.\n\n\u201cCertainly not!\u201d said Alice indignantly.\n\n\u201cAh! then yours wasn\u2019t a really good school,\u201d said the Mock Turtle in a\ntone of great relief. \u201cNow at _ours_ they had at the end of the bill,\n\u2018French, music, _and washing_\u2014extra.\u2019\u201d\n\n\u201cYou couldn\u2019t have wanted it much,\u201d said Alice; \u201cliving at the bottom\nof the sea.\u201d\n\n\u201cI couldn\u2019t afford to learn it.\u201d said the Mock Turtle with a sigh. \u201cI\nonly took the regular course.\u201d\n\n\u201cWhat was that?\u201d inquired Alice.", "mimetype": "text/plain", "start_char_idx": 107175, "end_char_idx": 109047, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6757402d-4af3-4fec-b8a4-569720149968": {"__data__": {"id_": "6757402d-4af3-4fec-b8a4-569720149968", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2d1d4e9c-d20b-4ffc-b560-99d0ea4b096a", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "a6976e59caf3d2aaa0b682fc897a42f33554b805e7604f1497eb65051578b9a8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "20270017-a10d-461e-988d-d9531cd85e33", "node_type": "1", "metadata": {}, "hash": "1b8f1bde6c4a03a266ed17ae052d5692abb090e8702321dca5cdd70461abdaaa", "class_name": "RelatedNodeInfo"}}, "text": "\u201cI\nonly took the regular course.\u201d\n\n\u201cWhat was that?\u201d inquired Alice.\n\n\u201cReeling and Writhing, of course, to begin with,\u201d the Mock Turtle\nreplied; \u201cand then the different branches of Arithmetic\u2014Ambition,\nDistraction, Uglification, and Derision.\u201d\n\n\u201cI never heard of \u2018Uglification,\u2019\u201d Alice ventured to say. \u201cWhat is it?\u201d\n\nThe Gryphon lifted up both its paws in surprise. \u201cWhat! Never heard of\nuglifying!\u201d it exclaimed. \u201cYou know what to beautify is, I suppose?\u201d\n\n\u201cYes,\u201d said Alice doubtfully: \u201cit means\u2014to\u2014make\u2014anything\u2014prettier.\u201d\n\n\u201cWell, then,\u201d the Gryphon went on, \u201cif you don\u2019t know what to uglify\nis, you _are_ a simpleton.\u201d\n\nAlice did not feel encouraged to ask any more questions about it, so\nshe turned to the Mock Turtle, and said \u201cWhat else had you to learn?\u201d\n\n\u201cWell, there was Mystery,\u201d the Mock Turtle replied, counting off the\nsubjects on his flappers, \u201c\u2014Mystery, ancient and modern, with\nSeaography: then Drawling\u2014the Drawling-master was an old conger-eel,\nthat used to come once a week: _he_ taught us Drawling, Stretching, and\nFainting in Coils.\u201d\n\n\u201cWhat was _that_ like?\u201d said Alice.\n\n\u201cWell, I can\u2019t show it you myself,\u201d the Mock Turtle said: \u201cI\u2019m too\nstiff. And the Gryphon never learnt it.\u201d\n\n\u201cHadn\u2019t time,\u201d said the Gryphon: \u201cI went to the Classics master,\nthough. He was an old crab, _he_ was.\u201d\n\n\u201cI never went to him,\u201d the Mock Turtle said with a sigh: \u201che taught\nLaughing and Grief, they used to say.\u201d\n\n\u201cSo he did, so he did,\u201d said the Gryphon, sighing in his turn; and both\ncreatures hid their faces in their paws.\n\n\u201cAnd how many hours a day did you do lessons?\u201d said Alice, in a hurry\nto change the subject.\n\n\u201cTen hours the first day,\u201d said the Mock Turtle: \u201cnine the next, and so\non.\u201d\n\n\u201cWhat a curious plan!\u201d exclaimed Alice.", "mimetype": "text/plain", "start_char_idx": 108980, "end_char_idx": 110722, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "20270017-a10d-461e-988d-d9531cd85e33": {"__data__": {"id_": "20270017-a10d-461e-988d-d9531cd85e33", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6757402d-4af3-4fec-b8a4-569720149968", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "23ec16ff4d7b75f1ee017b5c533c437c8a9245c7bf7b4365cda52ba935fe1b72", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8e7992c9-10c1-433f-bc40-1777dc777556", "node_type": "1", "metadata": {}, "hash": "4e5e09bda5f7fd4be14378a51790c548a962e6524969b0817897d67e1c29ff05", "class_name": "RelatedNodeInfo"}}, "text": "\u201cTen hours the first day,\u201d said the Mock Turtle: \u201cnine the next, and so\non.\u201d\n\n\u201cWhat a curious plan!\u201d exclaimed Alice.\n\n\u201cThat\u2019s the reason they\u2019re called lessons,\u201d the Gryphon remarked:\n\u201cbecause they lessen from day to day.\u201d\n\nThis was quite a new idea to Alice, and she thought it over a little\nbefore she made her next remark. \u201cThen the eleventh day must have been\na holiday?\u201d\n\n\u201cOf course it was,\u201d said the Mock Turtle.\n\n\u201cAnd how did you manage on the twelfth?\u201d Alice went on eagerly.\n\n\u201cThat\u2019s enough about lessons,\u201d the Gryphon interrupted in a very\ndecided tone: \u201ctell her something about the games now.\u201d\n\n\n\n\nCHAPTER X.\nThe Lobster Quadrille\n\n\nThe Mock Turtle sighed deeply, and drew the back of one flapper across\nhis eyes. He looked at Alice, and tried to speak, but for a minute or\ntwo sobs choked his voice. \u201cSame as if he had a bone in his throat,\u201d\nsaid the Gryphon: and it set to work shaking him and punching him in\nthe back. At last the Mock Turtle recovered his voice, and, with tears\nrunning down his cheeks, he went on again:\u2014\n\n\u201cYou may not have lived much under the sea\u2014\u201d (\u201cI haven\u2019t,\u201d said\nAlice)\u2014\u201cand perhaps you were never even introduced to a lobster\u2014\u201d\n(Alice began to say \u201cI once tasted\u2014\u201d but checked herself hastily, and\nsaid \u201cNo, never\u201d) \u201c\u2014so you can have no idea what a delightful thing a\nLobster Quadrille is!\u201d\n\n\u201cNo, indeed,\u201d said Alice. \u201cWhat sort of a dance is it?\u201d\n\n\u201cWhy,\u201d said the Gryphon, \u201cyou first form into a line along the\nsea-shore\u2014\u201d\n\n\u201cTwo lines!\u201d cried the Mock Turtle. \u201cSeals, turtles, salmon, and so on;\nthen, when you\u2019ve cleared all the jelly-fish out of the way\u2014\u201d\n\n\u201c_That_ generally takes some time,\u201d interrupted the Gryphon.\n\n\u201c\u2014you advance twice\u2014\u201d\n\n\u201cEach with a lobster as a partner!\u201d cried the Gryphon.", "mimetype": "text/plain", "start_char_idx": 110605, "end_char_idx": 112347, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8e7992c9-10c1-433f-bc40-1777dc777556": {"__data__": {"id_": "8e7992c9-10c1-433f-bc40-1777dc777556", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "20270017-a10d-461e-988d-d9531cd85e33", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "d428268df97c35ee3519b53c04dec7f0e2b3c6e8c07fba4cdf36cfd9ff68744f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "49f10e08-48b5-4add-8b05-0ce338db73f6", "node_type": "1", "metadata": {}, "hash": "92b8660fa76e3347b1aa849d4921147e12175d3bc9cca7907c2a8068fc3598d6", "class_name": "RelatedNodeInfo"}}, "text": "\u201c\u2014you advance twice\u2014\u201d\n\n\u201cEach with a lobster as a partner!\u201d cried the Gryphon.\n\n\u201cOf course,\u201d the Mock Turtle said: \u201cadvance twice, set to partners\u2014\u201d\n\n\u201c\u2014change lobsters, and retire in same order,\u201d continued the Gryphon.\n\n\u201cThen, you know,\u201d the Mock Turtle went on, \u201cyou throw the\u2014\u201d\n\n\u201cThe lobsters!\u201d shouted the Gryphon, with a bound into the air.\n\n\u201c\u2014as far out to sea as you can\u2014\u201d\n\n\u201cSwim after them!\u201d screamed the Gryphon.\n\n\u201cTurn a somersault in the sea!\u201d cried the Mock Turtle, capering wildly\nabout.\n\n\u201cChange lobsters again!\u201d yelled the Gryphon at the top of its voice.\n\n\u201cBack to land again, and that\u2019s all the first figure,\u201d said the Mock\nTurtle, suddenly dropping his voice; and the two creatures, who had\nbeen jumping about like mad things all this time, sat down again very\nsadly and quietly, and looked at Alice.\n\n\u201cIt must be a very pretty dance,\u201d said Alice timidly.\n\n\u201cWould you like to see a little of it?\u201d said the Mock Turtle.\n\n\u201cVery much indeed,\u201d said Alice.\n\n\u201cCome, let\u2019s try the first figure!\u201d said the Mock Turtle to the\nGryphon. \u201cWe can do without lobsters, you know. Which shall sing?\u201d\n\n\u201cOh, _you_ sing,\u201d said the Gryphon. \u201cI\u2019ve forgotten the words.\u201d\n\nSo they began solemnly dancing round and round Alice, every now and\nthen treading on her toes when they passed too close, and waving their\nforepaws to mark the time, while the Mock Turtle sang this, very slowly\nand sadly:\u2014\n\n\u201cWill you walk a little faster?\u201d said a whiting to a snail.\n\u201cThere\u2019s a porpoise close behind us, and he\u2019s treading on my tail.\nSee how eagerly the lobsters and the turtles all advance!\nThey are waiting on the shingle\u2014will you come and join the dance?\nWill you, won\u2019t you, will you, won\u2019t you, will you join the dance?\nWill you, won\u2019t you, will you, won\u2019t you, won\u2019t you join the dance?", "mimetype": "text/plain", "start_char_idx": 112270, "end_char_idx": 114045, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "49f10e08-48b5-4add-8b05-0ce338db73f6": {"__data__": {"id_": "49f10e08-48b5-4add-8b05-0ce338db73f6", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8e7992c9-10c1-433f-bc40-1777dc777556", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "34eab19168ec96db61d233207311f35c11773ad04ce0d21828780615b03b6fe5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "06b01d70-77ec-4d19-bf36-9e0831baccb4", "node_type": "1", "metadata": {}, "hash": "75d1932db6776cc4c2e2aef77891b4058e12a68184fe5d6816644cb45bd0bf42", "class_name": "RelatedNodeInfo"}}, "text": "Will you, won\u2019t you, will you, won\u2019t you, will you join the dance?\nWill you, won\u2019t you, will you, won\u2019t you, won\u2019t you join the dance?\n\n\u201cYou can really have no notion how delightful it will be\nWhen they take us up and throw us, with the lobsters, out to sea!\u201d\nBut the snail replied \u201cToo far, too far!\u201d and gave a look askance\u2014\nSaid he thanked the whiting kindly, but he would not join the dance.\nWould not, could not, would not, could not, would not join the dance.\nWould not, could not, would not, could not, could not join the dance.\n\n\u201cWhat matters it how far we go?\u201d his scaly friend replied.\n\u201cThere is another shore, you know, upon the other side.\nThe further off from England the nearer is to France\u2014\nThen turn not pale, beloved snail, but come and join the dance.\nWill you, won\u2019t you, will you, won\u2019t you, will you join the dance?\nWill you, won\u2019t you, will you, won\u2019t you, won\u2019t you join the dance?\u201d\n\n\n\u201cThank you, it\u2019s a very interesting dance to watch,\u201d said Alice,\nfeeling very glad that it was over at last: \u201cand I do so like that\ncurious song about the whiting!\u201d\n\n\u201cOh, as to the whiting,\u201d said the Mock Turtle, \u201cthey\u2014you\u2019ve seen them,\nof course?\u201d\n\n\u201cYes,\u201d said Alice, \u201cI\u2019ve often seen them at dinn\u2014\u201d she checked herself\nhastily.\n\n\u201cI don\u2019t know where Dinn may be,\u201d said the Mock Turtle, \u201cbut if you\u2019ve\nseen them so often, of course you know what they\u2019re like.\u201d\n\n\u201cI believe so,\u201d Alice replied thoughtfully. \u201cThey have their tails in\ntheir mouths\u2014and they\u2019re all over crumbs.\u201d\n\n\u201cYou\u2019re wrong about the crumbs,\u201d said the Mock Turtle: \u201ccrumbs would\nall wash off in the sea. But they _have_ their tails in their mouths;\nand the reason is\u2014\u201d here the Mock Turtle yawned and shut his\neyes.\u2014\u201cTell her about the reason and all that,\u201d he said to the Gryphon.", "mimetype": "text/plain", "start_char_idx": 113911, "end_char_idx": 115666, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "06b01d70-77ec-4d19-bf36-9e0831baccb4": {"__data__": {"id_": "06b01d70-77ec-4d19-bf36-9e0831baccb4", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "49f10e08-48b5-4add-8b05-0ce338db73f6", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "7eb170799be4e0f3e9b2d8b67469149f284d3bb342ebc4ff85bcfdf8c9214fe9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7c38af20-205c-4a4d-b88f-11df9d5b11fd", "node_type": "1", "metadata": {}, "hash": "43092242dba4ef88b70aa35a7cab18af51f4e1f4e34173c06a7e0d7ce12ffddf", "class_name": "RelatedNodeInfo"}}, "text": "But they _have_ their tails in their mouths;\nand the reason is\u2014\u201d here the Mock Turtle yawned and shut his\neyes.\u2014\u201cTell her about the reason and all that,\u201d he said to the Gryphon.\n\n\u201cThe reason is,\u201d said the Gryphon, \u201cthat they _would_ go with the\nlobsters to the dance. So they got thrown out to sea. So they had to\nfall a long way. So they got their tails fast in their mouths. So they\ncouldn\u2019t get them out again. That\u2019s all.\u201d\n\n\u201cThank you,\u201d said Alice, \u201cit\u2019s very interesting. I never knew so much\nabout a whiting before.\u201d\n\n\u201cI can tell you more than that, if you like,\u201d said the Gryphon. \u201cDo you\nknow why it\u2019s called a whiting?\u201d\n\n\u201cI never thought about it,\u201d said Alice. \u201cWhy?\u201d\n\n\u201c_It does the boots and shoes_,\u201d the Gryphon replied very solemnly.\n\nAlice was thoroughly puzzled. \u201cDoes the boots and shoes!\u201d she repeated\nin a wondering tone.\n\n\u201cWhy, what are _your_ shoes done with?\u201d said the Gryphon. \u201cI mean, what\nmakes them so shiny?\u201d\n\nAlice looked down at them, and considered a little before she gave her\nanswer. \u201cThey\u2019re done with blacking, I believe.\u201d\n\n\u201cBoots and shoes under the sea,\u201d the Gryphon went on in a deep voice,\n\u201care done with a whiting. Now you know.\u201d\n\n\u201cAnd what are they made of?\u201d Alice asked in a tone of great curiosity.\n\n\u201cSoles and eels, of course,\u201d the Gryphon replied rather impatiently:\n\u201cany shrimp could have told you that.\u201d\n\n\u201cIf I\u2019d been the whiting,\u201d said Alice, whose thoughts were still\nrunning on the song, \u201cI\u2019d have said to the porpoise, \u2018Keep back,\nplease: we don\u2019t want _you_ with us!\u2019\u201d\n\n\u201cThey were obliged to have him with them,\u201d the Mock Turtle said: \u201cno\nwise fish would go anywhere without a porpoise.\u201d\n\n\u201cWouldn\u2019t it really?\u201d said Alice in a tone of great surprise.", "mimetype": "text/plain", "start_char_idx": 115489, "end_char_idx": 117188, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7c38af20-205c-4a4d-b88f-11df9d5b11fd": {"__data__": {"id_": "7c38af20-205c-4a4d-b88f-11df9d5b11fd", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "06b01d70-77ec-4d19-bf36-9e0831baccb4", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "afffa81b608fbea50c74175acff8afcb70bd014eb96f36429bbbbd8477032647", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d14945b7-af8e-43d1-814e-34f5e2bb6a63", "node_type": "1", "metadata": {}, "hash": "03c1b22bd1c77622496b0cfd660c55d33c21f44a4d4e98d0bae6d2318bff8683", "class_name": "RelatedNodeInfo"}}, "text": "\u201cOf course not,\u201d said the Mock Turtle: \u201cwhy, if a fish came to _me_,\nand told me he was going a journey, I should say \u2018With what porpoise?\u2019\u201d\n\n\u201cDon\u2019t you mean \u2018purpose\u2019?\u201d said Alice.\n\n\u201cI mean what I say,\u201d the Mock Turtle replied in an offended tone. And\nthe Gryphon added \u201cCome, let\u2019s hear some of _your_ adventures.\u201d\n\n\u201cI could tell you my adventures\u2014beginning from this morning,\u201d said\nAlice a little timidly: \u201cbut it\u2019s no use going back to yesterday,\nbecause I was a different person then.\u201d\n\n\u201cExplain all that,\u201d said the Mock Turtle.\n\n\u201cNo, no! The adventures first,\u201d said the Gryphon in an impatient tone:\n\u201cexplanations take such a dreadful time.\u201d\n\nSo Alice began telling them her adventures from the time when she first\nsaw the White Rabbit. She was a little nervous about it just at first,\nthe two creatures got so close to her, one on each side, and opened\ntheir eyes and mouths so _very_ wide, but she gained courage as she\nwent on. Her listeners were perfectly quiet till she got to the part\nabout her repeating \u201c_You are old, Father William_,\u201d to the\nCaterpillar, and the words all coming different, and then the Mock\nTurtle drew a long breath, and said \u201cThat\u2019s very curious.\u201d\n\n\u201cIt\u2019s all about as curious as it can be,\u201d said the Gryphon.\n\n\u201cIt all came different!\u201d the Mock Turtle repeated thoughtfully. \u201cI\nshould like to hear her try and repeat something now. Tell her to\nbegin.\u201d He looked at the Gryphon as if he thought it had some kind of\nauthority over Alice.\n\n\u201cStand up and repeat \u2018\u2019_Tis the voice of the sluggard_,\u2019\u201d said the\nGryphon.", "mimetype": "text/plain", "start_char_idx": 117190, "end_char_idx": 118736, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d14945b7-af8e-43d1-814e-34f5e2bb6a63": {"__data__": {"id_": "d14945b7-af8e-43d1-814e-34f5e2bb6a63", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7c38af20-205c-4a4d-b88f-11df9d5b11fd", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "5624c4d761151c8cecf01d134fe8cb78b5cd9dc69f81930a03b07fbca5c7243b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e2b2188d-34a2-46d9-b84c-e109d9bc99dc", "node_type": "1", "metadata": {}, "hash": "6e390826c4d36cd46dca5f9397c290ebab4105f69460798e0dca733801baf099", "class_name": "RelatedNodeInfo"}}, "text": "\u201cStand up and repeat \u2018\u2019_Tis the voice of the sluggard_,\u2019\u201d said the\nGryphon.\n\n\u201cHow the creatures order one about, and make one repeat lessons!\u201d\nthought Alice; \u201cI might as well be at school at once.\u201d However, she got\nup, and began to repeat it, but her head was so full of the Lobster\nQuadrille, that she hardly knew what she was saying, and the words came\nvery queer indeed:\u2014\n\n\u201c\u2019Tis the voice of the Lobster; I heard him declare,\n\u201cYou have baked me too brown, I must sugar my hair.\u201d\nAs a duck with its eyelids, so he with his nose\nTrims his belt and his buttons, and turns out his toes.\u201d\n\n[later editions continued as follows\nWhen the sands are all dry, he is gay as a lark,\nAnd will talk in contemptuous tones of the Shark,\nBut, when the tide rises and sharks are around,\nHis voice has a timid and tremulous sound.]", "mimetype": "text/plain", "start_char_idx": 118661, "end_char_idx": 119476, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e2b2188d-34a2-46d9-b84c-e109d9bc99dc": {"__data__": {"id_": "e2b2188d-34a2-46d9-b84c-e109d9bc99dc", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d14945b7-af8e-43d1-814e-34f5e2bb6a63", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "07d0ee84db040348874649592f65cbfeb952103b0489ed7db89098a003d999d2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6ed6df16-8cd9-485a-b293-597b90d1f230", "node_type": "1", "metadata": {}, "hash": "1c279db676f6821bc8906e365b5065c76b7a0bf26a186ebf3c68dfc330991ee8", "class_name": "RelatedNodeInfo"}}, "text": "\u201cThat\u2019s different from what _I_ used to say when I was a child,\u201d said\nthe Gryphon.\n\n\u201cWell, I never heard it before,\u201d said the Mock Turtle; \u201cbut it sounds\nuncommon nonsense.\u201d\n\nAlice said nothing; she had sat down with her face in her hands,\nwondering if anything would _ever_ happen in a natural way again.\n\n\u201cI should like to have it explained,\u201d said the Mock Turtle.\n\n\u201cShe can\u2019t explain it,\u201d said the Gryphon hastily. \u201cGo on with the next\nverse.\u201d\n\n\u201cBut about his toes?\u201d the Mock Turtle persisted. \u201cHow _could_ he turn\nthem out with his nose, you know?\u201d\n\n\u201cIt\u2019s the first position in dancing.\u201d Alice said; but was dreadfully\npuzzled by the whole thing, and longed to change the subject.\n\n\u201cGo on with the next verse,\u201d the Gryphon repeated impatiently: \u201cit\nbegins \u2018_I passed by his garden_.\u2019\u201d\n\nAlice did not dare to disobey, though she felt sure it would all come\nwrong, and she went on in a trembling voice:\u2014\n\n\u201cI passed by his garden, and marked, with one eye,\nHow the Owl and the Panther were sharing a pie\u2014\u201d\n\n[later editions continued as follows\nThe Panther took pie-crust, and gravy, and meat,\nWhile the Owl had the dish as its share of the treat.\nWhen the pie was all finished, the Owl, as a boon,\nWas kindly permitted to pocket the spoon:\nWhile the Panther received knife and fork with a growl,\nAnd concluded the banquet\u2014]", "mimetype": "text/plain", "start_char_idx": 119479, "end_char_idx": 120803, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6ed6df16-8cd9-485a-b293-597b90d1f230": {"__data__": {"id_": "6ed6df16-8cd9-485a-b293-597b90d1f230", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2b2188d-34a2-46d9-b84c-e109d9bc99dc", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "b3e83d1c4b738f078a27dc7b19f2cb8d0b1d3928c048ba390ccac225a4145d0e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9a90e271-1939-42eb-b961-b007ee6a7fd4", "node_type": "1", "metadata": {}, "hash": "052ae7b3b81a0d38eece4978864376ca68b84f61f1f7c1ffd0ae9ad46975def1", "class_name": "RelatedNodeInfo"}}, "text": "\u201cWhat _is_ the use of repeating all that stuff,\u201d the Mock Turtle\ninterrupted, \u201cif you don\u2019t explain it as you go on? It\u2019s by far the\nmost confusing thing _I_ ever heard!\u201d\n\n\u201cYes, I think you\u2019d better leave off,\u201d said the Gryphon: and Alice was\nonly too glad to do so.\n\n\u201cShall we try another figure of the Lobster Quadrille?\u201d the Gryphon\nwent on. \u201cOr would you like the Mock Turtle to sing you a song?\u201d\n\n\u201cOh, a song, please, if the Mock Turtle would be so kind,\u201d Alice\nreplied, so eagerly that the Gryphon said, in a rather offended tone,\n\u201cHm! No accounting for tastes! Sing her \u2018_Turtle Soup_,\u2019 will you, old\nfellow?\u201d\n\nThe Mock Turtle sighed deeply, and began, in a voice sometimes choked\nwith sobs, to sing this:\u2014\n\n\u201cBeautiful Soup, so rich and green,\nWaiting in a hot tureen!\nWho for such dainties would not stoop?\nSoup of the evening, beautiful Soup!\nSoup of the evening, beautiful Soup!\n Beau\u2014ootiful Soo\u2014oop!\n Beau\u2014ootiful Soo\u2014oop!\nSoo\u2014oop of the e\u2014e\u2014evening,\n Beautiful, beautiful Soup!\n\n\u201cBeautiful Soup! Who cares for fish,\nGame, or any other dish?\nWho would not give all else for two p\nennyworth only of beautiful Soup?\nPennyworth only of beautiful Soup?\n Beau\u2014ootiful Soo\u2014oop!\n Beau\u2014ootiful Soo\u2014oop!\nSoo\u2014oop of the e\u2014e\u2014evening,\n Beautiful, beauti\u2014FUL SOUP!\u201d", "mimetype": "text/plain", "start_char_idx": 120806, "end_char_idx": 122088, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9a90e271-1939-42eb-b961-b007ee6a7fd4": {"__data__": {"id_": "9a90e271-1939-42eb-b961-b007ee6a7fd4", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6ed6df16-8cd9-485a-b293-597b90d1f230", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "98cd04562abe17a356bfa14223029ebd76ea801c470ca464313356729cea6ee6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "dffcd13c-ece5-48d4-8308-d285ea6765e7", "node_type": "1", "metadata": {}, "hash": "0330bc93007ba9fab94d63c2ac3730c000d48a8cdc63dd2b1c038950f3d19160", "class_name": "RelatedNodeInfo"}}, "text": "\u201cChorus again!\u201d cried the Gryphon, and the Mock Turtle had just begun\nto repeat it, when a cry of \u201cThe trial\u2019s beginning!\u201d was heard in the\ndistance.\n\n\u201cCome on!\u201d cried the Gryphon, and, taking Alice by the hand, it hurried\noff, without waiting for the end of the song.\n\n\u201cWhat trial is it?\u201d Alice panted as she ran; but the Gryphon only\nanswered \u201cCome on!\u201d and ran the faster, while more and more faintly\ncame, carried on the breeze that followed them, the melancholy words:\u2014\n\n\u201cSoo\u2014oop of the e\u2014e\u2014evening,\n Beautiful, beautiful Soup!\u201d\n\n\n\n\nCHAPTER XI.\nWho Stole the Tarts?\n\n\nThe King and Queen of Hearts were seated on their throne when they\narrived, with a great crowd assembled about them\u2014all sorts of little\nbirds and beasts, as well as the whole pack of cards: the Knave was\nstanding before them, in chains, with a soldier on each side to guard\nhim; and near the King was the White Rabbit, with a trumpet in one\nhand, and a scroll of parchment in the other. In the very middle of the\ncourt was a table, with a large dish of tarts upon it: they looked so\ngood, that it made Alice quite hungry to look at them\u2014\u201cI wish they\u2019d\nget the trial done,\u201d she thought, \u201cand hand round the refreshments!\u201d\nBut there seemed to be no chance of this, so she began looking at\neverything about her, to pass away the time.\n\nAlice had never been in a court of justice before, but she had read\nabout them in books, and she was quite pleased to find that she knew\nthe name of nearly everything there. \u201cThat\u2019s the judge,\u201d she said to\nherself, \u201cbecause of his great wig.\u201d\n\nThe judge, by the way, was the King; and as he wore his crown over the\nwig, (look at the frontispiece if you want to see how he did it,) he\ndid not look at all comfortable, and it was certainly not becoming.", "mimetype": "text/plain", "start_char_idx": 122091, "end_char_idx": 123851, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "dffcd13c-ece5-48d4-8308-d285ea6765e7": {"__data__": {"id_": "dffcd13c-ece5-48d4-8308-d285ea6765e7", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9a90e271-1939-42eb-b961-b007ee6a7fd4", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8eace23d2fb79a4cf2fd7cffae808146d9df6f8eee1c4fdc041dafc2fcc0e152", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "80931e85-8d71-4f41-bafd-f14d003d6188", "node_type": "1", "metadata": {}, "hash": "54c318ccae826a9ccd39cfa35db971d0b8eaa1ba20d2b943df5dc4617abb5011", "class_name": "RelatedNodeInfo"}}, "text": "\u201cAnd that\u2019s the jury-box,\u201d thought Alice, \u201cand those twelve creatures,\u201d\n(she was obliged to say \u201ccreatures,\u201d you see, because some of them were\nanimals, and some were birds,) \u201cI suppose they are the jurors.\u201d She\nsaid this last word two or three times over to herself, being rather\nproud of it: for she thought, and rightly too, that very few little\ngirls of her age knew the meaning of it at all. However, \u201cjury-men\u201d\nwould have done just as well.\n\nThe twelve jurors were all writing very busily on slates. \u201cWhat are\nthey doing?\u201d Alice whispered to the Gryphon. \u201cThey can\u2019t have anything\nto put down yet, before the trial\u2019s begun.\u201d\n\n\u201cThey\u2019re putting down their names,\u201d the Gryphon whispered in reply,\n\u201cfor fear they should forget them before the end of the trial.\u201d\n\n\u201cStupid things!\u201d Alice began in a loud, indignant voice, but she\nstopped hastily, for the White Rabbit cried out, \u201cSilence in the\ncourt!\u201d and the King put on his spectacles and looked anxiously round,\nto make out who was talking.\n\nAlice could see, as well as if she were looking over their shoulders,\nthat all the jurors were writing down \u201cstupid things!\u201d on their slates,\nand she could even make out that one of them didn\u2019t know how to spell\n\u201cstupid,\u201d and that he had to ask his neighbour to tell him. \u201cA nice\nmuddle their slates\u2019ll be in before the trial\u2019s over!\u201d thought Alice.\n\nOne of the jurors had a pencil that squeaked. This of course, Alice\ncould _not_ stand, and she went round the court and got behind him, and\nvery soon found an opportunity of taking it away. She did it so quickly\nthat the poor little juror (it was Bill, the Lizard) could not make out\nat all what had become of it; so, after hunting all about for it, he\nwas obliged to write with one finger for the rest of the day; and this\nwas of very little use, as it left no mark on the slate.\n\n\u201cHerald, read the accusation!\u201d said the King.", "mimetype": "text/plain", "start_char_idx": 123853, "end_char_idx": 125727, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "80931e85-8d71-4f41-bafd-f14d003d6188": {"__data__": {"id_": "80931e85-8d71-4f41-bafd-f14d003d6188", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "dffcd13c-ece5-48d4-8308-d285ea6765e7", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "39c678e0546b830bb3f8d0efe0c4efa1740cfc78d4c78a306cc2da74b5a894ca", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "634afe95-7345-41ce-b03d-2c9de0763939", "node_type": "1", "metadata": {}, "hash": "586f6401b4189599269ce0639548c9c22a03d404ab94080f73ccde32cf43ca7e", "class_name": "RelatedNodeInfo"}}, "text": "\u201cHerald, read the accusation!\u201d said the King.\n\nOn this the White Rabbit blew three blasts on the trumpet, and then\nunrolled the parchment scroll, and read as follows:\u2014\n\n\u201cThe Queen of Hearts, she made some tarts,\n All on a summer day:\nThe Knave of Hearts, he stole those tarts,\n And took them quite away!\u201d\n\n\n\u201cConsider your verdict,\u201d the King said to the jury.\n\n\u201cNot yet, not yet!\u201d the Rabbit hastily interrupted. \u201cThere\u2019s a great\ndeal to come before that!\u201d\n\n\u201cCall the first witness,\u201d said the King; and the White Rabbit blew\nthree blasts on the trumpet, and called out, \u201cFirst witness!\u201d\n\nThe first witness was the Hatter. He came in with a teacup in one hand\nand a piece of bread-and-butter in the other. \u201cI beg pardon, your\nMajesty,\u201d he began, \u201cfor bringing these in: but I hadn\u2019t quite finished\nmy tea when I was sent for.\u201d\n\n\u201cYou ought to have finished,\u201d said the King. \u201cWhen did you begin?\u201d\n\nThe Hatter looked at the March Hare, who had followed him into the\ncourt, arm-in-arm with the Dormouse. \u201cFourteenth of March, I _think_ it\nwas,\u201d he said.\n\n\u201cFifteenth,\u201d said the March Hare.\n\n\u201cSixteenth,\u201d added the Dormouse.\n\n\u201cWrite that down,\u201d the King said to the jury, and the jury eagerly\nwrote down all three dates on their slates, and then added them up, and\nreduced the answer to shillings and pence.\n\n\u201cTake off your hat,\u201d the King said to the Hatter.\n\n\u201cIt isn\u2019t mine,\u201d said the Hatter.\n\n\u201c_Stolen!_\u201d the King exclaimed, turning to the jury, who instantly made\na memorandum of the fact.\n\n\u201cI keep them to sell,\u201d the Hatter added as an explanation; \u201cI\u2019ve none\nof my own. I\u2019m a hatter.\u201d\n\nHere the Queen put on her spectacles, and began staring at the Hatter,\nwho turned pale and fidgeted.", "mimetype": "text/plain", "start_char_idx": 125682, "end_char_idx": 127371, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "634afe95-7345-41ce-b03d-2c9de0763939": {"__data__": {"id_": "634afe95-7345-41ce-b03d-2c9de0763939", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "80931e85-8d71-4f41-bafd-f14d003d6188", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "0a6c1ff73e522efa502ab1f1ae235c6f29c43c8ba52ab687805d7e5913a951b9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ae028f00-c1a7-411f-affb-cd644f26a898", "node_type": "1", "metadata": {}, "hash": "1284b89ca03cef830549a2ca705d7c19724718c9d1bbe801d2f4998b6f40dbfa", "class_name": "RelatedNodeInfo"}}, "text": "I\u2019m a hatter.\u201d\n\nHere the Queen put on her spectacles, and began staring at the Hatter,\nwho turned pale and fidgeted.\n\n\u201cGive your evidence,\u201d said the King; \u201cand don\u2019t be nervous, or I\u2019ll\nhave you executed on the spot.\u201d\n\nThis did not seem to encourage the witness at all: he kept shifting\nfrom one foot to the other, looking uneasily at the Queen, and in his\nconfusion he bit a large piece out of his teacup instead of the\nbread-and-butter.\n\nJust at this moment Alice felt a very curious sensation, which puzzled\nher a good deal until she made out what it was: she was beginning to\ngrow larger again, and she thought at first she would get up and leave\nthe court; but on second thoughts she decided to remain where she was\nas long as there was room for her.\n\n\u201cI wish you wouldn\u2019t squeeze so.\u201d said the Dormouse, who was sitting\nnext to her. \u201cI can hardly breathe.\u201d\n\n\u201cI can\u2019t help it,\u201d said Alice very meekly: \u201cI\u2019m growing.\u201d\n\n\u201cYou\u2019ve no right to grow _here_,\u201d said the Dormouse.\n\n\u201cDon\u2019t talk nonsense,\u201d said Alice more boldly: \u201cyou know you\u2019re growing\ntoo.\u201d\n\n\u201cYes, but _I_ grow at a reasonable pace,\u201d said the Dormouse: \u201cnot in\nthat ridiculous fashion.\u201d And he got up very sulkily and crossed over\nto the other side of the court.\n\nAll this time the Queen had never left off staring at the Hatter, and,\njust as the Dormouse crossed the court, she said to one of the officers\nof the court, \u201cBring me the list of the singers in the last concert!\u201d\non which the wretched Hatter trembled so, that he shook both his shoes\noff.\n\n\u201cGive your evidence,\u201d the King repeated angrily, \u201cor I\u2019ll have you\nexecuted, whether you\u2019re nervous or not.\u201d\n\n\u201cI\u2019m a poor man, your Majesty,\u201d the Hatter began, in a trembling voice,\n\u201c\u2014and I hadn\u2019t begun my tea\u2014not above a week or so\u2014and what with the\nbread-and-butter getting so thin\u2014and the twinkling of the tea\u2014\u201d\n\n\u201cThe twinkling of the _what?_\u201d said the King.", "mimetype": "text/plain", "start_char_idx": 127255, "end_char_idx": 129134, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ae028f00-c1a7-411f-affb-cd644f26a898": {"__data__": {"id_": "ae028f00-c1a7-411f-affb-cd644f26a898", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "634afe95-7345-41ce-b03d-2c9de0763939", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "317c132f6f3017c090353c60ed24ca78f2785a27c5940314f53627299eb53d20", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "222d0242-4459-4a03-abf3-c3853ca4fc2c", "node_type": "1", "metadata": {}, "hash": "027fc36014331d3c1dd4d8cc8302e4c35cb2deb66a7ecad43b86aa72babd945d", "class_name": "RelatedNodeInfo"}}, "text": "\u201cIt _began_ with the tea,\u201d the Hatter replied.\n\n\u201cOf course twinkling begins with a T!\u201d said the King sharply. \u201cDo you\ntake me for a dunce? Go on!\u201d\n\n\u201cI\u2019m a poor man,\u201d the Hatter went on, \u201cand most things twinkled after\nthat\u2014only the March Hare said\u2014\u201d\n\n\u201cI didn\u2019t!\u201d the March Hare interrupted in a great hurry.\n\n\u201cYou did!\u201d said the Hatter.\n\n\u201cI deny it!\u201d said the March Hare.\n\n\u201cHe denies it,\u201d said the King: \u201cleave out that part.\u201d\n\n\u201cWell, at any rate, the Dormouse said\u2014\u201d the Hatter went on, looking\nanxiously round to see if he would deny it too: but the Dormouse denied\nnothing, being fast asleep.\n\n\u201cAfter that,\u201d continued the Hatter, \u201cI cut some more bread-and-butter\u2014\u201d\n\n\u201cBut what did the Dormouse say?\u201d one of the jury asked.\n\n\u201cThat I can\u2019t remember,\u201d said the Hatter.\n\n\u201cYou _must_ remember,\u201d remarked the King, \u201cor I\u2019ll have you executed.\u201d\n\nThe miserable Hatter dropped his teacup and bread-and-butter, and went\ndown on one knee. \u201cI\u2019m a poor man, your Majesty,\u201d he began.\n\n\u201cYou\u2019re a _very_ poor _speaker_,\u201d said the King.\n\nHere one of the guinea-pigs cheered, and was immediately suppressed by\nthe officers of the court. (As that is rather a hard word, I will just\nexplain to you how it was done. They had a large canvas bag, which tied\nup at the mouth with strings: into this they slipped the guinea-pig,\nhead first, and then sat upon it.)\n\n\u201cI\u2019m glad I\u2019ve seen that done,\u201d thought Alice. \u201cI\u2019ve so often read in\nthe newspapers, at the end of trials, \u201cThere was some attempts at\napplause, which was immediately suppressed by the officers of the\ncourt,\u201d and I never understood what it meant till now.\u201d\n\n\u201cIf that\u2019s all you know about it, you may stand down,\u201d continued the\nKing.\n\n\u201cI can\u2019t go no lower,\u201d said the Hatter: \u201cI\u2019m on the floor, as it is.\u201d\n\n\u201cThen you may _sit_ down,\u201d the King replied.", "mimetype": "text/plain", "start_char_idx": 129136, "end_char_idx": 130929, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "222d0242-4459-4a03-abf3-c3853ca4fc2c": {"__data__": {"id_": "222d0242-4459-4a03-abf3-c3853ca4fc2c", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ae028f00-c1a7-411f-affb-cd644f26a898", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "25f6e697fd5a7b789fca5ef4650f9726f79cf02c18d3d70a25b8b0c9f3c7642f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e6442ed4-3e7c-45d1-8a7d-e73382c83301", "node_type": "1", "metadata": {}, "hash": "d571184df99d9c1efc6cf1139686efac96c7317872627a6517ffd59d06376735", "class_name": "RelatedNodeInfo"}}, "text": "\u201cI can\u2019t go no lower,\u201d said the Hatter: \u201cI\u2019m on the floor, as it is.\u201d\n\n\u201cThen you may _sit_ down,\u201d the King replied.\n\nHere the other guinea-pig cheered, and was suppressed.\n\n\u201cCome, that finished the guinea-pigs!\u201d thought Alice. \u201cNow we shall get\non better.\u201d\n\n\u201cI\u2019d rather finish my tea,\u201d said the Hatter, with an anxious look at\nthe Queen, who was reading the list of singers.\n\n\u201cYou may go,\u201d said the King, and the Hatter hurriedly left the court,\nwithout even waiting to put his shoes on.\n\n\u201c\u2014and just take his head off outside,\u201d the Queen added to one of the\nofficers: but the Hatter was out of sight before the officer could get\nto the door.\n\n\u201cCall the next witness!\u201d said the King.\n\nThe next witness was the Duchess\u2019s cook. She carried the pepper-box in\nher hand, and Alice guessed who it was, even before she got into the\ncourt, by the way the people near the door began sneezing all at once.\n\n\u201cGive your evidence,\u201d said the King.\n\n\u201cShan\u2019t,\u201d said the cook.\n\nThe King looked anxiously at the White Rabbit, who said in a low voice,\n\u201cYour Majesty must cross-examine _this_ witness.\u201d\n\n\u201cWell, if I must, I must,\u201d the King said, with a melancholy air, and,\nafter folding his arms and frowning at the cook till his eyes were\nnearly out of sight, he said in a deep voice, \u201cWhat are tarts made of?\u201d\n\n\u201cPepper, mostly,\u201d said the cook.\n\n\u201cTreacle,\u201d said a sleepy voice behind her.\n\n\u201cCollar that Dormouse,\u201d the Queen shrieked out. \u201cBehead that Dormouse!\nTurn that Dormouse out of court! Suppress him! Pinch him! Off with his\nwhiskers!\u201d\n\nFor some minutes the whole court was in confusion, getting the Dormouse\nturned out, and, by the time they had settled down again, the cook had\ndisappeared.\n\n\u201cNever mind!\u201d said the King, with an air of great relief.", "mimetype": "text/plain", "start_char_idx": 130814, "end_char_idx": 132553, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e6442ed4-3e7c-45d1-8a7d-e73382c83301": {"__data__": {"id_": "e6442ed4-3e7c-45d1-8a7d-e73382c83301", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "222d0242-4459-4a03-abf3-c3853ca4fc2c", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "e94c72905304977e2d773e7749b55e07a8ac2a9ac3989b8794bb36957cced4c1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a33cd0f6-5e50-42ba-9bc0-b29bb479d51d", "node_type": "1", "metadata": {}, "hash": "ef7c913bd589c4de670bad1afd6ff77b6533363e7066daddb9f09b08fde759e1", "class_name": "RelatedNodeInfo"}}, "text": "\u201cNever mind!\u201d said the King, with an air of great relief. \u201cCall the\nnext witness.\u201d And he added in an undertone to the Queen, \u201cReally, my\ndear, _you_ must cross-examine the next witness. It quite makes my\nforehead ache!\u201d\n\nAlice watched the White Rabbit as he fumbled over the list, feeling\nvery curious to see what the next witness would be like, \u201c\u2014for they\nhaven\u2019t got much evidence _yet_,\u201d she said to herself. Imagine her\nsurprise, when the White Rabbit read out, at the top of his shrill\nlittle voice, the name \u201cAlice!\u201d\n\n\n\n\nCHAPTER XII.\nAlice\u2019s Evidence\n\n\n\u201cHere!\u201d cried Alice, quite forgetting in the flurry of the moment how\nlarge she had grown in the last few minutes, and she jumped up in such\na hurry that she tipped over the jury-box with the edge of her skirt,\nupsetting all the jurymen on to the heads of the crowd below, and there\nthey lay sprawling about, reminding her very much of a globe of\ngoldfish she had accidentally upset the week before.\n\n\u201cOh, I _beg_ your pardon!\u201d she exclaimed in a tone of great dismay, and\nbegan picking them up again as quickly as she could, for the accident\nof the goldfish kept running in her head, and she had a vague sort of\nidea that they must be collected at once and put back into the\njury-box, or they would die.\n\n\u201cThe trial cannot proceed,\u201d said the King in a very grave voice, \u201cuntil\nall the jurymen are back in their proper places\u2014_all_,\u201d he repeated\nwith great emphasis, looking hard at Alice as he said so.\n\nAlice looked at the jury-box, and saw that, in her haste, she had put\nthe Lizard in head downwards, and the poor little thing was waving its\ntail about in a melancholy way, being quite unable to move.", "mimetype": "text/plain", "start_char_idx": 132496, "end_char_idx": 134161, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a33cd0f6-5e50-42ba-9bc0-b29bb479d51d": {"__data__": {"id_": "a33cd0f6-5e50-42ba-9bc0-b29bb479d51d", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e6442ed4-3e7c-45d1-8a7d-e73382c83301", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "e6155df3db1f4f02d931b3e3c51abf1b9f375cf95121e76add6efe06f2c7d01b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0ce65c33-74f8-4874-80c6-5b34e3efbd7e", "node_type": "1", "metadata": {}, "hash": "8561c645f6f7f6c2dc806d9163c19c14a1a769af765aa2fc78f91827dd1a3388", "class_name": "RelatedNodeInfo"}}, "text": "Alice looked at the jury-box, and saw that, in her haste, she had put\nthe Lizard in head downwards, and the poor little thing was waving its\ntail about in a melancholy way, being quite unable to move. She soon\ngot it out again, and put it right; \u201cnot that it signifies much,\u201d she\nsaid to herself; \u201cI should think it would be _quite_ as much use in the\ntrial one way up as the other.\u201d\n\nAs soon as the jury had a little recovered from the shock of being\nupset, and their slates and pencils had been found and handed back to\nthem, they set to work very diligently to write out a history of the\naccident, all except the Lizard, who seemed too much overcome to do\nanything but sit with its mouth open, gazing up into the roof of the\ncourt.\n\n\u201cWhat do you know about this business?\u201d the King said to Alice.\n\n\u201cNothing,\u201d said Alice.\n\n\u201cNothing _whatever?_\u201d persisted the King.\n\n\u201cNothing whatever,\u201d said Alice.\n\n\u201cThat\u2019s very important,\u201d the King said, turning to the jury. They were\njust beginning to write this down on their slates, when the White\nRabbit interrupted: \u201c_Un_important, your Majesty means, of course,\u201d he\nsaid in a very respectful tone, but frowning and making faces at him as\nhe spoke.\n\n\u201c_Un_important, of course, I meant,\u201d the King hastily said, and went on\nto himself in an undertone,\n\n\u201cimportant\u2014unimportant\u2014unimportant\u2014important\u2014\u201d as if he were trying\nwhich word sounded best.\n\nSome of the jury wrote it down \u201cimportant,\u201d and some \u201cunimportant.\u201d\nAlice could see this, as she was near enough to look over their slates;\n\u201cbut it doesn\u2019t matter a bit,\u201d she thought to herself.\n\nAt this moment the King, who had been for some time busily writing in\nhis note-book, cackled out \u201cSilence!\u201d and read out from his book, \u201cRule\nForty-two. _All persons more than a mile high to leave the court_.\u201d\n\nEverybody looked at Alice.\n\n\u201c_I\u2019m_ not a mile high,\u201d said Alice.\n\n\u201cYou are,\u201d said the King.", "mimetype": "text/plain", "start_char_idx": 133961, "end_char_idx": 135846, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0ce65c33-74f8-4874-80c6-5b34e3efbd7e": {"__data__": {"id_": "0ce65c33-74f8-4874-80c6-5b34e3efbd7e", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a33cd0f6-5e50-42ba-9bc0-b29bb479d51d", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "4f440922c544a12544c4e260ccc8448eb60eeabb500798012115c2f229113dba", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "def06a6a-09fd-4087-a67c-4a583ade7545", "node_type": "1", "metadata": {}, "hash": "8f0db90d6d22b6cd25ecdd1ed87c5932bc61e12a877ef13782d11b8e19ef007c", "class_name": "RelatedNodeInfo"}}, "text": "_All persons more than a mile high to leave the court_.\u201d\n\nEverybody looked at Alice.\n\n\u201c_I\u2019m_ not a mile high,\u201d said Alice.\n\n\u201cYou are,\u201d said the King.\n\n\u201cNearly two miles high,\u201d added the Queen.\n\n\u201cWell, I shan\u2019t go, at any rate,\u201d said Alice: \u201cbesides, that\u2019s not a\nregular rule: you invented it just now.\u201d\n\n\u201cIt\u2019s the oldest rule in the book,\u201d said the King.\n\n\u201cThen it ought to be Number One,\u201d said Alice.\n\nThe King turned pale, and shut his note-book hastily. \u201cConsider your\nverdict,\u201d he said to the jury, in a low, trembling voice.\n\n\u201cThere\u2019s more evidence to come yet, please your Majesty,\u201d said the\nWhite Rabbit, jumping up in a great hurry; \u201cthis paper has just been\npicked up.\u201d\n\n\u201cWhat\u2019s in it?\u201d said the Queen.\n\n\u201cI haven\u2019t opened it yet,\u201d said the White Rabbit, \u201cbut it seems to be a\nletter, written by the prisoner to\u2014to somebody.\u201d\n\n\u201cIt must have been that,\u201d said the King, \u201cunless it was written to\nnobody, which isn\u2019t usual, you know.\u201d\n\n\u201cWho is it directed to?\u201d said one of the jurymen.\n\n\u201cIt isn\u2019t directed at all,\u201d said the White Rabbit; \u201cin fact, there\u2019s\nnothing written on the _outside_.\u201d He unfolded the paper as he spoke,\nand added \u201cIt isn\u2019t a letter, after all: it\u2019s a set of verses.\u201d\n\n\u201cAre they in the prisoner\u2019s handwriting?\u201d asked another of the jurymen.\n\n\u201cNo, they\u2019re not,\u201d said the White Rabbit, \u201cand that\u2019s the queerest\nthing about it.\u201d (The jury all looked puzzled.)\n\n\u201cHe must have imitated somebody else\u2019s hand,\u201d said the King. (The jury\nall brightened up again.)\n\n\u201cPlease your Majesty,\u201d said the Knave, \u201cI didn\u2019t write it, and they\ncan\u2019t prove I did: there\u2019s no name signed at the end.\u201d\n\n\u201cIf you didn\u2019t sign it,\u201d said the King, \u201cthat only makes the matter\nworse.", "mimetype": "text/plain", "start_char_idx": 135697, "end_char_idx": 137379, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "def06a6a-09fd-4087-a67c-4a583ade7545": {"__data__": {"id_": "def06a6a-09fd-4087-a67c-4a583ade7545", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0ce65c33-74f8-4874-80c6-5b34e3efbd7e", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "42eb6bbaf4b3ea87c7c5930c28a2d4f01c880e686bdbbe3d9b428921e2b48d54", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "38d54015-192f-4202-8cae-e4463b050f7a", "node_type": "1", "metadata": {}, "hash": "46055036b80c4821a87eebb55c316719c5ff506ab0a20c92bf7aaeaa141b09f6", "class_name": "RelatedNodeInfo"}}, "text": "You _must_ have meant some mischief, or else you\u2019d have signed\nyour name like an honest man.\u201d\n\nThere was a general clapping of hands at this: it was the first really\nclever thing the King had said that day.\n\n\u201cThat _proves_ his guilt,\u201d said the Queen.\n\n\u201cIt proves nothing of the sort!\u201d said Alice. \u201cWhy, you don\u2019t even know\nwhat they\u2019re about!\u201d\n\n\u201cRead them,\u201d said the King.\n\nThe White Rabbit put on his spectacles. \u201cWhere shall I begin, please\nyour Majesty?\u201d he asked.\n\n\u201cBegin at the beginning,\u201d the King said gravely, \u201cand go on till you\ncome to the end: then stop.\u201d\n\nThese were the verses the White Rabbit read:\u2014\n\n\u201cThey told me you had been to her,\n And mentioned me to him:\nShe gave me a good character,\n But said I could not swim.\n\nHe sent them word I had not gone\n (We know it to be true):\nIf she should push the matter on,\n What would become of you?\n\nI gave her one, they gave him two,\n You gave us three or more;\nThey all returned from him to you,\n Though they were mine before.\n\nIf I or she should chance to be\n Involved in this affair,\nHe trusts to you to set them free,\n Exactly as we were.\n\nMy notion was that you had been\n (Before she had this fit)\nAn obstacle that came between\n Him, and ourselves, and it.\n\nDon\u2019t let him know she liked them best,\n For this must ever be\nA secret, kept from all the rest,\n Between yourself and me.\u201d\n\n\n\u201cThat\u2019s the most important piece of evidence we\u2019ve heard yet,\u201d said the\nKing, rubbing his hands; \u201cso now let the jury\u2014\u201d\n\n\u201cIf any one of them can explain it,\u201d said Alice, (she had grown so\nlarge in the last few minutes that she wasn\u2019t a bit afraid of\ninterrupting him,) \u201cI\u2019ll give him sixpence. _I_ don\u2019t believe there\u2019s\nan atom of meaning in it.\u201d\n\nThe jury all wrote down on their slates, \u201c_She_ doesn\u2019t believe there\u2019s\nan atom of meaning in it,\u201d but none of them attempted to explain the\npaper.", "mimetype": "text/plain", "start_char_idx": 137380, "end_char_idx": 139257, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "38d54015-192f-4202-8cae-e4463b050f7a": {"__data__": {"id_": "38d54015-192f-4202-8cae-e4463b050f7a", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "def06a6a-09fd-4087-a67c-4a583ade7545", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "16abb2c9bf525b6f0583fd3c413f9c74986f5ddf29e3334cb65c2a36eea7cad1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0f046a91-5659-484d-ad56-297dc6449f54", "node_type": "1", "metadata": {}, "hash": "9d0706d5f395ec2a99667a29a5087533c009a26bfb7e59f269734996289d2850", "class_name": "RelatedNodeInfo"}}, "text": "\u201cIf there\u2019s no meaning in it,\u201d said the King, \u201cthat saves a world of\ntrouble, you know, as we needn\u2019t try to find any. And yet I don\u2019t\nknow,\u201d he went on, spreading out the verses on his knee, and looking at\nthem with one eye; \u201cI seem to see some meaning in them, after all.\n\u201c\u2014_said I could not swim_\u2014\u201d you can\u2019t swim, can you?\u201d he added, turning\nto the Knave.\n\nThe Knave shook his head sadly. \u201cDo I look like it?\u201d he said. (Which he\ncertainly did _not_, being made entirely of cardboard.)\n\n\u201cAll right, so far,\u201d said the King, and he went on muttering over the\nverses to himself: \u201c\u2018_We know it to be true_\u2014\u2019 that\u2019s the jury, of\ncourse\u2014\u2018_I gave her one, they gave him two_\u2014\u2019 why, that must be what he\ndid with the tarts, you know\u2014\u201d\n\n\u201cBut, it goes on \u2018_they all returned from him to you_,\u2019\u201d said Alice.\n\n\u201cWhy, there they are!\u201d said the King triumphantly, pointing to the\ntarts on the table. \u201cNothing can be clearer than _that_. Then\nagain\u2014\u2018_before she had this fit_\u2014\u2019 you never had fits, my dear, I\nthink?\u201d he said to the Queen.\n\n\u201cNever!\u201d said the Queen furiously, throwing an inkstand at the Lizard\nas she spoke. (The unfortunate little Bill had left off writing on his\nslate with one finger, as he found it made no mark; but he now hastily\nbegan again, using the ink, that was trickling down his face, as long\nas it lasted.)\n\n\u201cThen the words don\u2019t _fit_ you,\u201d said the King, looking round the\ncourt with a smile. There was a dead silence.\n\n\u201cIt\u2019s a pun!\u201d the King added in an offended tone, and everybody\nlaughed, \u201cLet the jury consider their verdict,\u201d the King said, for\nabout the twentieth time that day.\n\n\u201cNo, no!\u201d said the Queen. \u201cSentence first\u2014verdict afterwards.\u201d\n\n\u201cStuff and nonsense!\u201d said Alice loudly.", "mimetype": "text/plain", "start_char_idx": 139259, "end_char_idx": 140969, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0f046a91-5659-484d-ad56-297dc6449f54": {"__data__": {"id_": "0f046a91-5659-484d-ad56-297dc6449f54", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "38d54015-192f-4202-8cae-e4463b050f7a", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "a3c71ff0c942f02a76bb074c03c48e1f946667e649516d8de4914d3d6211794b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2726c3b9-8887-45df-8af5-b304ca532ff0", "node_type": "1", "metadata": {}, "hash": "5773ecda43b138d0118bce0d865fa2366c93bf1098329225cc1dee728a38baec", "class_name": "RelatedNodeInfo"}}, "text": "\u201cNo, no!\u201d said the Queen. \u201cSentence first\u2014verdict afterwards.\u201d\n\n\u201cStuff and nonsense!\u201d said Alice loudly. \u201cThe idea of having the\nsentence first!\u201d\n\n\u201cHold your tongue!\u201d said the Queen, turning purple.\n\n\u201cI won\u2019t!\u201d said Alice.\n\n\u201cOff with her head!\u201d the Queen shouted at the top of her voice. Nobody\nmoved.\n\n\u201cWho cares for you?\u201d said Alice, (she had grown to her full size by\nthis time.) \u201cYou\u2019re nothing but a pack of cards!\u201d\n\nAt this the whole pack rose up into the air, and came flying down upon\nher: she gave a little scream, half of fright and half of anger, and\ntried to beat them off, and found herself lying on the bank, with her\nhead in the lap of her sister, who was gently brushing away some dead\nleaves that had fluttered down from the trees upon her face.\n\n\u201cWake up, Alice dear!\u201d said her sister; \u201cWhy, what a long sleep you\u2019ve\nhad!\u201d\n\n\u201cOh, I\u2019ve had such a curious dream!\u201d said Alice, and she told her\nsister, as well as she could remember them, all these strange\nAdventures of hers that you have just been reading about; and when she\nhad finished, her sister kissed her, and said, \u201cIt _was_ a curious\ndream, dear, certainly: but now run in to your tea; it\u2019s getting late.\u201d\nSo Alice got up and ran off, thinking while she ran, as well she might,\nwhat a wonderful dream it had been.", "mimetype": "text/plain", "start_char_idx": 140865, "end_char_idx": 142152, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2726c3b9-8887-45df-8af5-b304ca532ff0": {"__data__": {"id_": "2726c3b9-8887-45df-8af5-b304ca532ff0", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0f046a91-5659-484d-ad56-297dc6449f54", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "128eab44d11f1f716ef7703f1732b1d4221e116f67cf2b39c7300c100ac5119b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "97904648-eda4-4b05-947f-8013c724cbd7", "node_type": "1", "metadata": {}, "hash": "c561af5ed8166e2f3149a317970ff8acaf967911c3b5d125a674280e46f704d4", "class_name": "RelatedNodeInfo"}}, "text": "But her sister sat still just as she left her, leaning her head on her\nhand, watching the setting sun, and thinking of little Alice and all\nher wonderful Adventures, till she too began dreaming after a fashion,\nand this was her dream:\u2014\n\nFirst, she dreamed of little Alice herself, and once again the tiny\nhands were clasped upon her knee, and the bright eager eyes were\nlooking up into hers\u2014she could hear the very tones of her voice, and\nsee that queer little toss of her head to keep back the wandering hair\nthat _would_ always get into her eyes\u2014and still as she listened, or\nseemed to listen, the whole place around her became alive with the\nstrange creatures of her little sister\u2019s dream.\n\nThe long grass rustled at her feet as the White Rabbit hurried by\u2014the\nfrightened Mouse splashed his way through the neighbouring pool\u2014she\ncould hear the rattle of the teacups as the March Hare and his friends\nshared their never-ending meal, and the shrill voice of the Queen\nordering off her unfortunate guests to execution\u2014once more the pig-baby\nwas sneezing on the Duchess\u2019s knee, while plates and dishes crashed\naround it\u2014once more the shriek of the Gryphon, the squeaking of the\nLizard\u2019s slate-pencil, and the choking of the suppressed guinea-pigs,\nfilled the air, mixed up with the distant sobs of the miserable Mock\nTurtle.\n\nSo she sat on, with closed eyes, and half believed herself in\nWonderland, though she knew she had but to open them again, and all\nwould change to dull reality\u2014the grass would be only rustling in the\nwind, and the pool rippling to the waving of the reeds\u2014the rattling\nteacups would change to tinkling sheep-bells, and the Queen\u2019s shrill\ncries to the voice of the shepherd boy\u2014and the sneeze of the baby, the\nshriek of the Gryphon, and all the other queer noises, would change\n(she knew) to the confused clamour of the busy farm-yard\u2014while the\nlowing of the cattle in the distance would take the place of the Mock\nTurtle\u2019s heavy sobs.", "mimetype": "text/plain", "start_char_idx": 142155, "end_char_idx": 144112, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "97904648-eda4-4b05-947f-8013c724cbd7": {"__data__": {"id_": "97904648-eda4-4b05-947f-8013c724cbd7", "embedding": null, "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6719012a-2e00-4899-8155-f76f13498640", "node_type": "4", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "8f4ca157a7b8b4195741c6a5f1f6f75ccc82c826e923bde969c8cec8e0582130", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2726c3b9-8887-45df-8af5-b304ca532ff0", "node_type": "1", "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}, "hash": "109b418a2eacdb37d032bf2adb9f6c13b855710cd7566d9719aca754301ca721", "class_name": "RelatedNodeInfo"}}, "text": "Lastly, she pictured to herself how this same little sister of hers\nwould, in the after-time, be herself a grown woman; and how she would\nkeep, through all her riper years, the simple and loving heart of her\nchildhood: and how she would gather about her other little children,\nand make _their_ eyes bright and eager with many a strange tale,\nperhaps even with the dream of Wonderland of long ago: and how she\nwould feel with all their simple sorrows, and find a pleasure in all\ntheir simple joys, remembering her own child-life, and the happy summer\ndays.\n\nTHE END\n*** END OF THE PROJECT GUTENBERG EBOOK ALICE'S ADVENTURES IN\nWONDERLAND ***", "mimetype": "text/plain", "start_char_idx": 144114, "end_char_idx": 144754, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}}, "docstore/ref_doc_info": {"6719012a-2e00-4899-8155-f76f13498640": {"node_ids": ["2c486807-00fb-455e-a12b-d3785b3775a6", "4c27fcde-4cfa-478f-93f8-11e29b973e5c", "8c55f38d-fcd4-4e9d-b108-83965b3dd7f8", "bb99a80b-7739-42ae-83b9-f993f4e68a8d", "6ada6637-2304-4a9c-bd5e-9c1c1fa0b44b", "160c8748-dc41-4bac-ab9f-8de97a0e3a14", "c6677b6e-8cdd-4cf9-8fa5-30e37bf8efae", "ee8665a9-0a40-4b77-b307-10438f99e061", "4203f0ce-85fa-413d-9c3c-21a3198706b9", "e0440273-311e-4c23-ab1b-e60c6869591c", "b28e90df-47fc-4443-90bb-fb148f26137a", "e6c9a6c4-3755-4f6c-926f-f3dcbda6ad7f", "7cafdc7d-5b5b-4de9-9d10-c785f70d6ebf", "c4665ae7-ffad-4ece-9aae-7bab82bf571e", "f839fe67-453e-4385-a719-4f527a31f3b4", "2a109748-864a-43e3-afb0-fbd276017f26", "25041e74-2cb2-43c1-ae33-3a8d833bcb5d", "b18627a3-d1da-495c-afee-5f0ac6c982f4", "5c084f96-5468-4d47-9633-d651fdee2c06", "1e10b962-1bf2-4135-9844-a8b37395269b", "9c977b29-2b5e-4adb-ac39-8cd17e89d6a0", "525f4ace-6468-4482-8704-b40282846811", "11a31fba-c851-494f-888d-137034ec349b", "0d0abb6b-626a-4c17-93ee-420c9623e6a1", "82aa444e-5073-4b50-b902-1396d1d859c6", "c21a250f-de9f-4e2d-b2e9-f026feac7b72", "ca94437a-258d-4e48-b8c8-0aa25499e748", "b086b9a1-6dc8-4a5a-a632-e779ebb3cf28", "864dd49d-de1d-41da-8e10-5b39b130d97b", "83db070a-a453-44c7-af9f-630b992bfc10", "91082429-933a-44e2-ada6-494afaab7d5c", "6ffdc1b6-485a-4391-884a-60cdcf9f6728", "95dca97f-5aff-45ef-98fc-180a28d96776", "a3ee7823-d883-4689-a3d3-16fee0d55a8e", "e099c9b1-f180-495c-8a90-4acf0eed27f4", "9a3f19c3-bc9a-461b-ac98-2cc578a9fed4", "fcb9a991-6838-4188-84f5-e9c96fceec63", "2f98b957-934d-4a85-896d-0632239404fb", "ee0235fc-aab4-421e-a54d-615fc84de98f", "6d3c8af5-02e0-4ea9-911a-c0877855bfdf", "4d59b79a-1649-4503-be5a-caa5e698aae3", "8ffeef58-0d8d-4981-8ede-39ab9a001f87", "5939816d-45db-4a4e-8fc9-11359dea8dff", "c83a7ea4-98db-4453-b5fa-96d9b1aa3309", "d1a9c3a1-f823-4f70-a082-df0ea065abde", "0be3a661-3a75-4ada-864a-d7d60fb0290d", "2c5d4291-5db2-4e19-ad43-df69d548615f", "1b06fee1-88bd-4071-bd33-b1f42ba88701", "90855a3c-2335-412e-a6fc-77688c814dfa", "ce04402a-6406-4e23-b72c-33e705b94d0b", "975dd9b7-60dd-49a9-a498-e3c76eeefc22", "2702477b-1b69-42a2-b623-483d4bdbf88f", "b10dd663-a214-4daa-9b67-2060a3fca070", "21fd3f20-774f-42f9-a359-d88d2641457f", "bf2f865a-d8c4-4b15-90af-629ce3ac7eb9", "7721ec01-3d3e-4c30-ae35-f93b645c25ef", "9ee46feb-fde8-40c1-849b-2fe9e87f86c1", "1f2a2fd1-9e1c-4f26-b9fd-498cea121509", "8830bda2-9381-4980-9c33-4a2f3190533a", "eb950247-a6b5-4546-a9be-143137d800a4", "73cf0f78-2e8e-42d1-8492-894bcbec71b6", "65ef8204-7330-4f00-877d-4c3a97de50f5", "70f69635-07dd-4453-baac-747e5ba5aeab", "26300e13-b5ca-4453-8d34-4d487299fd45", "262fe5ab-ef9e-4f15-a98b-6f707b92fb93", "2d1d4e9c-d20b-4ffc-b560-99d0ea4b096a", "6757402d-4af3-4fec-b8a4-569720149968", "20270017-a10d-461e-988d-d9531cd85e33", "8e7992c9-10c1-433f-bc40-1777dc777556", "49f10e08-48b5-4add-8b05-0ce338db73f6", "06b01d70-77ec-4d19-bf36-9e0831baccb4", "7c38af20-205c-4a4d-b88f-11df9d5b11fd", "d14945b7-af8e-43d1-814e-34f5e2bb6a63", "e2b2188d-34a2-46d9-b84c-e109d9bc99dc", "6ed6df16-8cd9-485a-b293-597b90d1f230", "9a90e271-1939-42eb-b961-b007ee6a7fd4", "dffcd13c-ece5-48d4-8308-d285ea6765e7", "80931e85-8d71-4f41-bafd-f14d003d6188", "634afe95-7345-41ce-b03d-2c9de0763939", "ae028f00-c1a7-411f-affb-cd644f26a898", "222d0242-4459-4a03-abf3-c3853ca4fc2c", "e6442ed4-3e7c-45d1-8a7d-e73382c83301", "a33cd0f6-5e50-42ba-9bc0-b29bb479d51d", "0ce65c33-74f8-4874-80c6-5b34e3efbd7e", "def06a6a-09fd-4087-a67c-4a583ade7545", "38d54015-192f-4202-8cae-e4463b050f7a", "0f046a91-5659-484d-ad56-297dc6449f54", "2726c3b9-8887-45df-8af5-b304ca532ff0", "97904648-eda4-4b05-947f-8013c724cbd7"], "metadata": {"file_path": "/Users/pmiron/repos/alice-rag-llm/src/alice_rag_llm/data/alice_in_wonderland.txt", "file_name": "alice_in_wonderland.txt", "file_type": "text/plain", "file_size": 151249, "creation_date": "2024-06-26", "last_modified_date": "2024-06-26"}}}} \ No newline at end of file diff --git a/src/store/graph_store.json b/src/store/graph_store.json new file mode 100644 index 0000000..9aab8ea --- /dev/null +++ b/src/store/graph_store.json @@ -0,0 +1 @@ +{"graph_dict": {}} \ No newline at end of file diff --git a/src/store/image__vector_store.json b/src/store/image__vector_store.json new file mode 100644 index 0000000..8534c56 --- /dev/null +++ b/src/store/image__vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {}, "text_id_to_ref_doc_id": {}, "metadata_dict": {}} \ No newline at end of file diff --git a/src/store/index_store.json b/src/store/index_store.json new file mode 100644 index 0000000..3886af8 --- /dev/null +++ b/src/store/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"6dfd8f11-bdd9-48ea-9052-0e3393bc6165": {"__type__": "vector_store", "__data__": "{\"index_id\": \"6dfd8f11-bdd9-48ea-9052-0e3393bc6165\", \"summary\": null, \"nodes_dict\": {\"2c486807-00fb-455e-a12b-d3785b3775a6\": \"2c486807-00fb-455e-a12b-d3785b3775a6\", \"4c27fcde-4cfa-478f-93f8-11e29b973e5c\": \"4c27fcde-4cfa-478f-93f8-11e29b973e5c\", \"8c55f38d-fcd4-4e9d-b108-83965b3dd7f8\": \"8c55f38d-fcd4-4e9d-b108-83965b3dd7f8\", \"bb99a80b-7739-42ae-83b9-f993f4e68a8d\": \"bb99a80b-7739-42ae-83b9-f993f4e68a8d\", \"6ada6637-2304-4a9c-bd5e-9c1c1fa0b44b\": \"6ada6637-2304-4a9c-bd5e-9c1c1fa0b44b\", \"160c8748-dc41-4bac-ab9f-8de97a0e3a14\": \"160c8748-dc41-4bac-ab9f-8de97a0e3a14\", \"c6677b6e-8cdd-4cf9-8fa5-30e37bf8efae\": \"c6677b6e-8cdd-4cf9-8fa5-30e37bf8efae\", \"ee8665a9-0a40-4b77-b307-10438f99e061\": \"ee8665a9-0a40-4b77-b307-10438f99e061\", \"4203f0ce-85fa-413d-9c3c-21a3198706b9\": \"4203f0ce-85fa-413d-9c3c-21a3198706b9\", \"e0440273-311e-4c23-ab1b-e60c6869591c\": \"e0440273-311e-4c23-ab1b-e60c6869591c\", \"b28e90df-47fc-4443-90bb-fb148f26137a\": \"b28e90df-47fc-4443-90bb-fb148f26137a\", \"e6c9a6c4-3755-4f6c-926f-f3dcbda6ad7f\": \"e6c9a6c4-3755-4f6c-926f-f3dcbda6ad7f\", \"7cafdc7d-5b5b-4de9-9d10-c785f70d6ebf\": \"7cafdc7d-5b5b-4de9-9d10-c785f70d6ebf\", \"c4665ae7-ffad-4ece-9aae-7bab82bf571e\": \"c4665ae7-ffad-4ece-9aae-7bab82bf571e\", \"f839fe67-453e-4385-a719-4f527a31f3b4\": \"f839fe67-453e-4385-a719-4f527a31f3b4\", \"2a109748-864a-43e3-afb0-fbd276017f26\": \"2a109748-864a-43e3-afb0-fbd276017f26\", \"25041e74-2cb2-43c1-ae33-3a8d833bcb5d\": \"25041e74-2cb2-43c1-ae33-3a8d833bcb5d\", \"b18627a3-d1da-495c-afee-5f0ac6c982f4\": \"b18627a3-d1da-495c-afee-5f0ac6c982f4\", \"5c084f96-5468-4d47-9633-d651fdee2c06\": \"5c084f96-5468-4d47-9633-d651fdee2c06\", \"1e10b962-1bf2-4135-9844-a8b37395269b\": \"1e10b962-1bf2-4135-9844-a8b37395269b\", \"9c977b29-2b5e-4adb-ac39-8cd17e89d6a0\": \"9c977b29-2b5e-4adb-ac39-8cd17e89d6a0\", \"525f4ace-6468-4482-8704-b40282846811\": \"525f4ace-6468-4482-8704-b40282846811\", \"11a31fba-c851-494f-888d-137034ec349b\": \"11a31fba-c851-494f-888d-137034ec349b\", \"0d0abb6b-626a-4c17-93ee-420c9623e6a1\": \"0d0abb6b-626a-4c17-93ee-420c9623e6a1\", \"82aa444e-5073-4b50-b902-1396d1d859c6\": \"82aa444e-5073-4b50-b902-1396d1d859c6\", \"c21a250f-de9f-4e2d-b2e9-f026feac7b72\": \"c21a250f-de9f-4e2d-b2e9-f026feac7b72\", \"ca94437a-258d-4e48-b8c8-0aa25499e748\": \"ca94437a-258d-4e48-b8c8-0aa25499e748\", \"b086b9a1-6dc8-4a5a-a632-e779ebb3cf28\": \"b086b9a1-6dc8-4a5a-a632-e779ebb3cf28\", \"864dd49d-de1d-41da-8e10-5b39b130d97b\": \"864dd49d-de1d-41da-8e10-5b39b130d97b\", \"83db070a-a453-44c7-af9f-630b992bfc10\": \"83db070a-a453-44c7-af9f-630b992bfc10\", \"91082429-933a-44e2-ada6-494afaab7d5c\": \"91082429-933a-44e2-ada6-494afaab7d5c\", \"6ffdc1b6-485a-4391-884a-60cdcf9f6728\": \"6ffdc1b6-485a-4391-884a-60cdcf9f6728\", \"95dca97f-5aff-45ef-98fc-180a28d96776\": \"95dca97f-5aff-45ef-98fc-180a28d96776\", \"a3ee7823-d883-4689-a3d3-16fee0d55a8e\": \"a3ee7823-d883-4689-a3d3-16fee0d55a8e\", \"e099c9b1-f180-495c-8a90-4acf0eed27f4\": \"e099c9b1-f180-495c-8a90-4acf0eed27f4\", \"9a3f19c3-bc9a-461b-ac98-2cc578a9fed4\": \"9a3f19c3-bc9a-461b-ac98-2cc578a9fed4\", \"fcb9a991-6838-4188-84f5-e9c96fceec63\": \"fcb9a991-6838-4188-84f5-e9c96fceec63\", \"2f98b957-934d-4a85-896d-0632239404fb\": \"2f98b957-934d-4a85-896d-0632239404fb\", \"ee0235fc-aab4-421e-a54d-615fc84de98f\": \"ee0235fc-aab4-421e-a54d-615fc84de98f\", \"6d3c8af5-02e0-4ea9-911a-c0877855bfdf\": \"6d3c8af5-02e0-4ea9-911a-c0877855bfdf\", \"4d59b79a-1649-4503-be5a-caa5e698aae3\": \"4d59b79a-1649-4503-be5a-caa5e698aae3\", \"8ffeef58-0d8d-4981-8ede-39ab9a001f87\": \"8ffeef58-0d8d-4981-8ede-39ab9a001f87\", \"5939816d-45db-4a4e-8fc9-11359dea8dff\": \"5939816d-45db-4a4e-8fc9-11359dea8dff\", \"c83a7ea4-98db-4453-b5fa-96d9b1aa3309\": \"c83a7ea4-98db-4453-b5fa-96d9b1aa3309\", \"d1a9c3a1-f823-4f70-a082-df0ea065abde\": \"d1a9c3a1-f823-4f70-a082-df0ea065abde\", \"0be3a661-3a75-4ada-864a-d7d60fb0290d\": \"0be3a661-3a75-4ada-864a-d7d60fb0290d\", \"2c5d4291-5db2-4e19-ad43-df69d548615f\": \"2c5d4291-5db2-4e19-ad43-df69d548615f\", \"1b06fee1-88bd-4071-bd33-b1f42ba88701\": \"1b06fee1-88bd-4071-bd33-b1f42ba88701\", \"90855a3c-2335-412e-a6fc-77688c814dfa\": \"90855a3c-2335-412e-a6fc-77688c814dfa\", \"ce04402a-6406-4e23-b72c-33e705b94d0b\": \"ce04402a-6406-4e23-b72c-33e705b94d0b\", \"975dd9b7-60dd-49a9-a498-e3c76eeefc22\": \"975dd9b7-60dd-49a9-a498-e3c76eeefc22\", \"2702477b-1b69-42a2-b623-483d4bdbf88f\": \"2702477b-1b69-42a2-b623-483d4bdbf88f\", \"b10dd663-a214-4daa-9b67-2060a3fca070\": \"b10dd663-a214-4daa-9b67-2060a3fca070\", \"21fd3f20-774f-42f9-a359-d88d2641457f\": \"21fd3f20-774f-42f9-a359-d88d2641457f\", \"bf2f865a-d8c4-4b15-90af-629ce3ac7eb9\": \"bf2f865a-d8c4-4b15-90af-629ce3ac7eb9\", \"7721ec01-3d3e-4c30-ae35-f93b645c25ef\": \"7721ec01-3d3e-4c30-ae35-f93b645c25ef\", \"9ee46feb-fde8-40c1-849b-2fe9e87f86c1\": \"9ee46feb-fde8-40c1-849b-2fe9e87f86c1\", \"1f2a2fd1-9e1c-4f26-b9fd-498cea121509\": \"1f2a2fd1-9e1c-4f26-b9fd-498cea121509\", \"8830bda2-9381-4980-9c33-4a2f3190533a\": \"8830bda2-9381-4980-9c33-4a2f3190533a\", \"eb950247-a6b5-4546-a9be-143137d800a4\": \"eb950247-a6b5-4546-a9be-143137d800a4\", \"73cf0f78-2e8e-42d1-8492-894bcbec71b6\": \"73cf0f78-2e8e-42d1-8492-894bcbec71b6\", \"65ef8204-7330-4f00-877d-4c3a97de50f5\": \"65ef8204-7330-4f00-877d-4c3a97de50f5\", \"70f69635-07dd-4453-baac-747e5ba5aeab\": \"70f69635-07dd-4453-baac-747e5ba5aeab\", \"26300e13-b5ca-4453-8d34-4d487299fd45\": \"26300e13-b5ca-4453-8d34-4d487299fd45\", \"262fe5ab-ef9e-4f15-a98b-6f707b92fb93\": \"262fe5ab-ef9e-4f15-a98b-6f707b92fb93\", \"2d1d4e9c-d20b-4ffc-b560-99d0ea4b096a\": \"2d1d4e9c-d20b-4ffc-b560-99d0ea4b096a\", \"6757402d-4af3-4fec-b8a4-569720149968\": \"6757402d-4af3-4fec-b8a4-569720149968\", \"20270017-a10d-461e-988d-d9531cd85e33\": \"20270017-a10d-461e-988d-d9531cd85e33\", \"8e7992c9-10c1-433f-bc40-1777dc777556\": \"8e7992c9-10c1-433f-bc40-1777dc777556\", \"49f10e08-48b5-4add-8b05-0ce338db73f6\": \"49f10e08-48b5-4add-8b05-0ce338db73f6\", \"06b01d70-77ec-4d19-bf36-9e0831baccb4\": \"06b01d70-77ec-4d19-bf36-9e0831baccb4\", \"7c38af20-205c-4a4d-b88f-11df9d5b11fd\": \"7c38af20-205c-4a4d-b88f-11df9d5b11fd\", \"d14945b7-af8e-43d1-814e-34f5e2bb6a63\": \"d14945b7-af8e-43d1-814e-34f5e2bb6a63\", \"e2b2188d-34a2-46d9-b84c-e109d9bc99dc\": \"e2b2188d-34a2-46d9-b84c-e109d9bc99dc\", \"6ed6df16-8cd9-485a-b293-597b90d1f230\": \"6ed6df16-8cd9-485a-b293-597b90d1f230\", \"9a90e271-1939-42eb-b961-b007ee6a7fd4\": \"9a90e271-1939-42eb-b961-b007ee6a7fd4\", \"dffcd13c-ece5-48d4-8308-d285ea6765e7\": \"dffcd13c-ece5-48d4-8308-d285ea6765e7\", \"80931e85-8d71-4f41-bafd-f14d003d6188\": \"80931e85-8d71-4f41-bafd-f14d003d6188\", \"634afe95-7345-41ce-b03d-2c9de0763939\": \"634afe95-7345-41ce-b03d-2c9de0763939\", \"ae028f00-c1a7-411f-affb-cd644f26a898\": \"ae028f00-c1a7-411f-affb-cd644f26a898\", \"222d0242-4459-4a03-abf3-c3853ca4fc2c\": \"222d0242-4459-4a03-abf3-c3853ca4fc2c\", \"e6442ed4-3e7c-45d1-8a7d-e73382c83301\": \"e6442ed4-3e7c-45d1-8a7d-e73382c83301\", \"a33cd0f6-5e50-42ba-9bc0-b29bb479d51d\": \"a33cd0f6-5e50-42ba-9bc0-b29bb479d51d\", \"0ce65c33-74f8-4874-80c6-5b34e3efbd7e\": \"0ce65c33-74f8-4874-80c6-5b34e3efbd7e\", \"def06a6a-09fd-4087-a67c-4a583ade7545\": \"def06a6a-09fd-4087-a67c-4a583ade7545\", \"38d54015-192f-4202-8cae-e4463b050f7a\": \"38d54015-192f-4202-8cae-e4463b050f7a\", \"0f046a91-5659-484d-ad56-297dc6449f54\": \"0f046a91-5659-484d-ad56-297dc6449f54\", \"2726c3b9-8887-45df-8af5-b304ca532ff0\": \"2726c3b9-8887-45df-8af5-b304ca532ff0\", \"97904648-eda4-4b05-947f-8013c724cbd7\": \"97904648-eda4-4b05-947f-8013c724cbd7\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file